CMS 3D CMS Logo

HcalHaloData_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
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  EBRecHitLabel = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
10  EERecHitLabel = cms.InputTag("ecalRecHit", "EcalRecHitsEE"),
11  HBHERecHitLabel = cms.InputTag("hbhereco"),
12  HORecHitLabel = cms.InputTag("horeco"),
13  HFRecHitLabel = cms.InputTag("hfreco"),
14 
15  caloTowerCollName = cms.InputTag('towerMaker'),
16 
17  HcalMinMatchingRadiusParam = cms.double(110.),
18  HcalMaxMatchingRadiusParam = cms.double(490.),
19  HBRecHitEnergyThresholdParam = cms.double(0.5),
20  HERecHitEnergyThresholdParam = cms.double(0.5),
21  SumHcalEnergyThresholdParam = cms.double(18),
22  NHitsHcalThresholdParam = cms.int32(4),
23 
24  )
25 
26