CMS 3D CMS Logo

HitReCalibrator.cc
Go to the documentation of this file.
12 
13 using namespace edm;
14 using namespace std;
15 using namespace reco;
16 
17 namespace cms {
18 
19  HitReCalibrator::HitReCalibrator(const edm::ParameterSet& iConfig) {
20  tok_hbhe_ = consumes<HBHERecHitCollection>(iConfig.getParameter<edm::InputTag>("hbheInput"));
21  tok_ho_ = consumes<HORecHitCollection>(iConfig.getParameter<edm::InputTag>("hoInput"));
22  tok_hf_ = consumes<HFRecHitCollection>(iConfig.getParameter<edm::InputTag>("hfInput"));
23  allowMissingInputs_ = true;
24  //register your products
25 
26  produces<HBHERecHitCollection>("DiJetsHBHEReRecHitCollection");
27  produces<HORecHitCollection>("DiJetsHOReRecHitCollection");
28  produces<HFRecHitCollection>("DiJetsHFReRecHitCollection");
29  }
31 
32  HitReCalibrator::~HitReCalibrator() {}
33 
34  // ------------ method called to produce the data ------------
35  void HitReCalibrator::produce(edm::Event& iEvent, const edm::EventSetup& iSetup) {
36  auto miniDiJetsHBHERecHitCollection = std::make_unique<HBHERecHitCollection>();
37  auto miniDiJetsHORecHitCollection = std::make_unique<HORecHitCollection>();
38  auto miniDiJetsHFRecHitCollection = std::make_unique<HFRecHitCollection>();
39 
40  edm::ESHandle<HcalRespCorrs> recalibCorrs;
41  iSetup.get<HcalRespCorrsRcd>().get("recalibrate", recalibCorrs);
42  const HcalRespCorrs* jetRecalib = recalibCorrs.product();
43 
44  try {
46  iEvent.getByToken(tok_hbhe_, hbhe);
47  const HBHERecHitCollection Hithbhe = *(hbhe.product());
48  for (HBHERecHitCollection::const_iterator hbheItr = Hithbhe.begin(); hbheItr != Hithbhe.end(); hbheItr++) {
49  DetId id = hbheItr->detid();
50  float recal;
51  if (jetRecalib->exists(id))
52  recal = jetRecalib->getValues(id)->getValue();
53  else
54  recal = 1.;
55  float energy = hbheItr->energy();
56  float time = hbheItr->time();
57  HBHERecHit* hbhehit = new HBHERecHit(id, recal * energy, time);
58  miniDiJetsHBHERecHitCollection->push_back(*hbhehit);
59  }
60  } catch (cms::Exception& e) { // can't find it!
61  if (!allowMissingInputs_) {
62  cout << "No HBHE collection " << endl;
63  throw e;
64  }
65  }
66 
67  try {
69  iEvent.getByToken(tok_ho_, ho);
70  const HORecHitCollection Hitho = *(ho.product());
71  for (HORecHitCollection::const_iterator hoItr = Hitho.begin(); hoItr != Hitho.end(); hoItr++) {
72  DetId id = hoItr->detid();
73  float recal;
74  if (jetRecalib->exists(id))
75  recal = jetRecalib->getValues(id)->getValue();
76  else
77  recal = 1.;
78  float energy = hoItr->energy();
79  float time = hoItr->time();
80  HORecHit* hohit = new HORecHit(id, recal * energy, time);
81  miniDiJetsHORecHitCollection->push_back(*hohit);
82  }
83  } catch (cms::Exception& e) { // can't find it!
84  if (!allowMissingInputs_) {
85  cout << " No HO collection " << endl;
86  throw e;
87  }
88  }
89 
90  try {
92  iEvent.getByToken(tok_hf_, hf);
93  const HFRecHitCollection Hithf = *(hf.product());
94  for (HFRecHitCollection::const_iterator hfItr = Hithf.begin(); hfItr != Hithf.end(); hfItr++) {
95  DetId id = hfItr->detid();
96  float recal;
97  if (jetRecalib->exists(id))
98  recal = jetRecalib->getValues(id)->getValue();
99  else
100  recal = 1.;
101  float energy = hfItr->energy();
102  float time = hfItr->time();
103  HFRecHit* hfhit = new HFRecHit(id, recal * energy, time);
104  miniDiJetsHFRecHitCollection->push_back(*hfhit);
105  }
106  } catch (cms::Exception& e) { // can't find it!
107  if (!allowMissingInputs_)
108  throw e;
109  }
110 
111  //Put selected information in the event
112 
113  iEvent.put(std::move(miniDiJetsHBHERecHitCollection), "DiJetsHBHEReRecHitCollection");
114 
115  iEvent.put(std::move(miniDiJetsHORecHitCollection), "DiJetsHOReRecHitCollection");
116 
117  iEvent.put(std::move(miniDiJetsHFRecHitCollection), "DiJetsHFReRecHitCollection");
118  }
119 } // namespace cms
120 
122 
T getParameter(std::string const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
std::vector< T >::const_iterator const_iterator
const Item * getValues(DetId fId, bool throwOnFail=true) const
void beginJob()
Definition: Breakpoints.cc:14
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
const bool exists(DetId fId) const
Namespace of DDCMS conversion namespace.
const_iterator end() const
Definition: DetId.h:18
T const * product() const
Definition: Handle.h:74
fixed size matrix
HLT enums.
float getValue() const
Definition: HcalRespCorr.h:20
T get() const
Definition: EventSetup.h:71
def move(src, dest)
Definition: eostools.py:511
const_iterator begin() const