00001 import FWCore.ParameterSet.Config as cms 00002 00003 # rechit producer 00004 ecalTPSkim = cms.EDProducer("EcalTPSkimmer", 00005 00006 # channel flags for which we want to keep the TP 00007 chStatusToSelectTP = cms.vuint32( 13 ), 00008 00009 # whether to execute the module at all 00010 skipModule = cms.bool(False), 00011 00012 # keep TP for barrel/endcap? 00013 doBarrel = cms.bool(True), 00014 doEndcap = cms.bool(True), 00015 00016 tpInputCollection = cms.InputTag("ecalDigis:EcalTriggerPrimitives"), 00017 tpOutputCollection = cms.string("") 00018 )