ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/nowaf/StudyXClean/python/StudyXClean_cfi.py
Revision: 1.1
Committed: Tue Feb 2 16:59:00 2010 UTC (15 years, 3 months ago) by nowak
Content type: text/x-python
Branch: MAIN
Log Message:
initial

File Contents

# User Rev Content
1 nowak 1.1 import FWCore.ParameterSet.Config as cms
2    
3     StudyXClean = cms.EDAnalyzer("StudyXClean",
4    
5     muonCollection = cms.InputTag( 'selectedLayer1Muons' ),
6     muon_id = cms.string( 'GlobalMuonPromptTight' ),
7    
8     electronCollection = cms.InputTag( 'selectedLayer1Electrons' ),
9     elec_id = cms.string( 'eidRobustTight' ),
10    
11     jetCollection = cms.InputTag( 'selectedLayer1Jets' ),
12    
13     photonCollection = cms.InputTag( 'selectedLayer1Photons' ),
14     phot_id = cms.string( 'TightPhoton' ), ## LooseEM, LoosePhoton, TightPhoton or none
15    
16     Gen_pt = cms.double(20), ########## MAKE SURE THESE TWO CUTS ARE THE SAME AS THE LEPTON/PHOTON CUTS IN
17     Gen_eta = cms.double(2.5), ########## PATSEQUENCE_CFF.py
18     Gen_pt_jet = cms.double(15), ########## SAME IS TRUE FOR THESE
19     Gen_eta_jet = cms.double(10) ##########
20    
21     )
22