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
|
// -*- C++ -*-
//
/*
Description: <one line class summary>
Implementation:
<Notes on implementation>
*/
//
// Original Author: Riccardo Ranieri
// Created: Wed May 3 10:30:00 CEST 2006
// Modified by: Michael Case, April 2010.
//
// system include files
#include <memory>
// user include files
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/Utilities/interface/Exception.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "Geometry/CommonDetUnit/interface/TrackingGeometry.h"
#include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
#include "Geometry/TrackerNumberingBuilder/interface/GeometricDet.h"
#include "Geometry/CommonTopologies/interface/PixelTopology.h"
#include "Geometry/CommonTopologies/interface/StripTopology.h"
#include "Geometry/CommonDetUnit/interface/PixelGeomDetType.h"
#include "Geometry/TrackerGeometryBuilder/interface/StripGeomDetType.h"
#include "Geometry/CommonDetUnit/interface/PixelGeomDetUnit.h"
#include "DataFormats/GeometrySurface/interface/BoundSurface.h"
#include "DataFormats/Math/interface/angle_units.h"
#include "DataFormats/Math/interface/Rounding.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "DataFormats/SiStripDetId/interface/StripSubdetector.h"
#include "DataFormats/TrackerCommon/interface/TrackerTopology.h"
#include "Geometry/TrackerNumberingBuilder/interface/CmsTrackerStringToEnum.h"
#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
// output
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cmath>
#include <bitset>
using namespace cms_rounding;
using namespace geometric_det_ns;
using namespace angle_units::operators;
typedef ROOT::Math::DisplacementVector3D<ROOT::Math::Cartesian3D<double> > Displ3DVec;
class ModuleInfo : public edm::one::EDAnalyzer<> {
public:
explicit ModuleInfo(const edm::ParameterSet&);
void analyze(edm::Event const& iEvent, edm::EventSetup const&) override;
private:
bool fromDDD_;
bool printDDD_;
double tolerance_;
edm::ESGetToken<GeometricDet, IdealGeometryRecord> rDDToken_;
edm::ESGetToken<TrackerGeometry, TrackerDigiGeometryRecord> pDDToken_;
edm::ESGetToken<TrackerTopology, TrackerTopologyRcd> tTopoToken_;
};
ModuleInfo::ModuleInfo(const edm::ParameterSet& ps)
: fromDDD_(ps.getParameter<bool>("fromDDD")),
printDDD_(ps.getUntrackedParameter<bool>("printDDD", true)),
tolerance_(ps.getUntrackedParameter<double>("tolerance", 1.e-23)),
rDDToken_(esConsumes()),
pDDToken_(esConsumes()),
tTopoToken_(esConsumes()) {}
// ------------ method called to produce the data ------------
void ModuleInfo::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) {
edm::LogInfo("ModuleInfo") << "begins";
// output file
std::ofstream Output("ModuleInfo.log", std::ios::out);
// TEC output as Martin Weber's
std::ofstream TECOutput("TECLayout_CMSSW.dat", std::ios::out);
TECOutput << std::fixed << std::setprecision(4);
// Numbering Scheme
std::ofstream NumberingOutput("ModuleNumbering.dat", std::ios::out);
// get the GeometricDet
//
auto const& rDD = iSetup.getData(rDDToken_);
edm::LogInfo("ModuleInfo") << " Top node is " << &rDD << " " << rDD.name() << std::endl;
edm::LogInfo("ModuleInfo") << " And Contains Daughters: " << rDD.deepComponents().size() << std::endl;
//
//first instance tracking geometry
auto const& pDD = iSetup.getData(pDDToken_);
const TrackerTopology* tTopo = &iSetup.getData(tTopoToken_);
//
// counters
unsigned int pxbN = 0;
unsigned int pxb_fullN = 0;
unsigned int pxb_halfN = 0;
unsigned int pxfN = 0;
unsigned int pxf_1x2N = 0;
unsigned int pxf_1x5N = 0;
unsigned int pxf_2x3N = 0;
unsigned int pxf_2x4N = 0;
unsigned int pxf_2x5N = 0;
unsigned int tibN = 0;
unsigned int tib_L12_rphiN = 0;
unsigned int tib_L12_sterN = 0;
unsigned int tib_L34_rphiN = 0;
unsigned int tidN = 0;
unsigned int tid_r1_rphiN = 0;
unsigned int tid_r1_sterN = 0;
unsigned int tid_r2_rphiN = 0;
unsigned int tid_r2_sterN = 0;
unsigned int tid_r3_rphiN = 0;
unsigned int tobN = 0;
unsigned int tob_L12_rphiN = 0;
unsigned int tob_L12_sterN = 0;
unsigned int tob_L34_rphiN = 0;
unsigned int tob_L56_rphiN = 0;
unsigned int tecN = 0;
unsigned int tec_r1_rphiN = 0;
unsigned int tec_r1_sterN = 0;
unsigned int tec_r2_rphiN = 0;
unsigned int tec_r2_sterN = 0;
unsigned int tec_r3_rphiN = 0;
unsigned int tec_r4_rphiN = 0;
unsigned int tec_r5_rphiN = 0;
unsigned int tec_r5_sterN = 0;
unsigned int tec_r6_rphiN = 0;
unsigned int tec_r7_rphiN = 0;
std::vector<const GeometricDet*> modules = rDD.deepComponents();
Output << "************************ List of modules with positions ************************" << std::endl;
for (auto& module : modules) {
unsigned int rawid = module->geographicalId().rawId();
DetId id(rawid);
GeometricDet::NavRange detPos = module->navpos();
Output << std::fixed << std::setprecision(6); // set as default 6 decimal digits
std::bitset<32> binary_rawid(rawid);
Output << " ******** raw Id = " << rawid << " (" << binary_rawid << ") ";
if (fromDDD_ && printDDD_) {
Output << "\t nav type = " << detPos;
}
Output << std::endl;
int subdetid = module->geographicalId().subdetId();
double thickness = module->bounds()->thickness() * 10000; // cm-->um
switch (subdetid) {
// PXB
case PixelSubdetector::PixelBarrel: {
pxbN++;
const std::string& name = module->name();
if (name == "PixelBarrelActiveFull")
pxb_fullN++;
if (name == "PixelBarrelActiveHalf")
pxb_halfN++;
unsigned int theLayer = tTopo->pxbLayer(id);
unsigned int theLadder = tTopo->pxbLadder(id);
unsigned int theModule = tTopo->pxbModule(id);
Output << " PXB"
<< "\t"
<< "Layer " << theLayer << " Ladder " << theLadder << "\t"
<< " module " << theModule << " " << name << "\t";
break;
}
// PXF
case PixelSubdetector::PixelEndcap: {
pxfN++;
const std::string& name = module->name();
if (name == "PixelForwardActive1x2")
pxf_1x2N++;
if (name == "PixelForwardActive1x5")
pxf_1x5N++;
if (name == "PixelForwardActive2x3")
pxf_2x3N++;
if (name == "PixelForwardActive2x4")
pxf_2x4N++;
if (name == "PixelForwardActive2x5")
pxf_2x5N++;
unsigned int thePanel = tTopo->pxfPanel(id);
unsigned int theDisk = tTopo->pxfDisk(id);
unsigned int theBlade = tTopo->pxfBlade(id);
unsigned int theModule = tTopo->pxfModule(id);
std::string side;
side = (tTopo->pxfSide(id) == 1) ? "-" : "+";
Output << " PXF" << side << "\t"
<< "Disk " << theDisk << " Blade " << theBlade << " Panel " << thePanel << "\t"
<< " module " << theModule << "\t" << name << "\t";
break;
}
// TIB
case StripSubdetector::TIB: {
tibN++;
const std::string& name = module->name();
if (name == "TIBActiveRphi0")
tib_L12_rphiN++;
if (name == "TIBActiveSter0")
tib_L12_sterN++;
if (name == "TIBActiveRphi2")
tib_L34_rphiN++;
unsigned int theLayer = tTopo->tibLayer(id);
std::vector<unsigned int> theString = tTopo->tibStringInfo(id);
unsigned int theModule = tTopo->tibModule(id);
std::string side;
std::string part;
side = (theString[0] == 1) ? "-" : "+";
part = (theString[1] == 1) ? "int" : "ext";
Output << " TIB" << side << "\t"
<< "Layer " << theLayer << " " << part << "\t"
<< "string " << theString[2] << "\t"
<< " module " << theModule << " " << name << "\t";
Output << " " << module->translation().X() << " \t" << module->translation().Y() << " \t"
<< module->translation().Z() << std::endl;
break;
}
// TID
case StripSubdetector::TID: {
tidN++;
const std::string& name = module->name();
if (name == "TIDModule0RphiActive")
tid_r1_rphiN++;
if (name == "TIDModule0StereoActive")
tid_r1_sterN++;
if (name == "TIDModule1RphiActive")
tid_r2_rphiN++;
if (name == "TIDModule1StereoActive")
tid_r2_sterN++;
if (name == "TIDModule2RphiActive")
tid_r3_rphiN++;
unsigned int theDisk = tTopo->tidWheel(id);
unsigned int theRing = tTopo->tidRing(id);
std::string side;
std::string part;
side = (tTopo->tidSide(id) == 1) ? "-" : "+";
part = (tTopo->tidOrder(id) == 1) ? "back" : "front";
Output << " TID" << side << "\t"
<< "Disk " << theDisk << " Ring " << theRing << " " << part << "\t"
<< " module " << tTopo->tidModule(id) << "\t" << name << "\t";
Output << " " << roundIfNear0(module->translation().X(), tolerance_) << " \t"
<< roundIfNear0(module->translation().Y(), tolerance_) << " \t"
<< roundIfNear0(module->translation().Z(), tolerance_) << std::endl;
break;
}
// TOB
case StripSubdetector::TOB: {
tobN++;
const std::string& name = module->name();
if (name == "TOBActiveRphi0")
tob_L12_rphiN++;
if (name == "TOBActiveSter0")
tob_L12_sterN++;
if (name == "TOBActiveRphi2")
tob_L34_rphiN++;
if (name == "TOBActiveRphi4")
tob_L56_rphiN++;
unsigned int theLayer = tTopo->tobLayer(id);
unsigned int theModule = tTopo->tobModule(id);
std::string side;
std::string part;
side = (tTopo->tobSide(id) == 1) ? "-" : "+";
Output << " TOB" << side << "\t"
<< "Layer " << theLayer << "\t"
<< "rod " << tTopo->tobRod(id) << " module " << theModule << "\t" << name << "\t";
Output << " " << module->translation().X() << " \t" << module->translation().Y() << " \t"
<< module->translation().Z() << std::endl;
break;
}
// TEC
case StripSubdetector::TEC: {
tecN++;
const std::string& name = module->name();
if (name == "TECModule0RphiActive")
tec_r1_rphiN++;
if (name == "TECModule0StereoActive")
tec_r1_sterN++;
if (name == "TECModule1RphiActive")
tec_r2_rphiN++;
if (name == "TECModule1StereoActive")
tec_r2_sterN++;
if (name == "TECModule2RphiActive")
tec_r3_rphiN++;
if (name == "TECModule3RphiActive")
tec_r4_rphiN++;
if (name == "TECModule4RphiActive")
tec_r5_rphiN++;
if (name == "TECModule4StereoActive")
tec_r5_sterN++;
if (name == "TECModule5RphiActive")
tec_r6_rphiN++;
if (name == "TECModule6RphiActive")
tec_r7_rphiN++;
unsigned int theWheel = tTopo->tecWheel(id);
unsigned int theModule = tTopo->tecModule(id);
unsigned int theRing = tTopo->tecRing(id);
std::string side;
std::string petal;
side = (tTopo->tecSide(id) == 1) ? "-" : "+";
petal = (tTopo->tecOrder(id) == 1) ? "back" : "front";
Output << " TEC" << side << "\t"
<< "Wheel " << theWheel << " Petal " << tTopo->tecPetalNumber(id) << " " << petal << " Ring " << theRing
<< "\t"
<< "\t"
<< " module " << theModule << "\t" << name << "\t";
Output << " " << roundIfNear0(module->translation().X(), tolerance_) << " \t"
<< roundIfNear0(module->translation().Y(), tolerance_) << " \t"
<< roundIfNear0(module->translation().Z(), tolerance_) << std::endl;
// TEC output as Martin Weber's
int out_side = (tTopo->tecSide(id) == 1) ? -1 : 1;
unsigned int out_disk = tTopo->tecWheel(id);
unsigned int out_sector = tTopo->tecPetalNumber(id);
int out_petal = (tTopo->tecOrder(id) == 1) ? 1 : -1;
// swap sector numbers for TEC-
if (out_side == -1) {
// fine for back petals, substract 1 for front petals
if (out_petal == -1) {
out_sector = (out_sector + 6) % 8 + 1;
}
}
unsigned int out_ring = tTopo->tecRing(id);
int out_sensor = 0;
if (name == "TECModule0RphiActive")
out_sensor = -1;
if (name == "TECModule0StereoActive")
out_sensor = 1;
if (name == "TECModule1RphiActive")
out_sensor = -1;
if (name == "TECModule1StereoActive")
out_sensor = 1;
if (name == "TECModule2RphiActive")
out_sensor = -1;
if (name == "TECModule3RphiActive")
out_sensor = -1;
if (name == "TECModule4RphiActive")
out_sensor = -1;
if (name == "TECModule4StereoActive")
out_sensor = 1;
if (name == "TECModule5RphiActive")
out_sensor = -1;
if (name == "TECModule6RphiActive")
out_sensor = -1;
unsigned int out_module;
if (out_ring == 1 || out_ring == 2 || out_ring == 5) {
// rings with stereo modules
// create number odd by default
out_module = 2 * (tTopo->tecModule(id) - 1) + 1;
if (out_sensor == 1) {
// in even rings, stereo modules are the even ones
if (out_ring == 2)
out_module += 1;
} else
// in odd rings, stereo modules are the odd ones
if (out_ring != 2)
out_module += 1;
} else {
out_module = tTopo->tecModule(id);
}
double out_x = roundIfNear0(module->translation().X(), tolerance_);
double out_y = roundIfNear0(module->translation().Y(), tolerance_);
double out_z = module->translation().Z();
double out_r = sqrt(module->translation().X() * module->translation().X() +
module->translation().Y() * module->translation().Y());
double out_phi_rad = roundIfNear0(atan2(module->translation().Y(), module->translation().X()), tolerance_);
if (almostEqual(out_phi_rad, -1._pi, 10)) {
out_phi_rad = 1._pi;
// Standardize phi values of |pi| to be always +pi instead of sometimes -pi.
}
TECOutput << out_side << " " << out_disk << " " << out_sector << " " << out_petal << " " << out_ring << " "
<< out_module << " " << out_sensor << " " << out_x << " " << out_y << " " << out_z << " " << out_r
<< " " << out_phi_rad << std::endl;
//
break;
}
default:
Output << " WARNING no Silicon Strip detector, I got a " << rawid << std::endl;
;
}
// Local axes from Reco
const GeomDet* geomdet = pDD.idToDet(module->geographicalId());
// Global Coordinates (i,j,k)
LocalVector xLocal(1, 0, 0);
LocalVector yLocal(0, 1, 0);
LocalVector zLocal(0, 0, 1);
// Versor components
GlobalVector xGlobal = (geomdet->surface()).toGlobal(xLocal);
GlobalVector yGlobal = (geomdet->surface()).toGlobal(yLocal);
GlobalVector zGlobal = (geomdet->surface()).toGlobal(zLocal);
//
// Output: set as default 4 decimal digits (0.1 um or 0.1 deg/rad)
// active area center
Output << "\t"
<< "thickness " << std::fixed << std::setprecision(0) << thickness << " um \n";
Output << "\tActive Area Center" << std::endl;
Output << "\t O = (" << std::fixed << std::setprecision(4) << roundIfNear0(module->translation().X(), tolerance_)
<< "," << std::fixed << std::setprecision(4) << roundIfNear0(module->translation().Y(), tolerance_) << ","
<< std::fixed << std::setprecision(4) << roundIfNear0(module->translation().Z(), tolerance_) << ")"
<< std::endl;
//
double polarRadius = std::sqrt(module->translation().X() * module->translation().X() +
module->translation().Y() * module->translation().Y());
double phiRad = roundIfNear0(atan2(module->translation().Y(), module->translation().X()), tolerance_);
if (almostEqual(phiRad, -1._pi, 10)) {
phiRad = 1._pi;
// Standardize phi values of |pi| to be always +pi instead of sometimes -pi.
}
double phiDeg = convertRadToDeg(phiRad);
//
Output << "\t\t polar radius " << std::fixed << std::setprecision(4) << polarRadius << "\t"
<< "phi [deg] " << std::fixed << std::setprecision(4) << phiDeg << "\t"
<< "phi [rad] " << std::fixed << std::setprecision(4) << phiRad << std::endl;
// active area versors (rotation matrix)
Displ3DVec x, y, z;
module->rotation().GetComponents(x, y, z);
x = roundVecIfNear0(x, tolerance_);
y = roundVecIfNear0(y, tolerance_);
z = roundVecIfNear0(z, tolerance_);
xGlobal = roundVecIfNear0(xGlobal, tolerance_);
yGlobal = roundVecIfNear0(yGlobal, tolerance_);
zGlobal = roundVecIfNear0(zGlobal, tolerance_);
Output << "\tActive Area Rotation Matrix" << std::endl;
Output << "\t z = n = (" << std::fixed << std::setprecision(4) << z.X() << "," << std::fixed << std::setprecision(4)
<< z.Y() << "," << std::fixed << std::setprecision(4) << z.Z() << ")" << std::endl
<< "\t [Rec] = (" << std::fixed << std::setprecision(4) << zGlobal.x() << "," << std::fixed
<< std::setprecision(4) << zGlobal.y() << "," << std::fixed << std::setprecision(4) << zGlobal.z() << ")"
<< std::endl
<< "\t x = t = (" << std::fixed << std::setprecision(4) << x.X() << "," << std::fixed << std::setprecision(4)
<< x.Y() << "," << std::fixed << std::setprecision(4) << x.Z() << ")" << std::endl
<< "\t [Rec] = (" << std::fixed << std::setprecision(4) << xGlobal.x() << "," << std::fixed
<< std::setprecision(4) << xGlobal.y() << "," << std::fixed << std::setprecision(4) << xGlobal.z() << ")"
<< std::endl
<< "\t y = k = (" << std::fixed << std::setprecision(4) << y.X() << "," << std::fixed << std::setprecision(4)
<< y.Y() << "," << std::fixed << std::setprecision(4) << y.Z() << ")" << std::endl
<< "\t [Rec] = (" << std::fixed << std::setprecision(4) << yGlobal.x() << "," << std::fixed
<< std::setprecision(4) << yGlobal.y() << "," << std::fixed << std::setprecision(4) << yGlobal.z() << ")"
<< std::endl;
// NumberingScheme
NumberingOutput << rawid;
if (fromDDD_ && printDDD_) {
NumberingOutput << " " << detPos;
}
NumberingOutput << " " << std::fixed << std::setprecision(4) << roundIfNear0(module->translation().X(), tolerance_)
<< " " << std::fixed << std::setprecision(4) << roundIfNear0(module->translation().Y(), tolerance_)
<< " " << std::fixed << std::setprecision(4) << roundIfNear0(module->translation().Z(), tolerance_)
<< " " << std::endl;
//
}
// params
// Pixel
unsigned int chan_per_psi = 52 * 80;
unsigned int psi_pxb = 16 * pxb_fullN + 8 * pxb_halfN;
unsigned int chan_pxb = psi_pxb * chan_per_psi;
unsigned int psi_pxf = 2 * pxf_1x2N + 5 * pxf_1x5N + 6 * pxf_2x3N + 8 * pxf_2x4N + 10 * pxf_2x5N;
unsigned int chan_pxf = psi_pxf * chan_per_psi;
// Strip
unsigned int chan_per_apv = 128;
unsigned int apv_tib = 6 * (tib_L12_rphiN + tib_L12_sterN) + 4 * tib_L34_rphiN;
unsigned int chan_tib = apv_tib * chan_per_apv;
unsigned int apv_tid = 6 * (tid_r1_rphiN + tid_r1_sterN) + 6 * (tid_r2_rphiN + tid_r2_sterN) + 4 * tid_r3_rphiN;
unsigned int chan_tid = apv_tid * chan_per_apv;
unsigned int apv_tob = 4 * (tob_L12_rphiN + tob_L12_sterN) + 4 * tob_L34_rphiN + 6 * tob_L56_rphiN;
unsigned int chan_tob = apv_tob * chan_per_apv;
unsigned int apv_tec = 6 * (tec_r1_rphiN + tec_r1_sterN) + 6 * (tec_r2_rphiN + tec_r2_sterN) + 4 * tec_r3_rphiN +
4 * tec_r4_rphiN + 6 * (tec_r5_rphiN + tec_r5_sterN) + 4 * tec_r6_rphiN + 4 * tec_r7_rphiN;
unsigned int chan_tec = apv_tec * chan_per_apv;
unsigned int psi_tot = psi_pxb + psi_pxf;
unsigned int apv_tot = apv_tib + apv_tid + apv_tob + apv_tec;
unsigned int chan_pixel = chan_pxb + chan_pxf;
unsigned int chan_strip = chan_tib + chan_tid + chan_tob + chan_tec;
unsigned int chan_tot = chan_pixel + chan_strip;
//
// summary
Output << "---------------------" << std::endl;
Output << " Counters " << std::endl;
Output << "---------------------" << std::endl;
Output << " PXB = " << pxbN << std::endl;
Output << " Full = " << pxb_fullN << std::endl;
Output << " Half = " << pxb_halfN << std::endl;
Output << " Active Silicon Detectors" << std::endl;
Output << " PSI46s = " << psi_pxb << std::endl;
Output << " channels = " << chan_pxb << std::endl;
Output << " PXF = " << pxfN << std::endl;
Output << " 1x2 = " << pxf_1x2N << std::endl;
Output << " 1x5 = " << pxf_1x5N << std::endl;
Output << " 2x3 = " << pxf_2x3N << std::endl;
Output << " 2x4 = " << pxf_2x4N << std::endl;
Output << " 2x5 = " << pxf_2x5N << std::endl;
Output << " Active Silicon Detectors" << std::endl;
Output << " PSI46s = " << psi_pxf << std::endl;
Output << " channels = " << chan_pxf << std::endl;
Output << " TIB = " << tibN << std::endl;
Output << " L12 rphi = " << tib_L12_rphiN << std::endl;
Output << " L12 stereo = " << tib_L12_sterN << std::endl;
Output << " L34 = " << tib_L34_rphiN << std::endl;
Output << " Active Silicon Detectors" << std::endl;
Output << " APV25s = " << apv_tib << std::endl;
Output << " channels = " << chan_tib << std::endl;
Output << " TID = " << tidN << std::endl;
Output << " r1 rphi = " << tid_r1_rphiN << std::endl;
Output << " r1 stereo = " << tid_r1_sterN << std::endl;
Output << " r2 rphi = " << tid_r2_rphiN << std::endl;
Output << " r2 stereo = " << tid_r2_sterN << std::endl;
Output << " r3 rphi = " << tid_r3_rphiN << std::endl;
Output << " Active Silicon Detectors" << std::endl;
Output << " APV25s = " << apv_tid << std::endl;
Output << " channels = " << chan_tid << std::endl;
Output << " TOB = " << tobN << std::endl;
Output << " L12 rphi = " << tob_L12_rphiN << std::endl;
Output << " L12 stereo = " << tob_L12_sterN << std::endl;
Output << " L34 = " << tob_L34_rphiN << std::endl;
Output << " L56 = " << tob_L56_rphiN << std::endl;
Output << " Active Silicon Detectors" << std::endl;
Output << " APV25s = " << apv_tob << std::endl;
Output << " channels = " << chan_tob << std::endl;
Output << " TEC = " << tecN << std::endl;
Output << " r1 rphi = " << tec_r1_rphiN << std::endl;
Output << " r1 stereo = " << tec_r1_sterN << std::endl;
Output << " r2 rphi = " << tec_r2_rphiN << std::endl;
Output << " r2 stereo = " << tec_r2_sterN << std::endl;
Output << " r3 rphi = " << tec_r3_rphiN << std::endl;
Output << " r4 rphi = " << tec_r4_rphiN << std::endl;
Output << " r5 rphi = " << tec_r5_rphiN << std::endl;
Output << " r5 stereo = " << tec_r5_sterN << std::endl;
Output << " r6 rphi = " << tec_r6_rphiN << std::endl;
Output << " r7 rphi = " << tec_r7_rphiN << std::endl;
Output << " Active Silicon Detectors" << std::endl;
Output << " APV25s = " << apv_tec << std::endl;
Output << " channels = " << chan_tec << std::endl;
Output << "---------------------" << std::endl;
Output << " PSI46s = " << psi_tot << std::endl;
Output << " APV25s = " << apv_tot << std::endl;
Output << " pixel channels = " << chan_pixel << std::endl;
Output << " strip channels = " << chan_strip << std::endl;
Output << " total channels = " << chan_tot << std::endl;
//
}
//define this as a plug-in
DEFINE_FWK_MODULE(ModuleInfo);
|