CMS 3D CMS Logo

hbheplan1_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hbheplan1 = cms.EDProducer(
4  "HBHEPlan1Combiner",
5 
6  # Label for the input HBHERecHitCollection
7  hbheInput = cms.InputTag("hbheprereco"),
8 
9  # Should we ignore "Plan 1" settings provided by the HcalTopology class?
10  ignorePlan1Topology = cms.bool(False),
11 
12  # If we are ignoring HcalTopology, should the rechits be combined
13  # according to the "Plan 1" scheme? This flag is meaningful only if
14  # "ignorePlan1Topology" is True.
15  usePlan1Mode = cms.bool(True),
16 
17  # Configure the rechit combination algorithm
18  algorithm = cms.PSet(
19  Class = cms.string("SimplePlan1RechitCombiner")
20  )
21 )