ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/System8/EDModule/Analyzer/python/S8TreeMaker_cfi.py
Revision: 1.1
Committed: Fri May 6 13:51:09 2011 UTC (14 years ago) by samvel
Content type: text/x-python
Branch: MAIN
CVS Tags: V00-00-04, V00-00-03, V00-00-02, V00-00-01, HEAD
Log Message:
Add Analyzer code

File Contents

# User Rev Content
1 samvel 1.1 import FWCore.ParameterSet.Config as cms
2    
3     from PhysicsTools.SelectorUtils.pfJetIDSelector_cfi import pfJetIDSelector
4    
5     S8TreeMaker = cms.EDAnalyzer(
6     'S8TreeMaker',
7    
8     primaryVertices = cms.string("offlinePrimaryVertices"),
9     muons = cms.string("selectedPatMuonsForPtRel"),
10     electrons = cms.string("selectedPatElectronsForS8"),
11     jets = cms.string("selectedPatJetsAK5PF"),
12     triggers = cms.string("TriggerResults::REDIGI"),
13    
14     jetSelector = pfJetIDSelector.clone(),
15    
16     isPythia = cms.bool(False),
17     saveTriggers = cms.bool(False)
18     )