CMS 3D CMS Logo

DTLocalTriggerTask.cc
Go to the documentation of this file.
1 /*
2  * \file DTLocalTriggerTask.cc
3  *
4  * \author M. Zanetti - INFN Padova
5  *
6 */
7 
9 
10 // Framework
12 
13 // DT trigger
15 
16 // Geometry
22 
23 //Root
24 #include"TH1.h"
25 #include"TAxis.h"
26 
27 #include <sstream>
28 #include <iostream>
29 #include <fstream>
30 
31 
32 using namespace edm;
33 using namespace std;
34 
36  trigGeomUtils(nullptr),
37  isLocalRun(ps.getUntrackedParameter<bool>("localrun", true))
38  {
39  if (!isLocalRun) {
40  ltcDigiCollectionToken_ = consumes<LTCDigiCollection>(
41  ps.getParameter<edm::InputTag>("ltcDigiCollectionTag"));
42  }
43 
44  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerTask") << "[DTLocalTriggerTask]: Constructor"<<endl;
45 
46  tpMode = ps.getUntrackedParameter<bool>("testPulseMode", false);
47  detailedAnalysis = ps.getUntrackedParameter<bool>("detailedAnalysis", false);
48  doTMTheta = ps.getUntrackedParameter<bool>("enableTMTheta", false);
49  tm_Token_ = consumes<L1MuDTChambPhContainer>(
50  ps.getUntrackedParameter<InputTag>("tm_label",InputTag("twinMuxStage2Digis:PhIn")));
51  tmTh_Token_ = consumes<L1MuDTChambThContainer>(
52  ps.getUntrackedParameter<edm::InputTag>("tmTh_label",InputTag("twinMuxStage2Digis:ThIn")));
53 
54  ros_Token_ = consumes<DTLocalTriggerCollection>(
55  ps.getUntrackedParameter<InputTag>("ros_label", InputTag("dtunpacker")));
56  seg_Token_ = consumes<DTRecSegment4DCollection>(
57  ps.getUntrackedParameter<InputTag>("seg_label", InputTag("dt4DSegments")));
58 
59  if (tpMode) {
60  baseFolderTM = "DT/11-LocalTriggerTP-TM/";
61  baseFolderDDU = "DT/12-LocalTriggerTP-DDU/";
62  }
63  else {
64  baseFolderTM = "DT/03-LocalTrigger-TM/";
65  baseFolderDDU = "DT/04-LocalTrigger-DDU/";
66  }
67 
68  parameters = ps;
69 
70 }
71 
72 
74 
75  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerTask") << "[DTLocalTriggerTask]: analyzed " << nevents << " events" << endl;
76  if (trigGeomUtils) { delete trigGeomUtils; }
77 
78 }
79 
81 
82  nevents = 0;
83  context.get<MuonGeometryRecord>().get(muonGeom);
85 
86 }
87 
88 void DTLocalTriggerTask::bookHistograms(DQMStore::IBooker & ibooker, edm::Run const & iRun, edm::EventSetup const & context) {
89 
90  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerTask") << "[DTLocalTriggerTask]: bookHistograms" << endl;
91 
92  if(parameters.getUntrackedParameter<bool>("staticBooking", true)) { // Static histo booking
93 
94  vector<string> trigSources;
95  if(parameters.getUntrackedParameter<bool>("localrun", true)) {
96  trigSources.push_back("");
97  }
98  else {
99  trigSources.push_back("_DTonly");
100  trigSources.push_back("_NoDT");
101  trigSources.push_back("_DTalso");
102  }
103  vector<string>::const_iterator trigSrcIt = trigSources.begin();
104  vector<string>::const_iterator trigSrcEnd = trigSources.end();
105 
106  if(parameters.getUntrackedParameter<bool>("process_tm", true)) {
107  bookBarrelHistos(ibooker, "TM_ErrorsChamberID");
108  }
109 
110  if (tpMode) {
111  for (int stat=1;stat<5;++stat){
112  for (int wh=-2;wh<3;++wh){
113  for (int sect=1;sect<13;++sect){
114  DTChamberId dtChId(wh,stat,sect);
115 
116  if (parameters.getUntrackedParameter<bool>("process_tm", true)){ // TM data
117  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_BXvsQual"+(*trigSrcIt));
118  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_QualvsPhirad"+(*trigSrcIt));
119  }
120 
121  if (parameters.getUntrackedParameter<bool>("process_ddu", true)){ // DDU data
122  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","DDU_BXvsQual"+(*trigSrcIt));
123  }
124 
125  }
126  }
127  } // end of loop
128  }
129  else {
130  for (;trigSrcIt!=trigSrcEnd;++trigSrcIt){
131  for (int wh=-2;wh<3;++wh){
132  if (parameters.getUntrackedParameter<bool>("process_tm", true) &&
133  parameters.getUntrackedParameter<bool>("process_ddu", true)){ // TM+DDU data
134  bookWheelHistos(ibooker, wh,"COM_BXDiff"+(*trigSrcIt));
135  }
136  for (int sect=1;sect<13;++sect){
137  for (int stat=1;stat<5;++stat){
138  DTChamberId dtChId(wh,stat,sect);
139  if (parameters.getUntrackedParameter<bool>("process_tm", true)){ // TM data
140 
141  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_BXvsQual_In"+(*trigSrcIt));
142  if (detailedAnalysis) {
143  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_QualvsPhirad_In"+(*trigSrcIt));
144  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_QualvsPhibend_In"+(*trigSrcIt));
145  }
146  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_Flag1stvsQual_In"+(*trigSrcIt));
147  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_FlagUpDownvsQual_In"+(*trigSrcIt));
148 
149  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_BestQual_In"+(*trigSrcIt));
150  if (stat!=4 && doTMTheta){
151  bookHistos(ibooker, dtChId,"LocalTriggerTheta","TM_PositionvsBX"+(*trigSrcIt));
152  bookHistos(ibooker, dtChId,"LocalTriggerTheta","TM_QualityvsBX"+(*trigSrcIt));
153 
154  bookHistos(ibooker, dtChId,"LocalTriggerTheta","TM_PositionvsQual"+(*trigSrcIt));
155 
156  bookHistos(ibooker, dtChId,"LocalTriggerTheta","TM_ThetaBXvsQual"+(*trigSrcIt));
157  bookHistos(ibooker, dtChId,"LocalTriggerTheta","TM_ThetaBestQual"+(*trigSrcIt));
158  }
159 
160  if (parameters.getUntrackedParameter<bool>("process_seg", true)){ // TM + Segemnt
161  bookHistos(ibooker, dtChId,"Segment","TM_PhitkvsPhitrig"+(*trigSrcIt));
162  bookHistos(ibooker, dtChId,"Segment","TM_PhibtkvsPhibtrig"+(*trigSrcIt));
163  bookHistos(ibooker, dtChId,"Segment","TM_PhiResidual"+(*trigSrcIt));
164  bookHistos(ibooker, dtChId,"Segment","TM_PhiResidualvsLUTPhi"+(*trigSrcIt));
165  bookHistos(ibooker, dtChId,"Segment","TM_PhibResidual"+(*trigSrcIt));
166  bookHistos(ibooker, dtChId,"Segment","TM_HitstkvsQualtrig"+(*trigSrcIt));
167  bookHistos(ibooker, dtChId,"Segment","TM_TrackPosvsAngle"+(*trigSrcIt));
168  bookHistos(ibooker, dtChId,"Segment","TM_TrackPosvsAngleandTrig"+(*trigSrcIt));
169  bookHistos(ibooker, dtChId,"Segment","TM_TrackPosvsAngleandTrigHHHL"+(*trigSrcIt));
170  if(stat!=4){
171  bookHistos(ibooker, dtChId,"Segment","TM_TrackThetaPosvsAngle"+(*trigSrcIt)); // theta view
172  bookHistos(ibooker, dtChId,"Segment","TM_TrackThetaPosvsAngleandTrig"+(*trigSrcIt));
173  bookHistos(ibooker, dtChId,"Segment","TM_TrackThetaPosvsAngleandTrigH"+(*trigSrcIt)); // TM theta quality not available!
174  }
175  }
176 
177  }
178 
179  if (parameters.getUntrackedParameter<bool>("process_ddu", true)){ // DDU data
180 
181  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","DDU_BXvsQual"+(*trigSrcIt));
182  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","DDU_Flag1stvsQual"+(*trigSrcIt));
183  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","DDU_BestQual"+(*trigSrcIt));
184  if(stat!=4){ // theta view
185  bookHistos(ibooker, dtChId,"LocalTriggerTheta","DDU_ThetaBXvsQual"+(*trigSrcIt));
186  bookHistos(ibooker, dtChId,"LocalTriggerTheta","DDU_ThetaBestQual"+(*trigSrcIt));
187  }
188 
189  if (parameters.getUntrackedParameter<bool>("process_seg", true)){ // DDU + Segment
190  bookHistos(ibooker, dtChId,"Segment","DDU_HitstkvsQualtrig"+(*trigSrcIt));
191  bookHistos(ibooker, dtChId,"Segment","DDU_TrackPosvsAngle"+(*trigSrcIt));
192  bookHistos(ibooker, dtChId,"Segment","DDU_TrackPosvsAngleandTrig"+(*trigSrcIt));
193  bookHistos(ibooker, dtChId,"Segment","DDU_TrackPosvsAngleandTrigHHHL"+(*trigSrcIt));
194  if(stat!=4){
195  bookHistos(ibooker, dtChId,"Segment","DDU_TrackThetaPosvsAngle"+(*trigSrcIt)); // theta view
196  bookHistos(ibooker, dtChId,"Segment","DDU_TrackThetaPosvsAngleandTrig"+(*trigSrcIt));
197  bookHistos(ibooker, dtChId,"Segment","DDU_TrackThetaPosvsAngleandTrigH"+(*trigSrcIt));
198  }
199  }
200 
201  }
202 
203  if (parameters.getUntrackedParameter<bool>("process_tm", true) &&
204  parameters.getUntrackedParameter<bool>("process_ddu", true)){ // TM+DDU data
205  bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","COM_QualDDUvsQualTM"+(*trigSrcIt));
206  }
207 
208  }
209  }
210  for (int sect=13;sect<15;++sect){
211  DTChamberId dtChId(wh,4,sect);
212  if (parameters.getUntrackedParameter<bool>("process_tm", true) &&
213  parameters.getUntrackedParameter<bool>("process_seg", true)){ // TM+SEG LUTs data
214  bookHistos(ibooker, dtChId,"Segment","TM_PhitkvsPhitrig"+(*trigSrcIt));
215  bookHistos(ibooker, dtChId,"Segment","TM_PhibtkvsPhibtrig"+(*trigSrcIt));
216  bookHistos(ibooker, dtChId,"Segment","TM_PhiResidual"+(*trigSrcIt));
217  bookHistos(ibooker, dtChId,"Segment","TM_PhiResidualvsLUTPhi"+(*trigSrcIt));
218  bookHistos(ibooker, dtChId,"Segment","TM_PhibResidual"+(*trigSrcIt));
219  }
220  }
221  }
222  }// end of loop
223  }
224 
225  }
226 
227 
228 }
229 
230 
232 
233  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerTask") << "[DTLocalTriggerTask]: Begin of LS transition" << endl;
234 
235  if(lumiSeg.id().luminosityBlock()%parameters.getUntrackedParameter<int>("ResetCycle", 3) == 0) {
236  for(map<uint32_t, map<string, MonitorElement*> > ::const_iterator histo = digiHistos.begin();
237  histo != digiHistos.end();
238  histo++) {
239  for(map<string, MonitorElement*> ::const_iterator ht = (*histo).second.begin();
240  ht != (*histo).second.end();
241  ht++) {
242  (*ht).second->Reset();
243  }
244  }
245  }
246 
247 }
248 
250  if (!nevents){
251 
253  e.getByToken(tm_Token_, l1DTTPGPh);
255  e.getByToken(tmTh_Token_, l1DTTPGTh);
256 
257  useTM = (l1DTTPGPh.isValid() || l1DTTPGTh.isValid()) && parameters.getUntrackedParameter<bool>("process_tm", true) ;
258 
260  e.getByToken(ros_Token_,l1DDUTrigs);
261  useDDU = l1DDUTrigs.isValid() && parameters.getUntrackedParameter<bool>("process_ddu", true) ;
262 
263  Handle<DTRecSegment4DCollection> all4DSegments;
264  e.getByToken(seg_Token_, all4DSegments);
265  useSEG = all4DSegments.isValid() && parameters.getUntrackedParameter<bool>("process_seg", true) ;
266 
267  }
268 
269 
270  nevents++;
271 
272  triggerSource(e);
273 
274  if ( useTM ) {
276  e.getByToken(tm_Token_, l1DTTPGPh);
277  vector<L1MuDTChambPhDigi> const* l1PhTrig = l1DTTPGPh->getContainer();
278 
280  e.getByToken(tmTh_Token_, l1DTTPGTh);
281 
282  vector<L1MuDTChambThDigi> const* l1ThTrig = l1DTTPGTh->getContainer();
283 
284  runTMAnalysis(l1PhTrig, l1ThTrig);
285  }
286  if ( useDDU ) {
288  e.getByToken(ros_Token_, l1DDUTrigs);
289 
290  runDDUAnalysis(l1DDUTrigs);
291  }
292  if ( !tpMode && useSEG ) {
294  e.getByToken(seg_Token_, segments4D);
295 
296  runSegmentAnalysis(segments4D);
297  }
298  if ( !tpMode && useTM && useDDU ) {
300  }
301 
302 
303 }
304 
305 
306 void DTLocalTriggerTask::bookBarrelHistos(DQMStore::IBooker & ibooker, string histoTag) {
307 
308  bool isTM = histoTag.substr(0,2) == "TM";
309  ibooker.setCurrentFolder(topFolder(isTM));
310  if (histoTag == "TM_ErrorsChamberID") {
311  tm_IDDataErrorPlot = ibooker.book1D(histoTag.c_str(),"TM Data ID Error",5,-2,3);
312  tm_IDDataErrorPlot->setAxisTitle("wheel",1);
313  }
314 
315  return;
316 
317 }
318 
319 void DTLocalTriggerTask::bookHistos(DQMStore::IBooker & ibooker, const DTChamberId& dtCh, string folder, string histoTag) {
320 
321  int wh=dtCh.wheel();
322  int sc=dtCh.sector();
323  stringstream wheel; wheel << wh;
324  stringstream station; station << dtCh.station();
325  stringstream sector; sector << sc;
326 
327  double minBX=0;
328  double maxBX=0;
329  int rangeBX=0;
330 
331  string histoType = histoTag.substr(3,histoTag.find("_",3)-3);
332  bool isTM = histoTag.substr(0,2) == "TM";
333 
334  ibooker.setCurrentFolder(topFolder(isTM) + "Wheel" + wheel.str() +
335  "/Sector" + sector.str() +
336  "/Station" + station.str() + "/" + folder);
337 
338  string histoName = histoTag + "_W" + wheel.str() + "_Sec" + sector.str() + "_St" + station.str();
339 
340  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerTask") << "[DTLocalTriggerTask]: booking " << topFolder(isTM) << "Wheel" << wheel.str()
341  << "/Sector" << sector.str()
342  << "/Station"<< station.str() << "/" << folder << "/" << histoName << endl;
343 
344  if (histoType.find("BX") != string::npos){
345  if (histoTag.substr(0,2) == "TM"){
346  minBX= parameters.getUntrackedParameter<int>("minBXTM",-2) - 0.5;
347  maxBX= parameters.getUntrackedParameter<int>("maxBXTM",2) + 0.5;
348  }
349  else {
350  minBX= parameters.getUntrackedParameter<int>("minBXDDU",0) - 0.5;
351  maxBX= parameters.getUntrackedParameter<int>("maxBXDDU",20) + 0.5;
352  }
353  rangeBX = (int)(maxBX-minBX);
354  }
355 
356  if ( folder == "LocalTriggerPhiIn") {
357 
358  if( histoType == "BXvsQual" ){
359  (digiHistos[dtCh.rawId()])[histoTag] =
360  ibooker.book2D(histoName,"BX vs trigger quality",7,-0.5,6.5,rangeBX,minBX,maxBX);
361  setQLabels((digiHistos[dtCh.rawId()])[histoTag],1);
362  return ;
363  }
364  if( histoType == "BestQual" ){
365  (digiHistos[dtCh.rawId()])[histoTag] =
366  ibooker.book1D(histoName,"Trigger quality of best primitives",7,-0.5,6.5);
367  setQLabels((digiHistos[dtCh.rawId()])[histoTag],1);
368  return ;
369  }
370  if( histoType == "QualvsPhirad" ){
371  (digiHistos[dtCh.rawId()])[histoTag] =
372  ibooker.book2D(histoName,"Trigger quality vs local position",100,-500.,500.,7,-0.5,6.5);
373  setQLabels((digiHistos[dtCh.rawId()])[histoTag],2);
374  return ;
375  }
376  if( histoType == "QualvsPhibend" ) {
377  (digiHistos[dtCh.rawId()])[histoTag] =
378  ibooker.book2D(histoName,"Trigger quality vs local direction",200,-40.,40.,7,-0.5,6.5);
379  setQLabels((digiHistos[dtCh.rawId()])[histoTag],2);
380  return ;
381  }
382  if( histoType == "Flag1stvsQual" ) {
383  (digiHistos[dtCh.rawId()])[histoTag] =
384  ibooker.book2D(histoName,"1st/2nd trig flag vs quality",7,-0.5,6.5,2,-0.5,1.5);
385  setQLabels((digiHistos[dtCh.rawId()])[histoTag],1);
386  return ;
387  }
388  if( histoType == "FlagUpDownvsQual" ) {
389  (digiHistos[dtCh.rawId()])[histoTag] =
390  ibooker.book2D(histoName,"Up/Down trig flag vs quality",7,-0.5,6.5,2,-0.5,1.5);
391  setQLabels((digiHistos[dtCh.rawId()])[histoTag],1);
392  return ;
393  }
394 
395  if( histoType == "QualDDUvsQualTM" ){
396  (digiHistos[dtCh.rawId()])[histoTag] =
397  ibooker.book2D(histoName,"DDU quality vs TM quality",8,-1.5,6.5,8,-1.5,6.5);
398  setQLabels((digiHistos[dtCh.rawId()])[histoTag],1);
399  setQLabels((digiHistos[dtCh.rawId()])[histoTag],2);
400  return ;
401  }
402 
403  }
404  else if ( folder == "LocalTriggerTheta") {
405 
406  if( histoType == "PositionvsBX" ) {
407  (digiHistos[dtCh.rawId()])[histoTag] =
408  ibooker.book2D(histoName,"Theta trigger position vs BX",rangeBX,minBX,maxBX,7,-0.5,6.5);
409  return ;
410  }
411  if( histoType == "PositionvsQual" ) {
412  (digiHistos[dtCh.rawId()])[histoTag] =
413  ibooker.book2D(histoName,"Theta trigger position vs quality",2,0.5,2.5,7,-0.5,6.5);
414  setQLabelsTheta((digiHistos[dtCh.rawId()])[histoTag],1);
415  return ;
416  }
417  if( histoType == "ThetaBXvsQual" ) {
418  (digiHistos[dtCh.rawId()])[histoTag] =
419  ibooker.book2D(histoName,"BX vs trigger quality",2,0.5,2.5,rangeBX,minBX,maxBX);
420  setQLabelsTheta((digiHistos[dtCh.rawId()])[histoTag],1);
421  }
422  if( histoType == "ThetaBestQual" ){ //It does not make sense: 7 positions, how to define best?
423  (digiHistos[dtCh.rawId()])[histoTag] =
424  ibooker.book1D(histoName,"Trigger quality of best primitives (theta)",2,0.5,2.5); // 0 = not fired, 1 = L, 2 = H
425  setQLabelsTheta((digiHistos[dtCh.rawId()])[histoTag],1);
426  return ;
427  }
428 
429  }
430  else if ( folder == "Segment") {
431 
432  if( histoType.find("TrackThetaPosvsAngle" ) == 0 ) {
433 
434  string histoLabel = "Position vs Angle (theta)";
435  if (histoType.find("andTrigH") != string::npos) histoLabel += " for H triggers";
436  else if (histoType.find("andTrig") != string::npos) histoLabel += " for triggers";
437 
438  float min,max;
439  int nbins;
440  trigGeomUtils->thetaRange(dtCh,min,max,nbins);
441  (digiHistos[dtCh.rawId()])[histoTag] =
442  ibooker.book2D(histoName,histoLabel,16,-40.,40.,nbins,min,max);
443  return ;
444  }
445  if( histoType.find("TrackPosvsAngle") == 0 ){
446 
447  float min,max;
448  int nbins;
449  trigGeomUtils->phiRange(dtCh,min,max,nbins);
450 
451  string histoLabel = "Position vs Angle (phi)";
452  if (histoType.find("andTrigHHHL") != string::npos) histoLabel += " for HH/HL triggers";
453  else if (histoType.find("andTrig") != string::npos) histoLabel += " for triggers";
454 
455  (digiHistos[dtCh.rawId()])[histoTag] =
456  ibooker.book2D(histoName,histoLabel,16,-40.,40.,nbins,min,max);
457  return ;
458  }
459  if( histoType == "PhitkvsPhitrig" ){
460  (digiHistos[dtCh.rawId()])[histoTag] =
461  ibooker.book2D(histoName,"Local position: segment vs trigger",100,-500.,500.,100,-500.,500.);
462  return ;
463  }
464  if( histoType == "PhibtkvsPhibtrig" ){
465  (digiHistos[dtCh.rawId()])[histoTag] =
466  ibooker.book2D(histoName,"Local direction : segment vs trigger",200,-40.,40.,200,-40.,40.);
467  return ;
468  }
469  if( histoType == "PhiResidual" ){
470  (digiHistos[dtCh.rawId()])[histoTag] =
471  ibooker.book1D(histoName,"Trigger local position - Segment local position (correlated triggers)",400,-10.,10.);
472  return ;
473  }
474  if( histoType == "PhibResidual" ){
475  (digiHistos[dtCh.rawId()])[histoTag] =
476  ibooker.book1D(histoName,"Trigger local direction - Segment local direction (correlated triggers)",500,-10.,10.);
477  return ;
478  }
479  if( histoType == "HitstkvsQualtrig" ){
480  (digiHistos[dtCh.rawId()])[histoTag] =
481  ibooker.book2D(histoName,"Segment hits (phi) vs trigger quality",7,-0.5,6.5,10,0.5,10.5);
482  setQLabels((digiHistos[dtCh.rawId()])[histoTag],1);
483  return ;
484  }
485 
486  }
487 
488 }
489 
490 void DTLocalTriggerTask::bookWheelHistos(DQMStore::IBooker & ibooker, int wh, string histoTag) {
491 
492  stringstream wheel; wheel << wh;
493 
494  string histoType = histoTag.substr(3,histoTag.find("_",3)-3);
495  bool isTM = histoTag.substr(0,2) == "TM";
496 
497  ibooker.setCurrentFolder(topFolder(isTM) + "Wheel" + wheel.str() + "/");
498 
499  string histoName = histoTag + "_W" + wheel.str();
500 
501  LogTrace("DTDQM|DTMonitorModule|DTLocalTriggerTask") << "[DTLocalTriggerTask]: booking " << topFolder(isTM)
502  << "Wheel" << wheel.str() << "/" << histoName << endl;
503 
504  if( histoType.find("BXDiff") != string::npos ){
505  MonitorElement *me = ibooker.bookProfile2D(histoName,"DDU-TM BX Difference",12,1,13,4,1,5,0.,20.);
506  me->setAxisTitle("Sector",1);
507  me->setAxisTitle("station",2);
508  (wheelHistos[wh])[histoTag] = me;
509  return ;
510  }
511 
512 }
513 
514 void DTLocalTriggerTask::runTMAnalysis(std::vector<L1MuDTChambPhDigi> const* phTrigs,
515  std::vector<L1MuDTChambThDigi> const* thTrigs ) {
516 
517  //exit(0);
518 
519  string histoType ;
520  string histoTag ;
521 
522 
523  // define best quality trigger segment (phi and theta)
524  // in any station start from 1 and zero is kept empty
525  for (int i=0;i<5;++i){
526  for (int j=0;j<6;++j){
527  for (int k=0;k<13;++k){
528  phcode_best[j][i][k] = -1;
529  thcode_best[j][i][k] = -1;
530  }
531  }
532  }
533 
534  vector<L1MuDTChambPhDigi>::const_iterator iph = phTrigs->begin();
535  vector<L1MuDTChambPhDigi>::const_iterator iphe = phTrigs->end();
536  for(; iph !=iphe ; ++iph) {
537 
538  int phwheel = iph->whNum();
539  int phsec = iph->scNum() + 1; // SM The track finder goes from 0 to 11. I need them from 1 to 12 !!!!!
540  int phst = iph->stNum();
541  int phbx = iph->bxNum();
542  int phcode = iph->code();
543  int phi1st = iph->Ts2Tag();
544  int updown = iph->UpDownTag();
545 
546  // FIXME: workaround for TM data with station ID
547  if(phst == 0) {
548  tm_IDDataErrorPlot->Fill(phwheel);
549  continue;
550  }
551 
552  if(phcode>phcode_best[phwheel+3][phst][phsec] && phcode<7) {
553  phcode_best[phwheel+3][phst][phsec]=phcode;
554  iphbest[phwheel+3][phst][phsec] = &(*iph);
555  }
556 
557  DTChamberId dtChId(phwheel,phst,phsec);
558 
559  float x = trigGeomUtils->trigPos(&(*iph));
560  float angle = trigGeomUtils->trigDir(&(*iph));
561  uint32_t indexCh = dtChId.rawId();
562 
563  map<string, MonitorElement*> &innerME = digiHistos[indexCh];
564 
565  if (tpMode) {
566  innerME.find("TM_BXvsQual"+trigsrc)->second->Fill(phcode,phbx-phi1st); // SM BX vs Qual Phi view (1st tracks)
567  innerME.find("TM_QualvsPhirad"+trigsrc)->second->Fill(x,phcode); // SM Qual vs radial angle Phi view
568  }
569  else {
570  innerME.find("TM_BXvsQual_In"+trigsrc)->second->Fill(phcode,phbx-phi1st); // SM BX vs Qual Phi view (1st tracks)
571  innerME.find("TM_Flag1stvsQual_In"+trigsrc)->second->Fill(phcode,phi1st); // SM Qual 1st/2nd track flag Phi view
572  innerME.find("TM_FlagUpDownvsQual_In"+trigsrc)->second->Fill(phcode,updown); // SM Qual Up/Down track flag Phi view
573  if (detailedAnalysis) {
574  innerME.find("TM_QualvsPhirad_In"+trigsrc)->second->Fill(x,phcode); // SM Qual vs radial angle Phi view
575  innerME.find("TM_QualvsPhibend_In"+trigsrc)->second->Fill(angle,phcode); // SM Qual vs bending Phi view
576  }
577  }
578 
579  }
580 
581  if (doTMTheta) {
582  int thcode[7];
583  vector<L1MuDTChambThDigi>::const_iterator ith = thTrigs->begin();
584  vector<L1MuDTChambThDigi>::const_iterator ithe = thTrigs->end();
585  for(; ith != ithe; ++ith) {
586  int thwheel = ith->whNum();
587  int thsec = ith->scNum() + 1; // SM The track finder goes from 0 to 11. I need them from 1 to 12 !!!!!
588  int thst = ith->stNum();
589  int thbx = ith->bxNum();
590 
591  for (int pos=0; pos<7; pos++) {
592  thcode[pos] = ith->code(pos);
593 
594  if(thcode[pos]>thcode_best[thwheel+3][thst][thsec] ) {
595  thcode_best[thwheel+3][thst][thsec]=thcode[pos];
596  ithbest[thwheel+3][thst][thsec] = &(*ith);
597  }
598  }
599 
600  DTChamberId dtChId(thwheel,thst,thsec);
601  uint32_t indexCh = dtChId.rawId();
602 
603  map<string, MonitorElement*> &innerME = digiHistos[indexCh];
604 
605  for (int pos=0; pos<7; pos++) { //SM fill position for non zero position bit in theta view
606  if(thcode[pos]>0){ //Fired
607  innerME.find("TM_PositionvsBX"+trigsrc)->second->Fill(thbx,pos); // SM BX vs Position Theta view
608  innerME.find("TM_PositionvsQual"+trigsrc)->second->Fill(thcode[pos],pos); //code = pos + qual; so 0, 1, 2 for 0, L, H resp.
609  innerME.find("TM_ThetaBXvsQual"+trigsrc)->second->Fill(thcode[pos],thbx); //code = pos + qual; so 0, 1, 2 for 0, L, H resp.
610  }
611  }
612  }
613  }
614 
615 
616  // Fill Quality plots with best TM triggers in phi & theta
617  if (!tpMode) {
618  for (int st=1;st<5;++st){
619  for (int wh=-2;wh<3;++wh){
620  for (int sc=1;sc<13;++sc){
621  if (phcode_best[wh+wheelArrayShift][st][sc]>-1 && phcode_best[wh+wheelArrayShift][st][sc]<7){
622  DTChamberId id(wh,st,sc);
623  uint32_t indexCh = id.rawId();
624  map<string, MonitorElement*> &innerME = digiHistos[indexCh];
625 
626  innerME.find("TM_BestQual_In"+trigsrc)->second->Fill(phcode_best[wh+wheelArrayShift][st][sc]); // Best Qual Trigger Phi view
627  }
628  if (thcode_best[wh+wheelArrayShift][st][sc]>0 && thcode_best[wh+wheelArrayShift][st][sc]<3){
629  DTChamberId id(wh,st,sc);
630  uint32_t indexCh = id.rawId();
631  map<string, MonitorElement*> &innerME = digiHistos[indexCh];
632 
633  innerME.find("TM_ThetaBestQual"+trigsrc)->second->Fill(thcode_best[wh+wheelArrayShift][st][sc]); // Best Qual Trigger Theta view
634  }
635  }
636  }
637  }
638  }
639 }
640 
642 
644 
645  for (int i=0;i<5;++i){
646  for (int j=0;j<6;++j){
647  for (int k=0;k<13;++k){
648  dduphcode_best[j][i][k] = -1;
649  dduthcode_best[j][i][k] = -1;
650  }
651  }
652  }
653 
654  for (detUnitIt=trigsDDU->begin();
655  detUnitIt!=trigsDDU->end();
656  ++detUnitIt){
657 
658  const DTChamberId& id = (*detUnitIt).first;
659  const DTLocalTriggerCollection::Range& range = (*detUnitIt).second;
660  uint32_t indexCh = id.rawId();
661  map<string, MonitorElement*> &innerME = digiHistos[indexCh];
662 
663  int wh = id.wheel();
664  int sec = id.sector();
665  int st = id.station();
666 
667  for (DTLocalTriggerCollection::const_iterator trigIt = range.first;
668  trigIt!=range.second;
669  ++trigIt){
670 
671  int bx = trigIt->bx();
672  int quality = trigIt->quality();
673  int thqual = trigIt->trTheta();
674  int flag1st = trigIt->secondTrack() ? 1 : 0;
675 
676  // check if SC data exist: fill for any trigger
677  if( quality>-1 && quality<7 ) { // it is a phi trigger
678 
679  if(quality>dduphcode_best[wh+wheelArrayShift][st][sec]) {
681  iphbestddu[wh+wheelArrayShift][st][sec] = &(*trigIt);
682  }
683 
684  if(tpMode) {
685  innerME.find("DDU_BXvsQual"+trigsrc)->second->Fill(quality,bx-flag1st); // SM BX vs Qual Phi view
686  }
687  else {
688  innerME.find("DDU_BXvsQual"+trigsrc)->second->Fill(quality,bx-flag1st); // SM BX vs Qual Phi view
689  innerME.find("DDU_Flag1stvsQual"+trigsrc)->second->Fill(quality,flag1st); // SM Quality vs 1st/2nd track flag Phi view
690  }
691  }
692  if( thqual>0 && !tpMode ) { // it is a theta trigger
693 
694  if(thqual>dduthcode_best[wh+wheelArrayShift][st][sec] ) {
695  dduthcode_best[wh+wheelArrayShift][st][sec]=thqual;
696  }
697 
698  innerME.find("DDU_ThetaBXvsQual"+trigsrc)->second->Fill(thqual,bx); // SM BX vs Qual Theta view
699  }
700  }
701 
702  // Fill Quality plots with best ddu triggers in phi & theta
703  if (!tpMode) {
704  if (dduphcode_best[wh+wheelArrayShift][st][sec]>-1 &&
705  dduphcode_best[wh+wheelArrayShift][st][sec]<7){
706 
707  innerME.find("DDU_BestQual"+trigsrc)->second->Fill(dduphcode_best[wh+wheelArrayShift][st][sec]); // Best Qual Trigger Phi view
708  }
709  if (dduthcode_best[wh+wheelArrayShift][st][sec]>0){
710  innerME.find("DDU_ThetaBestQual"+trigsrc)->second->Fill(dduthcode_best[wh+wheelArrayShift][st][sec]); // Best Qual Trigger Theta view
711  }
712  }
713  }
714 }
715 
716 
718 
720 
721  // Find best tracks & good tracks
722  memset(track_ok,false,450*sizeof(bool));
723 
725  vector<const DTRecSegment4D*> best4DSegments;
726 
727  // Preliminary loop finds best 4D Segment and high quality ones
728  for (chamberId = segments4D->id_begin(); chamberId != segments4D->id_end(); ++chamberId){
729 
730  DTRecSegment4DCollection::range range = segments4D->get(*chamberId);
731  const DTRecSegment4D* tmpBest=nullptr;
732  int tmpdof = 0;
733  int dof = 0;
734 
735  for ( track = range.first; track != range.second; ++track){
736 
737  if( (*track).hasPhi() ) {
738 
739  dof = (*track).phiSegment()->degreesOfFreedom();
740  if ( dof>tmpdof ){
741  tmpBest = &(*track);
742  tmpdof = dof;
743 
744  int wheel = (*track).chamberId().wheel();
745  int sector = (*track).chamberId().sector();
746  int station = (*track).chamberId().station();
747  if (sector==13){
748  sector=4;
749  }
750  else if (sector==14){
751  sector=10;
752  }
753  track_ok[wheel+3][station][sector] = (!track_ok[wheel+3][station][sector] && dof>=2);
754  }
755 
756  }
757  }
758  if (tmpBest) best4DSegments.push_back(tmpBest);
759  }
760 
761  vector<const DTRecSegment4D*>::const_iterator btrack;
762 
763  for ( btrack = best4DSegments.begin(); btrack != best4DSegments.end(); ++btrack ){
764 
765  if( (*btrack)->hasPhi() ) { // Phi component
766 
767  int wheel = (*btrack)->chamberId().wheel();
768  int station = (*btrack)->chamberId().station();
769  int sector = (*btrack)->chamberId().sector();
770  int scsector = 0;
771  float x_track, y_track, x_angle, y_angle;
772  trigGeomUtils->computeSCCoordinates((*btrack),scsector,x_track,x_angle,y_track,y_angle);
773  int nHitsPhi = (*btrack)->phiSegment()->degreesOfFreedom()+2;
774 
775  DTChamberId dtChId(wheel,station,sector); // get chamber for LUTs histograms (Sectors 1 to 14)
776  uint32_t indexCh = dtChId.rawId();
777  map<string, MonitorElement*> &innerMECh = digiHistos[indexCh];
778 
779  DTChamberId dtChIdSC = DTChamberId(wheel,station,scsector); // get chamber for histograms SC granularity (sectors 1 to 12)
780  indexCh = dtChIdSC.rawId();
781  map<string, MonitorElement*> &innerME = digiHistos[indexCh];
782 
783  if (useDDU &&
784  dduphcode_best[wheel+3][station][scsector] > -1 &&
785  dduphcode_best[wheel+3][station][scsector] < 7 ) {
786 
787  // SM hits of the track vs quality of the trigger
788  innerME.find("DDU_HitstkvsQualtrig"+trigsrc)->second->Fill(dduphcode_best[wheel+3][station][scsector],nHitsPhi);
789 
790  }
791 
792  if (useTM &&
793  phcode_best[wheel+3][station][scsector] > -1 &&
794  phcode_best[wheel+3][station][scsector] < 7 ) {
795 
796  innerME.find("TM_HitstkvsQualtrig"+trigsrc)->second->Fill(phcode_best[wheel+3][station][scsector],nHitsPhi);
797 
798  if (phcode_best[wheel+3][station][scsector]>3 && nHitsPhi>=7){
799 
800  float x_trigger = trigGeomUtils->trigPos(iphbest[wheel+3][station][scsector]);
801  float angle_trigger = trigGeomUtils->trigDir(iphbest[wheel+3][station][scsector]);
802  trigGeomUtils->trigToSeg(station,x_trigger,x_angle);
803 
804  innerMECh.find("TM_PhitkvsPhitrig"+trigsrc)->second->Fill(x_trigger,x_track);
805  innerMECh.find("TM_PhibtkvsPhibtrig"+trigsrc)->second->Fill(angle_trigger,x_angle);
806  innerMECh.find("TM_PhiResidual"+trigsrc)->second->Fill(x_trigger-x_track);
807  innerMECh.find("TM_PhibResidual"+trigsrc)->second->Fill(angle_trigger-x_angle);
808  }
809  }
810 
811 
812  if (useTM) {
813 
814  // check for triggers elsewhere in the sector
815  bool trigFlagTM =false;
816  for (int ist=1; ist<5; ist++){
817  if (ist!=station &&
818  phcode_best[wheel+3][ist][scsector]>=2 &&
819  phcode_best[wheel+3][ist][scsector]<7 &&
820  track_ok[wheel+3][ist][scsector]==true){
821  trigFlagTM = true;
822  break;
823  }
824  }
825 
826  if (trigFlagTM && fabs(x_angle)<40. && nHitsPhi>=7){
827 
828  // position vs angle of track for reconstruced tracks (denom. for trigger efficiency)
829  innerME.find("TM_TrackPosvsAngle"+trigsrc)->second->Fill(x_angle,x_track);
830  if (phcode_best[wheel+3][station][scsector] >= 2 && phcode_best[wheel+3][station][scsector] < 7) {
831  innerME.find("TM_TrackPosvsAngleandTrig"+trigsrc)->second->Fill(x_angle,x_track);
832  if (phcode_best[wheel+3][station][scsector] > 4){ //HH & HL Triggers
833  innerME.find("TM_TrackPosvsAngleandTrigHHHL"+trigsrc)->second->Fill(x_angle,x_track);
834  }
835  }
836 
837  }
838 
839  if ((*btrack)->hasZed() && trigFlagTM && fabs(y_angle)<40. && (*btrack)->zSegment()->degreesOfFreedom()>=1){
840 
841  // position va angle of track for reconstruced tracks (denom. for trigger efficiency) along theta direction
842  innerME.find("TM_TrackThetaPosvsAngle"+trigsrc)->second->Fill(y_angle,y_track);
843  if (thcode_best[wheel+3][station][scsector] > 0) {
844  innerME.find("TM_TrackThetaPosvsAngleandTrig"+trigsrc)->second->Fill(y_angle,y_track);
845  if (thcode_best[wheel+3][station][scsector] == 2) {
846  innerME.find("TM_TrackThetaPosvsAngleandTrigH"+trigsrc)->second->Fill(y_angle,y_track);
847  }
848  }
849 
850  }
851  }
852 
853  if (useDDU) {
854 
855  // check for triggers elsewhere in the sector
856  bool trigFlagDDU =false;
857  for (int ist=1; ist<5; ist++){
858  if (ist!=station &&
859  dduphcode_best[wheel+3][ist][scsector]>=2 &&
860  dduphcode_best[wheel+3][ist][scsector]<7 &&
861  track_ok[wheel+3][ist][scsector]==true){
862  trigFlagDDU = true;
863  break;
864  }
865  }
866 
867  if (trigFlagDDU && fabs(x_angle)<40. && nHitsPhi>=7){
868 
869  // position vs angle of track for reconstruced tracks (denom. for trigger efficiency)
870  innerME.find("DDU_TrackPosvsAngle"+trigsrc)->second->Fill(x_angle,x_track);
871  if (dduphcode_best[wheel+3][station][scsector] >= 2 && dduphcode_best[wheel+3][station][scsector] < 7) {
872  innerME.find("DDU_TrackPosvsAngleandTrig"+trigsrc)->second->Fill(x_angle,x_track);
873  if (dduphcode_best[wheel+3][station][scsector] > 4){ //HH & HL Triggers
874  innerME.find("DDU_TrackPosvsAngleandTrigHHHL"+trigsrc)->second->Fill(x_angle,x_track);
875  }
876  }
877 
878  }
879 
880  if ((*btrack)->hasZed() && trigFlagDDU && fabs(y_angle)<40. && (*btrack)->zSegment()->degreesOfFreedom()>=1){
881 
882  // position va angle of track for reconstruced tracks (denom. for trigger efficiency) along theta direction
883  innerME.find("DDU_TrackThetaPosvsAngle"+trigsrc)->second->Fill(y_angle,y_track);
884  if (dduthcode_best[wheel+3][station][scsector] > 0) {
885  innerME.find("DDU_TrackThetaPosvsAngleandTrig"+trigsrc)->second->Fill(y_angle,y_track);
886  if (dduthcode_best[wheel+3][station][scsector] == 3) {
887  innerME.find("DDU_TrackThetaPosvsAngleandTrigH"+trigsrc)->second->Fill(y_angle,y_track);
888  }
889  }
890 
891  }
892  }
893  }
894  }
895 
896 }
897 
898 
900 
901  string histoType ;
902  string histoTag ;
903 
904  for (int st=1;st<5;++st){
905  for (int wh=-2;wh<3;++wh){
906  for (int sc=1;sc<13;++sc){
907  if ( (phcode_best[wh+wheelArrayShift][st][sc]>-1 && phcode_best[wh+wheelArrayShift][st][sc]<7) ||
908  (dduphcode_best[wh+wheelArrayShift][st][sc]>-1 && dduphcode_best[wh+wheelArrayShift][st][sc]<7) ){
909  DTChamberId id(wh,st,sc);
910  uint32_t indexCh = id.rawId();
911  map<string, MonitorElement*> &innerME = digiHistos[indexCh];
912 
913  innerME.find("COM_QualDDUvsQualTM"+trigsrc)->second->Fill(phcode_best[wh+wheelArrayShift][st][sc],dduphcode_best[wh+wheelArrayShift][st][sc]);
914  if ( (phcode_best[wh+wheelArrayShift][st][sc]>-1 && phcode_best[wh+wheelArrayShift][st][sc]<7) &&
915  (dduphcode_best[wh+wheelArrayShift][st][sc]>-1 && dduphcode_best[wh+wheelArrayShift][st][sc]<7) ){
916  int bxDDU = iphbestddu[wh+wheelArrayShift][st][sc]->bx() - iphbestddu[wh+wheelArrayShift][st][sc]->secondTrack();
917  int bxTM = iphbest[wh+wheelArrayShift][st][sc]->bxNum() - iphbest[wh+wheelArrayShift][st][sc]->Ts2Tag();
918  (wheelHistos[wh]).find("COM_BXDiff"+trigsrc)->second->Fill(sc,st,bxDDU-bxTM);
919  }
920  }
921  }
922  }
923  }
924 
925 }
926 
928 
929  TH1* histo = me->getTH1();
930  if (!histo) return;
931 
932  TAxis* axis=nullptr;
933  if (iaxis==1) {
934  axis=histo->GetXaxis();
935  }
936  else if(iaxis==2) {
937  axis=histo->GetYaxis();
938  }
939  if (!axis) return;
940 
941  string labels[7] = {"LI","LO","HI","HO","LL","HL","HH"};
942  int istart = axis->GetXmin()<-1 ? 2 : 1;
943  for (int i=0;i<7;i++) {
944  axis->SetBinLabel(i+istart,labels[i].c_str());
945  }
946 
947 }
948 
950 
951  TH1* histo = me->getTH1();
952  if (!histo) return;
953 
954  TAxis* axis=nullptr;
955  if (iaxis==1) {
956  axis=histo->GetXaxis();
957  }
958  else if(iaxis==2) {
959  axis=histo->GetYaxis();
960  }
961  if (!axis) return;
962 
963  string labels[2] = {"L","H"};
964  int istart = axis->GetXmin()<-1 ? 2 : 1;
965  for (int i=0;i<2;i++) {
966  axis->SetBinLabel(i+istart,labels[i].c_str());
967  }
968 
969 }
970 
971 
972 
974 
975 
976  if (!isLocalRun){
977 
978  Handle<LTCDigiCollection> ltcdigis;
979  e.getByToken(ltcDigiCollectionToken_, ltcdigis);
980 
981  for (std::vector<LTCDigi>::const_iterator ltc_it = ltcdigis->begin(); ltc_it != ltcdigis->end(); ltc_it++){
982 
983  size_t otherTriggerSum=0;
984  for (size_t i = 1; i < 6; i++) {
985  otherTriggerSum += size_t((*ltc_it).HasTriggered(i));
986  }
987  if ((*ltc_it).HasTriggered(0) && otherTriggerSum == 0)
988  trigsrc = "_DTonly";
989  else if (!(*ltc_it).HasTriggered(0))
990  trigsrc = "_NoDT";
991  else if ((*ltc_it).HasTriggered(0) && otherTriggerSum > 0)
992  trigsrc = "_DTalso";
993 
994  }
995  return;
996  }
997 
998  trigsrc = "";
999  return;
1000 
1001 }
1002 
1003 // Local Variables:
1004 // show-trailing-whitespace: t
1005 // truncate-lines: t
1006 // End:
LuminosityBlockID id() const
T getParameter(std::string const &) const
The_Container const * getContainer() const
T getUntrackedParameter(std::string const &, T const &) const
std::pair< const_iterator, const_iterator > range
iterator range
Definition: RangeMap.h:50
void thetaRange(const DTChamberId &id, float &min, float &max, int &nbins, float step=15)
Compute theta range in local chamber coordinates.
std::map< int, std::map< std::string, MonitorElement * > > wheelHistos
void runTMAnalysis(std::vector< L1MuDTChambPhDigi > const *phTrigs, std::vector< L1MuDTChambThDigi > const *thTrigs)
Run analysis on TM data.
edm::EDGetTokenT< LTCDigiCollection > ltcDigiCollectionToken_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
void dqmBeginRun(const edm::Run &, const edm::EventSetup &) override
Beginrun.
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
Book the histograms.
float trigDir(const L1MuDTChambPhDigi *trig)
Return local direction (trigger RF) for a given trigger primitive.
#define nullptr
TH1 * getTH1() const
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
void setQLabelsTheta(MonitorElement *me, short int iaxis)
identifier iterator
Definition: RangeMap.h:135
MonitorElement * tm_IDDataErrorPlot
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:20
bool track_ok[6][5][15]
std::string & topFolder(bool isTM)
Get the Top folder (different between Physics and TP and TM/DDU)
void runSegmentAnalysis(edm::Handle< DTRecSegment4DCollection > &segments4D)
Run analysis using DT 4D segments.
return((rh^lh)&mask)
void Fill(long long x)
C::const_iterator const_iterator
constant access iterator type
Definition: RangeMap.h:43
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:268
edm::EDGetTokenT< DTRecSegment4DCollection > seg_Token_
edm::EDGetTokenT< L1MuDTChambPhContainer > tm_Token_
MonitorElement * bookProfile2D(Args &&...args)
Definition: DQMStore.h:114
void trigToSeg(int st, float &x, float dir)
Compute Trigger x coordinate in chamber RF.
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:106
DTArr3LocalTrigger iphbestddu
edm::EDGetTokenT< L1MuDTChambThContainer > tmTh_Token_
T min(T a, T b)
Definition: MathUtil.h:58
DTLocalTriggerTask(const edm::ParameterSet &ps)
Constructor.
bool isValid() const
Definition: HandleBase.h:74
#define LogTrace(id)
void analyze(const edm::Event &e, const edm::EventSetup &c) override
Analyze.
edm::EDGetTokenT< DTLocalTriggerCollection > ros_Token_
edm::ESHandle< DTGeometry > muonGeom
void phiRange(const DTChamberId &id, float &min, float &max, int &nbins, float step=15)
Compute phi range in local chamber coordinates.
int k[5][pyjets_maxn]
void bookHistos(DQMStore::IBooker &, const DTChamberId &dtCh, std::string folder, std::string histoTag)
void runDDUvsTMAnalysis(std::string &trigsrc)
Run analysis on ROS data.
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:109
LuminosityBlockNumber_t luminosityBlock() const
void setQLabels(MonitorElement *me, short int iaxis)
Set Quality labels.
std::vector< DigiType >::const_iterator const_iterator
Phi_Container const * getContainer() const
HLT enums.
DTTrigGeomUtils * trigGeomUtils
int sector() const
Definition: DTChamberId.h:61
T get() const
Definition: EventSetup.h:71
void beginLuminosityBlock(const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &context) override
To reset the MEs.
void bookWheelHistos(DQMStore::IBooker &, int wh, std::string histoTag)
Book the histograms.
void triggerSource(const edm::Event &e)
Get the L1A source.
std::pair< const_iterator, const_iterator > Range
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
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)
void bookBarrelHistos(DQMStore::IBooker &, std::string histoTag)
Book the histograms.
std::map< uint32_t, std::map< std::string, MonitorElement * > > digiHistos
~DTLocalTriggerTask() override
Destructor.
void computeSCCoordinates(const DTRecSegment4D *track, int &scsec, float &x, float &xdir, float &y, float &ydir)
Compute track coordinates with SC sector numbering.
Definition: Run.h:45
void runDDUAnalysis(edm::Handle< DTLocalTriggerCollection > &trigsDDU)
Run analysis on ROS data.
T angle(T x1, T y1, T z1, T x2, T y2, T z2)
Definition: angle.h:11