CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ecalTPSkim_cfi.py
Go to the documentation of this file.
2 
3 # rechit producer
4 ecalTPSkim = cms.EDProducer("EcalTPSkimmer",
5 
6  # channel flags for which we want to keep the TP
7  chStatusToSelectTP = cms.vuint32( 13 ),
8 
9  # whether to execute the module at all
10  skipModule = cms.bool(False),
11 
12  # keep TP for barrel/endcap?
13  doBarrel = cms.bool(True),
14  doEndcap = cms.bool(True),
15 
16  tpInputCollection = cms.InputTag("ecalDigis:EcalTriggerPrimitives"),
17  tpOutputCollection = cms.string("")
18 )