CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalHaloData_cfi.py
Go to the documentation of this file.
2 # File: HcalHaloData_cfi.py
3 # Original Author: R. Remington, The University of Florida
4 # Description: Module to build HcalHaloData Object and put into the event
5 # Date: Oct. 15, 2009
6 
7 HcalHaloData = cms.EDProducer("HcalHaloDataProducer",
8  # RecHit Level
9  HBHERecHitLabel = cms.InputTag("hbhereco"),
10  HORecHitLabel = cms.InputTag("horeco"),
11  HFRecHitLabel = cms.InputTag("hfreco"),
12 
13  HcalMinMatchingRadiusParam = cms.double(110.),
14  HcalMaxMatchingRadiusParam = cms.double(490.),
15  HBRecHitEnergyThresholdParam = cms.double(0.5),
16  HERecHitEnergyThresholdParam = cms.double(0.5),
17  SumHcalEnergyThresholdParam = cms.double(18),
18  NHitsHcalThresholdParam = cms.int32(4),
19 
20  )
21 
22