CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1TdeCSCTF.cc
Go to the documentation of this file.
1 /*
2  * L1TdeCSCTF.cc v1.0
3  * written by J. Gartner
4  *
5  * 2011.03.11 expanded by GP Di Giovanni
6  *
7  * There is quality test allowing to check elements outside the
8  * diagonal, so I need to add the 1D plot with all elements in the diagonal
9  * in the first bin and all elements outside the diagonal in the second bin
10  *
11  * In such way we can run the ContentsXRange quality test...
12  */
13 
18 
23 
24 
26 
28 
31 
32 #include <iostream>
33 #include <iomanip>
34 #include <memory>
35 
36 
37 using namespace std;
38 using namespace edm;
39 
41  dataTrackProducer = consumes<L1CSCTrackCollection>(pset.getParameter<InputTag>("dataTrackProducer"));
42  emulTrackProducer = consumes<L1CSCTrackCollection>(pset.getParameter<InputTag>("emulTrackProducer"));
43  dataStubProducer = consumes<CSCTriggerContainer<csctf::TrackStub> >(pset.getParameter<InputTag>("dataStubProducer"));
44  emulStubProducer = consumes<L1MuDTChambPhContainer>(pset.getParameter<InputTag>("emulStubProducer"));
45 
46  m_dirName = pset.getUntrackedParameter("DQMFolder", string("L1TEMU/CSCTFexpert"));
47 
48  ts=0;
49  ptLUT_ = 0;
50 
51  ptLUTset = pset.getParameter<ParameterSet>("PTLUT");
52 
53  outFile = pset.getUntrackedParameter<string>("outFile", "");
54  if( outFile.size() != 0 )
55  {
56  LogWarning("L1TdeCSCTF")
57  << "L1T Monitoring histograms will be saved to "
58  << outFile.c_str()
59  << endl;
60  }
61 
62  bool disable = pset. getUntrackedParameter<bool>("disableROOToutput", false);
63  if(disable){
64  outFile="";
65  }
66 
67  /*bzero(srLUTs_, sizeof(srLUTs_));
68  //int endcap =1, sector =1;
69  bool TMB07=true;
70  ParameterSet srLUTset;
71  srLUTset.addUntrackedParameter<bool>("ReadLUTs", false);
72  srLUTset.addUntrackedParameter<bool>("Binary", false);
73  srLUTset.addUntrackedParameter<string>("LUTPath", "./");
74  for(int endcapItr = CSCDetId::minEndcapId(); endcapItr <= CSCDetId::maxEndcapId(); endcapItr++)
75  {
76  for(int sectorItr = CSCTriggerNumbering::minTriggerSectorId();sectorItr <= CSCTriggerNumbering::maxTriggerSectorId();sectorItr++)
77  {
78  for(int stationItr = 1; stationItr <= 4; stationItr++)
79  {
80  if(stationItr == 1)
81  {
82  for(int subsectorItr = 0; subsectorItr < 2; subsectorItr++)
83  {
84  srLUTs_[endcapItr-1][sectorItr-1][subsectorItr] = new CSCSectorReceiverLUT(endcapItr, sectorItr, subsectorItr+1, stationItr, srLUTset, TMB07);
85  }
86  } else {
87  srLUTs_[endcapItr-1][sectorItr-1][stationItr] = new CSCSectorReceiverLUT(endcapItr, sectorItr, 0, stationItr, srLUTset, TMB07);
88  } //if for station 1 or 234
89  } // stationItr loop
90  } // sectorItr loop
91  } // endcapItr loop
92  */
93  my_dtrc = new CSCTFDTReceiver();
94 }
96 }
97 
99 }
100 
102 {
103  //Histograms booking
104 
106  // DQM Directory Structure //
108 
109  ibooker.setCurrentFolder(m_dirName);
110 
112  // Define Monitor Elements //
114  //Monitor Elements for Pt Lut Address Field
115  pt1Comp = ibooker.book2D("pt1Comp","Hardware Vs. Emulator #Delta #phi_{12}",256,0,256,256,0,256);
116  pt1Comp->setAxisTitle("Hardware #Delta #phi_{12}",1);
117  pt1Comp->setAxisTitle("Emulator #Delta #phi_{12}",2);
118  pt2Comp = ibooker.book2D("pt2Comp","Hardware Vs. Emulator #Delta #phi_{23}",16,0,16,16,0,16);
119  pt2Comp->setAxisTitle("Hardware #Delta #phi_{23}",1);
120  pt2Comp->setAxisTitle("Emulator #Delta #phi_{23}",2);
121  pt3Comp = ibooker.book2D("pt3Comp","Hardware Vs. Emulator #eta",16,0,16,16,0,16);
122  pt3Comp->setAxisTitle("Hardware #eta",1);
123  pt3Comp->setAxisTitle("Emulator #eta",2);
124  pt4Comp = ibooker.book2D("pt4Comp","Hardware Vs. Emulator Mode",19,0,19,19,0,19);
125  pt4Comp->setAxisTitle("Hardware Mode",1);
126  pt4Comp->setAxisTitle("Emulator Mode",2);
127  //Hardware Bin Titles
128  pt4Comp->setBinLabel(1,"No Track",1);
129  pt4Comp->setBinLabel(2,"Bad Phi/Single",1);
130  pt4Comp->setBinLabel(3,"ME1-2-3",1);
131  pt4Comp->setBinLabel(4,"ME1-2-4",1);
132  pt4Comp->setBinLabel(5,"ME1-3-4",1);
133  pt4Comp->setBinLabel(6,"ME2-3-4",1);
134  pt4Comp->setBinLabel(7,"ME1-2",1);
135  pt4Comp->setBinLabel(8,"ME1-3",1);
136  pt4Comp->setBinLabel(9,"ME2-3",1);
137  pt4Comp->setBinLabel(10,"ME2-4",1);
138  pt4Comp->setBinLabel(11,"ME3-4",1);
139  pt4Comp->setBinLabel(12,"MB1-ME3",1);
140  pt4Comp->setBinLabel(13,"MB1-ME2",1);
141  pt4Comp->setBinLabel(14,"ME1-4",1);
142  pt4Comp->setBinLabel(15,"MB1-ME1",1);
143  pt4Comp->setBinLabel(16,"Halo Trigger",1);
144  pt4Comp->setBinLabel(17,"MB1-ME1-2",1);
145  pt4Comp->setBinLabel(18,"MB1-ME1-3",1);
146  pt4Comp->setBinLabel(19,"MB1-ME2-3",1);
147  //Emu Bin Titles
148  pt4Comp->setBinLabel(1,"No Track",2);
149  pt4Comp->setBinLabel(2,"Bad Phi/Single",2);
150  pt4Comp->setBinLabel(3,"ME1-2-3",2);
151  pt4Comp->setBinLabel(4,"ME1-2-4",2);
152  pt4Comp->setBinLabel(5,"ME1-3-4",2);
153  pt4Comp->setBinLabel(6,"ME2-3-4",2);
154  pt4Comp->setBinLabel(7,"ME1-2",2);
155  pt4Comp->setBinLabel(8,"ME1-3",2);
156  pt4Comp->setBinLabel(9,"ME2-3",2);
157  pt4Comp->setBinLabel(10,"ME2-4",2);
158  pt4Comp->setBinLabel(11,"ME3-4",2);
159  pt4Comp->setBinLabel(12,"MB1-ME3",2);
160  pt4Comp->setBinLabel(13,"MB1-ME2",2);
161  pt4Comp->setBinLabel(14,"ME1-4",2);
162  pt4Comp->setBinLabel(15,"MB1-ME1",2);
163  pt4Comp->setBinLabel(16,"Halo Trigger",2);
164  pt4Comp->setBinLabel(17,"MB1-ME1-2",2);
165  pt4Comp->setBinLabel(18,"MB1-ME1-3",2);
166  pt4Comp->setBinLabel(19,"MB1-ME2-3",2);
167 
168  pt5Comp = ibooker.book2D("pt5Comp","Hardware Vs. Emulator Sign, FR",4,0,4,4,0,4);
169  pt5Comp->setAxisTitle("Hardware Sign<<1|FR",1);
170  pt5Comp->setAxisTitle("Emulator Sign<<1|FR",2);
171 
172  //Monitor Elements for track variables
173  phiComp = ibooker.book2D("phiComp","Hardware Vs. Emulator Track #phi",32,0,32,32,0,32);
174  phiComp->setAxisTitle("Hardware #phi",1);
175  phiComp->setAxisTitle("Emulator #phi",2);
176  etaComp = ibooker.book2D("etaComp","Hardware Vs. Emulator Track #eta",32,0,32,32,0,32);
177  etaComp->setAxisTitle("Hardware #eta",1);
178  etaComp->setAxisTitle("Emulator #eta",2);
179  occComp = ibooker.book2D("occComp","Hardware Vs. Emulator Track Occupancy",5,0,5,5,0,5);
180  occComp->setAxisTitle("Hardware Occupancy",1);
181  occComp->setAxisTitle("Emulator Occupancy",2);
182  ptComp = ibooker.book2D("ptComp","Hardware Vs. Emulator Pt",32,0,32,32,0,32);
183  ptComp->setAxisTitle("Hardware P_{t}",1);
184  ptComp->setAxisTitle("Emulator P_{t}",2);
185  qualComp= ibooker.book2D("qualComp","Hardware Vs. Emulator Quality",4,0,4,4,0,4);
186  qualComp->setAxisTitle("Hardware Quality",1);
187  qualComp->setAxisTitle("Emulator Quality",2);
188 
189 
190  //Monitor Elemens for Dt Stubs
191  dtStubPhi = ibooker.book2D("dtStubPhi","Hardware Vs. Emulator DT Stub #phi",200,400,2400,200,400,2400);
192  dtStubPhi->setAxisTitle("Hardware Stub #phi",1);
193  dtStubPhi->setAxisTitle("Emulator Stub #phi",2);
194  badDtStubSector = ibooker.book2D("badDtStubSector","Dt Sector for bad Dt stub #phi",6,1,7,2,1,3);
195  badDtStubSector->setAxisTitle("Dt stub sector, subsector",1);
196  badDtStubSector->setAxisTitle("Dt Stub Endcap",2);
197 
198  //***********************************//
199  //* F O R Q U A L I T Y T E S T *//
200  //***********************************//
201  //1D plots for the quality test
202  //Monitor Elements for Pt Lut Address Field
203  pt1Comp_1d = ibooker.book1D("pt1Comp_1d","Hardware Vs. Emulator #Delta #phi_{12}",2,0,2);
204  pt1Comp_1d->setAxisTitle("#Delta #phi_{12}",1);
205  pt1Comp_1d->setBinLabel(1, "Agree", 1);
206  pt1Comp_1d->setBinLabel(2, "Disagree", 1);
207 
208  pt2Comp_1d = ibooker.book1D("pt2Comp_1d","Hardware Vs. Emulator #Delta #phi_{23}",2,0,2);
209  pt2Comp_1d->setAxisTitle("#Delta #phi_{23}",1);
210  pt2Comp_1d->setBinLabel(1, "Agree", 1);
211  pt2Comp_1d->setBinLabel(2, "Disagree", 1);
212 
213  pt3Comp_1d = ibooker.book1D("pt3Comp_1d","Hardware Vs. Emulator #eta",2,0,2);
214  pt3Comp_1d->setAxisTitle("#eta",1);
215  pt3Comp_1d->setBinLabel(1, "Agree", 1);
216  pt3Comp_1d->setBinLabel(2, "Disagree", 1);
217 
218  pt4Comp_1d = ibooker.book1D("pt4Comp_1d","Hardware Vs. Emulator Mode",2,0,2);
219  pt4Comp_1d->setAxisTitle("Mode",1);
220  pt4Comp_1d->setBinLabel(1, "Agree", 1);
221  pt4Comp_1d->setBinLabel(2, "Disagree", 1);
222 
223  pt5Comp_1d = ibooker.book1D("pt5Comp_1d","Hardware Vs. Emulator Sign, FR",2,0,2);
224  pt5Comp_1d->setAxisTitle("Sign<<1|FR",1);
225  pt5Comp_1d->setBinLabel(1, "Agree", 1);
226  pt5Comp_1d->setBinLabel(2, "Disagree", 1);
227 
228 
229  //Monitor Elements for track variables
230  phiComp_1d = ibooker.book1D("phiComp_1d","Hardware Vs. Emulator Track #phi",2,0,2);
231  phiComp_1d->setAxisTitle("#phi",1);
232  phiComp_1d->setBinLabel(1, "Agree", 1);
233  phiComp_1d->setBinLabel(2, "Disagree", 1);
234 
235  etaComp_1d = ibooker.book1D("etaComp_1d","Hardware Vs. Emulator Track #eta",2,0,2);
236  etaComp_1d->setAxisTitle("#eta",1);
237  etaComp_1d->setBinLabel(1, "Agree", 1);
238  etaComp_1d->setBinLabel(2, "Disagree", 1);
239 
240  occComp_1d = ibooker.book1D("occComp_1d","Hardware Vs. Emulator Track Occupancy",2,0,2);
241  occComp_1d->setAxisTitle("Occupancy",1);
242  occComp_1d->setBinLabel(1, "Agree", 1);
243  occComp_1d->setBinLabel(2, "Disagree", 1);
244 
245  ptComp_1d = ibooker.book1D("ptComp_1d","Hardware Vs. Emulator Pt",2,0,2);
246  ptComp_1d->setAxisTitle("P_{t}",1);
247  ptComp_1d->setBinLabel(1, "Agree", 1);
248  ptComp_1d->setBinLabel(2, "Disagree", 1);
249 
250  qualComp_1d= ibooker.book1D("qualComp_1d","Hardware Vs. Emulator Quality",2,0,2);
251  qualComp_1d->setAxisTitle("Quality",1);
252  qualComp_1d->setBinLabel(1, "Agree", 1);
253  qualComp_1d->setBinLabel(2, "Disagree", 1);
254 
255  //Monitor Elemens for Dt Stubs
256  dtStubPhi_1d = ibooker.book1D("dtStubPhi_1d","Hardware Vs. Emulator DT Stub #phi",2,0,2);
257  dtStubPhi_1d->setAxisTitle("DT Stub #phi",1);
258  dtStubPhi_1d->setBinLabel(1, "Agree", 1);
259  dtStubPhi_1d->setBinLabel(2, "Disagree", 1);
260 }
261 
262 void L1TdeCSCTF::analyze(Event const& e, EventSetup const& es){
263  // Initialize Arrays
265  unsigned int nDataMuons = 0;
266  unsigned int nEmulMuons = 0;
267  int dataMuonArray[8][10], emuMuonArray[8][10];
268  for(int muon=0; muon<8; muon++)
269  {
270  for(int par=0; par<3; par++)
271  {
272  dataMuonArray[muon][par]=0;
273  emuMuonArray[muon][par] =0;
274  }
275  emuMuonArray[muon][3] =-1;
276  dataMuonArray[muon][3]=-1;
277 
278  emuMuonArray[muon][4]=7;
279  dataMuonArray[muon][4]=7;
280 
281  for(int par2=5; par2<10; par2++)
282  {
283  emuMuonArray[muon][par2]= -1;
284  dataMuonArray[muon][par2]= -1;
285  }
286  }
287  // Get Hardware information, and check output of PtLUT
289  if( !dataTrackProducer.isUninitialized())
290  {
292  e.getByToken(dataTrackProducer,tracks);
293 
294  // check validity of input collection
295  if(!tracks.isValid()) {
296  LogWarning("L1TdeCSCTF")
297  << "\n No valid [data tracks] product found: "
298  << " L1CSCTrackCollection"
299  << endl;
300  return;
301  }
302 
303 
304  for(L1CSCTrackCollection::const_iterator trk=tracks.product()->begin(); trk!=tracks.product()->end(); trk++)
305  {
306  if (nDataMuons>=8)
307  break;
308  if ( (trk->first.BX() <2) && (trk->first.BX() > -1) )
309  {
310  //int mOdE = (trk->first.ptLUTAddress()>>16)&0xf;
311  //cout << "D->Mode: " << mOdE << ", Rank " << trk->first.rank() << endl;
312  dataMuonArray[nDataMuons][0] = trk->first.ptLUTAddress();
313  dataMuonArray[nDataMuons][1] = trk->first.sector();
314  dataMuonArray[nDataMuons][2] = trk->first.endcap();
315  dataMuonArray[nDataMuons][8] = trk->first.outputLink();
316  dataMuonArray[nDataMuons][4] = trk->first.BX();
317  dataMuonArray[nDataMuons][5] = trk->first.rank();
318  dataMuonArray[nDataMuons][6] = trk->first.localPhi();
319  dataMuonArray[nDataMuons][7] = trk->first.eta_packed();
320  dataMuonArray[nDataMuons][9] = trk->first.modeExtended();
321  nDataMuons++;
322  }
323  }
324  }
325  // Get Emulator information
327  if( !emulTrackProducer.isUninitialized() )
328  {
330  e.getByToken(emulTrackProducer,tracks);
331 
332  // check validity of input collection
333  if(!tracks.isValid()) {
334  LogWarning("L1TdeCSCTF")
335  << "\n No valid [emulator tracks] product found: "
336  << " L1CSCTrackCollection"
337  << endl;
338  return;
339  }
340 
341  for(L1CSCTrackCollection::const_iterator trk=tracks.product()->begin(); trk!=tracks.product()->end(); trk++)
342  {
343  if(nEmulMuons>=8)
344  break;
345  if((trk->first.BX() <2) && (trk->first.BX() >-1))
346  {
347  //int mOdE = (trk->first.ptLUTAddress()>>16)&0xf;
348  //cout << "E->Mode: " << mOdE << ", Rank " << trk->first.rank() << endl;
349  emuMuonArray[nEmulMuons][0] = trk->first.ptLUTAddress();
350  emuMuonArray[nEmulMuons][1] = trk->first.sector();
351  emuMuonArray[nEmulMuons][2] = trk->first.endcap();
352  emuMuonArray[nEmulMuons][4] = trk->first.BX();
353  emuMuonArray[nEmulMuons][5] = trk->first.rank();
354  emuMuonArray[nEmulMuons][6] = trk->first.localPhi();
355  emuMuonArray[nEmulMuons][7] = trk->first.eta_packed();
356  emuMuonArray[nEmulMuons][9] = trk->first.modeExtended();
357  nEmulMuons++;
358  }
359  }
360  }
361  //Fill Occupancy M.E.
362  if( (nDataMuons!=0)||(nEmulMuons!=0) ) {
363  occComp->Fill(nDataMuons,nEmulMuons);
364  (nDataMuons==nEmulMuons) ? occComp_1d->Fill(0) : occComp_1d->Fill(1);
365  }
366  // Match Tracks by sector & mode in the case of multiple tracks
368  if(nDataMuons==nEmulMuons)
369  {
370  //First, find EXACT address matches in a given sector, endcap
371  for(unsigned int mu1=0; mu1<nDataMuons; mu1++)
372  {
373  for(unsigned int mu2=0; mu2<nEmulMuons; mu2++)
374  if((emuMuonArray[mu2][1]==dataMuonArray[mu1][1])&&(emuMuonArray[mu2][2]==dataMuonArray[mu1][2]))
375  {
376  if(emuMuonArray[mu2][0]==dataMuonArray[mu1][0])
377  {
378  emuMuonArray[mu2][3]=mu1;
379  dataMuonArray[mu1][3]=1;
380  }
381  }
382  }
383  //Next, try to match unmapped
384  for(unsigned int c2a=0; c2a<nEmulMuons; c2a++)
385  {
386  if(emuMuonArray[c2a][3]==-1)
387  {
388  for(unsigned int cor_a=0; cor_a<nDataMuons; cor_a++)
389  {
390  if( (dataMuonArray[cor_a][1]==emuMuonArray[c2a][1]) && (dataMuonArray[cor_a][2]==emuMuonArray[c2a][2]))// && (dataMuonArray[cor_a][3]==-1))
391  {
392  emuMuonArray[c2a][3]=cor_a;
393  dataMuonArray[cor_a][3]=1;
394  }
395  }
396  }
397  }
398  //Check that a single emulator track is not mapped to multiple data tracks
399  bool multiMap = false;
400  if(nEmulMuons>1)
401  {
402  for(unsigned int c1a=0; c1a<(nEmulMuons-1); c1a++)
403  {
404  for(unsigned int c1b=(c1a+1); c1b<nEmulMuons; c1b++)
405  {
406  if(emuMuonArray[c1a][3]==emuMuonArray[c1b][3])
407  {
408  //cout << "Error: Multiple Emulator Muons Mapped to the same Data Muon." << endl;
409  multiMap = true;
410  break;
411  }
412  }
413  if (multiMap)
414  break;
415  }
416  }
417  //Fill histograms based on matched Tracks
418  for(unsigned int mu3=0; mu3<nEmulMuons; mu3++)
419  {
420  int mapping = emuMuonArray[mu3][3];
421  if((mapping!=-1)&&(multiMap==false))
422  {
423  //Decode LUT Address for more meaningful comparison
424  int emuPhi12 = (0x0000ff & emuMuonArray[mu3][0]);
425  int datPhi12 = (0x0000ff & dataMuonArray[mapping][0]);
426  int emuPhi23 = (0x000f00 & emuMuonArray[mu3][0])>>8;
427  int datPhi23 = (0x000f00 & dataMuonArray[mapping][0])>>8;
428  int emuEta = (0x00f000 & emuMuonArray[mu3][0])>>12;
429  int datEta = (0x00f000 & dataMuonArray[mapping][0])>>12;
430  //int emuMode = (0x0f0000 & emuMuonArray[mu3][0])>>16;
431  //int datMode = (0x0f0000 & dataMuonArray[mapping][0])>>16;
432  int emuFrSin = (0xf00000 & emuMuonArray[mu3][0])>>20;
433  int datFrSin = (0xf00000 & dataMuonArray[mapping][0])>>20;
434  //Decode Rank for more meaningful comparison
435  int emuQual = emuMuonArray[mu3][5]>>5;
436  int datQual = dataMuonArray[mapping][5]>>5;
437  int emuPt = 0x1f & emuMuonArray[mu3][5];
438  int datPt = 0x1f & dataMuonArray[mapping][5];
439  int emuModeExtended = emuMuonArray[mu3][9];
440  int datModeExtended = dataMuonArray[mapping][9];
441 
442  //Fill mode M.E., one of (the most important) PtLUT address field
443  pt4Comp->Fill(datModeExtended,emuModeExtended);
444  (datModeExtended==emuModeExtended) ? pt4Comp_1d->Fill(0) : pt4Comp_1d->Fill(1);
445  //To disentagle problems, only fill histograms if mode matches
446  if(emuModeExtended==datModeExtended)
447  {
448  //Fill Pt LUT address field M.E.
449  pt1Comp->Fill(datPhi12,emuPhi12); (datPhi12==emuPhi12) ? pt1Comp_1d->Fill(0) : pt1Comp_1d->Fill(1);
450  pt2Comp->Fill(datPhi23,emuPhi23); (datPhi23==emuPhi23) ? pt2Comp_1d->Fill(0) : pt2Comp_1d->Fill(1);
451  pt3Comp->Fill(datEta,emuEta); (datEta==emuEta) ? pt3Comp_1d->Fill(0) : pt3Comp_1d->Fill(1);
452  pt5Comp->Fill(datFrSin,emuFrSin); (datFrSin==emuFrSin) ? pt5Comp_1d->Fill(0) : pt5Comp_1d->Fill(1);
453  //Fill Track value M.E.
454  if(dataMuonArray[mapping][8]==1) //Rank Comparison available for Link 1 only due to readout limitation
455  {
456  ptComp->Fill(datPt,emuPt); (datPt==emuPt) ? ptComp_1d->Fill(0) : ptComp_1d->Fill(1);
457  qualComp->Fill(datQual,emuQual);(datQual==emuQual) ? qualComp_1d->Fill(0) : qualComp_1d->Fill(1);
458  }
459  phiComp->Fill(dataMuonArray[mapping][6],emuMuonArray[mu3][6]);
460  etaComp->Fill(dataMuonArray[mapping][7],emuMuonArray[mu3][7]);
461 
462  (dataMuonArray[mapping][6]==emuMuonArray[mu3][6]) ? phiComp_1d->Fill(0) : phiComp_1d->Fill(1);
463  (dataMuonArray[mapping][7]==emuMuonArray[mu3][7]) ? etaComp_1d->Fill(0) : etaComp_1d->Fill(1);
464  }
465  }
466  }
467  }
468 
469  //Compare DT stubs to check transmission quality
471  //Declare arrays, initialize
472  int eDtStub[7][15];
473  int dDtStub[8][15];
474  int eDtCounter = 0;
475  int dDtCounter = 0;
476  for(int dJ=0; dJ<7; dJ++)
477  {
478  for(int dK=0; dK<15; dK++)
479  {
480  eDtStub[dJ][dK] = -55;
481  dDtStub[dJ][dK] = -55;
482  dDtStub[7][dK] = -55;
483  }
484  }
485 
486  // Get Daq Recorded Stub Information
487  if( !dataStubProducer.isUninitialized() )
488  {
490  e.getByToken(dataStubProducer,dtTrig);
491  // check validity of input collection
492  if(!dtTrig.isValid()) {
493  LogWarning("L1TdeCSCTF")
494  << "\n No valid [Data Stubs] product found: "
495  << " L1CSCTrackCollection"
496  << endl;
497  return;
498  }
499  const CSCTriggerContainer<csctf::TrackStub>* dt_stubs = dtTrig.product();
501  stub_list.push_many(*dt_stubs);
502  vector<csctf::TrackStub> stuList = stub_list.get();
503  vector<csctf::TrackStub>::const_iterator stu= stuList.begin();
504  for(; stu!=stuList.end(); stu++)
505  {
506  if(dDtCounter>=15)
507  break;
508  if((stu->BX()>4) && (stu->BX()<9))
509  {
510  dDtStub[0][dDtCounter] = stu->phiPacked();
511  dDtStub[1][dDtCounter] = stu->getQuality();
512  dDtStub[2][dDtCounter] = stu->endcap();
513  dDtStub[3][dDtCounter] = stu->sector();
514  dDtStub[4][dDtCounter] = stu->subsector();
515  dDtCounter++;
516  }
517  }
518  }
519 
520  // Get Daq Recorded Stub Information
521  if( !emulStubProducer.isUninitialized() )
522  {
523  // Get Emulated Stub Information
525  e.getByToken(emulStubProducer,pCon);
526  // check validity of input collection
527  if(!pCon.isValid()) {
528  LogWarning("L1TdeCSCTF")
529  << "\n No valid [Data Stubs] product found: "
530  << " L1CSCTrackCollection"
531  << endl;
532  return;
533  }
534  CSCTriggerContainer<csctf::TrackStub> emulStub = my_dtrc->process(pCon.product());
535  vector<csctf::TrackStub> emuList = emulStub.get();
536  vector<csctf::TrackStub>::const_iterator eStu=emuList.begin();
537  for(; eStu!=emuList.end(); eStu++)
538  {
539  if (eDtCounter>=15)
540  break;
541  if((eStu->BX()>4) && (eStu->BX()<9) )
542  {
543  eDtStub[0][eDtCounter] = eStu->phiPacked();
544  eDtStub[1][eDtCounter] = eStu->getQuality();
545  eDtStub[2][eDtCounter] = eStu->endcap();
546  eDtStub[3][eDtCounter] = eStu->sector();
547  eDtStub[4][eDtCounter] = eStu->subsector();
548  eDtCounter++;
549  }
550  }
551  }
552 
553  //cout << "Num Tracks match eDtCounter: " << eDtCounter << ", dDt: " << dDtCounter << endl;
554  //First find perfect matches
555  for(int eS=0; eS<eDtCounter; eS++)
556  {
557  //cout << "es Loop" << endl;
558  for(int dS=0; dS<dDtCounter; dS++)
559  {
560  //cout << "ds Loop" << endl;
561  if(eDtStub[2][eS]==dDtStub[2][dS])
562  {
563  //cout << "end match" << endl;
564  if(eDtStub[3][eS]==dDtStub[3][dS])
565  {
566  //cout << "sec match" << endl;
567  if(eDtStub[4][eS]==dDtStub[4][dS])
568  {
569  //cout << "First match loop, eS: " << eS << ", dS" << dS << endl;
570  if( (eDtStub[0][eS]==dDtStub[0][dS]) && (eDtStub[1][eS]==dDtStub[1][dS]) && (eDtStub[6][eS]!=1) && (dDtStub[6][dS]!=1) )
571  {
572  //cout << "Passed fist matching." << endl;
573  eDtStub[5][eS] = dS;
574  eDtStub[6][eS] = 1;
575  dDtStub[5][dS] = eS;
576  dDtStub[6][dS] = 1;
577  }
578  }
579  }
580  }
581  }
582  }
583 
584  //Now find imperfect matches
585  for(int eS2=0; eS2<eDtCounter; eS2++)
586  {
587  for(int dS2=0; dS2<dDtCounter; dS2++)
588  {
589  //cout << "1: " << eDtStub[2][eS2] << ", " << dDtStub[2][dS2] << ", " << eDtStub[3][eS2] << ", " << dDtStub[3][dS2] << ", " << eDtStub[4][eS2] << ", " << dDtStub[4][dS2] << endl;
590  if( (eDtStub[2][eS2]==dDtStub[2][dS2]) && (eDtStub[3][eS2]==dDtStub[3][dS2]) && (eDtStub[4][eS2]==dDtStub[4][dS2]) )
591  {
592  //cout << "2: " << dDtStub[7][eS2] << ", " << dDtStub[7][dS2] << ", " << abs(eDtStub[0][eS2]-dDtStub[0][dS2]) << ", " << ", " << eDtStub[6][eS2] << ", " << dDtStub[6][dS2] << endl;
593  if( ((dDtStub[7][eS2]==-55) || (dDtStub[7][dS2]>(abs(eDtStub[0][eS2]-dDtStub[0][dS2]))) ) && (eDtStub[6][eS2]!=1) && (dDtStub[6][dS2]!=1) )
594  {
595  //cout << "Imperfect match found" << endl;
596  dDtStub[5][dS2] = eS2;
597  dDtStub[6][dS2] = 2;
598  eDtStub[5][eS2] = dS2;
599  eDtStub[6][eS2] = 2;
600  dDtStub[7][dS2] = abs(eDtStub[0][eS2]-dDtStub[0][dS2]);
601  }
602  }
603  }
604  }
605 
606  //Debug time!
607  bool dtSMulti = false;
608  int dtUnmap = 0;
609  if(eDtCounter>1)
610  for(int eS3a=0; eS3a<eDtCounter-1; eS3a++)
611  for(int eS3b=eS3a+1; eS3b<eDtCounter; eS3b++)
612  {
613  if( eDtStub[5][eS3a]==eDtStub[5][eS3b] ) dtSMulti=true;
614  if( eDtStub[5][eS3a]==-55 || eDtStub[5][eS3b]==-55 ) dtUnmap++;
615  }
616 
617  if(dDtCounter>1)
618  for(int dS3a=0; dS3a<dDtCounter-1; dS3a++)
619  for(int dS3b=dS3a+1; dS3b<dDtCounter; dS3b++)
620  {
621  if( dDtStub[5][dS3a]==dDtStub[5][dS3b] ) dtSMulti=true;
622  if( dDtStub[5][dS3a]==-55||dDtStub[5][dS3b]==-55 ) dtUnmap++;
623  }
624  /*if(dtSMulti==true)
625  cout << "Multiple DT stubs mapped to the same stub" << endl;
626  if(dtUnmap!=0)
627  cout << "Unmapped DT stubs:" << dtUnmap << endl;*/
628 
629  if(dtSMulti==false && dtUnmap==0)
630  {
631  for(int phil=0; phil<eDtCounter; phil++)
632  {
633  if(eDtStub[6][phil]==1 || eDtStub[6][phil]==2)
634  {
635  int indexFil = eDtStub[3][phil]*2+eDtStub[4][phil]-1;
636  dtStubPhi->Fill(eDtStub[0][phil], dDtStub[0][ eDtStub[5][phil] ]);
637  (eDtStub[0][phil] == dDtStub[0][ eDtStub[5][phil] ]) ? dtStubPhi_1d->Fill(0) : dtStubPhi_1d->Fill(1);
638  if( eDtStub[0][phil] != dDtStub[0][ eDtStub[5][phil] ])
639  badDtStubSector->Fill(indexFil,eDtStub[2][phil]);
640  }
641  }
642  }
643  if(ptLUT_) delete ptLUT_;
644 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
std::vector< T > get() const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
L1TdeCSCTF(edm::ParameterSet const &pset)
Definition: L1TdeCSCTF.cc:40
void analyze(edm::Event const &e, edm::EventSetup const &iSetup)
Definition: L1TdeCSCTF.cc:262
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:115
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
virtual void beginLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &)
Definition: L1TdeCSCTF.cc:98
bool isValid() const
Definition: HandleBase.h:75
void push_many(const std::vector< T > &data)
virtual void bookHistograms(DQMStore::IBooker &ibooker, edm::Run const &, edm::EventSetup const &) override
Definition: L1TdeCSCTF.cc:101
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:274
T const * product() const
Definition: Handle.h:81
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:133
tuple tracks
Definition: testEve_cfg.py:39
virtual void dqmBeginRun(edm::Run const &, edm::EventSetup const &)
Definition: L1TdeCSCTF.cc:95
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
Definition: Run.h:41