1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
|
/*
* \file L1TDTTF.cc
*
* \author J. Berryhill
*
*
* Revision 1.27 2010/11/01 11:27:53 gcodispo
* Cleaned up 2nd track sections
*
* Revision 1.26 2010/10/27 13:59:25 gcodispo
* Changed name to 2nd track quality (same convention as for all tracks)
*
* Revision 1.25 2010/10/27 13:37:08 gcodispo
* Changed name to 2nd track quality (same convention as for all tracks)
*
* Revision 1.24 2010/10/27 08:08:52 gcodispo
* Graphic improvements (names, titles, labels...)
*
* Revision 1.23 2010/10/19 12:14:56 gcodispo
* New DTTF DQM version
* - added L1TDTTFClient in order to use proper normalization
* - cleaned up most of the code, removed useless plots
* - reduced overall number of bins from 118325 to 104763 plus saved 1920 bins from wrongly called L1TDTTPGClient
* - added match with GMT inputremoved useless plots
* - added eta fine fraction plots
* - added quality distribution plots
*
* Revision 1.22 2009/11/19 15:09:18 puigh
* modify beginJob
*
* Revision 1.21 2009/10/12 10:16:42 nuno
* bug fix; letting the package compile again
*
* Revision 1.20 2009/08/03 21:11:22 lorenzo
* added dttf phi and theta
*
* Revision 1.19 2008/07/29 14:18:27 wteo
* updated and added more MEs
*
* Revision 1.15 2008/06/10 18:01:55 lorenzo
* reduced n histos
*
* Revision 1.14 2008/05/09 16:42:27 ameyer
* *** empty log message ***
*
* Revision 1.13 2008/04/30 08:44:21 lorenzo
* new dttf source, not based on gmt record
*
* Revision 1.20 2008/03/20 19:38:25 berryhil
*
*
* organized message logger
*
* Revision 1.19 2008/03/14 20:35:46 berryhil
*
*
* stripped out obsolete parameter settings
*
* rpc tpg restored with correct dn access and dbe handling
*
* Revision 1.18 2008/03/12 17:24:24 berryhil
*
*
* eliminated log files, truncated HCALTPGXana histo output
*
* Revision 1.17 2008/03/10 09:29:52 lorenzo
* added MEs
*
* Revision 1.16 2008/03/01 00:40:00 lat
* DQM core migration.
*
*
* Revision 1.27 2010/11/01 11:27:53 gcodispo
* Cleaned up 2nd track sections
*
* Revision 1.26 2010/10/27 13:59:25 gcodispo
* Changed name to 2nd track quality (same convention as for all tracks)
*
* Revision 1.25 2010/10/27 13:37:08 gcodispo
* Changed name to 2nd track quality (same convention as for all tracks)
*
* Revision 1.24 2010/10/27 08:08:52 gcodispo
* Graphic improvements (names, titles, labels...)
*
* Revision 1.23 2010/10/19 12:14:56 gcodispo
* New DTTF DQM version
* - added L1TDTTFClient in order to use proper normalization
* - cleaned up most of the code, removed useless plots
* - reduced overall number of bins from 118325 to 104763 plus saved 1920 bins from wrongly called L1TDTTPGClient
* - added match with GMT inputremoved useless plots
* - added eta fine fraction plots
* - added quality distribution plots
*
* Revision 1.22 2009/11/19 15:09:18 puigh
* modify beginJob
*
* Revision 1.21 2009/10/12 10:16:42 nuno
* bug fix; letting the package compile again
*
* Revision 1.20 2009/08/03 21:11:22 lorenzo
* added dttf phi and theta
*
* Revision 1.19 2008/07/29 14:18:27 wteo
* updated and added more MEs
*
* Revision 1.15 2008/06/10 18:01:55 lorenzo
* reduced n histos
*
* Revision 1.14 2008/05/09 16:42:27 ameyer
* *** empty log message ***
*
* Revision 1.13 2008/04/30 08:44:21 lorenzo
* new dttf source, not based on gmt record
*
* Revision 1.20 2008/03/20 19:38:25 berryhil
*
*
* organized message logger
*
* Revision 1.19 2008/03/14 20:35:46 berryhil
*
*
* stripped out obsolete parameter settings
*
* rpc tpg restored with correct dn access and dbe handling
*
* Revision 1.18 2008/03/12 17:24:24 berryhil
*
*
* eliminated log files, truncated HCALTPGXana histo output
*
* Revision 1.17 2008/03/10 09:29:52 lorenzo
* added MEs
*
* Revision 1.15 2008/01/22 18:56:01 muzaffar
* include cleanup. Only for cc/cpp files
*
* Revision 1.14 2007/12/21 17:41:20 berryhil
*
*
* try/catch removal
*
* Revision 1.13 2007/11/19 15:08:22 lorenzo
* changed top folder name
*
* Revision 1.12 2007/08/15 18:56:25 berryhil
*
*
* split histograms by bx; add Maiken's bx classifier plots
*
* Revision 1.11 2007/07/26 09:37:09 berryhil
*
*
* set verbose false for all modules
* set verbose fix for DTTPG tracks
*
* Revision 1.10 2007/07/25 09:03:58 berryhil
*
*
* conform to DTTFFEDReader input tag.... for now
*
* Revision 1.9 2007/07/12 16:06:18 wittich
* add simple phi output track histograms.
* note that the label of this class is different than others
* from the DTFFReader creates.
*
*/
#include "DQM/L1TMonitor/interface/L1TDTTF.h"
/// base services
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "DQMServices/Core/interface/DQMStore.h"
/// DT input
// #include "DataFormats/L1DTTrackFinder/interface/L1MuDTChambPhContainer.h"
// #include "DataFormats/L1DTTrackFinder/interface/L1MuDTChambPhDigi.h"
// #include "DataFormats/L1DTTrackFinder/interface/L1MuDTChambThContainer.h"
// #include "DataFormats/L1DTTrackFinder/interface/L1MuDTChambThDigi.h"
/// output tracks
#include "DataFormats/L1DTTrackFinder/interface/L1MuDTTrackContainer.h"
/// GMT
#include "DataFormats/L1GlobalMuonTrigger/interface/L1MuGMTReadoutCollection.h"
/// GlobalMuon try
#include "DataFormats/MuonReco/interface/Muon.h"
#include "DataFormats/MuonReco/interface/MuonFwd.h"
//--------------------------------------------------------
L1TDTTF::L1TDTTF(const edm::ParameterSet& ps)
: dttpgSource_(ps.getParameter<edm::InputTag>("dttpgSource")),
gmtSource_(ps.getParameter<edm::InputTag>("gmtSource")),
muonCollectionLabel_(ps.getParameter<edm::InputTag>("MuonCollection")),
l1tsubsystemfolder_(ps.getUntrackedParameter<std::string>("l1tSystemFolder", "L1T/L1TDTTF")),
online_(ps.getUntrackedParameter<bool>("online", true)),
verbose_(ps.getUntrackedParameter<bool>("verbose", false))
{
std::string trstring = dttpgSource_.label() + ":DATA:" + dttpgSource_.process();
trackInputTag_ = edm::InputTag(trstring);
/// Verbose?
if (verbose_)
edm::LogInfo("L1TDTTF: constructor") << "Verbose enabled";
/// Use ROOT Output?
if (ps.getUntrackedParameter<bool>("disableROOToutput", false)) {
outputFile_ = "";
} else {
outputFile_ = ps.getUntrackedParameter<std::string>("outputFile", "");
if (!outputFile_.empty()) {
edm::LogInfo("L1TDTTF: constructor") << "L1T Monitoring histograms will be saved to " << outputFile_;
}
}
//set Token(-s)
trackInputToken_ = consumes<L1MuDTTrackContainer>(trackInputTag_);
muonCollectionToken_ = consumes<reco::MuonCollection>(ps.getParameter<edm::InputTag>("MuonCollection"));
gmtSourceToken_ = consumes<L1MuGMTReadoutCollection>(ps.getParameter<edm::InputTag>("gmtSource"));
}
//--------------------------------------------------------
L1TDTTF::~L1TDTTF() {
/// Nothing to destroy
}
//------------------------------------------------------
void L1TDTTF::dqmBeginRun(const edm::Run& r, const edm::EventSetup& c) {
//empty
}
//--------------------------------------------------------
void L1TDTTF::bookHistograms(DQMStore::IBooker& ibooker, const edm::Run&, const edm::EventSetup&) {
/// testing purposes
nev_ = 0;
nev_dttf_ = 0;
nev_dttf_track2_ = 0;
// get hold of back-end interface
std::string dttf_trk_folder = l1tsubsystemfolder_;
char hname[100]; /// histo name
char htitle[100]; /// histo title
///////////// OPTIMIZE
float start = 0;
float stop = 0;
int nbins = 0;
///////////// OPTIMIZE
/// DTTF Output (6 wheels)
ibooker.setCurrentFolder(dttf_trk_folder);
std::string wheelpath[6] = {
"/02-WHEEL_N2", "/03-WHEEL_N1", "/04-WHEEL_N0", "/05-WHEEL_P0", "/06-WHEEL_P1", "/07-WHEEL_P2"};
char c_whn[6][3] = {"N2", "N1", "N0", "P0", "P1", "P2"};
// char bxn [3][3] = { "N1", "0", "P1" };
// char bxn[3][25] = {"/BX_NONZERO_ONLY/BX_N1", "", "/BX_NONZERO_ONLY/BX_P1"};
for (int iwh = 0; iwh < 6; ++iwh) {
bookEta(iwh, nbins, start, stop); ///******************
////////////////////////////
/// Per wheel summaries
////////////////////////////
std::string dttf_trk_folder_wheel = dttf_trk_folder + wheelpath[iwh];
ibooker.setCurrentFolder(dttf_trk_folder_wheel);
/// number of tracks per event per wheel
sprintf(hname, "dttf_01_nTracksPerEvent_wh%s", c_whn[iwh]);
sprintf(htitle, "Wheel %s - Number Tracks Per Event", c_whn[iwh]);
dttf_nTracksPerEvent_wheel[iwh] = ibooker.book1D(hname, htitle, 10, 0.5, 10.5);
dttf_nTracksPerEvent_wheel[iwh]->setAxisTitle("# tracks/event", 1);
/// phi vs etafine - for each wheel
sprintf(hname, "dttf_07_phi_vs_etaFine_wh%s", c_whn[iwh]);
sprintf(htitle, "Wheel %s - #eta-#phi DTTF Tracks occupancy (fine #eta only, unpacked values)", c_whn[iwh]);
dttf_phi_eta_fine_wheel[iwh] = ibooker.book2D(hname, htitle, nbins, start - 0.5, stop - 0.5, 144, -6, 138);
// 144, -0.5, 143.5);
dttf_phi_eta_fine_wheel[iwh]->setAxisTitle("#eta", 1);
dttf_phi_eta_fine_wheel[iwh]->setAxisTitle("#phi", 2);
/// phi vs etacoarse - for each wheel
sprintf(hname, "dttf_08_phi_vs_etaCoarse_wh%s", c_whn[iwh]);
sprintf(htitle, "Wheel %s - #eta-#phi DTTF Tracks occupancy (coarse #eta only, unpacked values)", c_whn[iwh]);
dttf_phi_eta_coarse_wheel[iwh] = ibooker.book2D(hname, htitle, nbins, start - 0.5, stop - 0.5, 144, -6, 138);
// 144, -0.5, 143.5);
dttf_phi_eta_coarse_wheel[iwh]->setAxisTitle("#eta", 1);
dttf_phi_eta_coarse_wheel[iwh]->setAxisTitle("#phi", 2);
/////////////////////////////////////////////
/// Per wheel summaries : 2ND_TRACK_ONLY
std::string dttf_trk_folder_wheel_2ndtrack = dttf_trk_folder_wheel + "/2ND_TRACK_ONLY";
ibooker.setCurrentFolder(dttf_trk_folder_wheel_2ndtrack);
/// DTTF Tracks Quality distribution
sprintf(hname, "dttf_04_quality_wh%s_2ndTrack", c_whn[iwh]);
sprintf(htitle, "Wheel %s - 2nd Tracks Quality distribution", c_whn[iwh]);
dttf_quality_wheel_2ndTrack[iwh] = ibooker.book1D(hname, htitle, 7, 1, 8);
setQualLabel(dttf_quality_wheel_2ndTrack[iwh], 1);
/// quality per wheel 2ND TRACK
sprintf(hname, "dttf_05_quality_summary_wh%s_2ndTrack", c_whn[iwh]);
sprintf(htitle, "Wheel %s - 2nd Tracks - Quality", c_whn[iwh]);
dttf_quality_summary_wheel_2ndTrack[iwh] = ibooker.book2D(hname, htitle, 12, 1, 13, 7, 1, 8);
dttf_quality_summary_wheel_2ndTrack[iwh]->setAxisTitle("Sector", 1);
setQualLabel(dttf_quality_summary_wheel_2ndTrack[iwh], 2);
// dttf_quality_summary_wheel_2ndTrack[iwh]->setAxisTitle("Quality", 2);
/// phi vs eta - for each wheel 2ND TRACK
sprintf(hname, "dttf_06_phi_vs_eta_wh%s_2ndTrack", c_whn[iwh]);
sprintf(htitle, "Wheel %s - #eta-#phi Distribution of DTTF 2nd Tracks", c_whn[iwh]);
dttf_phi_eta_wheel_2ndTrack[iwh] = ibooker.book2D(hname, htitle, nbins, start - 0.5, stop - 0.5, 144, -6, 138);
// 144, -0.5, 143.5);
dttf_phi_eta_wheel_2ndTrack[iwh]->setAxisTitle("#eta", 1);
dttf_phi_eta_wheel_2ndTrack[iwh]->setAxisTitle("#phi", 2);
/// DTTF Tracks #eta distribution (Packed values)
sprintf(hname, "dttf_07_eta_wh%s_2ndTrack", c_whn[iwh]);
sprintf(htitle, "Wheel %s - DTTF 2nd Tracks #eta distribution (Packed values)", c_whn[iwh]);
dttf_eta_wheel_2ndTrack[iwh] = ibooker.book1D(hname, htitle, 64, -0.5, 63.5);
dttf_eta_wheel_2ndTrack[iwh]->setAxisTitle("#eta", 1);
/// DTTF Tracks Phi distribution (Packed values)
sprintf(hname, "dttf_08_phi_wh%s_2ndTrack", c_whn[iwh]);
sprintf(htitle, "Wheel %s - DTTF 2nd Tracks Phi distribution (Packed values)", c_whn[iwh]);
dttf_phi_wheel_2ndTrack[iwh] = ibooker.book1D(hname, htitle, 144, -6, 138.);
dttf_phi_wheel_2ndTrack[iwh]->setAxisTitle("#phi", 1);
/// DTTF Tracks p_{T} distribution (Packed values)
sprintf(hname, "dttf_09_pt_wh%s_2ndTrack", c_whn[iwh]);
sprintf(htitle, "Wheel %s - DTTF 2nd Tracks p_{T} distribution (Packed values)", c_whn[iwh]);
dttf_pt_wheel_2ndTrack[iwh] = ibooker.book1D(hname, htitle, 32, -0.5, 31.5);
dttf_pt_wheel_2ndTrack[iwh]->setAxisTitle("p_{T}", 1);
/// DTTF Tracks Charge distribution
sprintf(hname, "dttf_10_charge_wh%s_2ndTrack", c_whn[iwh]);
sprintf(htitle, "Wheel %s - DTTF 2nd Tracks Charge distribution", c_whn[iwh]);
dttf_q_wheel_2ndTrack[iwh] = ibooker.book1D(hname, htitle, 2, -0.5, 1.5);
dttf_q_wheel_2ndTrack[iwh]->setAxisTitle("Charge", 1);
///////////////////////////////////////////////////////
/// Go in detailed subfolders
///////////////////////////////////////////////////////
/// number of tracks per event folder
std::string dttf_trk_folder_nTracksPerEvent = dttf_trk_folder_wheel + "/TracksPerEvent";
ibooker.setCurrentFolder(dttf_trk_folder_nTracksPerEvent);
for (int ise = 0; ise < 12; ++ise) {
sprintf(hname, "dttf_nTracksPerEvent_wh%s_se%d", c_whn[iwh], ise + 1);
sprintf(htitle, "Wheel %s Sector %d - Number of Tracks Per Event", c_whn[iwh], ise + 1);
dttf_nTracksPerEv[iwh][ise] = ibooker.book1D(hname, htitle, 2, 0.5, 2.5);
dttf_nTracksPerEv[iwh][ise]->setAxisTitle("# tracks/event", 1);
}
/// BX_SECTORS for each wheel
std::string dttf_trk_folder_wh_bxsec_all = dttf_trk_folder_wheel + "/BX_BySector";
ibooker.setCurrentFolder(dttf_trk_folder_wh_bxsec_all);
for (int ise = 0; ise < 12; ++ise) {
sprintf(hname, "dttf_bx_wh%s_se%d", c_whn[iwh], ise + 1);
sprintf(htitle, "Wheel %s Sector %d - BX Distribution", c_whn[iwh], ise + 1);
dttf_bx[iwh][ise] = ibooker.book1D(hname, htitle, 3, -1.5, 1.5);
dttf_bx[iwh][ise]->setAxisTitle("BX", 1);
}
std::string dttf_trk_folder_wh_bxsec_trk2 = dttf_trk_folder_wheel + "/BX_BySector/2ND_TRACK_ONLY";
ibooker.setCurrentFolder(dttf_trk_folder_wh_bxsec_trk2);
for (int ise = 0; ise < 12; ++ise) {
sprintf(hname, "dttf_bx_2ndTrack_wh%s_se%d", c_whn[iwh], ise + 1);
sprintf(htitle, "Wheel %s Sector %d - BX 2nd Tracks only", c_whn[iwh], ise + 1);
dttf_bx_2ndTrack[iwh][ise] = ibooker.book1D(hname, htitle, 3, -1.5, 1.5);
dttf_bx_2ndTrack[iwh][ise]->setAxisTitle("BX", 1);
}
/// CHARGE folder
std::string dttf_trk_folder_charge = dttf_trk_folder_wheel + "/Charge";
ibooker.setCurrentFolder(dttf_trk_folder_charge);
for (int ise = 0; ise < 12; ++ise) {
sprintf(hname, "dttf_charge_wh%s_se%d", c_whn[iwh], ise + 1);
sprintf(htitle, "Wheel %s Sector %d - Packed Charge", c_whn[iwh], ise + 1);
dttf_q[iwh][ise] = ibooker.book1D(hname, htitle, 2, -0.5, 1.5);
dttf_q[iwh][ise]->setAxisTitle("Charge", 1);
}
/// PT folder
std::string dttf_trk_folder_pt = dttf_trk_folder_wheel + "/PT";
ibooker.setCurrentFolder(dttf_trk_folder_pt);
for (int ise = 0; ise < 12; ++ise) {
sprintf(hname, "dttf_pt_wh%s_se%d", c_whn[iwh], ise + 1);
sprintf(htitle, "Wheel %s Sector %d - Packed p_{T}", c_whn[iwh], ise + 1);
dttf_pt[iwh][ise] = ibooker.book1D(hname, htitle, 32, -0.5, 31.5);
dttf_pt[iwh][ise]->setAxisTitle("p_{T}", 1);
}
/// PHI folder
std::string dttf_trk_folder_phi = dttf_trk_folder_wheel + "/Phi";
ibooker.setCurrentFolder(dttf_trk_folder_phi);
for (int ise = 0; ise < 12; ++ise) {
sprintf(hname, "dttf_phi_wh%s_se%d", c_whn[iwh], ise + 1);
sprintf(htitle, "Wheel %s Sector %d - Packed Phi", c_whn[iwh], ise + 1);
dttf_phi[iwh][ise] = ibooker.book1D(hname, htitle, 144, -6, 138);
dttf_phi[iwh][ise]->setAxisTitle("#phi", 1);
//dttf_phi[iwh][ise] = dbe_->book1D(title,title, 32,-16.5, 15.5);
}
/// QUALITY folder
std::string dttf_trk_folder_quality = dttf_trk_folder_wheel + "/Quality";
ibooker.setCurrentFolder(dttf_trk_folder_quality);
for (int ise = 0; ise < 12; ++ise) {
sprintf(hname, "dttf_qual_wh%s_se%d", c_whn[iwh], ise + 1);
sprintf(htitle, "Wheel %s Sector %d - Packed Quality", c_whn[iwh], ise + 1);
dttf_qual[iwh][ise] = ibooker.book1D(hname, htitle, 7, 1, 8);
dttf_qual[iwh][ise]->setAxisTitle("Quality", 1);
setQualLabel(dttf_qual[iwh][ise], 1);
}
/// ETA folder
std::string dttf_trk_folder_eta = dttf_trk_folder_wheel + "/Eta";
ibooker.setCurrentFolder(dttf_trk_folder_eta);
for (int ise = 0; ise < 12; ++ise) {
sprintf(hname, "dttf_eta_wh%s_se%d", c_whn[iwh], ise + 1);
sprintf(htitle, "Wheel %s Sector %d - Packed #eta", c_whn[iwh], ise + 1);
dttf_eta[iwh][ise] = ibooker.book1D(hname, htitle, 64, -0.5, 63.5);
dttf_eta[iwh][ise]->setAxisTitle("#eta", 1);
}
/// ETA folder
dttf_trk_folder_eta = dttf_trk_folder_wheel + "/EtaFineFraction";
ibooker.setCurrentFolder(dttf_trk_folder_eta);
for (int ise = 0; ise < 12; ++ise) {
sprintf(hname, "dttf_etaFine_fraction_wh%s_se%d", c_whn[iwh], ise + 1);
sprintf(htitle, "Wheel %s Sector %d - Eta Fine Fraction", c_whn[iwh], ise + 1);
dttf_eta_fine_fraction[iwh][ise] = ibooker.book1D(hname, htitle, 2, 0, 2);
dttf_eta_fine_fraction[iwh][ise]->setAxisTitle("#eta", 1);
dttf_eta_fine_fraction[iwh][ise]->setBinLabel(1, "fine", 1);
dttf_eta_fine_fraction[iwh][ise]->setBinLabel(2, "coarse", 1);
}
}
///////////////////////////////////////////////////////
/// integrated values: always packed
///////////////////////////////////////////////////////
std::string dttf_trk_folder_inclusive = dttf_trk_folder + "/01-INCLUSIVE";
ibooker.setCurrentFolder(dttf_trk_folder_inclusive);
sprintf(hname, "dttf_01_nTracksPerEvent_integ");
sprintf(htitle, "Number of DTTF Tracks Per Event");
dttf_nTracksPerEvent_integ = ibooker.book1D(hname, htitle, 20, 0.5, 20.5);
dttf_nTracksPerEvent_integ->setAxisTitle("# tracks/event", 1);
///////// ?????????
// sprintf(hname, "dttf_10_qual_eta_distr");
// sprintf(htitle, "DTTF Tracks Quality vs Eta Distribution");
// dttf_qual_eta_integ = dbe_->book2D(hname, htitle, 64, 0, 64, 7, 1, 8);
// setQualLabel( dttf_qual_eta_integ, 2);
/// Only for online: occupancy summary - reset
if (online_) {
sprintf(hname, "dttf_04_tracks_occupancy_by_lumi");
sprintf(htitle, "DTTF Tracks in the last LumiSections");
dttf_spare = ibooker.book2D(hname, htitle, 6, 0, 6, 12, 1, 13);
setWheelLabel(dttf_spare);
dttf_spare->setAxisTitle("Sector", 2);
dttf_spare->getTH2F()->GetXaxis()->SetNdivisions(12);
} else {
sprintf(hname, "dttf_04_global_muons_request");
sprintf(htitle, "Tracks compatible with a Global Muon in the Barrel");
dttf_spare = ibooker.book1D(hname, htitle, 4, -0.5, 3.5);
dttf_spare->setBinLabel(1, "No tracks", 1);
dttf_spare->setBinLabel(2, "No tracks but GM", 1);
dttf_spare->setBinLabel(3, "Tracks wo GM", 1);
dttf_spare->setBinLabel(4, "Tracks w GM", 1);
}
std::string dttf_trk_folder_integrated_gmt = dttf_trk_folder + "/08-GMT_MATCH";
ibooker.setCurrentFolder(dttf_trk_folder_integrated_gmt);
sprintf(hname, "dttf_tracks_with_gmt_match");
sprintf(htitle, "DTTF Tracks With a Match in GMT");
dttf_gmt_match = ibooker.book2D(hname, htitle, 6, 0., 6., 12, 1., 13.);
setWheelLabel(dttf_gmt_match);
sprintf(hname, "dttf_tracks_without_gmt_match");
sprintf(htitle, "DTTF Tracks Without a Match in GMT");
dttf_gmt_missed = ibooker.book2D(hname, htitle, 6, 0., 6., 12, 1., 13.);
setWheelLabel(dttf_gmt_missed);
sprintf(hname, "dttf_missing_tracks_in_gmt");
sprintf(htitle, "GMT Tracks Without a Corresponding Track in DTTF");
dttf_gmt_ghost = ibooker.book2D(hname, htitle, 5, -2, 3, 12, 1, 13.);
dttf_gmt_ghost->setBinLabel(1, "N2", 1);
dttf_gmt_ghost->setBinLabel(2, "N1", 1);
dttf_gmt_ghost->setBinLabel(3, "N0/P0", 1);
dttf_gmt_ghost->setBinLabel(4, "P1", 1);
dttf_gmt_ghost->setBinLabel(5, "P2", 1);
// sprintf(hname, "dttf_eta_phi_missing_tracks_in_gmt");
// sprintf(htitle, "GMT Tracks Without a Corresponding Track in DTTF");
// dttf_gmt_ghost_phys = dbe_->book2D(hname, htitle, 64, 0., 64., 144, 0., 144. );
}
//--------------------------------------------------------
void L1TDTTF::analyze(const edm::Event& event, const edm::EventSetup& eventSetup) {
if (verbose_)
edm::LogInfo("L1TDTTF::Analyze::start") << "#################### START";
/// counters
++nev_;
memset(numTracks, 0, 72 * sizeof(int));
/// tracks handle
edm::Handle<L1MuDTTrackContainer> myL1MuDTTrackContainer;
try {
event.getByToken(trackInputToken_, myL1MuDTTrackContainer);
} catch (cms::Exception& iException) {
edm::LogError("L1TDTTF::analyze::DataNotFound") << "can't getByToken L1MuDTTrackContainer with label "
<< dttpgSource_.label() << ":DATA:" << dttpgSource_.process();
return;
}
if (!myL1MuDTTrackContainer.isValid()) {
edm::LogError("L1TDTTF::analyze::DataNotFound")
<< "can't find L1MuDTTrackContainer with label " << dttpgSource_.label() << ":DATA:" << dttpgSource_.process();
return;
}
L1MuDTTrackContainer::TrackContainer const* trackContainer = myL1MuDTTrackContainer->getContainer();
/// dttf counters
if (!trackContainer->empty()) {
++nev_dttf_;
if (trackContainer->size() > 1)
++nev_dttf_track2_;
}
///////////////////////////
/// selection for offline
//////////////////////////
bool accept = true;
if (!online_) {
try {
edm::Handle<reco::MuonCollection> muons;
event.getByToken(muonCollectionToken_, muons);
accept = false;
if (muons.isValid()) {
for (reco::MuonCollection::const_iterator recoMu = muons->begin(); recoMu != muons->end(); ++recoMu) {
if (fabs(recoMu->eta()) < 1.4) {
if (verbose_) {
edm::LogInfo("L1TDTTFClient::Analyze:GM") << "Found a global muon!";
}
accept = true;
break;
}
}
/// global muon selection plot
if (!accept) {
dttf_spare->Fill(!trackContainer->empty() ? 1 : 0);
if (verbose_) {
edm::LogInfo("L1TDTTFClient::Analyze:GM") << "No global muons in this event!";
}
} else {
dttf_spare->Fill(!trackContainer->empty() ? 2 : 3);
}
} else {
/// in case of problems accept all
accept = true;
edm::LogWarning("L1TDTTFClient::Analyze:GM")
<< "Invalid MuonCollection with label " << muonCollectionLabel_.label();
}
} catch (cms::Exception& iException) {
/// in case of problems accept all
accept = true;
edm::LogError("DataNotFound") << "Unable to getByToken MuonCollection with label "
<< muonCollectionLabel_.label();
}
}
////////GMT
std::vector<L1MuRegionalCand> gmtBx0DttfCandidates;
try {
edm::Handle<L1MuGMTReadoutCollection> pCollection;
event.getByToken(gmtSourceToken_, pCollection);
if (!pCollection.isValid()) {
edm::LogError("DataNotFound") << "can't find L1MuGMTReadoutCollection with label " << gmtSource_.label();
}
// get GMT readout collection
L1MuGMTReadoutCollection const* gmtrc = pCollection.product();
std::vector<L1MuGMTReadoutRecord> gmt_records = gmtrc->getRecords();
std::vector<L1MuGMTReadoutRecord>::const_iterator RRItr;
for (RRItr = gmt_records.begin(); RRItr != gmt_records.end(); ++RRItr) {
std::vector<L1MuRegionalCand> dttfCands = RRItr->getDTBXCands();
std::vector<L1MuRegionalCand>::iterator dttfCand;
for (dttfCand = dttfCands.begin(); dttfCand != dttfCands.end(); ++dttfCand) {
if (dttfCand->empty())
continue;
/// take only bx=0
if (RRItr->getBxInEvent())
continue;
// dttf_gmt_ghost_phys->Fill( dttfCand->eta_packed(),
// dttfCand->phi_packed() );
gmtBx0DttfCandidates.push_back(*dttfCand);
}
}
} catch (cms::Exception& iException) {
edm::LogError("DataNotFound") << "Unable to getByToken L1MuGMTReadoutCollection with label " << gmtSource_.label();
}
// fill MEs if all selections are passed
if (accept)
fillMEs(trackContainer, gmtBx0DttfCandidates);
/// in Gmt but not in DTTF
std::vector<L1MuRegionalCand>::iterator dttfCand;
for (dttfCand = gmtBx0DttfCandidates.begin(); dttfCand != gmtBx0DttfCandidates.end(); ++dttfCand) {
if (dttfCand->empty())
continue;
/// in phys values
/// double phi= dttfCand->phiValue();
/// int sector = 1 + (phi + 15)/30; /// in phys values
int phi = dttfCand->phi_packed();
int sector = 1 + (phi + 6) / 12;
if (sector > 12)
sector -= 12;
double eta = dttfCand->etaValue();
int wheel = -3;
if (eta < -0.74) {
wheel = -2;
} else if (eta < -0.3) {
wheel = -1;
} else if (eta < 0.3) {
wheel = 0;
} else if (eta < 0.74) {
wheel = 1;
} else {
wheel = 2;
}
dttf_gmt_ghost->Fill(wheel, sector);
// dttf_gmt_ghost_phys->Fill( dttfCand->eta_packed(),
// dttfCand->phi_packed() );
}
/// Per event summaries
int numTracksInt = 0;
for (int w = 0; w < 6; ++w) {
int numTracks_wh = 0;
for (int s = 0; s < 12; ++s) {
dttf_nTracksPerEv[w][s]->Fill(numTracks[w][s]);
numTracks_wh += numTracks[w][s];
}
numTracksInt += numTracks_wh;
dttf_nTracksPerEvent_wheel[w]->Fill(numTracks_wh);
}
dttf_nTracksPerEvent_integ->Fill(numTracksInt);
}
//--------------------------------------------------------
void L1TDTTF::fillMEs(std::vector<L1MuDTTrackCand> const* trackContainer, std::vector<L1MuRegionalCand>& gmtDttfCands) {
L1MuDTTrackContainer::TrackContainer::const_iterator track = trackContainer->begin();
L1MuDTTrackContainer::TrackContainer::const_iterator trackEnd = trackContainer->end();
for (; track != trackEnd; ++track) {
if (verbose_) {
edm::LogInfo("L1TDTTF::Analyze") << "bx = " << track->bx();
edm::LogInfo("L1TDTTF::Analyze") << "quality (packed) = " << track->quality_packed();
edm::LogInfo("L1TDTTF::Analyze") << "pt (packed) = " << track->pt_packed()
<< " , pt (GeV) = " << track->ptValue();
edm::LogInfo("L1TDTTF::Analyze") << "phi (packed) = " << track->phi_packed()
<< " , phi (rad) = " << track->phiValue();
edm::LogInfo("L1TDTTF::Analyze") << "charge (packed) = " << track->charge_packed();
}
/// Forget N0 with zero eta value for physical values
if ((track->whNum() == -1) && !track->eta_packed()) {
edm::LogInfo("L1TDTTF::Analyze") << "Skipping N0 with zero eta value";
continue;
}
int bxindex = track->bx() + 1;
int se = track->scNum(); /// from 0 to 11
int sector = se + 1; /// from 1 to 12
int whindex = track->whNum(); /// wh has possible values {-3,-2,-1,1,2,3}
whindex = (whindex < 0) ? whindex + 3 : whindex + 2; /// make wh2 go from 0 to 5
if (whindex < 0 || whindex > 5) {
edm::LogError("L1TDTTF::Analyze::WHEEL_ERROR") << track->whNum() << "(" << whindex << ")";
continue;
}
if (se < 0 || se > 11) {
edm::LogError("L1TDTTF::Analyze::SECTOR_ERROR") << se;
continue;
}
/// useful conversions
/// calculate phi in physical coordinates: keep it int, set labels later
// int phi_local = track->phi_packed();//range: 0 < phi_local < 31
// if ( phi_local > 15 ) phi_local -= 32; //range: -16 < phi_local < 15
// int phi_global = phi_local + se * 12; //range: -16 < phi_global < 147
// if(phi_global < 0) phi_global += 144; //range: 0 < phi_global < 147
// if(phi_global > 143) phi_global -= 144; //range: 0 < phi_global < 143
// // float phi_phys = phi_global * 2.5 + 1.25;
/// new attempt
int phi_global = track->phi_packed();
phi_global = (phi_global > 15 ? phi_global - 32 : phi_global) + se * 12;
if (phi_global < -6)
phi_global += 144; //range: 0 < phi_global < 147
if (phi_global > 137)
phi_global -= 144; //range: 0 < phi_global < 143
// int eta_global = track->eta_packed();
// int eta_global = track->eta_packed() - 32;
// dttf_eta[bxindex][whindex][se]->Fill(eta_global);
// float eta_phys = eta_global / 2.4 ;
///////////////////////////////////
//// Starting BX distributions
///////////////////////////////////
/// Fill per sector bx WHEEL_%s/dttf_bx_wh%s
dttf_bx[whindex][se]->Fill(track->bx());
/// Fill per sector 2nd bx
if (track->TrkTag() == 1) {
/// WHEEL_%s/BX_SECTORS/TRACK_2_ONLY/dttf_bx_2ndTrack_wh%s_se%d
dttf_bx_2ndTrack[whindex][se]->Fill(track->bx());
}
/////////////////////////////////////////
//// use only bx=0 for for othe plots!
/////////////////////////////////////////
if (bxindex == 1) {
/// COUNTERS global
++numTracks[whindex][se];
/// Fill per sector phi: WHEEL_%s/BX_%d/dttf_phi_wh%s_se%d
dttf_phi[whindex][se]->Fill(phi_global);
/// Fill per sector quality WHEEL_%s/BX_%d/dttf_qual_wh%s_se%d
dttf_qual[whindex][se]->Fill(track->quality_packed());
/// Fill per sector pt WHEEL_%s/BX_%d/dttf_pt_wh%s_se%d
dttf_pt[whindex][se]->Fill(track->pt_packed());
/// Fill per sector charge WHEEL_%s/BX_%d/dttf_q_wh%s_se%d
dttf_q[whindex][se]->Fill(track->charge_packed());
/// Fill per sector eta WHEEL_%s/BX_%d/dttf_eta_wh%s_se%d
dttf_eta[whindex][se]->Fill(track->eta_packed());
if (track->isFineHalo()) {
dttf_eta_fine_fraction[whindex][se]->Fill(0);
/// WHEEL_%s/dttf_phi_eta_wh%s
dttf_phi_eta_fine_wheel[whindex]->Fill(track->eta_packed(), phi_global);
} else {
dttf_eta_fine_fraction[whindex][se]->Fill(1);
/// WHEEL_%s/dttf_phi_eta_wh%s
dttf_phi_eta_coarse_wheel[whindex]->Fill(track->eta_packed(), phi_global);
}
/// Only for online: INCLUSIVE/dttf_occupancy_summary_r
if (online_) {
dttf_spare->Fill(whindex, sector);
}
///////// ?????????
// dttf_qual_eta_integ->Fill(track->eta_packed(), track->quality_packed());
/// second track summary
if (track->TrkTag() == 1) {
/// WHEEL_%s/dttf_phi_integ
dttf_phi_wheel_2ndTrack[whindex]->Fill(phi_global);
/// WHEEL_%s/dttf_pt_integ
dttf_pt_wheel_2ndTrack[whindex]->Fill(track->pt_packed());
/// WHEEL_%s/dttf_eta_integ
dttf_eta_wheel_2ndTrack[whindex]->Fill(track->eta_packed());
/// WHEEL_%s/dttf_qual_integ
dttf_quality_wheel_2ndTrack[whindex]->Fill(track->quality_packed());
/// WHEEL_%s/dttf_q_integ
dttf_q_wheel_2ndTrack[whindex]->Fill(track->charge_packed());
/// WHEEL_%s/dttf_quality_wh%s
dttf_quality_summary_wheel_2ndTrack[whindex]->Fill(sector, track->quality_packed());
/// WHEEL_%s/dttf_phi_eta_wh%s
dttf_phi_eta_wheel_2ndTrack[whindex]->Fill(track->eta_packed(), phi_global);
}
///////// GMT
bool match = false;
std::vector<L1MuRegionalCand>::iterator dttfCand;
/// gmt phi_packed() goes from 0 to 143
unsigned int gmt_phi = (phi_global < 0 ? phi_global + 144 : phi_global);
for (dttfCand = gmtDttfCands.begin(); dttfCand != gmtDttfCands.end(); ++dttfCand) {
/// calculate phi in physical coordinates: keep it int, set labels later
if (dttfCand->empty())
continue;
if ((dttfCand->phi_packed() == gmt_phi) && dttfCand->quality_packed() == track->quality_packed()) {
match = true;
dttfCand->reset();
break;
}
}
if (match) {
dttf_gmt_match->Fill(whindex, sector);
} else {
dttf_gmt_missed->Fill(whindex, sector);
}
}
}
}
//--------------------------------------------------------
void L1TDTTF::setQualLabel(MonitorElement* me, int axis) {
if (axis == 1)
me->setAxisTitle("Quality", axis);
me->setBinLabel(1, "T34", axis);
me->setBinLabel(2, "T23/24", axis);
me->setBinLabel(3, "T12/13/14", axis);
me->setBinLabel(4, "T234", axis);
me->setBinLabel(5, "T134", axis);
me->setBinLabel(6, "T123/124", axis);
me->setBinLabel(7, "T1234", axis);
}
//--------------------------------------------------------
void L1TDTTF::setWheelLabel(MonitorElement* me) {
me->setAxisTitle("Wheel", 1);
me->setBinLabel(1, "N2", 1);
me->setBinLabel(2, "N1", 1);
me->setBinLabel(3, "N0", 1);
me->setBinLabel(4, "P0", 1);
me->setBinLabel(5, "P1", 1);
me->setBinLabel(6, "P2", 1);
}
//--------------------------------------------------------
void L1TDTTF::bookEta(int wh, int& nbins, float& start, float& stop) {
switch (wh) {
case 0:
start = 0;
stop = 18;
nbins = 18;
break; // N2
case 1:
start = 8;
stop = 28;
nbins = 20;
break; // N1
case 2:
start = 22;
stop = 32;
nbins = 10;
break; // N0
case 3:
start = 22;
stop = 42;
nbins = 20;
break; // P0
case 4:
start = 36;
stop = 56;
nbins = 20;
break; // P1
case 5:
start = 46;
stop = 64;
nbins = 18;
break; // P2
default:
start = 0;
stop = 0;
nbins = 0;
break; // BOH
}
}
|