CMS 3D CMS Logo

EcalRecHitWorkerRecover.cc
Go to the documentation of this file.
2 
14 
17 
20 
22  : EcalRecHitWorkerBaseClass(ps, c) {
23  rechitMaker_ = std::make_unique<EcalRecHitSimpleAlgo>();
24  // isolated channel recovery
25  singleRecoveryMethod_ = ps.getParameter<std::string>("singleChannelRecoveryMethod");
26  singleRecoveryThreshold_ = ps.getParameter<double>("singleChannelRecoveryThreshold");
27  sum8RecoveryThreshold_ = ps.getParameter<double>("sum8ChannelRecoveryThreshold");
28  killDeadChannels_ = ps.getParameter<bool>("killDeadChannels");
29  recoverEBIsolatedChannels_ = ps.getParameter<bool>("recoverEBIsolatedChannels");
30  recoverEEIsolatedChannels_ = ps.getParameter<bool>("recoverEEIsolatedChannels");
31  recoverEBVFE_ = ps.getParameter<bool>("recoverEBVFE");
32  recoverEEVFE_ = ps.getParameter<bool>("recoverEEVFE");
33  recoverEBFE_ = ps.getParameter<bool>("recoverEBFE");
34  recoverEEFE_ = ps.getParameter<bool>("recoverEEFE");
35 
36  dbStatusToBeExcludedEE_ = ps.getParameter<std::vector<int> >("dbStatusToBeExcludedEE");
37  dbStatusToBeExcludedEB_ = ps.getParameter<std::vector<int> >("dbStatusToBeExcludedEB");
38 
39  logWarningEtThreshold_EB_FE_ = ps.getParameter<double>("logWarningEtThreshold_EB_FE");
40  logWarningEtThreshold_EE_FE_ = ps.getParameter<double>("logWarningEtThreshold_EE_FE");
41 
42  tpDigiToken_ =
43  c.consumes<EcalTrigPrimDigiCollection>(ps.getParameter<edm::InputTag>("triggerPrimitiveDigiCollection"));
44 
45  if (recoverEBIsolatedChannels_ && singleRecoveryMethod_ == "BDTG")
47 }
48 
50  es.get<EcalLaserDbRecord>().get(laser);
53  es.get<EcalMappingRcd>().get(pEcalMapping_);
55  // geometry...
56  es.get<EcalBarrelGeometryRecord>().get("EcalBarrel", pEBGeom_);
61  es.get<IdealGeometryRecord>().get(ttMap_);
62  recoveredDetIds_EB_.clear();
63  recoveredDetIds_EE_.clear();
65 }
66 
68  const EcalUncalibratedRecHit& uncalibRH,
70  DetId detId = uncalibRH.id();
71  uint32_t flags = (0xF & uncalibRH.flags());
72 
73  // get laser coefficient
74  //float lasercalib = laser->getLaserCorrection( detId, evt.time());
75 
76  // killDeadChannels_ = true, means explicitely kill dead channels even if the recovered energies are computed in the code
77  // if you don't want to store the recovered energies in the rechit you can produce LogWarnings if logWarningEtThreshold_EB(EE)_FE>0
78  // logWarningEtThreshold_EB(EE)_FE_<0 will not compute the recovered energies at all (faster)
79 
80  if (killDeadChannels_) {
85  EcalRecHit hit(detId, 0., 0., EcalRecHit::kDead);
87  insertRecHit(hit, result); // insert trivial rechit with kDead flag
88  return true;
89  }
91  EcalTrigTowerDetId ttDetId(((EBDetId)detId).tower());
92  std::vector<DetId> vid = ttMap_->constituentsOf(ttDetId);
93  for (std::vector<DetId>::const_iterator dit = vid.begin(); dit != vid.end(); ++dit) {
94  EcalRecHit hit((*dit), 0., 0., EcalRecHit::kDead);
96  insertRecHit(hit, result); // insert trivial rechit with kDead flag
97  }
99  return true; // if you don't want log warning just return true
100  }
101  if (flags == EcalRecHitWorkerRecover::EE_FE && !recoverEEFE_) {
102  EEDetId id(detId);
103  EcalScDetId sc(1 + (id.ix() - 1) / 5, 1 + (id.iy() - 1) / 5, id.zside());
104  std::vector<DetId> eeC;
105  for (int dx = 1; dx <= 5; ++dx) {
106  for (int dy = 1; dy <= 5; ++dy) {
107  int ix = (sc.ix() - 1) * 5 + dx;
108  int iy = (sc.iy() - 1) * 5 + dy;
109  int iz = sc.zside();
110  if (EEDetId::validDetId(ix, iy, iz)) {
111  eeC.push_back(EEDetId(ix, iy, iz));
112  }
113  }
114  }
115  for (size_t i = 0; i < eeC.size(); ++i) {
116  EcalRecHit hit(eeC[i], 0., 0., EcalRecHit::kDead);
118  insertRecHit(hit, result); // insert trivial rechit with kDead flag
119  }
121  return true; // if you don't want log warning just return true
122  }
123  }
124 
125  if (flags == EcalRecHitWorkerRecover::EB_single) {
126  // recover as single dead channel
128 
129  // channel recovery. Accepted new RecHit has the flag AcceptRecHit=TRUE
130  bool AcceptRecHit = true;
131  float ebEn = ebDeadChannelCorrector.correct(
133  EcalRecHit hit(detId, ebEn, 0., EcalRecHit::kDead);
134 
135  if (hit.energy() != 0 and AcceptRecHit == true) {
137  } else {
138  // recovery failed
140  }
141  insertRecHit(hit, result);
142 
143  } else if (flags == EcalRecHitWorkerRecover::EE_single) {
144  // recover as single dead channel
146 
147  // channel recovery. Accepted new RecHit has the flag AcceptRecHit=TRUE
148  bool AcceptRecHit = true;
149  float eeEn = eeDeadChannelCorrector.correct(
151  EcalRecHit hit(detId, eeEn, 0., EcalRecHit::kDead);
152  if (hit.energy() != 0 and AcceptRecHit == true) {
154  } else {
155  // recovery failed
157  }
158  insertRecHit(hit, result);
159 
160  } else if (flags == EcalRecHitWorkerRecover::EB_VFE) {
161  // recover as dead VFE
162  EcalRecHit hit(detId, 0., 0.);
164  // recovery not implemented
165  insertRecHit(hit, result);
166  } else if (flags == EcalRecHitWorkerRecover::EB_FE) {
167  // recover as dead TT
168 
169  EcalTrigTowerDetId ttDetId(((EBDetId)detId).tower());
171  evt.getByToken(tpDigiToken_, pTPDigis);
172  const EcalTrigPrimDigiCollection* tpDigis = nullptr;
173  tpDigis = pTPDigis.product();
174 
175  EcalTrigPrimDigiCollection::const_iterator tp = tpDigis->find(ttDetId);
176  // recover the whole trigger tower
177  if (tp != tpDigis->end()) {
178  //std::vector<DetId> vid = ecalMapping_->dccTowerConstituents( ecalMapping_->DCCid( ttDetId ), ecalMapping_->iTT( ttDetId ) );
179  std::vector<DetId> vid = ttMap_->constituentsOf(ttDetId);
180  float tpEt = ecalScale_.getTPGInGeV(tp->compressedEt(), tp->id());
181  float tpEtThreshEB = logWarningEtThreshold_EB_FE_;
182  if (tpEt > tpEtThreshEB) {
183  edm::LogWarning("EnergyInDeadEB_FE") << "TP energy in the dead TT = " << tpEt << " at " << ttDetId;
184  }
186  // democratic energy sharing
187 
188  for (std::vector<DetId>::const_iterator dit = vid.begin(); dit != vid.end(); ++dit) {
189  if (alreadyInserted(*dit))
190  continue;
191  float theta = ebGeom_->getGeometry(*dit)->getPosition().theta();
192  float tpEt = ecalScale_.getTPGInGeV(tp->compressedEt(), tp->id());
194  EcalRecHit hit(*dit, tpEt / ((float)vid.size()) / sin(theta), 0.);
196  if (tp->compressedEt() == 0xFF)
198  if (tp->sFGVB())
200  insertRecHit(hit, result);
201  }
202  }
203  } else {
204  // tp not found => recovery failed
205  std::vector<DetId> vid = ttMap_->constituentsOf(ttDetId);
206  for (std::vector<DetId>::const_iterator dit = vid.begin(); dit != vid.end(); ++dit) {
207  if (alreadyInserted(*dit))
208  continue;
209  EcalRecHit hit(*dit, 0., 0.);
211  insertRecHit(hit, result);
212  }
213  }
214  }
215  } else if (flags == EcalRecHitWorkerRecover::EE_FE) {
216  // Structure for recovery:
217  // ** SC --> EEDetId constituents (eeC) --> associated Trigger Towers (aTT) --> EEDetId constituents (aTTC)
218  // ** energy for a SC EEDetId = [ sum_aTT(energy) - sum_aTTC(energy) ] / N_eeC
219  // .. i.e. the total energy of the TTs covering the SC minus
220  // .. the energy of the recHits in the TTs but not in the SC
221  //std::vector<DetId> vid = ecalMapping_->dccTowerConstituents( ecalMapping_->DCCid( ttDetId ), ecalMapping_->iTT( ttDetId ) );
222  // due to lack of implementation of the EcalTrigTowerDetId ix,iy methods in EE we compute Et recovered energies (in EB we compute E)
223 
224  EEDetId eeId(detId);
225  EcalScDetId sc((eeId.ix() - 1) / 5 + 1, (eeId.iy() - 1) / 5 + 1, eeId.zside());
226  std::set<DetId> eeC;
227  for (int dx = 1; dx <= 5; ++dx) {
228  for (int dy = 1; dy <= 5; ++dy) {
229  int ix = (sc.ix() - 1) * 5 + dx;
230  int iy = (sc.iy() - 1) * 5 + dy;
231  int iz = sc.zside();
232  if (EEDetId::validDetId(ix, iy, iz)) {
233  EEDetId id(ix, iy, iz);
235  eeC.insert(id);
236  } // check status
237  }
238  }
239  }
240 
242  evt.getByToken(tpDigiToken_, pTPDigis);
243  const EcalTrigPrimDigiCollection* tpDigis = nullptr;
244  tpDigis = pTPDigis.product();
245 
246  // associated trigger towers
247  std::set<EcalTrigTowerDetId> aTT;
248  for (std::set<DetId>::const_iterator it = eeC.begin(); it != eeC.end(); ++it) {
249  aTT.insert(ttMap_->towerOf(*it));
250  }
251  // associated trigger towers: total energy
252  float totE = 0;
253  // associated trigger towers: EEDetId constituents
254  std::set<DetId> aTTC;
255  bool atLeastOneTPSaturated = false;
256  for (std::set<EcalTrigTowerDetId>::const_iterator it = aTT.begin(); it != aTT.end(); ++it) {
257  // add the energy of this trigger tower
259  if (itTP != tpDigis->end()) {
260  std::vector<DetId> v = ttMap_->constituentsOf(*it);
261 
262  // from the constituents, remove dead channels
263  std::vector<DetId>::iterator ttcons = v.begin();
264  while (ttcons != v.end()) {
266  ttcons = v.erase(ttcons);
267  } else {
268  ++ttcons;
269  }
270  } // while
271 
272  if (itTP->compressedEt() == 0xFF) { // In the case of a saturated trigger tower, a fraction
273  atLeastOneTPSaturated =
274  true; //of the saturated energy is put in: number of xtals in dead region/total xtals in TT *63.75
275 
276  //Alternative recovery algorithm that I will now investigate.
277  //Estimate energy sums the energy in the working channels, then decides how much energy
278  //to put here depending on that. Duncan 20101203
279 
280  totE += estimateEnergy(itTP->id().ietaAbs(), &result, eeC, v);
281 
282  /*
283  These commented out lines use
284  64GeV*fraction of the TT overlapping the dead FE
285 
286  int count = 0;
287  for (std::vector<DetId>::const_iterator idsit = v.begin(); idsit != v.end(); ++ idsit){
288  std::set<DetId>::const_iterator itFind = eeC.find(*idsit);
289  if (itFind != eeC.end())
290  ++count;
291  }
292  //std::cout << count << ", " << v.size() << std::endl;
293  totE+=((float)count/(float)v.size())* ((it->ietaAbs()>26)?2*ecalScale_.getTPGInGeV( itTP->compressedEt(), itTP->id() ):ecalScale_.getTPGInGeV( itTP->compressedEt(), itTP->id() ));*/
294  } else {
295  totE += ((it->ietaAbs() > 26) ? 2 : 1) * ecalScale_.getTPGInGeV(itTP->compressedEt(), itTP->id());
296  }
297 
298  // get the trigger tower constituents
299 
300  if (itTP->compressedEt() == 0) { // If there's no energy in TT, the constituents are removed from the recovery.
301  for (size_t i = 0; i < v.size(); ++i)
302  eeC.erase(v[i]);
303  } else if (itTP->compressedEt() != 0xFF) {
304  //If it's saturated the energy has already been determined, so we do not want to subtract any channels
305  for (size_t j = 0; j < v.size(); ++j) {
306  aTTC.insert(v[j]);
307  }
308  }
309  }
310  }
311  // remove crystals of dead SC
312  // (this step is not needed if sure that SC crystals are not
313  // in the recHit collection)
314 
315  for (std::set<DetId>::const_iterator it = eeC.begin(); it != eeC.end(); ++it) {
316  aTTC.erase(*it);
317  }
318  // compute the total energy for the dead SC
319  const EcalRecHitCollection* hits = &result;
320  for (std::set<DetId>::const_iterator it = aTTC.begin(); it != aTTC.end(); ++it) {
322  if (jt != hits->end()) {
323  float energy = jt->energy(); // Correct conversion to Et
324  float eta = geo_->getPosition(jt->id()).eta();
325  float pf = 1.0 / cosh(eta);
326  // use Et instead of E, consistent with the Et estimation of the associated TT
327  totE -= energy * pf;
328  }
329  }
330 
331  float scEt = totE;
332  float scEtThreshEE = logWarningEtThreshold_EE_FE_;
333  if (scEt > scEtThreshEE) {
334  edm::LogWarning("EnergyInDeadEE_FE") << "TP energy in the dead TT = " << scEt << " at " << sc;
335  }
336 
337  // assign the energy to the SC crystals
338  if (!killDeadChannels_ || recoverEEFE_) { // if eeC is empty, i.e. there are no hits
339  // in the tower, nothing is returned. No negative values from noise.
340  for (std::set<DetId>::const_iterator it = eeC.begin(); it != eeC.end(); ++it) {
341  float eta = geo_->getPosition(*it).eta(); //Convert back to E from Et for the recovered hits
342  float pf = 1.0 / cosh(eta);
343  EcalRecHit hit(*it, totE / ((float)eeC.size() * pf), 0);
344 
345  if (atLeastOneTPSaturated)
348  insertRecHit(hit, result);
349 
350  } // for
351  } // if
352  }
353  return true;
354 }
355 
358  const std::set<DetId>& sId,
359  const std::vector<DetId>& vId) {
360  float xtalE = 0;
361  int count = 0;
362  for (std::vector<DetId>::const_iterator vIdit = vId.begin(); vIdit != vId.end(); ++vIdit) {
363  std::set<DetId>::const_iterator sIdit = sId.find(*vIdit);
364  if (sIdit == sId.end()) {
365  float energy = hits->find(*vIdit)->energy();
366  float eta = geo_->getPosition(*vIdit).eta();
367  float pf = 1.0 / cosh(eta);
368  xtalE += energy * pf;
369  count++;
370  }
371  }
372 
373  if (count == 0) { // If there are no overlapping crystals return saturated value.
374 
375  double etsat = tpgscale_.getTPGInGeV(0xFF,
376  ttMap_->towerOf(*vId.begin())); // get saturation value for the first
377  // constituent, for the others it's the same
378 
379  return etsat / cosh(ieta) * (ieta > 26 ? 2 : 1); // account for duplicated TT in EE for ieta>26
380  } else
381  return xtalE * ((vId.size() / (float)count) - 1) * (ieta > 26 ? 2 : 1);
382 }
383 
385  // skip already inserted DetId's and raise a log warning
386  if (alreadyInserted(hit.id())) {
387  edm::LogWarning("EcalRecHitWorkerRecover") << "DetId already recovered! Skipping...";
388  return;
389  }
390  EcalRecHitCollection::iterator it = collection.find(hit.id());
391  if (it == collection.end()) {
392  // insert the hit in the collection
393  collection.push_back(hit);
394  } else {
395  // overwrite existing recHit
396  *it = hit;
397  }
398  if (hit.id().subdetId() == EcalBarrel) {
399  recoveredDetIds_EB_.insert(hit.id());
400  } else if (hit.id().subdetId() == EcalEndcap) {
401  recoveredDetIds_EE_.insert(hit.id());
402  } else {
403  edm::LogError("EcalRecHitWorkerRecover::InvalidDetId") << "Invalid DetId " << hit.id().rawId();
404  }
405 }
406 
408  bool res = false;
409  if (id.subdetId() == EcalBarrel) {
410  res = (recoveredDetIds_EB_.find(id) != recoveredDetIds_EB_.end());
411  } else if (id.subdetId() == EcalEndcap) {
412  res = (recoveredDetIds_EE_.find(id) != recoveredDetIds_EE_.end());
413  } else {
414  edm::LogError("EcalRecHitWorkerRecover::InvalidDetId") << "Invalid DetId " << id.rawId();
415  }
416  return res;
417 }
418 
419 // In the future, this will be used to calibrate the TT energy. There is a dependance on
420 // eta at lower energies that can be corrected for here after more validation.
421 float EcalRecHitWorkerRecover::recCheckCalib(float eTT, int ieta) { return eTT; }
422 
423 // return false is the channel has status in the list of statusestoexclude
424 // true otherwise (channel ok)
425 // Careful: this function works on raw (encoded) channel statuses
426 bool EcalRecHitWorkerRecover::checkChannelStatus(const DetId& id, const std::vector<int>& statusestoexclude) {
427  if (!chStatus_.isValid())
428  edm::LogError("ObjectNotFound") << "Channel Status not set";
429 
431  uint16_t dbStatus = 0;
432  if (chIt != chStatus_->end()) {
433  dbStatus = chIt->getEncodedStatusCode();
434  } else {
435  edm::LogError("ObjectNotFound") << "No channel status found for xtal " << id.rawId()
436  << "! something wrong with EcalChannelStatus in your DB? ";
437  }
438 
439  for (std::vector<int>::const_iterator status = statusestoexclude.begin(); status != statusestoexclude.end();
440  ++status) {
441  if (*status == dbStatus)
442  return false;
443  }
444 
445  return true;
446 }
447 
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
int ix() const
Definition: EEDetId.h:77
bool alreadyInserted(const DetId &id)
void setEventSetup(const edm::EventSetup &evtSetup)
Definition: EcalTPGScale.cc:19
bool run(const edm::Event &evt, const EcalUncalibratedRecHit &uncalibRH, EcalRecHitCollection &result) override
EcalDeadChannelRecoveryAlgos< EEDetId > eeDeadChannelCorrector
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
std::vector< T >::const_iterator const_iterator
Geom::Theta< T > theta() const
std::vector< int > dbStatusToBeExcludedEE_
void push_back(T const &t)
std::vector< Variable::Flags > flags
Definition: MVATrainer.cc:135
edm::ESHandle< EcalElectronicsMapping > pEcalMapping_
void setFlag(int flag)
set the flags (from Flags or ESFlags)
Definition: EcalRecHit.h:183
int zside(DetId const &)
edm::ESHandle< CaloTopology > caloTopology_
double getTPGInGeV(const EcalTriggerPrimitiveDigi &tpDigi)
Definition: EcalTPGScale.cc:24
float recCheckCalib(float energy, int ieta)
void setCaloTopology(const CaloTopology *topology)
Definition: Electron.h:6
EcalTrigTowerDetId towerOf(const DetId &id) const
Get the tower id for this det id (or null if not known)
void insertRecHit(const EcalRecHit &hit, EcalRecHitCollection &collection)
std::unique_ptr< EcalRecHitSimpleAlgo > rechitMaker_
int ix() const
Definition: EcalScDetId.h:70
edm::ESHandle< EcalTrigTowerConstituentsMap > ttMap_
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:41
int zside() const
Definition: EEDetId.h:71
GlobalPoint getPosition(const DetId &id) const
Get the position of a given detector id.
Definition: CaloGeometry.cc:74
void setParameters(const edm::ParameterSet &ps)
float energy() const
Definition: EcalRecHit.h:68
int iy() const
Definition: EEDetId.h:83
edm::ESHandle< CaloSubdetectorGeometry > pEBGeom_
float estimateEnergy(int ieta, EcalRecHitCollection *hits, const std::set< DetId > &sId, const std::vector< DetId > &vId)
std::vector< DetId > constituentsOf(const EcalTrigTowerDetId &id) const
Get the constituent detids for this tower id.
int iy() const
Definition: EcalScDetId.h:76
const CaloSubdetectorGeometry * ebGeom_
std::vector< EcalRecHit >::iterator iterator
const_iterator end() const
Definition: DetId.h:18
void set(const edm::EventSetup &es) override
DetId id() const
get the id
Definition: EcalRecHit.h:77
T const * product() const
Definition: Handle.h:74
virtual std::shared_ptr< const CaloCellGeometry > getGeometry(const DetId &id) const
Get the cell geometry of a given detector id. Should return false if not found.
static bool validDetId(int crystal_ix, int crystal_iy, int iz)
Definition: EEDetId.h:248
edm::EDGetTokenT< EcalTrigPrimDigiCollection > tpDigiToken_
std::vector< Item >::const_iterator const_iterator
std::set< DetId > recoveredDetIds_EE_
int zside() const
Definition: EcalScDetId.h:64
T eta() const
Definition: PV3DBase.h:76
iterator find(key_type k)
EcalRecHitWorkerRecover(const edm::ParameterSet &, edm::ConsumesCollector &c)
T get() const
Definition: EventSetup.h:71
edm::ESHandle< CaloGeometry > caloGeometry_
#define DEFINE_EDM_PLUGIN(factory, type, name)
std::vector< int > dbStatusToBeExcludedEB_
float correct(const DetIdT id, const EcalRecHitCollection &hit_collection, std::string algo, double single8Cut, double sum8Cut, bool *accFlag)
EcalDeadChannelRecoveryAlgos< EBDetId > ebDeadChannelCorrector
edm::ESHandle< EcalChannelStatus > chStatus_
T const * product() const
Definition: ESHandle.h:86
edm::ESHandle< EcalLaserDbService > laser
const EcalElectronicsMapping * ecalMapping_
bool checkChannelStatus(const DetId &id, const std::vector< int > &statusestoexclude)
std::set< DetId > recoveredDetIds_EB_