Loading [MathJax]/jax/input/TeX/config.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
LArShapeDumper.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
7 #include "LArRawEvent/LArDigit.h"
8 #include "GaudiKernel/INTupleSvc.h"
11 #include "LArElecCalib/ILArShape.h"
12 
16 
18 #include "CaloDetDescr/CaloDetDescrElement.h"
22 #include "LArCafJobs/ShapeInfo.h"
23 #include "LArCafJobs/CellInfo.h"
24 #include "LArCafJobs/RunData.h"
25 #include "LArCafJobs/EventData.h"
28 #include "TFile.h"
29 #include "TMath.h"
30 
31 #include <regex>
32 
33 
34 #include <vector>
35 #include <iostream>
36 using std::cout;
37 using std::endl;
38 
39 using namespace LArSamples;
40 
41 
42 LArShapeDumper::LArShapeDumper(const std::string & name, ISvcLocator * pSvcLocator) :
43  AthAlgorithm(name, pSvcLocator),
44  m_count(0),
45  m_nWrongBunchGroup(0),
46  m_nPrescaledAway(0),
47  m_nLArError(0),
48  m_nNoDigits(0),
49  m_nNoDigitsSC(0),
50  m_onlineHelper(nullptr),
51  m_onlineHelperSC(nullptr),
52  m_doEM(false),
53  m_doHEC(false),
54  m_doFCAL(false),
55  m_doSC(false),
56  m_samples(nullptr)
57 {
58  declareProperty("FileName", m_fileName = "samples.root");
59  declareProperty("MaxChannels", m_maxChannels = 200000);
60  declareProperty("Prescale", m_prescale = 1);
61  declareProperty("CaloType", m_caloType = "EMHECFCALSC");
62  declareProperty("EnergyCut", m_energyCut = -1);
63  declareProperty("EnergyCutSC", m_energyCutSC = -1);
64  declareProperty("NoiseSignifCut", m_noiseSignifCut = 3);
65  declareProperty("MinADCMax", m_minADCMax = -1);
66  declareProperty("MinADCMaxSC", m_minADCMaxSC = -1);
67  declareProperty("Gains", m_gainSpec = "HIGH,MEDIUM,LOW");
68  declareProperty("DumpDisconnected", m_dumpDisc = false);
69  declareProperty("DoStream", m_doStream = false);
70  declareProperty("DoTrigger", m_doTrigger = true);
71  declareProperty("DoOFCIter", m_doOFCIter = true);
72  declareProperty("DoAllEvents", m_doAllEvents = true);
73  declareProperty("DumpChannelInfos", m_dumpChannelInfos = false);
74  declareProperty("DoRoIs", m_doRoIs = true);
75  declareProperty("TriggerNames", m_triggerNames);
76  declareProperty("DoAllLvl1", m_doAllLvl1 = true);
77  declareProperty("onlyEmptyBC",m_onlyEmptyBC=false);
78 }
79 
80 
82 {
83 }
84 
85 
87 {
88  ATH_MSG_DEBUG ("in initialize()");
89 
90  m_samples = new DataStore();
91 
92  std::transform(m_caloType.begin(), m_caloType.end(), m_caloType.begin(), toupper);
93  m_doEM = (m_caloType.find("EM") != std::string::npos);
94  m_doHEC = (m_caloType.find("HEC") != std::string::npos);
95  m_doFCAL = (m_caloType.find("FCAL") != std::string::npos);
96  m_doSC = (m_caloType.find("SC") != std::string::npos);
97 
99  ATH_CHECK( m_BCKey.initialize() );
100  ATH_CHECK( m_BCKeySC.initialize(m_doSC) );
105 
108 
113 
114  ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") );
117  if(m_doSC) ATH_CHECK( detStore()->retrieve(m_onlineHelperSC, "LArOnline_SuperCellID") );
118 
122 
123 
124  if (m_doTrigger) {
125  CHECK( m_trigDec.retrieve() );
126  }
127 
128  ATH_CHECK( m_dumperTool.retrieve() );
129 
131 
132  std::transform(m_gainSpec.begin(), m_gainSpec.end(), m_gainSpec.begin(), toupper);
133  m_gains[CaloGain::LARHIGHGAIN] = (m_gainSpec.find("HIGH") != std::string::npos);
134  m_gains[CaloGain::LARMEDIUMGAIN] = (m_gainSpec.find("MEDIUM") != std::string::npos);
135  m_gains[CaloGain::LARLOWGAIN] = (m_gainSpec.find("LOW") != std::string::npos);
136 
137  //if (m_onlyEmptyBC)
138  //ATH_CHECK(m_bcidTool.retrieve());
139 
140  return StatusCode::SUCCESS;
141 }
142 
143 
145 {
146  m_runData = std::make_unique<RunData>(0);
147 
148  if (m_doTrigger) {
149  std::vector<std::regex> regexs;
150  regexs.reserve(m_triggerNames.size());
151 for (const std::string& name : m_triggerNames) {
152  regexs.push_back(std::regex(name));
153  }
154 
155  std::vector<std::string> chains = m_trigDec->getListOfTriggers();
156  std::vector<std::string> myChains;
157  std::cmatch match;
158 
159  for (const std::string& chain : chains) {
160  ATH_MSG_INFO ( "Configured chain : " << chain );
161  for (const std::regex& regex : regexs) {
162  if (std::regex_match(chain.c_str(), match, regex)) myChains.push_back(chain);
163  }
164  }
165  for (const std::string& group : m_trigDec->getListOfGroups())
166  ATH_MSG_INFO ( "Configured group : " << group );
167  const Trig::ChainGroup* calibStreamGroup = m_trigDec->getChainGroup("Calibration");
168  if (calibStreamGroup) {
169  std::vector<std::string> chains = calibStreamGroup->getListOfTriggers();
170  ATH_MSG_INFO ( "Chains for Calibration group:" );
171  for (const std::string& chain : chains)
172  ATH_MSG_INFO ( "Calib chain : " << chain );
173  }
174 
175  unsigned int idx = 0;
176 
177  if (m_doAllLvl1) {
178  const Trig::ChainGroup* group = m_trigDec->getChainGroup("L1_.*");
179  for (const std::string& l1Item : group->getListOfTriggers()) {
180  const TrigConf::TriggerItem* confItem = m_trigDec->ExperimentalAndExpertMethods().getItemConfigurationDetails(l1Item);
181  if (!confItem) {
182  ATH_MSG_WARNING ( "LVL1 item " << l1Item << ", obtained from TrigConfig, cannot be retrieved!" );
183  continue;
184  }
185  int pos = confItem->ctpId();
186  if (pos < 0 || pos >= 256) {
187  ATH_MSG_WARNING ( "LVL1 item " << l1Item << "has out-of-range ctpId " << pos );
188  continue;
189  }
190  m_runData->addBit(l1Item.c_str(), pos);
191  ATH_MSG_INFO ( "Adding LVL1 trigger bit for " << l1Item << " at position " << pos );
192  }
193  idx = 256;
194  }
195 
196  for (const std::string& name : myChains) {
197  if (m_trigDec->getListOfTriggers(name).empty()) {
198  ATH_MSG_WARNING ( "Requested trigger name " << name << " is not configured in this run" );
199  continue;
200  }
201  const Trig::ChainGroup* group = m_trigDec->getChainGroup(name);
202  if (!group) {
203  ATH_MSG_WARNING ( "Could not retrieve chain group for trigger " << name );
204  continue;
205  }
206  m_runData->addBit(name.c_str(), idx++);
207  m_triggerGroups.push_back(group);
208  ATH_MSG_INFO ( "Adding trigger bit for " << name << " at position " << idx-1 );
209  }
210  }
211  return StatusCode::SUCCESS;
212 }
213 
214 
216 {
217  m_count++;
218  const EventContext& ctx = Gaudi::Hive::currentContext();
219  if ((m_prescale > 1 && m_random.Rndm() > 1.0/m_prescale) || m_prescale <= 0) {
220  ATH_MSG_VERBOSE ( "======== prescaling event "<< m_count << " ========" );
222  return StatusCode::SUCCESS;
223  }
224 
225  ATH_MSG_VERBOSE ( "======== executing event "<< m_count << " ========" );
226 
227  const xAOD::EventInfo* eventInfo = nullptr;
228  ATH_CHECK( evtStore()->retrieve(eventInfo) );
229 
230  int event = eventInfo->eventNumber();
231  int run = eventInfo->runNumber();
232  int lumiBlock = eventInfo->lumiBlock();
233  int bunchId = eventInfo->bcid();
234 
235 
236  if (eventInfo->errorState(xAOD::EventInfo::LAr)==xAOD::EventInfo::Error) {
237  ATH_MSG_DEBUG("Ignoring Event b/c of LAr ERROR");
238  m_nLArError++;
239  return StatusCode::SUCCESS;
240  }
241 
242 
244  const BunchCrossingCondData* bunchCrossing=*bccd;
245  if (!bunchCrossing) {
246  ATH_MSG_ERROR("Failed to retrieve Bunch Crossing obj");
247  return StatusCode::FAILURE;
248  }
249 
251  ATH_CHECK(caloMgrHandle.isValid());
252  const CaloDetDescrManager* caloMgr = *caloMgrHandle;
253 
254  if (m_onlyEmptyBC) {
255  if (!bccd->isFilled(bunchId)) {
256  ATH_MSG_DEBUG("Ignoring Event with bunch crossing type ");
258  return StatusCode::SUCCESS;
259  }
260  }
261 
262 
263  EventData* eventData = nullptr;
264  int eventIndex = -1;
265  if (m_doAllEvents) {
266  eventIndex = makeEvent(eventData, run, event, lumiBlock, bunchId);
267  if (eventIndex < 0) return StatusCode::FAILURE;
268  }
269 
271  if(!hdlDigit.isValid()) {
272  ATH_MSG_WARNING( "Unable to retrieve LArDigitContainer with key " << m_digitsKey << " from DetectorStore. " );
273  return StatusCode::SUCCESS;
274  } else
275  ATH_MSG_DEBUG( "Got LArDigitContainer with key " << m_digitsKey.key() );
276  const LArDigitContainer* larDigitContainer = &(*hdlDigit);
277 
278  if (larDigitContainer->empty()) {
279  ATH_MSG_WARNING ( "LArDigitContainer with key=" << m_digitsKey.key() << " is empty!" );
280  m_nNoDigits++;
281  return StatusCode::SUCCESS;
282  }
283 
285  if(!hdlRaw.isValid()) {
286  ATH_MSG_WARNING( "Unable to retrieve LArRawChannelsContainer with key " << m_channelsKey.key() << " from DetectorStore. " );
287  return StatusCode::SUCCESS;
288  } else
289  ATH_MSG_DEBUG( "Got LArRawChannelsContainer with key " << m_channelsKey.key() );
290  const LArRawChannelContainer* rawChannelContainer = &(*hdlRaw);;
291 
292  if (rawChannelContainer->empty()) {
293  ATH_MSG_WARNING ( "LArRawChannelContainer with key=" << m_channelsKey << " is empty!" );
294  m_nNoDigits++;
295  return StatusCode::SUCCESS;
296  }
297 
298 
299 
301  const LArOnOffIdMapping* cabling=*cablingHdl;
302  if(!cabling) {
303  ATH_MSG_ERROR( "Do not have cabling object LArOnOffIdMapping" );
304  return StatusCode::FAILURE;
305  }
306 
308  const LArADC2MeV* adc2MeV=*adc2mevHdl;
309  if(!adc2MeV) {
310  ATH_MSG_ERROR( "Failed to retreive ADC2MeV cond obj" );
311  return StatusCode::FAILURE;
312  }
313 
315  const ILArPedestal* pedestals=*pedHdl;
316  if (!pedestals) {
317  ATH_MSG_ERROR("Failed to retrieve pedestal cond obj");
318  return StatusCode::FAILURE;
319  }
320 
321  const ILArAutoCorr* aCorr=nullptr;
322  if(m_dumperTool->doShape()) {
324  aCorr=*acorrHdl;
325  if (!aCorr) {
326  ATH_MSG_ERROR("Failed to retrieve AutoCorr cond obj");
327  return StatusCode::FAILURE;
328  }
329  }
330 
332  const LArBadChannelCont *bcCont {*readHandle};
333  if(!bcCont) {
334  ATH_MSG_ERROR( "Do not have Bad chan container " << m_BCKey.key() );
335  return StatusCode::FAILURE;
336  }
337 
338  const LArOFIterResultsContainer* ofIterResult = nullptr;
339  if (m_doOFCIter) {
340  if (evtStore()->contains<LArOFIterResultsContainer> ("LArOFIterResult")) {
341  ATH_CHECK( evtStore()->retrieve(ofIterResult, "LArOFIterResult") );
342  } else {
343  ATH_MSG_WARNING("Do not have LArOFIterResult in this event");
344  }
345  }
346 
347  const LArFebErrorSummary* larFebErrorSummary = nullptr;
348  ATH_CHECK( evtStore()->retrieve(larFebErrorSummary, "LArFebErrorSummary") );
349  const std::map<unsigned int,uint16_t>& febErrorMap = larFebErrorSummary->get_all_febs();
350  std::map<unsigned int, const LArRawChannel*> channelsToKeep;
351 
352  for (LArRawChannelContainer::const_iterator channel = rawChannelContainer->begin();
353  channel != rawChannelContainer->end(); ++channel)
354  {
355  if (m_energyCut > 0 && TMath::Abs(channel->energy()) < m_energyCut) continue;
356  if (m_bcMask.cellShouldBeMasked(bcCont,channel->channelID())) continue;
357 
358  IdentifierHash hash = m_onlineHelper->channel_Hash(channel->channelID());
359 
360  if (!hash.is_valid()) {
361  ATH_MSG_FATAL ( "Found a LArRawChannel whose HWIdentifier (" << channel->channelID()
362  << ") does not correspond to a valid hash -- returning StatusCode::FAILURE." );
363  return StatusCode::FAILURE;
364  }
365  channelsToKeep[hash] = &*channel;
366  if (m_dumpChannelInfos) {
368  CellInfo* info = nullptr;
369  if (!histCont) {
370  HWIdentifier channelID = channel->hardwareID();
371  const Identifier id = cabling->cnvToIdentifier(channelID);
372  const CaloDetDescrElement* caloDetElement = caloMgr->get_element(id);
373  info = m_dumperTool->makeCellInfo(channelID, id, caloDetElement);
374  if (!info) continue;
376  }
377  }
378  }
379 
380  std::map<HWIdentifier, LArOFIterResultsContainer::const_iterator> ofcResultPosition;
381  if (m_doOFCIter && ofIterResult) {
382  for (LArOFIterResultsContainer::const_iterator ofResult = ofIterResult->begin();
383  ofResult != ofIterResult->end(); ++ofResult)
384  ofcResultPosition[ofResult->getChannelID()] = ofResult;
385 
386  ATH_MSG_DEBUG ( "njpbSizes : " << larDigitContainer->size()
387  << " " << (ofIterResult ? ofIterResult->size() : 0) << " "
388  << rawChannelContainer->size() << " " << channelsToKeep.size() );
389  }
391  const CaloNoise* noiseCDO=*noiseHdl;
392 
393  for (LArDigitContainer::const_iterator digit = larDigitContainer->begin();
394  digit != larDigitContainer->end(); ++digit)
395  {
396  //Check Energy selection
397  IdentifierHash hash = m_onlineHelper->channel_Hash((*digit)->channelID());
398 
399  std::map<unsigned int, const LArRawChannel*>::const_iterator findChannel = channelsToKeep.find(hash);
400  if (findChannel == channelsToKeep.end()) continue;
401  const LArRawChannel* rawChannel = findChannel->second;
402 
403  //Check detector part
404  HWIdentifier channelID = (*digit)->hardwareID();
405  if ((m_onlineHelper->isEMBchannel(channelID) || m_onlineHelper->isEMECchannel(channelID)) && !m_doEM) continue;
406  if (m_onlineHelper->isHECchannel(channelID) && !m_doHEC) continue;
407  if (m_onlineHelper->isFCALchannel(channelID) && !m_doFCAL) continue;
408 
409  //Check gain
410  CaloGain::CaloGain gain=(*digit)->gain();
411  if (gain >= CaloGain::LARNGAIN || m_gains[gain] == false) continue;
412 
413  //Check if connected
414  const bool connected = cabling->isOnlineConnected(channelID);
415  if (!connected && !m_dumpDisc) continue;
416 
417  // Check ADCMax selection
418  float pedestal = pedestals->pedestal(channelID, gain);
419  float pedestalRMS = pedestals->pedestalRMS(channelID, gain);
420  if (m_minADCMax > 0 || m_noiseSignifCut > 0) {
421  const std::vector<short>& samples = (*digit)->samples();
422  double maxValue = -1;
423  for (short sample : samples)
424  if (sample - pedestal > maxValue) maxValue = sample - pedestal;
425  if (m_minADCMax > 0 && fabs(maxValue) < m_minADCMax) continue;
426  if (m_noiseSignifCut > 0 && fabs(maxValue) < pedestalRMS*m_noiseSignifCut) continue;
427  }
428 
429  const Identifier id = cabling->cnvToIdentifier(channelID);
430  const CaloDetDescrElement* caloDetElement = nullptr;
431 
433  CellInfo* info = nullptr;
434  if (!histCont) {
435  if (!caloDetElement) caloDetElement = caloMgr->get_element(id);
436  info = m_dumperTool->makeCellInfo(channelID, id, caloDetElement);
437  if (!info) continue;
438  histCont = m_samples->makeNewHistory(hash, info);
439  }
440  else
441  info = histCont->cell_info();
442 
443  float noise = -1;
444  unsigned int status = 0xFFFFFFFF;
445  if (connected) {
446  if (!caloDetElement) caloDetElement = caloMgr->get_element(id);
447  noise = noiseCDO->getNoise(id,gain);
448  status = bcCont->status(channelID).packedData();
449  HWIdentifier febId = m_onlineHelper->feb_Id(m_onlineHelper->feedthrough_Id(channelID), m_onlineHelper->slot(channelID));
450  std::map<unsigned int,uint16_t>::const_iterator findError = febErrorMap.find(febId.get_identifier32().get_compact());
451  if (findError != febErrorMap.end()) {
452  unsigned int febErrWord = findError->second;
453  status = status & (febErrWord >> 17);
454  }
455  }
456 
457  //std::vector<float> autoCorr;
459  if (m_dumperTool->doShape()) {
460  const LArAutoCorrComplete* autoCorrObj = dynamic_cast<const LArAutoCorrComplete*>(aCorr);
461  if (!autoCorrObj)
462  ATH_MSG_WARNING ( "AutoCorr object is not of type LArAutoCorrComplete!" );
463  else
464  autoCorr = autoCorrObj->autoCorr(channelID, gain);
465  }
466 
467  if (!info->shape((*digit)->gain())) // this happens if doAllShapes is off
468  info->setShape((*digit)->gain(), m_dumperTool->retrieveShape(channelID, gain));
469 
470  if (!eventData) {
471  eventIndex = makeEvent(eventData, run, event, lumiBlock, bunchId); // this happens if doAllEvents is off
472  if (eventIndex < 0) return StatusCode::FAILURE;
473  }
474 
475  DataContainer* data =
476  new DataContainer((*digit)->gain(), (*digit)->samples(),
477  rawChannel->energy(),
478  rawChannel->time()/double(1000),
479  rawChannel->quality(),
480  eventIndex,
481  autoCorr,
482  noise, pedestal, pedestalRMS, status);
483 
484  // std::map<HWIdentifier, LArOFIterResultsContainer::const_iterator>::const_iterator findResult = ofcResultPosition.find(channelID);
485 // if (findResult != ofcResultPosition.end()) {
486 // LArOFIterResultsContainer::const_iterator ofResult = findResult->second;
487 // if (ofResult->getValid() && ofResult->getConverged())
488 // data->setADCMax(ofResult->getAmplitude());
489 // }
490 // else
491 // msg() << MSG::INFO << "OFResult for channel 0x" << MSG::hex << channelID << MSG::dec
492 // << " not found. (size was " << ofcResultPosition.size() << ")" << endmsg;
493 
494 
495  const auto ramp=adc2MeV->ADC2MEV(channelID,gain); //dudu
496  data->setADCMax(rawChannel->energy()/ramp[1]); //pow(ADCPeak,i); //dudu
497 
498 
499  histCont->add(data);
500  }
501 
502  if(m_doSC) {
503  std::map<unsigned int, const LArRawSC*> scToKeep;
504 
506  if(!hdlSC.isValid()) {
507  ATH_MSG_WARNING( "Unable to retrieve LArRawSCContainer with key " << m_rawscKey << " from EventStore. " );
508  return StatusCode::SUCCESS;
509  } else
510  ATH_MSG_DEBUG( "Got LArRawSCContainer with key " << m_rawscKey.key() );
511  const LArRawSCContainer* etcontainer = &(*hdlSC);
512 
513  if (etcontainer->empty()) {
514  ATH_MSG_WARNING ( "LArRawSCContainer with key=" << m_rawscKey.key() << " is empty!" );
515  return StatusCode::SUCCESS;
516  }
517 
519  const LArOnOffIdMapping* cablingSC=*cablingHdl;
520  if(!cablingSC) {
521  ATH_MSG_ERROR( "Do not have cabling object LArOnOffIdMapping" );
522  return StatusCode::FAILURE;
523  }
524 
526  ATH_CHECK(caloMgrHandle.isValid());
527  const CaloSuperCellDetDescrManager* caloMgrSC = *caloMgrHandle;
528 
530  const ILArPedestal* pedestalsSC=*pedHdl;
531  if (!pedestals) {
532  ATH_MSG_ERROR("Failed to retrieve pedestal cond obj for SC");
533  return StatusCode::FAILURE;
534  }
535 
536  std::map<unsigned int, std::pair<float,float> > channelsToKeepSC;
537 
538  for (const LArRawSC* rawSC : *hdlSC) {
539 
540  const std::vector<unsigned short>& bcids = rawSC->bcids();
541  const std::vector<int>& energies = rawSC->energies();
542  const std::vector<int>& tauenergies = rawSC->tauEnergies();
543  const std::vector<bool>& satur = rawSC->satur();
544 
545  // Look for bcid:
546  float scEne = 0;
547  float scTim = -99999999.;
548 
549  const size_t nBCIDs = bcids.size();
550  size_t i = 0;
551  for (i = 0; i < nBCIDs && bcids[i] != bunchId; i++)
552  ;
553  if(i==nBCIDs) continue;
554  if (satur[i]) continue;
555 
556  scEne = energies[i];
557  if (m_energyCutSC > 0 && TMath::Abs(scEne) < m_energyCut) continue;
558  if (m_bcMaskSC.cellShouldBeMasked(bcCont,rawSC->hardwareID())) continue;
559 
560  IdentifierHash hash = m_onlineHelperSC->channel_Hash(rawSC->hardwareID());
561 
562  if (!hash.is_valid()) {
563  ATH_MSG_FATAL ( "Found a LArRawSC whose HWIdentifier (" << rawSC->hardwareID()
564  << ") does not correspond to a valid hash -- returning StatusCode::FAILURE." );
565  return StatusCode::FAILURE;
566  }
567 
568  if(tauenergies.size() && scEne != 0) scTim = tauenergies[i] / scEne;
569  channelsToKeepSC[hash] = std::make_pair(scEne, scTim);
570 
571  if (m_dumpChannelInfos) {
573  CellInfo* info = nullptr;
574  if (!histCont) {
575  HWIdentifier channelID = rawSC->hardwareID();
576  const Identifier id = cablingSC->cnvToIdentifier(channelID);
577  const CaloDetDescrElement* caloDetElement = caloMgrSC->get_element(id);
578  info = m_dumperToolSC->makeCellInfo(channelID, id, caloDetElement);
579  if (!info) continue;
581  }
582  }
583  }
584 
585 
587  if(!hdlSCDigit.isValid()) {
588  ATH_MSG_WARNING( "Unable to retrieve LArDigitContainer with key " << m_digitsKeySC << " from DetectorStore. " );
589  return StatusCode::SUCCESS;
590  } else
591  ATH_MSG_DEBUG( "Got LArDigitContainer with key " << m_digitsKeySC.key() );
592  const LArDigitContainer* larSCDigitContainer = &(*hdlSCDigit);
593 
594  if (larSCDigitContainer->empty()) {
595  ATH_MSG_WARNING ( "LArDigitContainer with key=" << m_digitsKeySC.key() << " is empty!" );
596  m_nNoDigitsSC++;
597  return StatusCode::SUCCESS;
598  }
599 
600  for (LArDigitContainer::const_iterator digit = larSCDigitContainer->begin();
601  digit != larSCDigitContainer->end(); ++digit)
602  {
603  //Check Energy selection
604  IdentifierHash hash = m_onlineHelperSC->channel_Hash((*digit)->channelID());
605 
606  std::map<unsigned int, std::pair<float,float> >::const_iterator findChannel = channelsToKeepSC.find(hash);
607  if (findChannel == channelsToKeepSC.end()) continue;
608 
609  // Check ADCMax selection
610  float pedestal = pedestalsSC->pedestal((*digit)->channelID(), 0);
611  if (m_minADCMaxSC > 0 ) {
612  const std::vector<short>& samples = (*digit)->samples();
613  double maxValue = -1;
614  for (short sample : samples)
615  if (sample - pedestal > maxValue) maxValue = sample - pedestal;
616  if (fabs(maxValue) < m_minADCMax) continue;
617  }
618 
619  const Identifier id = cablingSC->cnvToIdentifier((*digit)->channelID());
620  const CaloDetDescrElement* caloDetElement = nullptr;
621 
623  CellInfo* info = nullptr;
624  if (!histCont) {
625  if (!caloDetElement) caloDetElement = caloMgrSC->get_element(id);
626  info = m_dumperToolSC->makeCellInfo((*digit)->channelID(), id, caloDetElement);
627  if (!info) continue;
628  histCont = m_samples->makeNewHistorySC(hash, info);
629  }
630  else
631  info = histCont->cell_info();
632 
633  if (!eventData) {
634  eventIndex = makeEvent(eventData, run, event, lumiBlock, bunchId); // this happens if doAllEvents is off
635  if (eventIndex < 0) return StatusCode::FAILURE;
636  }
637 
638  DataContainer* data =
639  new DataContainer((*digit)->gain(), (*digit)->samples(),
640  findChannel->second.first,
641  findChannel->second.second/double(1000),
642  -1,
643  eventIndex,
644  LArVectorProxy(),
645  -1, pedestal);
646 
647 
648  histCont->add(data);
649  }
650 
651  } //m_doSC
652 
653  return StatusCode::SUCCESS;
654 }
655 
656 
658 {
659  m_samples->addRun(m_runData.release());
660  return StatusCode::SUCCESS;
661 }
662 
663 
665 {
666  ATH_MSG_DEBUG ("in finalize() ");
667 
668  if (m_prescale>1) ATH_MSG_INFO("Prescale dropped " << m_nPrescaledAway << "/" << m_count << " events");
669  if (m_onlyEmptyBC) ATH_MSG_INFO("Dropped " << m_nWrongBunchGroup << "/" << m_count << " events b/c of wrong bunch group");
670  ATH_MSG_INFO("Dropped " << m_nLArError << "/" << m_count << " Events b/c of LAr Veto (Noise burst or corruption)");
671 
672 
673  int n = 0;
674  for (unsigned int i = 0; i < m_samples->nChannels(); i++)
675  if (m_samples->historyContainer(i)) {
676  if (m_samples->historyContainer(i)->cellInfo() == nullptr)
677  ATH_MSG_INFO ( "Cell with no cellInfo at index " << i << " !!" );
678  //else if (m_samples->historyContainer(i)->cellInfo()->shape() == 0)
679  //msg() << MSG::INFO << "Cell with no ShapeInfo at index " << i << " !!" << endmsg;
680  //msg() << MSG::INFO << "Non-zero cell at index " << i << " " << m_samples->shape(i)->size() << endmsg;
681  n++;
682  }
683 
684  //for (unsigned int i = 0; i < m_samples->nEvents(); i++) {
685  // msg() << MSG::INFO << "Event " << i << " = "
686  // << m_samples->eventData(i)->run() << " " << m_samples->eventData(i)->event()
687  // << "trigger = " << m_samples->eventData(i)->triggers() << ", nRoIs = " << m_samples->eventData(i)->nRoIs() << endmsg;
688  // }
689  ATH_MSG_INFO ( "Non-zero cells = " << n << ", footprint = " << m_samples->footprint() );
690  ATH_MSG_INFO ( "Writing..." );
691 
692  if (!m_doStream) {
693  m_samples->writeTrees(m_fileName.c_str());
694 /* TFile* f = TFile::Open(m_fileName.c_str(), "RECREATE");
695  msg() << MSG::INFO << "Writing (2)..." << endmsg;
696  f->WriteObjectAny(m_samples, "Container", "LArSamples");
697  msg() << MSG::INFO << "Closing..." << endmsg;
698  f->Close();
699  msg() << MSG::INFO << "Deleting..." << endmsg;
700  delete m_samples;*/
701  msg() << MSG::INFO << "Done!" << endmsg;
702  }
703 
704  return StatusCode::SUCCESS;
705 }
706 
707 
709  int run, int event,
710  int lumiBlock, int bunchXing) const
711 {
712  std::vector<unsigned int> triggerWords;
713  if (m_doTrigger) {
714  const ROIB::RoIBResult* l1Result = nullptr;
715  if (evtStore()->retrieve(l1Result).isFailure() || !l1Result) {
716  ATH_MSG_FATAL ( "Could not retrieve RoIBResult!" );
717  return -1;
718  }
719  const std::vector<ROIB::CTPRoI> tav = l1Result->cTPResult().TAV();
720  for (const ROIB::CTPRoI& word : tav)
721  triggerWords.push_back(word.roIWord());
722 
723  for (const std::pair<const TString, unsigned int>& p : m_runData->triggerConfig()) {
724  while (triggerWords.size() <= p.second/32) triggerWords.push_back(0);
725  if (m_trigDec->isPassed(p.first.Data())) {
726  triggerWords[p.second/32] |= (0x1 << (p.second % 32));
727  //msg() << MSG::INFO << "Trigger line " << p.first.Data() << " passed" << endmsg;
728  }
729  }
730  //msg() << MSG::INFO << "Trigger words : ";
731  //for (unsigned int i = 0; i < triggerWords.size(); i++) msg() << MSG::INFO << triggerWords[i] << " ";
732  //msg() << MSG::INFO << endmsg;
733  }
734 
735  eventData = new EventData(event, 0, lumiBlock, bunchXing);
736  if (m_runData->run() == 0) m_runData->setRun(run);
737  eventData->setRunData(m_runData.get());
738  eventData->setTriggerData(triggerWords);
739  if (m_doRoIs) {
740  //msg() << MSG::INFO << "Filling RoI list" << endmsg;
741  for (const Trig::ChainGroup* group : m_triggerGroups) {
742  std::vector<Trig::Feature<TrigRoiDescriptor> > roIs = group->features().get<TrigRoiDescriptor>();
743  for (const Trig::Feature<TrigRoiDescriptor>& roI : roIs) {
744  //msg() << MSG::INFO << "Found an roi for chain ";
745  //for (unsigned int i = 0; i < group->getListOfTriggers().size(); i++) cout << group->getListOfTriggers()[i] << " ";
746  //cout << "@ " << roI.cptr()->eta() << ", " << roI.cptr()->phi() << ", TE = "
747  // << roI.te()->getId() << " " << Trig::getTEName(*roI.te()) << " with label " << roI.label() << endmsg;
748  eventData->addRoI(roI.cptr()->eta(), roI.cptr()->phi(), group->getListOfTriggers()[0].c_str(), roI.label().c_str());
749  //msg() << MSG::INFO << "nRoIs so far = " << eventData->nRoIs() << endmsg;
750  }
751  }
752  }
753  return m_samples->addEvent(eventData);
754 }
grepfile.info
info
Definition: grepfile.py:38
python.PyKernel.retrieve
def retrieve(aClass, aKey=None)
Definition: PyKernel.py:110
RunData.h
LArShapeDumper::m_dumperTool
ToolHandle< ILArShapeDumperTool > m_dumperTool
Definition: LArShapeDumper.h:104
ROIB::CTPRoI
ROIB::CTPRoI contains a RoI delivered by the CTP.
Definition: CTPRoI.h:28
LArRawSC
Liquid Argon SuperCell raw data.
Definition: LArRawSC.h:19
ILArPedestal::pedestal
virtual float pedestal(const HWIdentifier &id, int gain) const =0
LArShapeDumper::m_gains
bool m_gains[CaloGain::LARNGAIN]
Definition: LArShapeDumper.h:153
LArShapeDumper::m_noiseCDOKey
SG::ReadCondHandleKey< CaloNoise > m_noiseCDOKey
Definition: LArShapeDumper.h:129
data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
LArADC2MeV::ADC2MEV
const LArVectorProxy ADC2MEV(const HWIdentifier &id, int gain) const
Definition: LArADC2MeV.h:32
Trig::Feature
Definition: Feature.h:112
ATH_MSG_FATAL
#define ATH_MSG_FATAL(x)
Definition: AthMsgStreamMacros.h:34
DataModel_detail::const_iterator
Const iterator class for DataVector/DataList.
Definition: DVLIterator.h:82
TrigConf::TriggerItem::ctpId
int ctpId() const
Definition: TriggerItem.h:34
LArOnlineID_Base::channel_Hash
IdentifierHash channel_Hash(HWIdentifier channelId) const
Create channel_hash from channel_Id.
Definition: LArOnlineID_Base.cxx:1632
LArFebErrorSummary::get_all_febs
const std::map< unsigned int, uint16_t > & get_all_febs() const
get all febs with error
Definition: LArFebErrorSummary.cxx:47
BunchCrossingCondData
Definition: BunchCrossingCondData.h:23
maxValue
#define maxValue(current, test)
Definition: CompoundLayerMaterialCreator.h:22
runLayerRecalibration.chain
chain
Definition: runLayerRecalibration.py:175
LArShapeDumper::m_doOFCIter
bool m_doOFCIter
Definition: LArShapeDumper.h:150
LArSamples::EventData::setRunData
void setRunData(const RunData *runData)
Definition: LArCalorimeter/LArCafJobs/LArCafJobs/EventData.h:75
plotting.yearwise_efficiency.channel
channel
Definition: yearwise_efficiency.py:24
SG::ReadCondHandle
Definition: ReadCondHandle.h:44
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
ROIB::RoIBResult
Class holding the LVL1 RoIB result build by the RoIBuilder.
Definition: RoIBResult.h:47
LArShapeDumper::m_gainSpec
std::string m_gainSpec
Definition: LArShapeDumper.h:100
RoIBResult.h
LArShapeDumper::m_bcMaskSC
LArBadChannelMask m_bcMaskSC
Definition: LArShapeDumper.h:109
LArSamples::DataStore::historyContainer
const HistoryContainer * historyContainer(unsigned int i) const
Definition: LArCalorimeter/LArCafJobs/LArCafJobs/DataStore.h:42
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:67
AthCommonDataStore< AthCommonMsg< Algorithm > >::declareProperty
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
Definition: AthCommonDataStore.h:145
LArShapeDumper::execute
virtual StatusCode execute() override
Definition: LArShapeDumper.cxx:215
LArRawSCContainer
Container class for LArRawSC.
Definition: LArRawSCContainer.h:17
LArBadChannel.h
ILArPedestal
Definition: ILArPedestal.h:12
LArBadXCont
Conditions-Data class holding LAr Bad Channel or Bad Feb information.
Definition: LArBadChannelCont.h:28
LArShapeDumper::m_bcMask
LArBadChannelMask m_bcMask
Definition: LArShapeDumper.h:107
LArShapeDumper::LArShapeDumper
LArShapeDumper(const std::string &name, ISvcLocator *pSvcLocator)
Definition: LArShapeDumper.cxx:42
m_count
std::uint64_t m_count
the number of times the timer has been started
Definition: ColumnarPhysliteTest.cxx:61
CaloDetDescrElement
This class groups all DetDescr information related to a CaloCell. Provides a generic interface for al...
Definition: Calorimeter/CaloDetDescr/CaloDetDescr/CaloDetDescrElement.h:66
CaloCondBlobAlgs_fillNoiseFromASCII.gain
gain
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:110
CaloDetDescrManager_Base::get_element
const CaloDetDescrElement * get_element(const Identifier &cellId) const
get element by its identifier
Definition: CaloDetDescrManager.cxx:159
ReadCellNoiseFromCool.cabling
cabling
Definition: ReadCellNoiseFromCool.py:154
LArSamples::DataStore::addEvent
unsigned int addEvent(EventData *eventData)
Definition: LArCalorimeter/LArCafJobs/src/DataStore.cxx:72
LArPhysWave.h
LArOnlineID_Base::slot
int slot(const HWIdentifier id) const
Return the slot number of a hardware cell identifier: slot = [1,15] Slot-ID in top part of the crat...
Definition: LArOnlineID_Base.cxx:1957
LArBadChannelMask::buildBitMask
StatusCode buildBitMask(const std::vector< std::string > &problemsToMask, MsgStream &msg)
Definition: LArBadChannelMask.cxx:10
LArRawChannel::quality
uint16_t quality() const
Definition: LArRawChannel.h:174
TrigRoiDescriptor
nope - should be used for standalone also, perhaps need to protect the class def bits #ifndef XAOD_AN...
Definition: TrigRoiDescriptor.h:56
LArSamples
Definition: AbsShape.h:24
LArShapeDumper.h
LArShapeDumper::initialize
virtual StatusCode initialize() override
Definition: LArShapeDumper.cxx:86
LArShapeDumper::m_nNoDigits
unsigned m_nNoDigits
Definition: LArShapeDumper.h:92
LArShapeComplete.h
LArSamples::EventData::addRoI
void addRoI(float eta, float phi, const char *name="", const char *label="")
Definition: LArCalorimeter/LArCafJobs/LArCafJobs/EventData.h:73
ATH_MSG_VERBOSE
#define ATH_MSG_VERBOSE(x)
Definition: AthMsgStreamMacros.h:28
SG::VarHandleKey::key
const std::string & key() const
Return the StoreGate ID for the referenced object.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:141
checkRpcDigits.digit
digit
Definition: checkRpcDigits.py:186
LArShapeDumper::m_BCKeySC
SG::ReadCondHandleKey< LArBadChannelCont > m_BCKeySC
Definition: LArShapeDumper.h:127
LArShapeDumper::m_triggerNames
std::vector< std::string > m_triggerNames
Definition: LArShapeDumper.h:102
CaloNoise::getNoise
float getNoise(const IdentifierHash h, const int gain) const
Accessor by IdentifierHash and gain.
Definition: CaloNoise.h:34
LArShapeDumper::m_nLArError
unsigned m_nLArError
Definition: LArShapeDumper.h:91
LArBadChannelMask::cellShouldBeMasked
bool cellShouldBeMasked(const LArBadChannelCont *bcCont, const HWIdentifier &hardwareId) const
Definition: LArBadChannelMask.h:42
CaloGain::LARNGAIN
@ LARNGAIN
Definition: CaloGain.h:19
LArShapeDumper::m_nPrescaledAway
unsigned m_nPrescaledAway
Definition: LArShapeDumper.h:90
xAOD::EventInfo_v1::LAr
@ LAr
The LAr calorimeter.
Definition: EventInfo_v1.h:335
LArShapeDumper::m_channelsKey
SG::ReadHandleKey< LArRawChannelContainer > m_channelsKey
Definition: LArShapeDumper.h:113
LArOFIterResultsContainer.h
ShapeInfo.h
LArShapeDumper::m_count
unsigned m_count
Definition: LArShapeDumper.h:87
AthCommonDataStore< AthCommonMsg< Algorithm > >::detStore
const ServiceHandle< StoreGateSvc > & detStore() const
The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
Definition: AthCommonDataStore.h:95
xAOD::EventInfo_v1::Error
@ Error
The sub-detector issued an error.
Definition: EventInfo_v1.h:349
CaloSuperCellDetDescrManager
Definition: CaloDetDescrManager.h:490
LArShapeDumper::m_cablingKeySC
SG::ReadCondHandleKey< LArOnOffIdMapping > m_cablingKeySC
Definition: LArShapeDumper.h:124
ILArAutoCorr
This class defines the interface for accessing AutoCorrelation parameters for each channel @stereotyp...
Definition: ILArAutoCorr.h:29
PrepareReferenceFile.regex
regex
Definition: PrepareReferenceFile.py:43
LArShapeDumper::m_caloType
std::string m_caloType
Definition: LArShapeDumper.h:96
LArShapeDumper::m_problemsToMaskSC
Gaudi::Property< std::vector< std::string > > m_problemsToMaskSC
Definition: LArShapeDumper.h:110
LArShapeDumper::m_doAllEvents
bool m_doAllEvents
Definition: LArShapeDumper.h:151
CaloDetDescriptor.h
Definition of CaloDetDescriptor.
LArOnlineID_Base::isFCALchannel
bool isFCALchannel(const HWIdentifier id) const
Definition: LArOnlineID_Base.cxx:1653
LArSamples::DataStore::footprint
double footprint() const
Definition: LArCalorimeter/LArCafJobs/src/DataStore.cxx:133
LArAutoCorrComplete
This class implements the ILArAutoCorr interface.
Definition: LArAutoCorrComplete.h:26
DataContainer.h
AthCommonDataStore< AthCommonMsg< Algorithm > >::evtStore
ServiceHandle< StoreGateSvc > & evtStore()
The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
Definition: AthCommonDataStore.h:85
LArSamples::DataStore::hist_cont
HistoryContainer *& hist_cont(unsigned int i)
Definition: LArCalorimeter/LArCafJobs/LArCafJobs/DataStore.h:72
python.utils.AtlRunQueryDQUtils.p
p
Definition: AtlRunQueryDQUtils.py:210
LArOnlineID::isEMECchannel
bool isEMECchannel(const HWIdentifier id) const override final
Definition: LArOnlineID.cxx:763
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
LArDigit.h
LArShapeDumper::m_problemsToMask
Gaudi::Property< std::vector< std::string > > m_problemsToMask
Definition: LArShapeDumper.h:108
event
POOL::TEvent event(POOL::TEvent::kClassAccess)
FullCPAlgorithmsTest_eljob.sample
sample
Definition: FullCPAlgorithmsTest_eljob.py:116
lumiFormat.i
int i
Definition: lumiFormat.py:85
LArRawChannel
Liquid Argon ROD output object base class.
Definition: LArRawChannel.h:40
LArShapeDumper::m_fileName
std::string m_fileName
Definition: LArShapeDumper.h:84
beamspotman.n
n
Definition: beamspotman.py:731
endmsg
#define endmsg
Definition: AnalysisConfig_Ntuple.cxx:63
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
LArOFIterResultsContainer
Definition: LArOFIterResultsContainer.h:14
LArShapeDumper::m_adc2mevKey
SG::ReadCondHandleKey< LArADC2MeV > m_adc2mevKey
Definition: LArShapeDumper.h:119
Amg::transform
Amg::Vector3D transform(Amg::Vector3D &v, Amg::Transform3D &tr)
Transform a point from a Trasformation3D.
Definition: GeoPrimitivesHelpers.h:156
LArSamples::DataStore::nChannels
unsigned int nChannels() const
Definition: LArCalorimeter/LArCafJobs/LArCafJobs/DataStore.h:56
LArShapeDumper::m_rawscKey
SG::ReadHandleKey< LArRawSCContainer > m_rawscKey
Definition: LArShapeDumper.h:116
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
CHECK
#define CHECK(...)
Evaluate an expression and check for errors.
Definition: Control/AthenaKernel/AthenaKernel/errorcheck.h:422
ITk::EventData
InDet::SiSpacePointsSeedMakerEventData EventData
Definition: ITkSiSpacePointsSeedMaker.h:63
LArSamples::EventData::setTriggerData
void setTriggerData(const std::vector< unsigned int > &words)
Definition: EventData.cxx:75
run
Definition: run.py:1
LArShapeDumper::m_onlineHelperSC
const LArOnline_SuperCellID * m_onlineHelperSC
Definition: LArShapeDumper.h:146
SG::VarHandleKey::initialize
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:103
LArShapeDumper::m_minADCMaxSC
int m_minADCMaxSC
Definition: LArShapeDumper.h:99
LArShapeDumper::m_minADCMax
int m_minADCMax
Definition: LArShapeDumper.h:99
LArAutoCorrComplete.h
LArShapeDumper::m_maxChannels
unsigned m_maxChannels
Definition: LArShapeDumper.h:88
LArSamples::HistoryContainer::cell_info
CellInfo * cell_info() const
Definition: HistoryContainer.h:57
EventData.h
AthAlgorithm
Definition: AthAlgorithm.h:47
SG::ReadHandle::isValid
virtual bool isValid() override final
Can the handle be successfully dereferenced?
LArOnlineID_Base::feb_Id
HWIdentifier feb_Id(int barrel_ec, int pos_neg, int feedthrough, int slot) const
Create feb_Id from fields.
Definition: LArOnlineID_Base.cxx:1479
CaloNoise
Definition: CaloNoise.h:16
Trig::ChainGroup
Definition: ChainGroup.h:51
LArShapeDumper::m_doSC
bool m_doSC
Definition: LArShapeDumper.h:152
LArShapeDumper::m_digitsKey
SG::ReadHandleKey< LArDigitContainer > m_digitsKey
Definition: LArShapeDumper.h:112
ILArShape.h
LArShapeDumper::m_energyCut
double m_energyCut
Definition: LArShapeDumper.h:97
LArSamples::DataStore::makeNewHistorySC
HistoryContainer * makeNewHistorySC(const IdentifierHash &hash, CellInfo *info)
Definition: LArCalorimeter/LArCafJobs/src/DataStore.cxx:48
ROIB::RoIBResult::cTPResult
const CTPResult & cTPResult() const
Gets the CTP part of the L1 RDO.
Definition: RoIBResult.cxx:60
LArShapeDumper::m_doHEC
bool m_doHEC
Definition: LArShapeDumper.h:152
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
LArShapeDumper::m_dumperToolSC
ToolHandle< ILArShapeDumperTool > m_dumperToolSC
Definition: LArShapeDumper.h:105
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
LArShapeDumper::m_nNoDigitsSC
unsigned m_nNoDigitsSC
Definition: LArShapeDumper.h:93
LArSamples::DataStore
storage of the time histories of all the cells
Definition: LArCalorimeter/LArCafJobs/LArCafJobs/DataStore.h:32
CaloGain::LARHIGHGAIN
@ LARHIGHGAIN
Definition: CaloGain.h:18
LArSamples::CellInfo
Definition: CellInfo.h:31
LArOnlineID_Base::isEMBchannel
bool isEMBchannel(const HWIdentifier id) const
Definition: LArOnlineID_Base.cxx:1648
EventInfo.h
LArShapeDumper::m_pedestalKey
SG::ReadCondHandleKey< ILArPedestal > m_pedestalKey
Definition: LArShapeDumper.h:134
python.LumiBlobConversion.pos
pos
Definition: LumiBlobConversion.py:18
CaloGain::CaloGain
CaloGain
Definition: CaloGain.h:11
xAOD::EventInfo_v1
Class describing the basic event information.
Definition: EventInfo_v1.h:43
LArShapeDumper::m_digitsKeySC
SG::ReadHandleKey< LArDigitContainer > m_digitsKeySC
Definition: LArShapeDumper.h:115
ROIB::CTPResult::TAV
const std::vector< CTPRoI > TAV() const
get trigger result after veto
LArSamples::HistoryContainer::cellInfo
const CellInfo * cellInfo() const
Definition: HistoryContainer.h:43
python.copyTCTOutput.chains
chains
Definition: copyTCTOutput.py:81
DataVector::end
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
LArShapeDumper::m_pedestalKeySC
SG::ReadCondHandleKey< ILArPedestal > m_pedestalKeySC
Definition: LArShapeDumper.h:135
LArADC2MeV
Definition: LArADC2MeV.h:21
LArShapeDumper::start
virtual StatusCode start() override
Definition: LArShapeDumper.cxx:144
CaloGain::LARMEDIUMGAIN
@ LARMEDIUMGAIN
Definition: CaloGain.h:18
LArShapeDumper::m_bcDataKey
SG::ReadCondHandleKey< BunchCrossingCondData > m_bcDataKey
Definition: LArShapeDumper.h:131
LArShapeDumper::m_caloMgrKey
SG::ReadCondHandleKey< CaloDetDescrManager > m_caloMgrKey
Definition: LArShapeDumper.h:138
LArShapeDumper::m_doRoIs
bool m_doRoIs
Definition: LArShapeDumper.h:151
LArSamples::DataContainer
Definition: DataContainer.h:25
CaloLCW_tf.group
group
Definition: CaloLCW_tf.py:28
LArSamples::DataStore::addRun
unsigned int addRun(RunData *eventData)
Definition: LArCalorimeter/LArCafJobs/src/DataStore.cxx:79
CaloDetDescrManager
This class provides the client interface for accessing the detector description information common to...
Definition: CaloDetDescrManager.h:473
CaloCondBlobAlgs_fillNoiseFromASCII.hash
dictionary hash
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:109
LArShapeDumper::m_runData
std::unique_ptr< LArSamples::RunData > m_runData
Definition: LArShapeDumper.h:158
LArShapeDumper::m_samples
LArSamples::DataStore * m_samples
Definition: LArShapeDumper.h:157
LArShapeDumper::finalize
virtual StatusCode finalize() override
Definition: LArShapeDumper.cxx:664
LArSamples::HistoryContainer
Definition: HistoryContainer.h:29
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
LArShapeDumper::m_doStream
bool m_doStream
Definition: LArShapeDumper.h:150
LArFebErrorSummary
Holds information from the FEB Error Summary.
Definition: LArFebErrorSummary.h:23
LArSamples::HistoryContainer::add
void add(const DataContainer *data)
append data (takes ownership)
Definition: HistoryContainer.h:46
LArShapeDumper::m_dumpChannelInfos
bool m_dumpChannelInfos
Definition: LArShapeDumper.h:151
LArShapeDumper::m_cablingKey
SG::ReadCondHandleKey< LArOnOffIdMapping > m_cablingKey
Definition: LArShapeDumper.h:123
LArShapeDumper::m_doFCAL
bool m_doFCAL
Definition: LArShapeDumper.h:152
AthCommonMsg< Algorithm >::msg
MsgStream & msg() const
Definition: AthCommonMsg.h:24
LArShapeDumper::stop
virtual StatusCode stop() override
Definition: LArShapeDumper.cxx:657
LArShapeDumper::m_random
TRandom m_random
Definition: LArShapeDumper.h:160
LArShapeDumper::m_BCKey
SG::ReadCondHandleKey< LArBadChannelCont > m_BCKey
Definition: LArShapeDumper.h:126
LArRawChannel::time
int time() const
Definition: LArRawChannel.h:170
LArNewCalib_DelayDump_OFC_Cali.idx
idx
Definition: LArNewCalib_DelayDump_OFC_Cali.py:69
LArDigitContainer
Container class for LArDigit.
Definition: LArDigitContainer.h:24
LArShapeDumper::m_prescale
int m_prescale
Definition: LArShapeDumper.h:86
LArShapeDumper::m_energyCutSC
double m_energyCutSC
Definition: LArShapeDumper.h:98
LArRawChannel::energy
int energy() const
Definition: LArRawChannel.h:166
LArShapeDumper::m_triggerGroups
std::vector< const Trig::ChainGroup * > m_triggerGroups
Definition: LArShapeDumper.h:159
TrigRoiDescriptor.h
merge.status
status
Definition: merge.py:17
LArFebErrorSummary.h
LArShapeDumper::m_onlyEmptyBC
bool m_onlyEmptyBC
Definition: LArShapeDumper.h:155
LArShapeDumper::m_doTrigger
bool m_doTrigger
Definition: LArShapeDumper.h:150
LArShapeDumper::m_nWrongBunchGroup
unsigned m_nWrongBunchGroup
Definition: LArShapeDumper.h:89
TileAANtupleConfig.rawChannelContainer
rawChannelContainer
Definition: TileAANtupleConfig.py:120
LArShapeDumper::m_caloSuperCellMgrKey
SG::ReadCondHandleKey< CaloSuperCellDetDescrManager > m_caloSuperCellMgrKey
Definition: LArShapeDumper.h:142
LArOnlineID::isHECchannel
bool isHECchannel(const HWIdentifier id) const override final
Definition: LArOnlineID.cxx:723
LArSamples::DataStore::hist_cont_sc
HistoryContainer *& hist_cont_sc(unsigned int i)
Definition: LArCalorimeter/LArCafJobs/LArCafJobs/DataStore.h:73
LArShapeDumper::m_onlineHelper
const LArOnlineID * m_onlineHelper
Definition: LArShapeDumper.h:145
Trig::ChainGroup::getListOfTriggers
std::vector< std::string > getListOfTriggers() const
Definition: ChainGroup.cxx:467
CaloGain::LARLOWGAIN
@ LARLOWGAIN
Definition: CaloGain.h:18
LArShapeDumper::m_trigDec
PublicToolHandle< Trig::TrigDecisionTool > m_trigDec
Definition: LArShapeDumper.h:121
xAOD::lumiBlock
setTeId lumiBlock
Definition: L2StandAloneMuon_v1.cxx:327
ILArPedestal::pedestalRMS
virtual float pedestalRMS(const HWIdentifier &id, int gain) const =0
access to RMS of Pedestal index by Identifier, and gain setting
LArShapeDumper::m_doEM
bool m_doEM
Definition: LArShapeDumper.h:152
LArShapeDumper::m_dumpDisc
bool m_dumpDisc
Definition: LArShapeDumper.h:101
LArShapeDumper::m_acorrKey
SG::ReadCondHandleKey< ILArAutoCorr > m_acorrKey
Definition: LArShapeDumper.h:137
LArSamples::EventData
Definition: LArCalorimeter/LArCafJobs/LArCafJobs/EventData.h:29
CellInfo.h
StoreGateSvc.h
DataVector::size
size_type size() const noexcept
Returns the number of elements in the collection.
LArShapeDumper::makeEvent
int makeEvent(LArSamples::EventData *&eventData, int run, int event, int lumiBlock, int bunchXing) const
Definition: LArShapeDumper.cxx:708
LArShapeDumper::~LArShapeDumper
~LArShapeDumper()
Definition: LArShapeDumper.cxx:81
LArShapeDumper::m_doAllLvl1
bool m_doAllLvl1
Definition: LArShapeDumper.h:151
DataVector::empty
bool empty() const noexcept
Returns true if the collection is empty.
LArSamples::DataStore::writeTrees
bool writeTrees(const char *fileName)
Definition: LArCalorimeter/LArCafJobs/src/DataStore.cxx:152
LArAutoCorrComplete::autoCorr
virtual AutoCorrRef_t autoCorr(const HWIdentifier &CellID, int gain) const
Definition: LArAutoCorrComplete.cxx:29
WriteCellNoiseToCool.noise
noise
Definition: WriteCellNoiseToCool.py:380
TrigConf::TriggerItem
Definition: TriggerItem.h:25
match
bool match(std::string s1, std::string s2)
match the individual directories of two strings
Definition: hcg.cxx:356
LArShapeDumper::m_noiseSignifCut
double m_noiseSignifCut
Definition: LArShapeDumper.h:97
LArOnlineID_Base::feedthrough_Id
HWIdentifier feedthrough_Id(int barrel_ec, int pos_neg, int feedthrough) const
Create a feedthrough identifier from fields.
Definition: LArOnlineID_Base.cxx:1400
DataVector::begin
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
BunchCrossingCondData::isFilled
bool isFilled(const bcid_type bcid) const
The simplest query: Is the bunch crossing filled or not?
Definition: BunchCrossingCondData.h:339
LArVectorProxy
Proxy for accessing a range of float values like a vector.
Definition: LArVectorProxy.h:38
LArRawChannelContainer
Container for LArRawChannel (IDC using LArRawChannelCollection)
Definition: LArRawChannelContainer.h:26
Identifier
Definition: IdentifierFieldParser.cxx:14
LArSamples::DataStore::makeNewHistory
HistoryContainer * makeNewHistory(const IdentifierHash &hash, CellInfo *info)
append data (takes ownership of everything)
Definition: LArCalorimeter/LArCafJobs/src/DataStore.cxx:40
EventInfoCnvParams::eventIndex
thread_local event_number_t eventIndex
Definition: IEvtIdModifierSvc.h:34