CMS 3D CMS Logo

HcalHaloDataProducer.cc
Go to the documentation of this file.
3 
4 /*
5  [class]: HcalHaloDataProducer
6  [authors]: R. Remington, The University of Florida
7  [description]: See HcalHaloDataProducer.h
8  [date]: October 15, 2009
9 */
10 
11 using namespace edm;
12 using namespace std;
13 using namespace reco;
14 
15 HcalHaloDataProducer::HcalHaloDataProducer(const edm::ParameterSet& iConfig) : HcalAlgo(consumesCollector()) {
16  //RecHit Level
17  IT_EBRecHit = iConfig.getParameter<edm::InputTag>("EBRecHitLabel");
18  IT_EERecHit = iConfig.getParameter<edm::InputTag>("EERecHitLabel");
19  IT_HBHERecHit = iConfig.getParameter<edm::InputTag>("HBHERecHitLabel");
20  IT_HFRecHit = iConfig.getParameter<edm::InputTag>("HFRecHitLabel");
21  IT_HORecHit = iConfig.getParameter<edm::InputTag>("HORecHitLabel");
22  IT_CaloTowers = iConfig.getParameter<edm::InputTag>("caloTowerCollName");
23 
24  HBRecHitEnergyThreshold = (float)iConfig.getParameter<double>("HBRecHitEnergyThresholdParam");
25  HERecHitEnergyThreshold = (float)iConfig.getParameter<double>("HERecHitEnergyThresholdParam");
26  SumHcalEnergyThreshold = (float)iConfig.getParameter<double>("SumHcalEnergyThresholdParam");
27  NHitsHcalThreshold = iConfig.getParameter<int>("NHitsHcalThresholdParam");
28 
29  ebrechit_token_ = consumes<EBRecHitCollection>(IT_EBRecHit);
30  eerechit_token_ = consumes<EERecHitCollection>(IT_EERecHit);
31  hbherechit_token_ = consumes<HBHERecHitCollection>(IT_HBHERecHit);
32  hfrechit_token_ = consumes<HFRecHitCollection>(IT_HFRecHit);
33  calotower_token_ = consumes<CaloTowerCollection>(IT_CaloTowers);
34  calogeometry_token_ = esConsumes<CaloGeometry, CaloGeometryRecord>();
35 
36  produces<HcalHaloData>();
37 }
38 
40  //Get CaloGeometry
42 
43  //Get CaloTowers
45  iEvent.getByToken(calotower_token_, TheCaloTowers);
46 
47  //Get EB RecHits
49  iEvent.getByToken(ebrechit_token_, TheEBRecHits);
50 
51  //Get EE RecHits
53  iEvent.getByToken(eerechit_token_, TheEERecHits);
54 
55  //Get HB/HE RecHits
56  edm::Handle<HBHERecHitCollection> TheHBHERecHits;
57  // iEvent.getByLabel(IT_HBHERecHit, TheHBHERecHits);
58  iEvent.getByToken(hbherechit_token_, TheHBHERecHits);
59 
60  //Get HF RecHits
62  // iEvent.getByLabel(IT_HFRecHit, TheHFRecHits);
63  iEvent.getByToken(hfrechit_token_, TheHFRecHits);
64 
65  // Run the HcalHaloAlgo to reconstruct the HcalHaloData object
68 
69  iEvent.put(std::make_unique<HcalHaloData>(
70  HcalAlgo.Calculate(*TheCaloGeometry, TheHBHERecHits, TheCaloTowers, TheEBRecHits, TheEERecHits, iSetup)));
71  return;
72 }
73 
reco::HcalHaloDataProducer::IT_HBHERecHit
edm::InputTag IT_HBHERecHit
Definition: HcalHaloDataProducer.h:95
dqmMemoryStats.float
float
Definition: dqmMemoryStats.py:127
HcalHaloDataProducer.h
reco::HcalHaloDataProducer::calotower_token_
edm::EDGetTokenT< CaloTowerCollection > calotower_token_
Definition: HcalHaloDataProducer.h:106
HcalHaloAlgo::SetRecHitEnergyThresholds
void SetRecHitEnergyThresholds(float HB, float HE)
Definition: HcalHaloAlgo.h:61
edm
HLT enums.
Definition: AlignableModifier.h:19
reco::HcalHaloDataProducer::HcalAlgo
HcalHaloAlgo HcalAlgo
Definition: HcalHaloDataProducer.h:108
reco::HcalHaloDataProducer::eerechit_token_
edm::EDGetTokenT< EERecHitCollection > eerechit_token_
Definition: HcalHaloDataProducer.h:103
reco::HcalHaloDataProducer::ebrechit_token_
edm::EDGetTokenT< EBRecHitCollection > ebrechit_token_
Definition: HcalHaloDataProducer.h:102
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
edm::Handle
Definition: AssociativeIterator.h:50
reco::HcalHaloDataProducer::IT_HORecHit
edm::InputTag IT_HORecHit
Definition: HcalHaloDataProducer.h:96
reco::HcalHaloDataProducer::IT_EBRecHit
edm::InputTag IT_EBRecHit
Definition: HcalHaloDataProducer.h:99
reco::HcalHaloDataProducer::SumHcalEnergyThreshold
float SumHcalEnergyThreshold
Definition: HcalHaloDataProducer.h:112
edm::ESHandle< CaloGeometry >
reco::HcalHaloDataProducer::~HcalHaloDataProducer
~HcalHaloDataProducer() override
Definition: HcalHaloDataProducer.cc:74
reco::HcalHaloDataProducer::hfrechit_token_
edm::EDGetTokenT< HFRecHitCollection > hfrechit_token_
Definition: HcalHaloDataProducer.h:105
edm::ParameterSet
Definition: ParameterSet.h:47
reco::HcalHaloDataProducer::HBRecHitEnergyThreshold
float HBRecHitEnergyThreshold
Definition: HcalHaloDataProducer.h:110
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::EventSetup::getHandle
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:148
edm::EventSetup
Definition: EventSetup.h:57
reco::HcalHaloDataProducer::IT_CaloTowers
edm::InputTag IT_CaloTowers
Definition: HcalHaloDataProducer.h:98
HcalHaloAlgo::SetPhiWedgeThresholds
void SetPhiWedgeThresholds(float SumE, int nhits)
Definition: HcalHaloAlgo.h:69
reco::HcalHaloDataProducer::hbherechit_token_
edm::EDGetTokenT< HBHERecHitCollection > hbherechit_token_
Definition: HcalHaloDataProducer.h:104
reco::HcalHaloDataProducer::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition: HcalHaloDataProducer.cc:39
reco::HcalHaloDataProducer::IT_HFRecHit
edm::InputTag IT_HFRecHit
Definition: HcalHaloDataProducer.h:97
std
Definition: JetResolutionObject.h:76
reco::HcalHaloDataProducer::IT_EERecHit
edm::InputTag IT_EERecHit
Definition: HcalHaloDataProducer.h:100
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
reco::HcalHaloDataProducer::calogeometry_token_
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > calogeometry_token_
Definition: HcalHaloDataProducer.h:107
reco::HcalHaloDataProducer::NHitsHcalThreshold
int NHitsHcalThreshold
Definition: HcalHaloDataProducer.h:113
ConsumesCollector.h
edm::Event
Definition: Event.h:73
reco::HcalHaloDataProducer::HERecHitEnergyThreshold
float HERecHitEnergyThreshold
Definition: HcalHaloDataProducer.h:111
edm::InputTag
Definition: InputTag.h:15
HcalHaloAlgo::Calculate
reco::HcalHaloData Calculate(const CaloGeometry &TheCaloGeometry, edm::Handle< HBHERecHitCollection > &TheHBHERecHits, edm::Handle< CaloTowerCollection > &TheCaloTowers, edm::Handle< EBRecHitCollection > &TheEBRecHits, edm::Handle< EERecHitCollection > &TheEERecHits, const edm::EventSetup &TheSetup)
Definition: HcalHaloAlgo.cc:40