CMS 3D CMS Logo

TrigPrimTask.cc
Go to the documentation of this file.
2 
5 
9 
12 
13 #include <iomanip>
14 
15 namespace ecaldqm {
17  : DQWorkerTask(),
18  realTps_(nullptr),
19  runOnEmul_(false),
20  // HLTCaloPath_(""),
21  // HLTMuonPath_(""),
22  // HLTCaloBit_(false),
23  // HLTMuonBit_(false),
24  bxBinEdges_{{1, 271, 541, 892, 1162, 1432, 1783, 2053, 2323, 2674, 2944, 3214, 3446, 3490, 3491, 3565}},
25  bxBin_(0.),
26  towerReadouts_(),
27  lhcStatusInfoCollectionTag_() {}
28 
30  runOnEmul_ = _params.getUntrackedParameter<bool>("runOnEmul");
31  if (!runOnEmul_) {
32  MEs_.erase(std::string("EtMaxEmul"));
33  MEs_.erase(std::string("EmulMaxIndex"));
34  MEs_.erase(std::string("MatchedIndex"));
35  MEs_.erase(std::string("EtEmulError"));
36  MEs_.erase(std::string("FGEmulError"));
37  MEs_.erase(std::string("RealvEmulEt"));
38  }
39  lhcStatusInfoCollectionTag_ = _params.getUntrackedParameter<edm::InputTag>(
40  "lhcStatusInfoCollectionTag", edm::InputTag("tcdsDigis", "tcdsRecord"));
41  }
42 
44  if (runOnEmul_)
46  }
47 
48  void TrigPrimTask::beginRun(edm::Run const&, edm::EventSetup const& _es) {
49  // Read-in Status records:
50  // Status records stay constant over run so they are read-in only once here
51  // but filled by LS in runOnRealTPs() because MEs are not yet booked at beginRun()
54  }
55 
57  edm::EventSetup const& _es,
58  bool const& ByLumiResetSwitch,
59  bool& lhcStatusSet) {
60  using namespace std;
61 
62  towerReadouts_.clear();
63 
64  if (ByLumiResetSwitch) {
65  MEs_.at("EtSummaryByLumi").reset();
66  MEs_.at("TTFlags4ByLumi").reset();
67  MEs_.at("LHCStatusByLumi").reset(-1);
68  }
69 
70  if (!lhcStatusSet) {
71  // Update LHC status once each LS
72  MESet& meLHCStatusByLumi(static_cast<MESet&>(MEs_.at("LHCStatusByLumi")));
73  edm::Handle<TCDSRecord> tcdsData;
74  _evt.getByToken(lhcStatusInfoRecordToken_, tcdsData);
75  if (tcdsData.isValid()) {
76  meLHCStatusByLumi.fill(double(tcdsData->getBST().getBeamMode()));
77  lhcStatusSet = true;
78  }
79  }
80 
81  realTps_ = nullptr;
82 
83  // HLTCaloBit_ = false;
84  // HLTMuonBit_ = false;
85 
86  int* pBin(std::upper_bound(bxBinEdges_.begin(), bxBinEdges_.end(), _evt.bunchCrossing()));
87  bxBin_ = static_cast<int>(pBin - bxBinEdges_.begin()) - 0.5;
88 
90  _es.get<EcalTPGTowerStatusRcd>().get(TTStatusRcd_);
91  const EcalTPGTowerStatus* TTStatus = TTStatusRcd_.product();
92  const EcalTPGTowerStatusMap& towerMap = TTStatus->getMap();
93 
94  edm::ESHandle<EcalTPGStripStatus> StripStatusRcd_;
95  _es.get<EcalTPGStripStatusRcd>().get(StripStatusRcd_);
96  const EcalTPGStripStatus* StripStatus = StripStatusRcd_.product();
97  const EcalTPGStripStatusMap& stripMap = StripStatus->getMap();
98 
99  MESet& meTTMaskMap(MEs_.at("TTMaskMap"));
100 
101  for (EcalTPGTowerStatusMap::const_iterator ttItr(towerMap.begin()); ttItr != towerMap.end(); ++ttItr) {
102  if ((*ttItr).second > 0) {
103  const EcalTrigTowerDetId ttid((*ttItr).first);
104  //if(ttid.subDet() == EcalBarrel)
105  meTTMaskMap.fill(ttid, 1);
106  } //masked
107  } //loop on towers
108 
109  for (EcalTPGStripStatusMap::const_iterator stItr(stripMap.begin()); stItr != stripMap.end(); ++stItr) {
110  if ((*stItr).second > 0) {
111  const EcalElectronicsId stid((*stItr).first);
112  //if(stid.subdet() == EcalEndcap);
113  meTTMaskMap.fill(stid, 1);
114  } //masked
115  } //loop on pseudo-strips
116 
117  // if(HLTCaloPath_.size() || HLTMuonPath_.size()){
118  // edm::TriggerResultsByName results(_evt.triggerResultsByName("HLT"));
119  // if(!results.isValid()) results = _evt.triggerResultsByName("RECO");
120  // if(results.isValid()){
121  // const vector<string>& pathNames(results.triggerNames());
122 
123  // size_t caloStar(HLTCaloPath_.find('*'));
124  // if(caloStar != string::npos){
125  // string caloSub(HLTCaloPath_.substr(0, caloStar));
126  // bool found(false);
127  // for(unsigned iP(0); iP < pathNames.size(); ++iP){
128  // if(pathNames[iP].substr(0, caloStar) == caloSub){
129  // HLTCaloPath_ = pathNames[iP];
130  // found = true;
131  // break;
132  // }
133  // }
134  // if(!found) HLTCaloPath_ = "";
135  // }
136 
137  // size_t muonStar(HLTMuonPath_.find('*'));
138  // if(muonStar != string::npos){
139  // string muonSub(HLTMuonPath_.substr(0, muonStar));
140  // bool found(false);
141  // for(unsigned iP(0); iP < pathNames.size(); ++iP){
142  // if(pathNames[iP].substr(0, muonStar) == muonSub){
143  // HLTMuonPath_ = pathNames[iP];
144  // found = true;
145  // break;
146  // }
147  // }
148  // if(!found) HLTMuonPath_ = "";
149  // }
150 
151  // if(HLTCaloPath_.size()){
152  // try{
153  // HLTCaloBit_ = results.accept(HLTCaloPath_);
154  // }
155  // catch(cms::Exception e){
156  // if(e.category() != "LogicError") throw e;
157  // HLTCaloPath_ = "";
158  // }
159  // }
160  // if(HLTMuonPath_.size()){
161  // try{
162  // HLTMuonBit_ = results.accept(HLTMuonPath_);
163  // }
164  // catch(cms::Exception e){
165  // if(e.category() != "LogicError") throw e;
166  // HLTMuonPath_ = "";
167  // }
168  // }
169  // }
170  // }
171  }
172 
173  template <typename DigiCollection>
175  for (typename DigiCollection::const_iterator digiItr(_digis.begin()); digiItr != _digis.end(); ++digiItr) {
176  EcalTrigTowerDetId ttid(getTrigTowerMap()->towerOf(digiItr->id()));
177  towerReadouts_[ttid.rawId()]++;
178  }
179  }
180 
183  }
184 
186  MESet& meEtVsBx(MEs_.at("EtVsBx"));
187  MESet& meEtReal(MEs_.at("EtReal"));
188  MESet& meEtRealMap(MEs_.at("EtRealMap"));
189  MESet& meEtSummary(MEs_.at("EtSummary"));
190  MESet& meEtSummaryByLumi(MEs_.at("EtSummaryByLumi"));
191  MESet& meLowIntMap(MEs_.at("LowIntMap"));
192  MESet& meMedIntMap(MEs_.at("MedIntMap"));
193  MESet& meHighIntMap(MEs_.at("HighIntMap"));
194  MESet& meTTFlags(MEs_.at("TTFlags"));
195  MESet& meTTFlagsVsEt(MEs_.at("TTFlagsVsEt"));
196  MESet& meTTFlags4(MEs_.at("TTFlags4"));
197  MESet& meTTFlags4ByLumi(MEs_.at("TTFlags4ByLumi"));
198  MESet& meTTFMismatch(MEs_.at("TTFMismatch"));
199  MESet& meOccVsBx(MEs_.at("OccVsBx"));
200 
201  realTps_ = &_tps;
202 
203  double nTP[] = {0., 0., 0.};
204 
205  for (EcalTrigPrimDigiCollection::const_iterator tpItr(_tps.begin()); tpItr != _tps.end(); ++tpItr) {
206  EcalTrigTowerDetId ttid(tpItr->id());
207  float et(tpItr->compressedEt());
208 
209  if (et > 0.) {
210  if (ttid.subDet() == EcalBarrel)
211  nTP[0] += 1.;
212  else if (ttid.zside() < 0)
213  nTP[1] += 1.;
214  else
215  nTP[2] += 2.;
216  meEtVsBx.fill(ttid, bxBin_, et);
217  }
218 
219  meEtReal.fill(ttid, et);
220  meEtRealMap.fill(ttid, et);
221  meEtSummary.fill(ttid, et);
222  meEtSummaryByLumi.fill(ttid, et);
223 
224  int interest(tpItr->ttFlag() & 0x3);
225 
226  switch (interest) {
227  case 0:
228  meLowIntMap.fill(ttid);
229  break;
230  case 1:
231  meMedIntMap.fill(ttid);
232  break;
233  case 3:
234  meHighIntMap.fill(ttid);
235  break;
236  default:
237  break;
238  }
239 
240  // Fill TT Flag MEs
241  int ttF(tpItr->ttFlag());
242  meTTFlags.fill(ttid, 1.0 * ttF);
243  meTTFlagsVsEt.fill(ttid, et, 1.0 * ttF);
244  // Monitor occupancy of TTF=4
245  // which contains info about TT auto-masking
246  if (ttF >= 4) {
247  meTTFlags4.fill(ttid);
248  meTTFlags4ByLumi.fill(ttid);
249  }
250  if ((ttF == 1 || ttF == 3) && towerReadouts_[ttid.rawId()] != getTrigTowerMap()->constituentsOf(ttid).size())
251  meTTFMismatch.fill(ttid);
252  }
253 
254  meOccVsBx.fill(EcalBarrel, bxBin_, nTP[0]);
255  meOccVsBx.fill(-EcalEndcap, bxBin_, nTP[1]);
256  meOccVsBx.fill(EcalEndcap, bxBin_, nTP[2]);
257 
258  // Set TT/Strip Masking status in Ecal3P view
259  // Status Records are read-in at beginRun() but filled here
260  // Requestied by ECAL Trigger in addition to TTMaskMap plots in SM view
261  MESet& meTTMaskMapAll(MEs_.at("TTMaskMapAll"));
262 
263  // Fill from TT Status Rcd
264  const EcalTPGTowerStatus* TTStatus(TTStatusRcd.product());
265  const EcalTPGTowerStatusMap& TTStatusMap(TTStatus->getMap());
266  for (EcalTPGTowerStatusMap::const_iterator ttItr(TTStatusMap.begin()); ttItr != TTStatusMap.end(); ++ttItr) {
267  const EcalTrigTowerDetId ttid(ttItr->first);
268  if (ttItr->second > 0)
269  meTTMaskMapAll.setBinContent(ttid, 1); // TT is masked
270  } // TTs
271 
272  // Fill from Strip Status Rcd
273  const EcalTPGStripStatus* StripStatus(StripStatusRcd.product());
274  const EcalTPGStripStatusMap& StripStatusMap(StripStatus->getMap());
275  for (EcalTPGStripStatusMap::const_iterator stItr(StripStatusMap.begin()); stItr != StripStatusMap.end(); ++stItr) {
276  const EcalTriggerElectronicsId stid(stItr->first);
277  // Since ME has kTriggerTower binning, convert to EcalTrigTowerDetId first
278  // In principle, setBinContent() could be implemented for EcalTriggerElectronicsId class as well
279  const EcalTrigTowerDetId ttid(getElectronicsMap()->getTrigTowerDetId(stid.tccId(), stid.ttId()));
280  if (stItr->second > 0)
281  meTTMaskMapAll.setBinContent(ttid, 1); // PseudoStrip is masked
282  } // PseudoStrips
283 
284  } // TrigPrimTask::runOnRealTPs()
285 
287  MESet& meEtMaxEmul(MEs_.at("EtMaxEmul"));
288  MESet& meEmulMaxIndex(MEs_.at("EmulMaxIndex"));
289  MESet& meMatchedIndex(MEs_.at("MatchedIndex"));
290  MESet& meEtEmulError(MEs_.at("EtEmulError"));
291  MESet& meFGEmulError(MEs_.at("FGEmulError"));
292  MESet& meRealvEmulEt(MEs_.at("RealvEmulEt"));
293 
294  for (EcalTrigPrimDigiCollection::const_iterator tpItr(_tps.begin()); tpItr != _tps.end(); ++tpItr) {
295  EcalTrigTowerDetId ttid(tpItr->id());
296 
297  int et(tpItr->compressedEt());
298 
299  float maxEt(0.);
300  int iMax(0);
301  for (int iDigi(0); iDigi < 5; iDigi++) {
302  float sampleEt((*tpItr)[iDigi].compressedEt());
303 
304  if (sampleEt > maxEt) {
305  maxEt = sampleEt;
306  iMax = iDigi + 1;
307  }
308  }
309 
310  meEtMaxEmul.fill(ttid, maxEt);
311  if (maxEt > 0.)
312  meEmulMaxIndex.fill(ttid, iMax);
313 
314  bool match(true);
315  bool matchFG(true);
316 
317  // Loop over real TPs and look for an emulated TP index with matching Et:
318  // If an Et match is found, return TP index correpsonding to BX of emulated TP where match was found
319  // Standard TPG comparison: { TP index:matched BX } = { no emul:No Et match, 0:BX-2, 1:BX-1, 2:in-time, 3:BX+1, 4:BX+2 }
321  if (realItr != realTps_->end()) {
322  int realEt(realItr->compressedEt());
323 
324  if (realEt > 0) {
325  int ttF(realItr->ttFlag());
326  if ((ttF == 1 || ttF == 3) &&
327  towerReadouts_[ttid.rawId()] == getTrigTowerMap()->constituentsOf(ttid).size()) {
328  if (et != realEt)
329  match = false;
330  if (tpItr->fineGrain() != realItr->fineGrain())
331  matchFG = false;
332 
333  // NOTE: matchedIndex comparison differs from Standard TPG comparison:
334  // { matchedIndex:TP index } = { 0:no emul, 1:BX-2, 2:BX-1, 3:in-time, 4:BX+1, 5:BX+2 }
335  std::vector<int> matchedIndex(0);
336  // iDigi only loops over explicit Et matches:
337  // { iDigi:TP index } = { 0:BX-2, 1:BX-1, 2:in-time, 3:BX+1, 4:BX+2 }
338  for (int iDigi(0); iDigi < 5; iDigi++) {
339  if ((*tpItr)[iDigi].compressedEt() == realEt) {
340  // matchedIndex = iDigi + 1
341  if (iDigi != 2) {
342  matchedIndex.push_back(iDigi + 1);
343  }
344  // If an in-time match is found, exit loop and clear out any other matches:
345  // Ensures multiple matches are not returned (e.g. during saturation)
346  else {
347  matchedIndex.clear();
348  matchedIndex.push_back(3); // Et match is to in-time emulated TP
349  break;
350  }
351  } // Et match found
352  } // iDigi
353  if (matchedIndex.empty())
354  matchedIndex.push_back(0); // no Et match found => no emul
355 
356  // Fill Real vs Emulated TP Et
357  meRealvEmulEt.fill(ttid, realEt, (*tpItr)[2].compressedEt()); // iDigi=2:in-time BX
358 
359  // Fill matchedIndex ME
360  for (std::vector<int>::iterator matchItr(matchedIndex.begin()); matchItr != matchedIndex.end();
361  ++matchItr) {
362  meMatchedIndex.fill(ttid, *matchItr + 0.5);
363 
364  // timing information is only within emulated TPs (real TPs have one time sample)
365  // if(HLTCaloBit_) MEs_[kTimingCalo].fill(ttid, float(*matchItr));
366  // if(HLTMuonBit_) MEs_[kTimingMuon].fill(ttid, float(*matchItr));
367  }
368  }
369  }
370  } else {
371  match = false;
372  matchFG = false;
373  }
374 
375  if (!match)
376  meEtEmulError.fill(ttid);
377  if (!matchFG)
378  meFGEmulError.fill(ttid);
379  }
380  }
381 
383 } // namespace ecaldqm
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
pfDeepBoostedJetPreprocessParams_cfi.upper_bound
upper_bound
Definition: pfDeepBoostedJetPreprocessParams_cfi.py:16
ecaldqm::TrigPrimTask::addDependencies
void addDependencies(DependencySet &) override
Definition: TrigPrimTask.cc:43
EcalTPGStripStatusMap
std::map< uint32_t, uint16_t > EcalTPGStripStatusMap
Definition: EcalTPGStripStatus.h:24
ecaldqm::TrigPrimTask::beginEvent
void beginEvent(edm::Event const &, edm::EventSetup const &, bool const &, bool &) override
Definition: TrigPrimTask.cc:56
EcalTPGTowerStatus::getMap
const std::map< uint32_t, uint16_t > & getMap() const
Definition: EcalTPGTowerStatus.h:15
ecaldqm::TrigPrimTask::lhcStatusInfoRecordToken_
edm::EDGetTokenT< TCDSRecord > lhcStatusInfoRecordToken_
Definition: TrigPrimTask.h:61
edm::SortedCollection::const_iterator
std::vector< T >::const_iterator const_iterator
Definition: SortedCollection.h:80
edm::EventBase::bunchCrossing
int bunchCrossing() const
Definition: EventBase.h:64
funct::false
false
Definition: Factorize.h:29
ecaldqm
Definition: DQWorker.h:24
EcalTPGStripStatusRcd.h
EcalTriggerElectronicsId
Ecal trigger electronics identification [32:20] Unused (so far) [19:13] TCC id [12:6] TT id [5:3] pse...
Definition: EcalTriggerElectronicsId.h:18
ecaldqm::DependencySet
Definition: DQWorkerTask.h:44
edm::Run
Definition: Run.h:45
EcalTriggerElectronicsId::tccId
int tccId() const
get the DCC (Ecal Local DCC value not global one) id
Definition: EcalTriggerElectronicsId.h:31
ecaldqm::kEEDigi
Definition: Collections.h:26
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:85964
ecaldqm::TrigPrimTask::towerReadouts_
std::map< uint32_t, unsigned > towerReadouts_
Definition: TrigPrimTask.h:55
l1extraParticles_cfi._params
_params
Definition: l1extraParticles_cfi.py:29
edm::SortedCollection
Definition: SortedCollection.h:49
ecaldqm::Dependency
Definition: DQWorkerTask.h:19
EcalTrigTowerDetId
Definition: EcalTrigTowerDetId.h:14
edm::Handle
Definition: AssociativeIterator.h:50
EcalTriggerElectronicsId::ttId
int ttId() const
get the tower id
Definition: EcalTriggerElectronicsId.h:33
EcalBarrel
Definition: EcalSubdetector.h:10
ecaldqm::MESet::fill
virtual void fill(DetId const &, double=1., double=1., double=1.)
Definition: MESet.h:46
EcalTPGStripStatusRcd
Definition: EcalTPGStripStatusRcd.h:5
ecaldqm::TrigPrimTask::setTokens
void setTokens(edm::ConsumesCollector &) override
Definition: TrigPrimTask.cc:181
EcalTPGStripStatus::getMap
const std::map< uint32_t, uint16_t > & getMap() const
Definition: EcalTPGStripStatus.h:15
ecaldqm::DQWorkerTask
Definition: DQWorkerTask.h:71
edm::EventSetup::get
T get() const
Definition: EventSetup.h:80
BSTRecord::getBeamMode
const uint16_t getBeamMode() const
Definition: BSTRecord.h:70
EcalTPGTowerStatusMap
std::map< uint32_t, uint16_t > EcalTPGTowerStatusMap
Definition: EcalTPGTowerStatus.h:24
edm::SortedCollection::begin
const_iterator begin() const
Definition: SortedCollection.h:262
TrigPrimTask.h
ecaldqm::TrigPrimTask::runOnRealTPs
void runOnRealTPs(EcalTrigPrimDigiCollection const &)
Definition: TrigPrimTask.cc:185
edm::ESHandle< EcalTPGTowerStatus >
edm::ConsumesCollector::consumes
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
Definition: ConsumesCollector.h:55
edm::Event::getByToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:531
EcalElectronicsId
Ecal readout channel identification [32:20] Unused (so far) [19:13] DCC id [12:6] tower [5:3] strip [...
Definition: EcalElectronicsId.h:18
egamma::towerOf
CaloTowerDetId towerOf(reco::CaloCluster const &cluster, CaloTowerConstituentsMap const &towerMap)
Definition: EgammaHadTower.cc:10
ecaldqm::DQWorker::MEs_
MESetCollection MEs_
Definition: DQWorker.h:78
muonRecoAnalyzer_cfi.pBin
pBin
Definition: muonRecoAnalyzer_cfi.py:37
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
EcalEndcap
Definition: EcalSubdetector.h:10
ecaldqm::TrigPrimTask::runOnEmulTPs
void runOnEmulTPs(EcalTrigPrimDigiCollection const &)
Definition: TrigPrimTask.cc:286
edm::ParameterSet
Definition: ParameterSet.h:47
ecaldqm::TrigPrimTask::runOnEmul_
bool runOnEmul_
Definition: TrigPrimTask.h:45
Event.h
ecaldqm::TrigPrimTask::setParams
void setParams(edm::ParameterSet const &) override
Definition: TrigPrimTask.cc:29
ecaldqm::TrigPrimTask::StripStatusRcd
edm::ESHandle< EcalTPGStripStatus > StripStatusRcd
Definition: TrigPrimTask.h:58
edm::SortedCollection::end
const_iterator end() const
Definition: SortedCollection.h:267
ecaldqm::MESetCollection::at
MESet & at(const std::string &key)
Definition: MESet.h:362
match
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
ecaldqm::DependencySet::push_back
void push_back(Dependency const &_d)
Definition: DQWorkerTask.h:46
ecaldqm::MESetCollection::erase
void erase(const std::string &key)
Definition: MESet.h:353
ecaldqm::TrigPrimTask::lhcStatusInfoCollectionTag_
edm::InputTag lhcStatusInfoCollectionTag_
Definition: TrigPrimTask.h:60
ecaldqm::MESet::reset
virtual void reset(double=0., double=0., double=0.)
Definition: MESet.cc:98
EgHLTOffHistBins_cfi.et
et
Definition: EgHLTOffHistBins_cfi.py:8
edm::EventSetup
Definition: EventSetup.h:57
ecaldqm::kTrigPrimDigi
Definition: Collections.h:28
ecaldqm::TrigPrimTask::TrigPrimTask
TrigPrimTask()
Definition: TrigPrimTask.cc:16
get
#define get
ecaldqm::TrigPrimTask::bxBin_
double bxBin_
Definition: TrigPrimTask.h:53
ecaldqm::getTrigTowerMap
const EcalTrigTowerConstituentsMap * getTrigTowerMap()
Definition: EcalDQMCommonUtils.cc:458
ecaldqm::kTrigPrimEmulDigi
Definition: Collections.h:29
edm::SortedCollection::find
iterator find(key_type k)
Definition: SortedCollection.h:240
siStripShotFilter_cfi.DigiCollection
DigiCollection
Definition: siStripShotFilter_cfi.py:6
EcalTPGTowerStatus
Definition: EcalTPGTowerStatus.h:9
std
Definition: JetResolutionObject.h:76
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
ecaldqm::kEBDigi
Definition: Collections.h:25
EcalTrigTowerConstituentsMap::constituentsOf
std::vector< DetId > constituentsOf(const EcalTrigTowerDetId &id) const
Get the constituent detids for this tower id.
Definition: EcalTrigTowerConstituentsMap.cc:162
ecaldqm::TrigPrimTask::runOnDigis
void runOnDigis(DigiCollection const &)
Definition: TrigPrimTask.cc:174
ecaldqm::TrigPrimTask::beginRun
void beginRun(edm::Run const &, edm::EventSetup const &) override
Definition: TrigPrimTask.cc:48
TCDSRecord
Class to contain information from TCDS FED.
Definition: TCDSRecord.h:19
heavyionUCCDQM_cfi.maxEt
maxEt
Definition: heavyionUCCDQM_cfi.py:14
ecaldqm::TrigPrimTask::realTps_
EcalTrigPrimDigiCollection const * realTps_
Definition: TrigPrimTask.h:43
EventSetup.h
EcalTPGTowerStatusRcd.h
EcalTPGStripStatus
Definition: EcalTPGStripStatus.h:9
TCDSRecord::getBST
const BSTRecord & getBST() const
Definition: TCDSRecord.h:100
DEFINE_ECALDQM_WORKER
#define DEFINE_ECALDQM_WORKER(TYPE)
Definition: DQWorker.h:112
ParameterSet.h
ecaldqm::TrigPrimTask
Definition: TrigPrimTask.h:19
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
ecaldqm::getElectronicsMap
const EcalElectronicsMapping * getElectronicsMap()
Definition: EcalDQMCommonUtils.cc:438
edm::Event
Definition: Event.h:73
ecaldqm::TrigPrimTask::bxBinEdges_
std::array< int, nBXBins+1 > bxBinEdges_
Definition: TrigPrimTask.h:52
EcalTPGTowerStatusRcd
Definition: EcalTPGTowerStatusRcd.h:5
TriggerResultsByName.h
edm::InputTag
Definition: InputTag.h:15
edm::ConsumesCollector
Definition: ConsumesCollector.h:45
ecaldqm::TrigPrimTask::TTStatusRcd
edm::ESHandle< EcalTPGTowerStatus > TTStatusRcd
Definition: TrigPrimTask.h:57
EcalDQMCommonUtils.h
ecaldqm::MESet
Definition: MESet.h:27