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
|
// -*- C++ -*-
//
// Package: SiOuterTracker
// Class: SiOuterTracker
//
/**\class SiOuterTracker Phase2OTMonitorTTStub.cc
DQM/SiOuterTracker/plugins/Phase2OTMonitorTTStub.cc
Description: [one line class summary]
Implementation:
[Notes on implementation]
*/
//
// Original Author: Isis Marina Van Parijs
// Created: Fri, 24 Oct 2014 12:31:31 GMT
//
//
// system include files
#include <memory>
#include <numeric>
#include <vector>
// user include files
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "FWCore/Utilities/interface/EDGetToken.h"
#include "DataFormats/Common/interface/DetSetVectorNew.h"
#include "DataFormats/L1TrackTrigger/interface/TTTypes.h"
#include "DataFormats/L1TrackTrigger/interface/TTStub.h"
#include "DataFormats/SiStripDetId/interface/StripSubdetector.h"
#include "DataFormats/TrackerCommon/interface/TrackerTopology.h"
#include "Geometry/CommonDetUnit/interface/GeomDet.h"
#include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
#include "Geometry/Records/interface/TrackerTopologyRcd.h"
#include "Geometry/TrackerGeometryBuilder/interface/StripGeomDetUnit.h"
#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
#include "DQMServices/Core/interface/DQMEDAnalyzer.h"
#include "DQMServices/Core/interface/DQMStore.h"
class Phase2OTMonitorTTStub : public DQMEDAnalyzer {
public:
explicit Phase2OTMonitorTTStub(const edm::ParameterSet &);
~Phase2OTMonitorTTStub() override;
void analyze(const edm::Event &, const edm::EventSetup &) override;
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override;
void dqmBeginRun(const edm::Run &iRun, const edm::EventSetup &iSetup) override;
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions);
// TTStub stacks
// Global position of the stubs
MonitorElement *Stub_Barrel_XY = nullptr; // TTStub barrel y vs x
MonitorElement *Stub_Endcap_Fw_XY = nullptr; // TTStub Forward Endcap y vs. x
MonitorElement *Stub_Endcap_Bw_XY = nullptr; // TTStub Backward Endcap y vs. x
MonitorElement *Stub_RZ = nullptr; // TTStub #rho vs. z
// Number of stubs
MonitorElement *Stub_Barrel = nullptr; // TTStub per layer
MonitorElement *Stub_Endcap_Disc = nullptr; // TTStubs per disc
MonitorElement *Stub_Endcap_Disc_Fw = nullptr; // TTStub per disc
MonitorElement *Stub_Endcap_Disc_Bw = nullptr; // TTStub per disc
MonitorElement *Stub_Endcap_Ring = nullptr; // TTStubs per ring
MonitorElement *Stub_Endcap_Ring_Fw[5] = {nullptr, nullptr, nullptr, nullptr, nullptr}; // TTStubs per EC ring
MonitorElement *Stub_Endcap_Ring_Bw[5] = {nullptr, nullptr, nullptr, nullptr, nullptr}; // TTStub per EC ring
// Stub distribution
MonitorElement *Stub_Eta = nullptr; // TTstub eta distribution
MonitorElement *Stub_Phi = nullptr; // TTstub phi distribution
MonitorElement *Stub_R = nullptr; // TTstub r distribution
MonitorElement *Stub_bendFE = nullptr; // TTstub trigger bend
MonitorElement *Stub_bendBE = nullptr; // TTstub hardware bend
MonitorElement *Stub_isPS = nullptr; // is this stub a PS module?
// STUB Displacement - offset
MonitorElement *Stub_Barrel_W = nullptr; // TTstub Pos-Corr Displacement (layer)
MonitorElement *Stub_Barrel_O = nullptr; // TTStub Offset (layer)
MonitorElement *Stub_Endcap_Disc_W = nullptr; // TTstub Pos-Corr Displacement (disc)
MonitorElement *Stub_Endcap_Disc_O = nullptr; // TTStub Offset (disc)
MonitorElement *Stub_Endcap_Ring_W = nullptr; // TTstub Pos-Corr Displacement (EC ring)
MonitorElement *Stub_Endcap_Ring_O = nullptr; // TTStub Offset (EC ring)
MonitorElement *Stub_Endcap_Ring_W_Fw[5] = {
nullptr, nullptr, nullptr, nullptr, nullptr}; // TTstub Pos-Corr Displacement (EC ring)
MonitorElement *Stub_Endcap_Ring_O_Fw[5] = {nullptr, nullptr, nullptr, nullptr, nullptr}; // TTStub Offset (EC ring)
MonitorElement *Stub_Endcap_Ring_W_Bw[5] = {
nullptr, nullptr, nullptr, nullptr, nullptr}; // TTstub Pos-Corr Displacement (EC ring)
MonitorElement *Stub_Endcap_Ring_O_Bw[5] = {nullptr, nullptr, nullptr, nullptr, nullptr}; // TTStub Offset (EC ring)
private:
edm::ParameterSet conf_;
edm::EDGetTokenT<edmNew::DetSetVector<TTStub<Ref_Phase2TrackerDigi_>>> tagTTStubsToken_;
std::string topFolderName_;
const edm::ESGetToken<TrackerGeometry, TrackerDigiGeometryRecord> geomToken_;
const edm::ESGetToken<TrackerTopology, TrackerTopologyRcd> topoToken_;
const TrackerGeometry *tkGeom_ = nullptr;
const TrackerTopology *tTopo_ = nullptr;
};
// constructors and destructor
Phase2OTMonitorTTStub::Phase2OTMonitorTTStub(const edm::ParameterSet &iConfig)
: conf_(iConfig),
geomToken_(esConsumes<TrackerGeometry, TrackerDigiGeometryRecord, edm::Transition::BeginRun>()),
topoToken_(esConsumes<TrackerTopology, TrackerTopologyRcd, edm::Transition::BeginRun>()) {
// now do what ever initialization is needed
topFolderName_ = conf_.getParameter<std::string>("TopFolderName");
tagTTStubsToken_ =
consumes<edmNew::DetSetVector<TTStub<Ref_Phase2TrackerDigi_>>>(conf_.getParameter<edm::InputTag>("TTStubs"));
}
Phase2OTMonitorTTStub::~Phase2OTMonitorTTStub() {
// do anything here that needs to be done at desctruction time
// (e.g. close files, deallocate resources etc.)
}
void Phase2OTMonitorTTStub::dqmBeginRun(const edm::Run &iRun, const edm::EventSetup &iSetup) {
tkGeom_ = &(iSetup.getData(geomToken_));
tTopo_ = &(iSetup.getData(topoToken_));
}
// member functions
// ------------ method called for each event ------------
void Phase2OTMonitorTTStub::analyze(const edm::Event &iEvent, const edm::EventSetup &iSetup) {
/// Track Trigger Stubs
edm::Handle<edmNew::DetSetVector<TTStub<Ref_Phase2TrackerDigi_>>> Phase2TrackerDigiTTStubHandle;
iEvent.getByToken(tagTTStubsToken_, Phase2TrackerDigiTTStubHandle);
/// Loop over input Stubs
typename edmNew::DetSetVector<TTStub<Ref_Phase2TrackerDigi_>>::const_iterator inputIter;
typename edmNew::DetSet<TTStub<Ref_Phase2TrackerDigi_>>::const_iterator contentIter;
// Adding protection
if (!Phase2TrackerDigiTTStubHandle.isValid())
return;
for (inputIter = Phase2TrackerDigiTTStubHandle->begin(); inputIter != Phase2TrackerDigiTTStubHandle->end();
++inputIter) {
for (contentIter = inputIter->begin(); contentIter != inputIter->end(); ++contentIter) {
/// Make reference stub
edm::Ref<edmNew::DetSetVector<TTStub<Ref_Phase2TrackerDigi_>>, TTStub<Ref_Phase2TrackerDigi_>> tempStubRef =
edmNew::makeRefTo(Phase2TrackerDigiTTStubHandle, contentIter);
/// Get det ID (place of the stub)
// tempStubRef->getDetId() gives the stackDetId, not rawId
DetId detIdStub = tkGeom_->idToDet((tempStubRef->clusterRef(0))->getDetId())->geographicalId();
/// Get trigger displacement/offset
double rawBend = tempStubRef->rawBend();
double bendOffset = tempStubRef->bendOffset();
/// Define position stub by position inner cluster
MeasurementPoint mp = (tempStubRef->clusterRef(0))->findAverageLocalCoordinates();
const GeomDet *theGeomDet = tkGeom_->idToDet(detIdStub);
Global3DPoint posStub = theGeomDet->surface().toGlobal(theGeomDet->topology().localPosition(mp));
Stub_Eta->Fill(posStub.eta());
Stub_Phi->Fill(posStub.phi());
Stub_R->Fill(posStub.perp());
Stub_RZ->Fill(posStub.z(), posStub.perp());
Stub_bendFE->Fill(tempStubRef->bendFE());
Stub_bendBE->Fill(tempStubRef->bendBE());
Stub_isPS->Fill(tempStubRef->moduleTypePS());
if (detIdStub.subdetId() == static_cast<int>(StripSubdetector::TOB)) { // Phase 2 Outer Tracker Barrel
Stub_Barrel->Fill(tTopo_->layer(detIdStub));
Stub_Barrel_XY->Fill(posStub.x(), posStub.y());
Stub_Barrel_W->Fill(tTopo_->layer(detIdStub), rawBend - bendOffset);
Stub_Barrel_O->Fill(tTopo_->layer(detIdStub), bendOffset);
} else if (detIdStub.subdetId() == static_cast<int>(StripSubdetector::TID)) { // Phase 2 Outer Tracker Endcap
int disc = tTopo_->layer(detIdStub); // returns wheel
int ring = tTopo_->tidRing(detIdStub);
Stub_Endcap_Disc->Fill(disc);
Stub_Endcap_Ring->Fill(ring);
Stub_Endcap_Disc_W->Fill(disc, rawBend - bendOffset);
Stub_Endcap_Ring_W->Fill(ring, rawBend - bendOffset);
Stub_Endcap_Disc_O->Fill(disc, bendOffset);
Stub_Endcap_Ring_O->Fill(ring, bendOffset);
if (posStub.z() > 0) {
Stub_Endcap_Fw_XY->Fill(posStub.x(), posStub.y());
Stub_Endcap_Disc_Fw->Fill(disc);
Stub_Endcap_Ring_Fw[disc - 1]->Fill(ring);
Stub_Endcap_Ring_W_Fw[disc - 1]->Fill(ring, rawBend - bendOffset);
Stub_Endcap_Ring_O_Fw[disc - 1]->Fill(ring, bendOffset);
} else {
Stub_Endcap_Bw_XY->Fill(posStub.x(), posStub.y());
Stub_Endcap_Disc_Bw->Fill(disc);
Stub_Endcap_Ring_Bw[disc - 1]->Fill(ring);
Stub_Endcap_Ring_W_Bw[disc - 1]->Fill(ring, rawBend - bendOffset);
Stub_Endcap_Ring_O_Bw[disc - 1]->Fill(ring, bendOffset);
}
}
}
}
} // end of method
// ------------ method called when starting to processes a run ------------
void Phase2OTMonitorTTStub::bookHistograms(DQMStore::IBooker &iBooker, edm::Run const &run, edm::EventSetup const &es) {
std::string HistoName;
const int numDiscs = 5;
iBooker.setCurrentFolder(topFolderName_ + "/Stubs/Position");
edm::ParameterSet psTTStub_Barrel_XY = conf_.getParameter<edm::ParameterSet>("TH2TTStub_Position");
HistoName = "Stub_Barrel_XY";
Stub_Barrel_XY = iBooker.book2D(HistoName,
HistoName,
psTTStub_Barrel_XY.getParameter<int32_t>("Nbinsx"),
psTTStub_Barrel_XY.getParameter<double>("xmin"),
psTTStub_Barrel_XY.getParameter<double>("xmax"),
psTTStub_Barrel_XY.getParameter<int32_t>("Nbinsy"),
psTTStub_Barrel_XY.getParameter<double>("ymin"),
psTTStub_Barrel_XY.getParameter<double>("ymax"));
Stub_Barrel_XY->setAxisTitle("L1 Stub Barrel position x [cm]", 1);
Stub_Barrel_XY->setAxisTitle("L1 Stub Barrel position y [cm]", 2);
edm::ParameterSet psTTStub_Endcap_Fw_XY = conf_.getParameter<edm::ParameterSet>("TH2TTStub_Position");
HistoName = "Stub_Endcap_Fw_XY";
Stub_Endcap_Fw_XY = iBooker.book2D(HistoName,
HistoName,
psTTStub_Endcap_Fw_XY.getParameter<int32_t>("Nbinsx"),
psTTStub_Endcap_Fw_XY.getParameter<double>("xmin"),
psTTStub_Endcap_Fw_XY.getParameter<double>("xmax"),
psTTStub_Endcap_Fw_XY.getParameter<int32_t>("Nbinsy"),
psTTStub_Endcap_Fw_XY.getParameter<double>("ymin"),
psTTStub_Endcap_Fw_XY.getParameter<double>("ymax"));
Stub_Endcap_Fw_XY->setAxisTitle("L1 Stub Endcap position x [cm]", 1);
Stub_Endcap_Fw_XY->setAxisTitle("L1 Stub Endcap position y [cm]", 2);
edm::ParameterSet psTTStub_Endcap_Bw_XY = conf_.getParameter<edm::ParameterSet>("TH2TTStub_Position");
HistoName = "Stub_Endcap_Bw_XY";
Stub_Endcap_Bw_XY = iBooker.book2D(HistoName,
HistoName,
psTTStub_Endcap_Bw_XY.getParameter<int32_t>("Nbinsx"),
psTTStub_Endcap_Bw_XY.getParameter<double>("xmin"),
psTTStub_Endcap_Bw_XY.getParameter<double>("xmax"),
psTTStub_Endcap_Bw_XY.getParameter<int32_t>("Nbinsy"),
psTTStub_Endcap_Bw_XY.getParameter<double>("ymin"),
psTTStub_Endcap_Bw_XY.getParameter<double>("ymax"));
Stub_Endcap_Bw_XY->setAxisTitle("L1 Stub Endcap position x [cm]", 1);
Stub_Endcap_Bw_XY->setAxisTitle("L1 Stub Endcap position y [cm]", 2);
// TTStub #rho vs. z
edm::ParameterSet psTTStub_RZ = conf_.getParameter<edm::ParameterSet>("TH2TTStub_RZ");
HistoName = "Stub_RZ";
Stub_RZ = iBooker.book2D(HistoName,
HistoName,
psTTStub_RZ.getParameter<int32_t>("Nbinsx"),
psTTStub_RZ.getParameter<double>("xmin"),
psTTStub_RZ.getParameter<double>("xmax"),
psTTStub_RZ.getParameter<int32_t>("Nbinsy"),
psTTStub_RZ.getParameter<double>("ymin"),
psTTStub_RZ.getParameter<double>("ymax"));
Stub_RZ->setAxisTitle("L1 Stub position z [cm]", 1);
Stub_RZ->setAxisTitle("L1 Stub position #rho [cm]", 2);
iBooker.setCurrentFolder(topFolderName_ + "/Stubs");
// TTStub eta
edm::ParameterSet psTTStub_Eta = conf_.getParameter<edm::ParameterSet>("TH1TTStub_Eta");
HistoName = "Stub_Eta";
Stub_Eta = iBooker.book1D(HistoName,
HistoName,
psTTStub_Eta.getParameter<int32_t>("Nbinsx"),
psTTStub_Eta.getParameter<double>("xmin"),
psTTStub_Eta.getParameter<double>("xmax"));
Stub_Eta->setAxisTitle("#eta", 1);
Stub_Eta->setAxisTitle("# L1 Stubs ", 2);
// TTStub phi
edm::ParameterSet psTTStub_Phi = conf_.getParameter<edm::ParameterSet>("TH1TTStub_Phi");
HistoName = "Stub_Phi";
Stub_Phi = iBooker.book1D(HistoName,
HistoName,
psTTStub_Phi.getParameter<int32_t>("Nbinsx"),
psTTStub_Phi.getParameter<double>("xmin"),
psTTStub_Phi.getParameter<double>("xmax"));
Stub_Phi->setAxisTitle("#phi", 1);
Stub_Phi->setAxisTitle("# L1 Stubs ", 2);
// TTStub R
edm::ParameterSet psTTStub_R = conf_.getParameter<edm::ParameterSet>("TH1TTStub_R");
HistoName = "Stub_R";
Stub_R = iBooker.book1D(HistoName,
HistoName,
psTTStub_R.getParameter<int32_t>("Nbinsx"),
psTTStub_R.getParameter<double>("xmin"),
psTTStub_R.getParameter<double>("xmax"));
Stub_R->setAxisTitle("R", 1);
Stub_R->setAxisTitle("# L1 Stubs ", 2);
// TTStub trigger bend
edm::ParameterSet psTTStub_bend = conf_.getParameter<edm::ParameterSet>("TH1TTStub_bend");
HistoName = "Stub_bendFE";
Stub_bendFE = iBooker.book1D(HistoName,
HistoName,
psTTStub_bend.getParameter<int32_t>("Nbinsx"),
psTTStub_bend.getParameter<double>("xmin"),
psTTStub_bend.getParameter<double>("xmax"));
Stub_bendFE->setAxisTitle("Trigger bend", 1);
Stub_bendFE->setAxisTitle("# L1 Stubs ", 2);
// TTStub hardware bend
HistoName = "Stub_bendBE";
Stub_bendBE = iBooker.book1D(HistoName,
HistoName,
psTTStub_bend.getParameter<int32_t>("Nbinsx"),
psTTStub_bend.getParameter<double>("xmin"),
psTTStub_bend.getParameter<double>("xmax"));
Stub_bendBE->setAxisTitle("Hardware bend", 1);
Stub_bendBE->setAxisTitle("# L1 Stubs ", 2);
// TTStub, is PS?
edm::ParameterSet psTTStub_isPS = conf_.getParameter<edm::ParameterSet>("TH1TTStub_isPS");
HistoName = "Stub_isPS";
Stub_isPS = iBooker.book1D(HistoName,
HistoName,
psTTStub_isPS.getParameter<int32_t>("Nbinsx"),
psTTStub_isPS.getParameter<double>("xmin"),
psTTStub_isPS.getParameter<double>("xmax"));
Stub_isPS->setAxisTitle("Is PS?", 1);
Stub_isPS->setAxisTitle("# L1 Stubs ", 2);
iBooker.setCurrentFolder(topFolderName_ + "/Stubs/NStubs");
// TTStub barrel stack
edm::ParameterSet psTTStub_Barrel = conf_.getParameter<edm::ParameterSet>("TH1TTStub_Layers");
HistoName = "NStubs_Barrel";
Stub_Barrel = iBooker.book1D(HistoName,
HistoName,
psTTStub_Barrel.getParameter<int32_t>("Nbinsx"),
psTTStub_Barrel.getParameter<double>("xmin"),
psTTStub_Barrel.getParameter<double>("xmax"));
Stub_Barrel->setAxisTitle("Barrel Layer", 1);
Stub_Barrel->setAxisTitle("# L1 Stubs ", 2);
// TTStub Endcap stack
edm::ParameterSet psTTStub_ECDisc = conf_.getParameter<edm::ParameterSet>("TH1TTStub_Discs");
HistoName = "NStubs_Endcap_Disc";
Stub_Endcap_Disc = iBooker.book1D(HistoName,
HistoName,
psTTStub_ECDisc.getParameter<int32_t>("Nbinsx"),
psTTStub_ECDisc.getParameter<double>("xmin"),
psTTStub_ECDisc.getParameter<double>("xmax"));
Stub_Endcap_Disc->setAxisTitle("Endcap Disc", 1);
Stub_Endcap_Disc->setAxisTitle("# L1 Stubs ", 2);
// TTStub Endcap stack
HistoName = "NStubs_Endcap_Disc_Fw";
Stub_Endcap_Disc_Fw = iBooker.book1D(HistoName,
HistoName,
psTTStub_ECDisc.getParameter<int32_t>("Nbinsx"),
psTTStub_ECDisc.getParameter<double>("xmin"),
psTTStub_ECDisc.getParameter<double>("xmax"));
Stub_Endcap_Disc_Fw->setAxisTitle("Forward Endcap Disc", 1);
Stub_Endcap_Disc_Fw->setAxisTitle("# L1 Stubs ", 2);
// TTStub Endcap stack
HistoName = "NStubs_Endcap_Disc_Bw";
Stub_Endcap_Disc_Bw = iBooker.book1D(HistoName,
HistoName,
psTTStub_ECDisc.getParameter<int32_t>("Nbinsx"),
psTTStub_ECDisc.getParameter<double>("xmin"),
psTTStub_ECDisc.getParameter<double>("xmax"));
Stub_Endcap_Disc_Bw->setAxisTitle("Backward Endcap Disc", 1);
Stub_Endcap_Disc_Bw->setAxisTitle("# L1 Stubs ", 2);
edm::ParameterSet psTTStub_ECRing = conf_.getParameter<edm::ParameterSet>("TH1TTStub_Rings");
HistoName = "NStubs_Endcap_Ring";
Stub_Endcap_Ring = iBooker.book1D(HistoName,
HistoName,
psTTStub_ECRing.getParameter<int32_t>("Nbinsx"),
psTTStub_ECRing.getParameter<double>("xmin"),
psTTStub_ECRing.getParameter<double>("xmax"));
Stub_Endcap_Ring->setAxisTitle("Endcap Ring", 1);
Stub_Endcap_Ring->setAxisTitle("# L1 Stubs ", 2);
for (int i = 0; i < numDiscs; i++) {
HistoName = "NStubs_Disc+" + std::to_string(i + 1);
// TTStub Endcap stack
Stub_Endcap_Ring_Fw[i] = iBooker.book1D(HistoName,
HistoName,
psTTStub_ECRing.getParameter<int32_t>("Nbinsx"),
psTTStub_ECRing.getParameter<double>("xmin"),
psTTStub_ECRing.getParameter<double>("xmax"));
Stub_Endcap_Ring_Fw[i]->setAxisTitle("Endcap Ring", 1);
Stub_Endcap_Ring_Fw[i]->setAxisTitle("# L1 Stubs ", 2);
}
for (int i = 0; i < numDiscs; i++) {
HistoName = "NStubs_Disc-" + std::to_string(i + 1);
// TTStub Endcap stack
Stub_Endcap_Ring_Bw[i] = iBooker.book1D(HistoName,
HistoName,
psTTStub_ECRing.getParameter<int32_t>("Nbinsx"),
psTTStub_ECRing.getParameter<double>("xmin"),
psTTStub_ECRing.getParameter<double>("xmax"));
Stub_Endcap_Ring_Bw[i]->setAxisTitle("Endcap Ring", 1);
Stub_Endcap_Ring_Bw[i]->setAxisTitle("# L1 Stubs ", 2);
}
// TTStub displ/offset
edm::ParameterSet psTTStub_Barrel_2D = conf_.getParameter<edm::ParameterSet>("TH2TTStub_DisOf_Layer");
edm::ParameterSet psTTStub_ECDisc_2D = conf_.getParameter<edm::ParameterSet>("TH2TTStub_DisOf_Disc");
edm::ParameterSet psTTStub_ECRing_2D = conf_.getParameter<edm::ParameterSet>("TH2TTStub_DisOf_Ring");
iBooker.setCurrentFolder(topFolderName_ + "/Stubs/Width");
HistoName = "Stub_Width_Barrel";
Stub_Barrel_W = iBooker.book2D(HistoName,
HistoName,
psTTStub_Barrel_2D.getParameter<int32_t>("Nbinsx"),
psTTStub_Barrel_2D.getParameter<double>("xmin"),
psTTStub_Barrel_2D.getParameter<double>("xmax"),
psTTStub_Barrel_2D.getParameter<int32_t>("Nbinsy"),
psTTStub_Barrel_2D.getParameter<double>("ymin"),
psTTStub_Barrel_2D.getParameter<double>("ymax"));
Stub_Barrel_W->setAxisTitle("Barrel Layer", 1);
Stub_Barrel_W->setAxisTitle("Displacement - Offset", 2);
HistoName = "Stub_Width_Endcap_Disc";
Stub_Endcap_Disc_W = iBooker.book2D(HistoName,
HistoName,
psTTStub_ECDisc_2D.getParameter<int32_t>("Nbinsx"),
psTTStub_ECDisc_2D.getParameter<double>("xmin"),
psTTStub_ECDisc_2D.getParameter<double>("xmax"),
psTTStub_ECDisc_2D.getParameter<int32_t>("Nbinsy"),
psTTStub_ECDisc_2D.getParameter<double>("ymin"),
psTTStub_ECDisc_2D.getParameter<double>("ymax"));
Stub_Endcap_Disc_W->setAxisTitle("Endcap Disc", 1);
Stub_Endcap_Disc_W->setAxisTitle("Displacement - Offset", 2);
HistoName = "Stub_Width_Endcap_Ring";
Stub_Endcap_Ring_W = iBooker.book2D(HistoName,
HistoName,
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsx"),
psTTStub_ECRing_2D.getParameter<double>("xmin"),
psTTStub_ECRing_2D.getParameter<double>("xmax"),
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsy"),
psTTStub_ECRing_2D.getParameter<double>("ymin"),
psTTStub_ECRing_2D.getParameter<double>("ymax"));
Stub_Endcap_Ring_W->setAxisTitle("Endcap Ring", 1);
Stub_Endcap_Ring_W->setAxisTitle("Trigger Offset", 2);
for (int i = 0; i < numDiscs; i++) {
HistoName = "Stub_Width_Disc+" + std::to_string(i + 1);
Stub_Endcap_Ring_W_Fw[i] = iBooker.book2D(HistoName,
HistoName,
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsx"),
psTTStub_ECRing_2D.getParameter<double>("xmin"),
psTTStub_ECRing_2D.getParameter<double>("xmax"),
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsy"),
psTTStub_ECRing_2D.getParameter<double>("ymin"),
psTTStub_ECRing_2D.getParameter<double>("ymax"));
Stub_Endcap_Ring_W_Fw[i]->setAxisTitle("Endcap Ring", 1);
Stub_Endcap_Ring_W_Fw[i]->setAxisTitle("Displacement - Offset", 2);
}
for (int i = 0; i < numDiscs; i++) {
HistoName = "Stub_Width_Disc-" + std::to_string(i + 1);
Stub_Endcap_Ring_W_Bw[i] = iBooker.book2D(HistoName,
HistoName,
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsx"),
psTTStub_ECRing_2D.getParameter<double>("xmin"),
psTTStub_ECRing_2D.getParameter<double>("xmax"),
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsy"),
psTTStub_ECRing_2D.getParameter<double>("ymin"),
psTTStub_ECRing_2D.getParameter<double>("ymax"));
Stub_Endcap_Ring_W_Bw[i]->setAxisTitle("Endcap Ring", 1);
Stub_Endcap_Ring_W_Bw[i]->setAxisTitle("Displacement - Offset", 2);
}
iBooker.setCurrentFolder(topFolderName_ + "/Stubs/Offset");
HistoName = "Stub_Offset_Barrel";
Stub_Barrel_O = iBooker.book2D(HistoName,
HistoName,
psTTStub_Barrel_2D.getParameter<int32_t>("Nbinsx"),
psTTStub_Barrel_2D.getParameter<double>("xmin"),
psTTStub_Barrel_2D.getParameter<double>("xmax"),
psTTStub_Barrel_2D.getParameter<int32_t>("Nbinsy"),
psTTStub_Barrel_2D.getParameter<double>("ymin"),
psTTStub_Barrel_2D.getParameter<double>("ymax"));
Stub_Barrel_O->setAxisTitle("Barrel Layer", 1);
Stub_Barrel_O->setAxisTitle("Trigger Offset", 2);
HistoName = "Stub_Offset_Endcap_Disc";
Stub_Endcap_Disc_O = iBooker.book2D(HistoName,
HistoName,
psTTStub_ECDisc_2D.getParameter<int32_t>("Nbinsx"),
psTTStub_ECDisc_2D.getParameter<double>("xmin"),
psTTStub_ECDisc_2D.getParameter<double>("xmax"),
psTTStub_ECDisc_2D.getParameter<int32_t>("Nbinsy"),
psTTStub_ECDisc_2D.getParameter<double>("ymin"),
psTTStub_ECDisc_2D.getParameter<double>("ymax"));
Stub_Endcap_Disc_O->setAxisTitle("Endcap Disc", 1);
Stub_Endcap_Disc_O->setAxisTitle("Trigger Offset", 2);
HistoName = "Stub_Offset_Endcap_Ring";
Stub_Endcap_Ring_O = iBooker.book2D(HistoName,
HistoName,
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsx"),
psTTStub_ECRing_2D.getParameter<double>("xmin"),
psTTStub_ECRing_2D.getParameter<double>("xmax"),
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsy"),
psTTStub_ECRing_2D.getParameter<double>("ymin"),
psTTStub_ECRing_2D.getParameter<double>("ymax"));
Stub_Endcap_Ring_O->setAxisTitle("Endcap Ring", 1);
Stub_Endcap_Ring_O->setAxisTitle("Trigger Offset", 2);
for (int i = 0; i < numDiscs; i++) {
HistoName = "Stub_Offset_Disc+" + std::to_string(i + 1);
Stub_Endcap_Ring_O_Fw[i] = iBooker.book2D(HistoName,
HistoName,
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsx"),
psTTStub_ECRing_2D.getParameter<double>("xmin"),
psTTStub_ECRing_2D.getParameter<double>("xmax"),
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsy"),
psTTStub_ECRing_2D.getParameter<double>("ymin"),
psTTStub_ECRing_2D.getParameter<double>("ymax"));
Stub_Endcap_Ring_O_Fw[i]->setAxisTitle("Endcap Ring", 1);
Stub_Endcap_Ring_O_Fw[i]->setAxisTitle("Trigger Offset", 2);
}
for (int i = 0; i < numDiscs; i++) {
HistoName = "Stub_Offset_Disc-" + std::to_string(i + 1);
Stub_Endcap_Ring_O_Bw[i] = iBooker.book2D(HistoName,
HistoName,
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsx"),
psTTStub_ECRing_2D.getParameter<double>("xmin"),
psTTStub_ECRing_2D.getParameter<double>("xmax"),
psTTStub_ECRing_2D.getParameter<int32_t>("Nbinsy"),
psTTStub_ECRing_2D.getParameter<double>("ymin"),
psTTStub_ECRing_2D.getParameter<double>("ymax"));
Stub_Endcap_Ring_O_Bw[i]->setAxisTitle("Endcap Ring", 1);
Stub_Endcap_Ring_O_Bw[i]->setAxisTitle("Trigger Offset", 2);
}
}
void Phase2OTMonitorTTStub::fillDescriptions(edm::ConfigurationDescriptions &descriptions) {
// Phase2OTMonitorTTStub
edm::ParameterSetDescription desc;
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 960);
psd0.add<double>("xmax", 120);
psd0.add<double>("xmin", -120);
psd0.add<int>("Nbinsy", 960);
psd0.add<double>("ymax", 120);
psd0.add<double>("ymin", -120);
desc.add<edm::ParameterSetDescription>("TH2TTStub_Position", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 900);
psd0.add<double>("xmax", 300);
psd0.add<double>("xmin", -300);
psd0.add<int>("Nbinsy", 900);
psd0.add<double>("ymax", 120);
psd0.add<double>("ymin", 0);
desc.add<edm::ParameterSetDescription>("TH2TTStub_RZ", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 45);
psd0.add<double>("xmin", -5);
psd0.add<double>("xmax", 5);
desc.add<edm::ParameterSetDescription>("TH1TTStub_Eta", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 60);
psd0.add<double>("xmin", -3.5);
psd0.add<double>("xmax", 3.5);
desc.add<edm::ParameterSetDescription>("TH1TTStub_Phi", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 45);
psd0.add<double>("xmin", 0);
psd0.add<double>("xmax", 120);
desc.add<edm::ParameterSetDescription>("TH1TTStub_R", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 69);
psd0.add<double>("xmin", -8.625);
psd0.add<double>("xmax", 8.625);
desc.add<edm::ParameterSetDescription>("TH1TTStub_bend", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 2);
psd0.add<double>("xmin", 0.0);
psd0.add<double>("xmax", 2.0);
desc.add<edm::ParameterSetDescription>("TH1TTStub_isPS", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 7);
psd0.add<double>("xmin", 0.5);
psd0.add<double>("xmax", 7.5);
desc.add<edm::ParameterSetDescription>("TH1TTStub_Layers", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 6);
psd0.add<double>("xmin", 0.5);
psd0.add<double>("xmax", 6.5);
desc.add<edm::ParameterSetDescription>("TH1TTStub_Discs", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 16);
psd0.add<double>("xmin", 0.5);
psd0.add<double>("xmax", 16.5);
desc.add<edm::ParameterSetDescription>("TH1TTStub_Rings", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 6);
psd0.add<double>("xmax", 6.5);
psd0.add<double>("xmin", 0.5);
psd0.add<int>("Nbinsy", 43);
psd0.add<double>("ymax", 10.75);
psd0.add<double>("ymin", -10.75);
desc.add<edm::ParameterSetDescription>("TH2TTStub_DisOf_Layer", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 5);
psd0.add<double>("xmax", 5.5);
psd0.add<double>("xmin", 0.5);
psd0.add<int>("Nbinsy", 43);
psd0.add<double>("ymax", 10.75);
psd0.add<double>("ymin", -10.75);
desc.add<edm::ParameterSetDescription>("TH2TTStub_DisOf_Disc", psd0);
}
{
edm::ParameterSetDescription psd0;
psd0.add<int>("Nbinsx", 16);
psd0.add<double>("xmax", 16.5);
psd0.add<double>("xmin", 0.5);
psd0.add<int>("Nbinsy", 43);
psd0.add<double>("ymax", 10.75);
psd0.add<double>("ymin", -10.75);
desc.add<edm::ParameterSetDescription>("TH2TTStub_DisOf_Ring", psd0);
}
desc.add<std::string>("TopFolderName", "TrackerPhase2OTStub");
desc.add<edm::InputTag>("TTStubs", edm::InputTag("TTStubsFromPhase2TrackerDigis", "StubAccepted"));
descriptions.add("Phase2OTMonitorTTStub", desc);
// or use the following to generate the label from the module's C++ type
//descriptions.addWithDefaultLabel(desc);
}
DEFINE_FWK_MODULE(Phase2OTMonitorTTStub);
|