CMS 3D CMS Logo

EcalHaloData_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 # File: EcalHaloData_cfi.py
3 # Original Author: R. Remington, The University of Florida
4 # Description: Module to build EcalHaloData Object and put into the event
5 # Date: Oct. 15, 2009
6 
7 EcalHaloData= cms.EDProducer("EcalHaloDataProducer",
8  # RecHit Level
9  EBRecHitLabel = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
10  EERecHitLabel = cms.InputTag("ecalRecHit", "EcalRecHitsEE"),
11  ESRecHitLabel = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
12  HBHERecHitLabel = cms.InputTag("hbhereco"),
13  # Higher Level Reco
14  SuperClusterLabel = cms.InputTag("correctedHybridSuperClusters"),
15 # SuperClusterLabel = cms.InputTag("cosmicSuperClusters","CosmicBarrelSuperClusters"),
16  PhotonLabel = cms.InputTag(""),
17 
18  EBRecHitEnergyThresholdParam = cms.double(0.3),
19  EERecHitEnergyThresholdParam = cms.double(0.3),
20  ESRecHitEnergyThresholdParam = cms.double(0.3),
21  SumEcalEnergyThresholdParam = cms.double(10.),
22  NHitsEcalThresholdParam = cms.int32(4),
23 
24  # Shower Shape cut parameters (defaults need to be optimized)
25  RoundnessCutParam = cms.double(0.41),
26  AngleCutParam = cms.double(0.51),
27 
28  )
29 
30