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.
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  HBHERecHitLabel = cms.InputTag("hbhereco"),
10  HORecHitLabel = cms.InputTag("horeco"),
11  HFRecHitLabel = cms.InputTag("hfreco"),
12 
13  caloTowerCollName = cms.InputTag('towerMaker'),
14 
15  HcalMinMatchingRadiusParam = cms.double(110.),
16  HcalMaxMatchingRadiusParam = cms.double(490.),
17  HBRecHitEnergyThresholdParam = cms.double(0.5),
18  HERecHitEnergyThresholdParam = cms.double(0.5),
19  SumHcalEnergyThresholdParam = cms.double(18),
20  NHitsHcalThresholdParam = cms.int32(4),
21 
22  )
23 
24