ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/auterman/RA2/Selection/python/Selection_cff.py
Revision: 1.1
Committed: Thu Oct 29 13:30:34 2009 UTC (15 years, 6 months ago) by auterman
Content type: text/x-python
Branch: MAIN
Branch point for: Selection
Log Message:
Initial revision

File Contents

# User Rev Content
1 auterman 1.1 import FWCore.ParameterSet.Config as cms
2    
3     from RA2.Selection.RA2SelectionDefault_cfi import *
4    
5     SelectionDefault = cms.EDFilter("Selection",
6     selections = RA2SelectionDefault,
7    
8     # only store what passes these selections
9     # If empty, stores information on all events
10     filterSelection = cms.vstring(
11     'JetPreSelection',
12     'PrimaryVertex',
13     'DirectLeptonVeto',
14     'JetSelection',
15     'MET',
16     'METdPhiMin'
17     ),
18    
19     # Weight to add to each event
20     #weightSource= cms.InputTag("Summer08WeightProducer"),
21     #eventWeight = cms.double(1)
22     )