Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:50

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hbheplan1 = cms.EDProducer(
0004     "HBHEPlan1Combiner",
0005 
0006     # Label for the input HBHERecHitCollection
0007     hbheInput = cms.InputTag("hbheprereco"),
0008 
0009     # Should we ignore "Plan 1" settings provided by the HcalTopology class?
0010     ignorePlan1Topology = cms.bool(False),
0011 
0012     # If we are ignoring HcalTopology, should the rechits be combined
0013     # according to the "Plan 1" scheme? This flag is meaningful only if
0014     # "ignorePlan1Topology" is True.
0015     usePlan1Mode = cms.bool(True),
0016 
0017     # Configure the rechit combination algorithm
0018     algorithm = cms.PSet(
0019         Class = cms.string("SimplePlan1RechitCombiner")
0020     )
0021 )