CMS 3D CMS Logo

DTLocalTriggerBaseTask.cc
Go to the documentation of this file.
1 /*
2  * \file DTLocalTriggerBaseTask.cc
3  *
4  * \author C. Battilana - CIEMAT
5  *
6 */
7 
9 
10 // Framework
12 
13 // DT DQM
15 
16 // DT trigger
18 
19 // Geometry
25 
26 //Root
27 #include"TH1.h"
28 #include"TAxis.h"
29 
30 #include <sstream>
31 #include <iostream>
32 #include <fstream>
33 
34 using namespace edm;
35 using namespace std;
36 
38 
39 public:
40 
41  DTTPGCompareUnit() { theQual[0]=-1 ; theQual[1]=-1; }
43 
44  void setDDU(int qual, int bx) { theQual[0] = qual; theBX[0] = bx; }
45  void setTM(int qual, int bx) { theQual[1] = qual; theBX[1] = bx; }
46 
47  bool hasOne() const { return theQual[0]!=-1 || theQual[1]!=-1; };
48  bool hasBoth() const { return theQual[0]!=-1 && theQual[1]!=-1; };
49  bool hasSameQual() const { return hasBoth() && theQual[0]==theQual[1]; };
50  int deltaBX() const { return theBX[0] - theBX[1]; }
51  int qualDDU() const { return theQual[0]; }
52  int qualTM() const { return theQual[1]; }
53 
54 private:
55 
56  int theQual[2]; // 0=DDU 1=TM
57  int theBX[2]; // 0=DDU 1=TM
58 
59 };
60 
61 
62 
64  nEvents(0), nLumis(0), theTrigGeomUtils(nullptr) {
65 
66  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerBaseTask")
67  << "[DTLocalTriggerBaseTask]: Constructor"<<endl;
68 
69  tpMode = ps.getUntrackedParameter<bool>("testPulseMode");
70  detailedAnalysis = ps.getUntrackedParameter<bool>("detailedAnalysis");
71 
72  targetBXTM = ps.getUntrackedParameter<int>("targetBXTM");
73  targetBXDDU = ps.getUntrackedParameter<int>("targetBXDDU");
74  bestAccRange = ps.getUntrackedParameter<int>("bestTrigAccRange");
75 
76  processTM = ps.getUntrackedParameter<bool>("processTM");
77  processDDU = ps.getUntrackedParameter<bool>("processDDU");
78 
79  tm_phiIn_Token_ = consumes<L1MuDTChambPhContainer>(
80  ps.getUntrackedParameter<InputTag>("inputTagTMphIn"));
81  tm_phiOut_Token_ = consumes<L1MuDTChambPhContainer>(
82  ps.getUntrackedParameter<InputTag>("inputTagTMphOut"));
83  tm_theta_Token_ = consumes<L1MuDTChambThContainer>(
84  ps.getUntrackedParameter<InputTag>("inputTagTMth"));
85  trig_Token_ = consumes<DTLocalTriggerCollection>(
86  ps.getUntrackedParameter<InputTag>("inputTagDDU"));
87 
88  if (processTM) theTypes.push_back("TM");
89  if (processDDU) theTypes.push_back("DDU");
90 
91 
92  if (tpMode) {
93  topFolder("TM") = "DT/11-LocalTriggerTP-TM/";
94  topFolder("DDU") = "DT/12-LocalTriggerTP-DDU/";
95  } else {
96  topFolder("TM") = "DT/03-LocalTrigger-TM/";
97  topFolder("DDU") = "DT/04-LocalTrigger-DDU/";
98  }
99 
100  theParams = ps;
101 
102 }
103 
104 
106 
107  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerBaseTask")
108  << "[DTLocalTriggerBaseTask]: analyzed " << nEvents << " events" << endl;
109  if (theTrigGeomUtils) { delete theTrigGeomUtils; }
110 
111 }
112 
114 
115  ibooker.setCurrentFolder("DT/EventInfo/Counters");
116  nEventMonitor = ibooker.bookFloat("nProcessedEventsTrigger");
117  for (int wh=-2;wh<3;++wh){
118  for (int stat=1;stat<5;++stat){
119  for (int sect=1;sect<13;++sect){
120  bookHistos(ibooker, DTChamberId(wh,stat,sect));
121  }
122  }
123  if (processDDU) bookHistos(ibooker, wh);
124  }
125 }
126 
127 
129 
130  nEventsInLS=0;
131  nLumis++;
132  int resetCycle = theParams.getUntrackedParameter<int>("ResetCycle");
133 
134  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerBaseTask")
135  << "[DTLocalTriggerBaseTask]: Begin of LS transition" << endl;
136 
137  if( nLumis%resetCycle == 0 ) {
138  map<uint32_t,map<string,MonitorElement*> >::const_iterator chambIt = chamberHistos.begin();
139  map<uint32_t,map<string,MonitorElement*> >::const_iterator chambEnd = chamberHistos.end();
140  for(;chambIt!=chambEnd;++chambIt) {
141  map<string,MonitorElement*>::const_iterator histoIt = chambIt->second.begin();
142  map<string,MonitorElement*>::const_iterator histoEnd = chambIt->second.end();
143  for(;histoIt!=histoEnd;++histoIt) {
144  histoIt->second->Reset();
145  }
146  }
147  }
148 
149 }
150 
152 
153  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerBaseTask")
154  << "[DTLocalTriggerBaseTask]: End of LS transition" << endl;
155 
156  map<uint32_t,DTTimeEvolutionHisto* >::const_iterator chambIt = trendHistos.begin();
157  map<uint32_t,DTTimeEvolutionHisto* >::const_iterator chambEnd = trendHistos.end();
158  for(;chambIt!=chambEnd;++chambIt) {
159  chambIt->second->updateTimeSlot(lumiSeg.luminosityBlock(), nEventsInLS);
160  }
161 
162 }
163 
164 
166 
167  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerBaseTask")
168  << "[DTLocalTriggerBaseTask]: BeginRun" << endl;
169 
170  ESHandle<DTGeometry> theGeom;
171  context.get<MuonGeometryRecord>().get(theGeom);
172  theTrigGeomUtils = new DTTrigGeomUtils(theGeom);
173 
174 }
175 
176 
178 
179  nEvents++;
180  nEventsInLS++;
182 
183  theCompMapIn.clear();
184  theCompMapOut.clear();
185 
186  Handle<L1MuDTChambPhContainer> phiInTrigsTM;
187  Handle<L1MuDTChambPhContainer> phiOutTrigsTM;
188  Handle<L1MuDTChambThContainer> thetaTrigsTM;
190 
191  if (processTM) {
192  InputTag inputTagTM = theParams.getUntrackedParameter<InputTag>("inputTagTM");
193 
194  e.getByToken(tm_phiIn_Token_, phiInTrigsTM);
195  e.getByToken(tm_phiOut_Token_, phiOutTrigsTM);
196  e.getByToken(tm_theta_Token_, thetaTrigsTM);
197 
198  if (phiInTrigsTM.isValid() && phiOutTrigsTM.isValid() && thetaTrigsTM.isValid()) {
199  runTMAnalysis(phiInTrigsTM->getContainer(),phiOutTrigsTM->getContainer(),thetaTrigsTM->getContainer());
200  } else {
201  LogVerbatim("DTDQM|DTMonitorModule|DTLocalTriggerBaseTask")
202  << "[DTLocalTriggerBaseTask]: one or more TM handles for Input Tag "
203  << inputTagTM <<" not found!" << endl;
204  return;
205  }
206  }
207 
208  if (processDDU) {
209  InputTag inputTagDDU = theParams.getUntrackedParameter<InputTag>("inputTagDDU");
210  e.getByToken(trig_Token_, trigsDDU);
211 
212  if (trigsDDU.isValid()) {
213  runDDUAnalysis(trigsDDU);
214  } else {
215  LogVerbatim("DTDQM|DTMonitorModule|DTLocalTriggerBaseTask")
216  << "[DTLocalTriggerBaseTask]: one or more DDU handles for Input Tag "
217  << inputTagDDU <<" not found!" << endl;
218  return;
219  }
220  }
221 
222  if (processTM && processDDU)
224 
225 }
226 
227 
229 
230  uint32_t rawId = dtCh.rawId();
231 
232  stringstream wheel; wheel << dtCh.wheel();
233  stringstream station; station << dtCh.station();
234  stringstream sector; sector << dtCh.sector();
235 
236  map<string,int> minBX;
237  map<string,int> maxBX;
238 
239  minBX["TM"] = theParams.getUntrackedParameter<int>("minBXTM");
240  maxBX["TM"] = theParams.getUntrackedParameter<int>("maxBXTM");
241  minBX["DDU"] = theParams.getUntrackedParameter<int>("minBXDDU");
242  maxBX["DDU"] = theParams.getUntrackedParameter<int>("maxBXDDU");
243 
244  int nTimeBins = theParams.getUntrackedParameter<int>("nTimeBins");
245  int nLSTimeBin = theParams.getUntrackedParameter<int>("nLSTimeBin");
246 
247  string chTag = "_W" + wheel.str() + "_Sec" + sector.str() + "_St" + station.str();
248  string labelInOut = "";
249 
250  vector<string>::const_iterator typeIt = theTypes.begin();
251  vector<string>::const_iterator typeEnd = theTypes.end();
252 
253  for (; typeIt!=typeEnd; ++typeIt) {
254 
255  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerBaseTask")
256  << "[DTLocalTriggerBaseTask]: booking histos for " << topFolder((*typeIt)) << "Wheel"
257  << wheel.str() << "/Sector" << sector.str() << "/Station"<< station.str() << endl;
258 
259  for (int InOut=0; InOut<2;InOut++){
260  // Book Phi View Related Plots
261 
262  if(InOut==0)
263  {ibooker.setCurrentFolder(topFolder(*typeIt) + "Wheel" + wheel.str() + "/Sector"
264  + sector.str() + "/Station" + station.str() + "/LocalTriggerPhiIn");
265  labelInOut = "_In";}
266  else if (InOut==1){
267  ibooker.setCurrentFolder(topFolder(*typeIt) + "Wheel" + wheel.str() + "/Sector"
268  + sector.str() + "/Station" + station.str() + "/LocalTriggerPhiOut");
269  labelInOut = "_Out";}
270 
271 
272  string histoTag = (*typeIt) + "_BXvsQual" + labelInOut;
273  chamberHistos[rawId][histoTag] = ibooker.book2D(histoTag+chTag,"BX vs trigger quality",
274  7,-0.5,6.5,(int)(maxBX[(*typeIt)]-minBX[*typeIt]+1),minBX[*typeIt]-.5,maxBX[*typeIt]+.5);
275  setQLabels((chamberHistos[rawId])[histoTag],1);
276 
277  if (!tpMode) {
278  histoTag = (*typeIt) + "_BestQual" + labelInOut;
279  chamberHistos[rawId][histoTag] = ibooker.book1D(histoTag+chTag,
280  "Trigger quality of best primitives",7,-0.5,6.5);
281  setQLabels(chamberHistos[rawId][histoTag],1);
282 
283  histoTag = (*typeIt) + "_Flag1stvsQual" + labelInOut;
284  chamberHistos[dtCh.rawId()][histoTag] = ibooker.book2D(histoTag+chTag,
285  "1st/2nd trig flag vs quality",7,-0.5,6.5,2,-0.5,1.5);
286  setQLabels(chamberHistos[rawId][histoTag],1);
287 
288  histoTag = (*typeIt) + "_FlagUpDownvsQual" + labelInOut;
289  chamberHistos[dtCh.rawId()][histoTag] = ibooker.book2D(histoTag+chTag,
290  "Up/Down trig flag vs quality",7,-0.5,6.5,2,-0.5,1.5);
291  setQLabels(chamberHistos[rawId][histoTag],1);
292 
293  }
294 
295  if (*typeIt=="TM") {
296  float minPh, maxPh; int nBinsPh;
297  theTrigGeomUtils->phiRange(dtCh,minPh,maxPh,nBinsPh);
298 
299  histoTag = (*typeIt) + "_QualvsPhirad" + labelInOut;
300  chamberHistos[rawId][histoTag] = ibooker.book2D(histoTag+chTag,
301  "Trigger quality vs local position",nBinsPh,minPh,maxPh,7,-0.5,6.5);
302  setQLabels(chamberHistos[rawId][histoTag],2);
303 
304  if (detailedAnalysis && !tpMode) {
305  histoTag = (*typeIt) + "_QualvsPhibend" + labelInOut;
306  chamberHistos[rawId][histoTag] = ibooker.book2D(histoTag+chTag,
307  "Trigger quality vs local direction",200,-40.,40.,7,-0.5,6.5);
308  setQLabels((chamberHistos[dtCh.rawId()])[histoTag],2);
309  }
310  }
311  } //InOut loop
312 
313  // Book Theta View Related Plots
314  ibooker.setCurrentFolder(topFolder(*typeIt) + "Wheel" + wheel.str() + "/Sector"
315  + sector.str() + "/Station" + station.str() + "/LocalTriggerTheta");
316 
317  string histoTag = "";
318  if((*typeIt)=="TM" && dtCh.station()!=4) {
319  histoTag = (*typeIt) + "_PositionvsBX";
320  chamberHistos[rawId][histoTag] = ibooker.book2D(histoTag+chTag,"Theta trigger position vs BX",
321  (int)(maxBX[(*typeIt)]-minBX[*typeIt]+1),minBX[*typeIt]-.5,maxBX[*typeIt]+.5,7,-0.5,6.5);
322  histoTag = (*typeIt) + "_PositionvsQual";
323  chamberHistos[rawId][histoTag] = ibooker.book2D(histoTag+chTag,"Theta trigger position vs quality",
324  2,0.5,2.5,7,-0.5,6.5);
325  setQLabelsTheta(chamberHistos[rawId][histoTag],1);
326  histoTag = (*typeIt) + "_ThetaBXvsQual";
327  chamberHistos[rawId][histoTag] = ibooker.book2D(histoTag+chTag,"BX vs trigger quality",
328  2,0.5,2.5,(int)(maxBX[(*typeIt)]-minBX[*typeIt]+1),minBX[*typeIt]-.5,maxBX[*typeIt]+.5);
329  setQLabelsTheta(chamberHistos[rawId][histoTag],1);
330 // histoTag = (*typeIt) + "_ThetaBestQual";
331 // chamberHistos[rawId][histoTag] = ibooker.book1D(histoTag+chTag,
332 // "Trigger quality of best primitives (theta)",2,0.5,2.5); // 0 = not fired, 1 = L, 2 = H
333 // setQLabelsTheta(chamberHistos[rawId][histoTag],1);
334  } else {
335  if(dtCh.station()!=4){
336  histoTag = (*typeIt) + "_ThetaBXvsQual";
337  chamberHistos[rawId][histoTag] = ibooker.book2D(histoTag+chTag,"BX vs trigger quality",7,-0.5,6.5,
338  (int)(maxBX[(*typeIt)]-minBX[*typeIt]+1),minBX[*typeIt]-.5,maxBX[*typeIt]+.5);
339  setQLabels((chamberHistos[dtCh.rawId()])[histoTag],1);
340 
341  histoTag = (*typeIt) + "_ThetaBestQual";
342  chamberHistos[rawId][histoTag] = ibooker.book1D(histoTag+chTag,
343  "Trigger quality of best primitives (theta)",7,-0.5,6.5);
344  setQLabels((chamberHistos[dtCh.rawId()])[histoTag],1);
345  }
346  }
347 
348  }
349 
350  if (processTM && processDDU) {
351  // Book TM/DDU Comparison Plots
352  // NOt needed In and Out comparison, only IN in DDU....
353  ibooker.setCurrentFolder(topFolder("DDU") + "Wheel" + wheel.str() + "/Sector"
354  + sector.str() + "/Station" + station.str() + "/LocalTriggerPhiIn");
355 
356 
357  string histoTag = "COM_QualDDUvsQualTM";
358  chamberHistos[rawId][histoTag] = ibooker.book2D(histoTag+chTag,
359  "DDU quality vs TM quality",8,-1.5,6.5,8,-1.5,6.5);
360  setQLabels((chamberHistos[rawId])[histoTag],1);
361  setQLabels((chamberHistos[rawId])[histoTag],2);
362 
363  histoTag = "COM_MatchingTrend";
364  trendHistos[rawId] = new DTTimeEvolutionHisto(ibooker,histoTag+chTag,
365  "Fraction of DDU-TM matches w.r.t. proc evts",
366  nTimeBins,nLSTimeBin,true,0);
367  }
368 
369 }
370 
372 
373  stringstream wheel; wheel << wh;
374  ibooker.setCurrentFolder(topFolder("DDU") + "Wheel" + wheel.str() + "/");
375  string whTag = "_W" + wheel.str();
376 
377  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerBaseTask")
378  << "[DTLocalTriggerBaseTask]: booking wheel histos for "
379  << topFolder("DDU") << "Wheel" << wh << endl;
380 
381  string histoTag = "COM_BXDiff";
382  MonitorElement *me = ibooker.bookProfile2D(histoTag+whTag,
383  "DDU-TM BX Difference",12,1,13,4,1,5,0.,20.);
384  me->setAxisTitle("Sector",1);
385  me->setAxisTitle("station",2);
386  wheelHistos[wh][histoTag] = me;
387 
388 }
389 
390 
391 void DTLocalTriggerBaseTask::runTMAnalysis( std::vector<L1MuDTChambPhDigi> const* phInTrigs,
392  std::vector<L1MuDTChambPhDigi> const* phOutTrigs,
393  std::vector<L1MuDTChambThDigi> const* thTrigs )
394 {
395  vector<L1MuDTChambPhDigi>::const_iterator iph = phInTrigs->begin();
396  vector<L1MuDTChambPhDigi>::const_iterator iphe = phInTrigs->end();
397 
398  for(; iph !=iphe ; ++iph) {
399 
400  int wh = iph->whNum();
401  int sec = iph->scNum() + 1; // DTTF->DT Convention
402  int st = iph->stNum();
403  int qual = iph->code();
404  int is1st = iph->Ts2Tag() ? 1 : 0;
405  int bx = iph->bxNum() - is1st;
406  int updown = iph->UpDownTag();
407 
408  if (qual <0 || qual>6) continue; // Check that quality is in a valid range
409 
410  DTChamberId dtChId(wh,st,sec);
411  uint32_t rawId = dtChId.rawId();
412 
413  float pos = theTrigGeomUtils->trigPos(&(*iph));
414  float dir = theTrigGeomUtils->trigDir(&(*iph));
415 
416  if (abs(bx-targetBXTM)<= bestAccRange &&
417  theCompMapIn[rawId].qualTM() <= qual)
418  theCompMapIn[rawId].setTM(qual,bx);
419 
420  map<string, MonitorElement*> &innerME = chamberHistos[rawId];
421  if (tpMode) {
422  innerME["TM_BXvsQual_In"]->Fill(qual,bx); // SM BX vs Qual Phi view (1st tracks)
423  innerME["TM_QualvsPhirad_In"]->Fill(pos,qual); // SM Qual vs radial angle Phi view
424  } else {
425  innerME["TM_BXvsQual_In"]->Fill(qual,bx); // SM BX vs Qual Phi view (1st tracks)
426  innerME["TM_Flag1stvsQual_In"]->Fill(qual,is1st); // SM Qual 1st/2nd track flag Phi view
427  innerME["TM_FlagUpDownvsQual_In"]->Fill(qual,updown); // SM Qual Up/Down track flag Phi view
428  if (!is1st) innerME["TM_QualvsPhirad_In"]->Fill(pos,qual); // SM Qual vs radial angle Phi view ONLY for 1st tracks
429  if (detailedAnalysis) {
430  innerME["TM_QualvsPhibend_In"]->Fill(dir,qual); // SM Qual vs bending Phi view
431  }
432  }
433 
434  }
435 
436  iph = phOutTrigs->begin();
437  iphe = phOutTrigs->end();
438 
439  for(; iph !=iphe ; ++iph) {
440 
441  int wh = iph->whNum();
442  int sec = iph->scNum() + 1; // DTTF->DT Convention
443  int st = iph->stNum();
444  int qual = iph->code();
445  int is1st = iph->Ts2Tag() ? 1 : 0;
446  int bx = iph->bxNum() - is1st;
447  int updown = iph->UpDownTag();
448  if (qual <0 || qual>6) continue; // Check that quality is in a valid range
449 
450  DTChamberId dtChId(wh,st,sec);
451  uint32_t rawId = dtChId.rawId();
452 
453  float pos = theTrigGeomUtils->trigPos(&(*iph));
454  float dir = theTrigGeomUtils->trigDir(&(*iph));
455 
456  if (abs(bx-targetBXTM)<= bestAccRange &&
457  theCompMapOut[rawId].qualTM() <= qual)
458  theCompMapOut[rawId].setTM(qual,bx);
459 
460  map<string, MonitorElement*> &innerME = chamberHistos[rawId];
461  if (tpMode) {
462  innerME["TM_BXvsQual_Out"]->Fill(qual,bx); // SM BX vs Qual Phi view (1st tracks)
463  innerME["TM_QualvsPhirad_Out"]->Fill(pos,qual); // SM Qual vs radial angle Phi view
464  } else {
465  innerME["TM_BXvsQual_Out"]->Fill(qual,bx); // SM BX vs Qual Phi view (1st tracks)
466  innerME["TM_Flag1stvsQual_Out"]->Fill(qual,is1st); // SM Qual 1st/2nd track flag Phi view
467  innerME["TM_FlagUpDownvsQual_Out"]->Fill(qual,updown); // SM Qual Up/Down track flag Phi view
468 
469  if (!is1st) innerME["TM_QualvsPhirad_Out"]->Fill(pos,qual); // SM Qual vs radial angle Phi view ONLY for 1st tracks
470  if (detailedAnalysis) {
471  innerME["TM_QualvsPhibend_Out"]->Fill(dir,qual); // SM Qual vs bending Phi view
472  }
473  }
474 
475  }
476 
477  vector<L1MuDTChambThDigi>::const_iterator ith = thTrigs->begin();
478  vector<L1MuDTChambThDigi>::const_iterator ithe = thTrigs->end();
479 
480  for(; ith != ithe; ++ith) {
481  int wh = ith->whNum();
482  int sec = ith->scNum() + 1; // DTTF -> DT Convention
483  int st = ith->stNum();
484  int bx = ith->bxNum();
485 
486  int thcode[7];
487 
488  for (int pos=0; pos<7; pos++)
489  thcode[pos] = ith->code(pos);
490 
491  DTChamberId dtChId(wh,st,sec);
492  uint32_t rawId = dtChId.rawId();
493 
494  map<string, MonitorElement*> &innerME = chamberHistos[rawId];
495 
496  for (int pos=0; pos<7; pos++)
497  if (thcode[pos]>0) {//Fired
498  innerME["TM_PositionvsBX"]->Fill(bx,pos); // SM BX vs Position Theta view
499  innerME["TM_PositionvsQual"]->Fill(thcode[pos],pos); //code = pos + qual; so 0, 1, 2 for 0, L, H resp.
500  innerME["TM_ThetaBXvsQual"]->Fill(thcode[pos],bx); //code = pos + qual; so 0, 1, 2 for 0, L, H resp.
501  }
502  }
503  // Fill Quality plots with best TM triggers (phi view In)
504  if (!tpMode) {
505  map<uint32_t,DTTPGCompareUnit>::const_iterator compIt = theCompMapIn.begin();
506  map<uint32_t,DTTPGCompareUnit>::const_iterator compEnd = theCompMapIn.end();
507  for (; compIt!=compEnd; ++compIt) {
508  int bestQual = compIt->second.qualTM();
509  if (bestQual > -1)
510  chamberHistos[compIt->first]["TM_BestQual_In"]->Fill(bestQual); // SM Best Qual Trigger Phi view
511  }
512  }
513 
514  // Fill Quality plots with best TM triggers (phi view Out)
515  if (!tpMode) {
516  map<uint32_t,DTTPGCompareUnit>::const_iterator compIt = theCompMapOut.begin();
517  map<uint32_t,DTTPGCompareUnit>::const_iterator compEnd = theCompMapOut.end();
518  for (; compIt!=compEnd; ++compIt) {
519  int bestQual = compIt->second.qualTM();
520  if (bestQual > -1)
521  chamberHistos[compIt->first]["TM_BestQual_Out"]->Fill(bestQual); // SM Best Qual Trigger Phi view
522  }
523  }
524 
525 }
526 
527 
529 
530  DTLocalTriggerCollection::DigiRangeIterator detUnitIt = trigsDDU->begin();
531  DTLocalTriggerCollection::DigiRangeIterator detUnitEnd = trigsDDU->end();
532 
533  for (; detUnitIt!=detUnitEnd; ++detUnitIt){
534 
535  const DTChamberId& chId = (*detUnitIt).first;
536  uint32_t rawId = chId.rawId();
537 
538  const DTLocalTriggerCollection::Range& range = (*detUnitIt).second;
539  DTLocalTriggerCollection::const_iterator trigIt = range.first;
540  map<string, MonitorElement*> &innerME = chamberHistos[rawId];
541 
542  int bestQualTheta = -1;
543 
544  for (; trigIt!=range.second; ++trigIt){
545 
546  int qualPhi = trigIt->quality();
547  int qualTheta = trigIt->trTheta();
548  int flag1st = trigIt->secondTrack() ? 1 : 0;
549  int bx = trigIt->bx();
550  int bxPhi = bx - flag1st; // phi BX assign is different for 1st & 2nd tracks
551 
552  if( qualPhi>-1 && qualPhi<7 ) { // it is a phi trigger
553  if (abs(bx-targetBXDDU) <= bestAccRange &&
554  theCompMapIn[rawId].qualDDU()<= qualPhi)
555  theCompMapIn[rawId].setDDU(qualPhi,bxPhi);
556  if(tpMode) {
557  innerME["DDU_BXvsQual"]->Fill(qualPhi,bxPhi); // SM BX vs Qual Phi view
558  } else {
559  innerME["DDU_BXvsQual"]->Fill(qualPhi,bxPhi); // SM BX vs Qual Phi view
560  innerME["DDU_Flag1stvsQual"]->Fill(qualPhi,flag1st); // SM Quality vs 1st/2nd track flag Phi view
561  }
562  }
563 
564  if( qualTheta>0 && !tpMode ){// it is a theta trigger & is not TP
565  if (qualTheta > bestQualTheta){
566  bestQualTheta = qualTheta;
567  }
568  innerME["DDU_ThetaBXvsQual"]->Fill(qualTheta,bx); // SM BX vs Qual Theta view
569  }
570  }
571 
572  // Fill Quality plots with best ddu triggers
573  if (!tpMode && theCompMapIn.find(rawId)!= theCompMapIn.end()) {
574  int bestQualPhi = theCompMapIn[rawId].qualDDU();
575  if (bestQualPhi>-1)
576  innerME["DDU_BestQual"]->Fill(bestQualPhi); // SM Best Qual Trigger Phi view
577  if(bestQualTheta>0) {
578  innerME["DDU_ThetaBestQual"]->Fill(bestQualTheta); // SM Best Qual Trigger Theta view
579  }
580  }
581  }
582 
583 }
584 
585 
587 
588  map<uint32_t,DTTPGCompareUnit>::const_iterator compIt = theCompMapIn.begin();
589  map<uint32_t,DTTPGCompareUnit>::const_iterator compEnd = theCompMapIn.end();
590 
591  for (; compIt!=compEnd; ++compIt) {
592 
593  uint32_t rawId = compIt->first;
594  DTChamberId chId(rawId);
595  map<string, MonitorElement*> &innerME = chamberHistos[rawId];
596 
597  const DTTPGCompareUnit & compUnit = compIt->second;
598  if ( compUnit.hasOne() ){
599  innerME["COM_QualDDUvsQualTM"]->Fill(compUnit.qualTM(),compUnit.qualDDU());
600  }
601  if ( compUnit.hasBoth() ){
602  wheelHistos[chId.wheel()]["COM_BXDiff"]->Fill(chId.sector(),chId.station(),compUnit.deltaBX());
603  if ( compUnit.hasSameQual() ) {
604  trendHistos[rawId]->accumulateValueTimeSlot(1);
605  }
606  }
607  }
608 
609 }
610 
611 
613 
614  TH1* histo = me->getTH1();
615  if (!histo) return;
616 
617  TAxis* axis=nullptr;
618  if (iaxis==1) {
619  axis=histo->GetXaxis();
620  }
621  else if(iaxis==2) {
622  axis=histo->GetYaxis();
623  }
624  if (!axis) return;
625 
626  string labels[7] = {"LI","LO","HI","HO","LL","HL","HH"};
627  int istart = axis->GetXmin()<-1 ? 2 : 1;
628  for (int i=0;i<7;i++) {
629  axis->SetBinLabel(i+istart,labels[i].c_str());
630  }
631 
632 }
633 
635 
636  TH1* histo = me->getTH1();
637  if (!histo) return;
638 
639  TAxis* axis=nullptr;
640  if (iaxis==1) {
641  axis=histo->GetXaxis();
642  }
643  else if(iaxis==2) {
644  axis=histo->GetYaxis();
645  }
646  if (!axis) return;
647 
648  string labels[2] = {"L","H"};
649  int istart = axis->GetXmin()<-1 ? 2 : 1;
650  for (int i=0;i<2;i++) {
651  axis->SetBinLabel(i+istart,labels[i].c_str());
652  }
653 
654 }
655 // Local Variables:
656 // show-trailing-whitespace: t
657 // truncate-lines: t
658 // End:
The_Container const * getContainer() const
T getUntrackedParameter(std::string const &, T const &) const
void runDDUvsTMAnalysis()
Run analysis on ROS data.
void dqmBeginRun(const edm::Run &, const edm::EventSetup &) override
Beginrun.
void bookHistos(DQMStore::IBooker &, const DTChamberId &chamb)
Book the histograms.
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
float trigDir(const L1MuDTChambPhDigi *trig)
Return local direction (trigger RF) for a given trigger primitive.
void setDDU(int qual, int bx)
#define nullptr
TH1 * getTH1() const
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
std::map< int, std::map< std::string, MonitorElement * > > wheelHistos
void setTM(int qual, int bx)
std::vector< std::string > theTypes
void Fill(long long x)
LuminosityBlockNumber_t luminosityBlock() const
DTTrigGeomUtils * theTrigGeomUtils
void endLuminosityBlock(const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &context) override
Perform trend plot operations.
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:268
~DTLocalTriggerBaseTask() override
Destructor.
void analyze(const edm::Event &e, const edm::EventSetup &c) override
Analyze.
MonitorElement * bookProfile2D(Args &&...args)
Definition: DQMStore.h:114
edm::EDGetTokenT< L1MuDTChambThContainer > tm_theta_Token_
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:106
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::map< uint32_t, DTTPGCompareUnit > theCompMapOut
edm::EDGetTokenT< DTLocalTriggerCollection > trig_Token_
void runTMAnalysis(std::vector< L1MuDTChambPhDigi > const *phInTrigs, std::vector< L1MuDTChambPhDigi > const *phOutTrigs, std::vector< L1MuDTChambThDigi > const *thTrigs)
Run analysis on TM data.
bool isValid() const
Definition: HandleBase.h:74
void beginLuminosityBlock(const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &context) override
To reset the MEs.
#define LogTrace(id)
void phiRange(const DTChamberId &id, float &min, float &max, int &nbins, float step=15)
Compute phi range in local chamber coordinates.
std::map< uint32_t, DTTPGCompareUnit > theCompMapIn
std::string & topFolder(std::string const &type)
Get the Top folder (different between Physics and TP and TM/DDU)
std::map< uint32_t, std::map< std::string, MonitorElement * > > chamberHistos
void setQLabelsTheta(MonitorElement *me, short int iaxis)
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:109
std::vector< DigiType >::const_iterator const_iterator
Phi_Container const * getContainer() const
HLT enums.
int sector() const
Definition: DTChamberId.h:61
void setQLabels(MonitorElement *me, short int iaxis)
Set Quality labels.
edm::EDGetTokenT< L1MuDTChambPhContainer > tm_phiIn_Token_
T get() const
Definition: EventSetup.h:71
std::map< uint32_t, DTTimeEvolutionHisto * > trendHistos
std::pair< const_iterator, const_iterator > Range
MonitorElement * bookFloat(Args &&...args)
Definition: DQMStore.h:105
dbl *** dir
Definition: mlp_gen.cc:35
void runDDUAnalysis(edm::Handle< DTLocalTriggerCollection > &trigsDDU)
Run analysis on ROS data.
float trigPos(const L1MuDTChambPhDigi *trig)
Return local position (trigger RF) for a given trigger primitive.
int station() const
Return the station number.
Definition: DTChamberId.h:51
UInt_t nEvents
Definition: hcalCalib.cc:41
edm::EDGetTokenT< L1MuDTChambPhContainer > tm_phiOut_Token_
DTLocalTriggerBaseTask(const edm::ParameterSet &ps)
Constructor.
int wheel() const
Return the wheel number.
Definition: DTChamberId.h:45
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
Definition: Run.h:45