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
|
#ifndef Alignment_TrackerAlignment_TrackerGeometryAnalyzer_h
#define Alignment_TrackerAlignment_TrackerGeometryAnalyzer_h
// Original Author: Max Stark
// Created: Thu, 14 Jan 2016 11:35:07 CET
// system includes
#include <set>
#include <iostream>
#include <sstream>
// core framework functionality
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/MakerMacros.h"
// topology and geometry
#include "CondFormats/GeometryObjects/interface/PTrackerParameters.h"
#include "DataFormats/TrackerCommon/interface/TrackerTopology.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
#include "Geometry/Records/interface/PTrackerAdditionalParametersPerDetRcd.h"
#include "Geometry/Records/interface/PTrackerParametersRcd.h"
#include "Geometry/Records/interface/TrackerTopologyRcd.h"
#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeomBuilderFromGeometricDet.h"
#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
#include "Geometry/TrackerNumberingBuilder/interface/GeometricDet.h"
// alignment
#include "Alignment/CommonAlignment/interface/AlignableObjectId.h"
class Alignable;
class TrackerGeometryAnalyzer : public edm::one::EDAnalyzer<edm::one::WatchRuns> {
//========================== PUBLIC METHODS =================================
public: //===================================================================
TrackerGeometryAnalyzer(const edm::ParameterSet&);
virtual ~TrackerGeometryAnalyzer() {}
virtual void beginRun(const edm::Run&, const edm::EventSetup&) override;
virtual void analyze(const edm::Event&, const edm::EventSetup&) override {}
virtual void endRun(const edm::Run&, const edm::EventSetup&) override {}
//========================= PRIVATE METHODS =================================
private: //==================================================================
void setTrackerTopology(const edm::EventSetup&);
void setTrackerGeometry(const edm::EventSetup&);
void analyzeTrackerAlignables();
void analyzeAlignableDetUnits(Alignable*);
void analyzeCompositeAlignables(Alignable*);
int countCompositeAlignables(Alignable*);
void printAlignableStructure(Alignable*, std::ostringstream&, int indent);
void analyzeTrackerGeometry();
void analyzeTrackerGeometryVersion(std::ostringstream&);
void analyzePXBDetUnit(DetId& detId, std::ostringstream&);
void analyzePXB();
void analyzePXEDetUnit(DetId& detId, std::ostringstream&);
void analyzePXE();
void analyzeTIBDetUnit(DetId& detId, std::ostringstream&);
void analyzeTIB();
void analyzeTIDDetUnit(DetId& detId, std::ostringstream&);
void analyzeTID();
void analyzeTOBDetUnit(DetId& detId, std::ostringstream&);
void analyzeTOB();
void analyzeTECDetUnit(DetId& detId, std::ostringstream&);
void analyzeTEC();
//========================== PRIVATE DATA ===================================
//===========================================================================
// ESTokens
const edm::ESGetToken<TrackerTopology, TrackerTopologyRcd> tTopoToken_;
const edm::ESGetToken<GeometricDet, IdealGeometryRecord> geomDetToken_;
const edm::ESGetToken<PTrackerParameters, PTrackerParametersRcd> ptpToken_;
const edm::ESGetToken<PTrackerAdditionalParametersPerDet, PTrackerAdditionalParametersPerDetRcd> ptapToken_;
// config-file parameters
const bool analyzeAlignables_;
const bool printTrackerStructure_;
const int maxPrintDepth_;
const bool analyzeGeometry_;
const bool analyzePXB_;
const bool analyzePXE_;
const bool analyzeTIB_;
const bool analyzeTID_;
const bool analyzeTOB_;
const bool analyzeTEC_;
// topology and geometry
const TrackerTopology* trackerTopology;
const TrackerGeometry* trackerGeometry;
// alignable object ID provider
AlignableObjectId alignableObjectId_;
// counter for detUnits
int numPXBDetUnits = 0;
int numPXEDetUnits = 0;
int numTIBDetUnits = 0;
int numTIDDetUnits = 0;
int numTOBDetUnits = 0;
int numTECDetUnits = 0;
// PixelBarrel counters
std::set<unsigned int> pxbLayerIDs;
std::set<unsigned int> pxbLadderIDs;
std::set<unsigned int> pxbModuleIDs;
// PixelEndcap counters
std::set<unsigned int> pxeSideIDs;
std::set<unsigned int> pxeDiskIDs;
std::set<unsigned int> pxeBladeIDs;
std::set<unsigned int> pxePanelIDs;
std::set<unsigned int> pxeModuleIDs;
// TIB counters
std::set<unsigned int> tibSideIDs;
std::set<unsigned int> tibLayerIDs;
std::set<unsigned int> tibStringIDs;
std::set<unsigned int> tibModuleIDs;
// TID counters
std::set<unsigned int> tidSideIDs;
std::set<unsigned int> tidWheelIDs;
std::set<unsigned int> tidRingIDs;
std::set<unsigned int> tidModuleIDs;
// TOB counters
std::set<unsigned int> tobLayerIDs;
std::set<unsigned int> tobSideIDs;
std::set<unsigned int> tobRodIDs;
std::set<unsigned int> tobModuleIDs;
// TEC counters
std::set<unsigned int> tecSideIDs;
std::set<unsigned int> tecWheelIDs;
std::set<unsigned int> tecPetalIDs;
std::set<unsigned int> tecRingIDs;
std::set<unsigned int> tecModuleIDs;
};
// define this as a plug-in
DEFINE_FWK_MODULE(TrackerGeometryAnalyzer);
#endif /* Alignment_TrackerAlignment_TrackerGeometryAnalyzer_h */
|