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
|
#ifndef Alignment_OfflineValidation_MuonGeometryArrange_h
#define Alignment_OfflineValidation_MuonGeometryArrange_h
/** \class MuonGeometryArrange
*
* Module that reads survey info from DB and prints them out.
*
* Usage:
* module comparator = MuonGeometryArrange {
*
* lots of stuff
*
* }
* path p = { comparator }
*
*
* $Date: 2009/09/15 17:09:58 $
* $Revision: 1.2 $
* \author Nhan Tran
*/
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "Alignment/MuonAlignment/interface/AlignableMuon.h"
#include "CondFormats/Alignment/interface/SurveyErrors.h"
#include "Alignment/CommonAlignment/interface/StructureType.h"
#include "Alignment/CommonAlignment/interface/AlignTools.h"
#include <algorithm>
#include "TTree.h"
class AlignTransform;
class MuonAlignment;
class TGraph;
class TH2F;
class MuonGeometryArrange : public edm::one::EDAnalyzer<> {
public:
typedef AlignTransform SurveyValue;
typedef Alignments SurveyValues;
/// Do nothing. Required by framework.
MuonGeometryArrange(const edm::ParameterSet&);
/// Read from DB and print survey info.
void beginJob() override;
void analyze(const edm::Event&, const edm::EventSetup&) override;
// virtual void endJob(void);
private:
//parameters
edm::ParameterSet m_params;
std::vector<align::StructureType> theLevels;
//std::vector<int> theSubDets;
//compares two geometries, driver routine
void compare(Alignable* refAli, Alignable* curAli, Alignable* curAliCopy2);
void endHist();
// Map one onto other and compare details
void compareGeometries(Alignable* refAli, Alignable* curAli, Alignable* curAliCopy2);
//filling the ROOT file
void fillTree(Alignable* refAli, const AlgebraicVector& diff);
//void createDBGeometry(const edm::EventSetup& iSetup);
void createROOTGeometry(const edm::EventSetup& iSetup);
void makeGraph(int sizeI,
float smi,
float sma,
float minV,
float maxV,
TH2F* dxh,
TGraph* grx,
const char* name,
const char* title,
const char* titleg,
const char* axis,
const float* xp,
const float* yp,
int numEntries);
bool passIdCut(uint32_t);
bool checkChosen(Alignable* ali); // Is ali one of wanted CSC?
bool passChosen(Alignable* ali); // Is ali either one of wanted
// CSC or does it contain them?
bool isMother(Alignable* ali); // Is ali the container (ring)?
AlignableMuon* referenceMuon;
AlignableMuon* dummyMuon;
AlignableMuon* currentMuon;
Alignable* inputGeometry1;
Alignable* inputGeometry2;
unsigned int theSurveyIndex;
const Alignments* theSurveyValues;
const SurveyErrors* theSurveyErrors;
// configurables
const std::vector<std::string> _levelStrings;
std::string _inputFilename1;
std::string _inputFilename2;
std::string _inputTreename;
bool _writeToDB;
std::string _weightBy;
std::string _setCommonMuonSystem;
bool _detIdFlag;
std::string _detIdFlagFile;
bool _weightById;
std::string _weightByIdFile;
std::vector<unsigned int> _weightByIdVector;
int _endcap;
int _station;
int _ring;
std::vector<uint32_t> _detIdFlagVector;
align::StructureType _commonMuonLevel;
align::GlobalVector _MuonCommonT;
align::EulerAngles _MuonCommonR;
align::PositionType _MuonCommonCM;
//root configuration
std::string _filename;
struct MGACollection {
int id;
int level;
int mid;
int mlevel;
int sublevel;
float x, y, z;
float r, phi, eta;
float alpha, beta, gamma;
float dx, dy, dz;
float dr, dphi; // no deta?
float dalpha, dbeta, dgamma;
float ldx, ldy, ldz;
float ldr, ldphi; // no deta?
int useDetId, detDim;
float rotx, roty, rotz;
float drotx, droty, drotz;
float surW, surL; // surWidth and length
double surRot[9];
int phipos;
};
std::vector<MGACollection> _mgacollection;
// Two sets of alignment inputs
std::string _inputXMLCurrent;
std::string _inputXMLReference;
MuonAlignment* inputAlign1;
MuonAlignment* inputAlign2;
MuonAlignment* inputAlign2a;
TFile* _theFile;
TTree* _alignTree;
TFile* _inputRootFile1;
TFile* _inputRootFile2;
TTree* _inputTree1;
TTree* _inputTree2;
int _id, _level, _mid, _mlevel, _sublevel, _useDetId, _detDim;
float _xVal, _yVal, _zVal, _rVal, _phiVal, _alphaVal, _betaVal, _gammaVal, _etaVal;
float _dxVal, _dyVal, _dzVal, _drVal, _dphiVal, _dalphaVal;
float _dbetaVal, _dgammaVal, _ldxVal, _ldyVal, _ldzVal;
float _ldrVal, _ldphiVal;
float _rotxVal, _rotyVal, _rotzVal;
float _drotxVal, _drotyVal, _drotzVal;
float _surWidth, _surLength;
double _surRot[9];
bool firstEvent_;
std::string idealInputLabel1, idealInputLabel2, idealInputLabel2a, geomIdeal;
const edm::ESGetToken<DTGeometry, MuonGeometryRecord> dtGeomToken1_;
const edm::ESGetToken<CSCGeometry, MuonGeometryRecord> cscGeomToken1_;
const edm::ESGetToken<GEMGeometry, MuonGeometryRecord> gemGeomToken1_;
const edm::ESGetToken<DTGeometry, MuonGeometryRecord> dtGeomToken2_;
const edm::ESGetToken<CSCGeometry, MuonGeometryRecord> cscGeomToken2_;
const edm::ESGetToken<GEMGeometry, MuonGeometryRecord> gemGeomToken2_;
const edm::ESGetToken<DTGeometry, MuonGeometryRecord> dtGeomToken3_;
const edm::ESGetToken<CSCGeometry, MuonGeometryRecord> cscGeomToken3_;
const edm::ESGetToken<GEMGeometry, MuonGeometryRecord> gemGeomToken3_;
const edm::ESGetToken<DTGeometry, MuonGeometryRecord> dtGeomIdealToken_;
const edm::ESGetToken<CSCGeometry, MuonGeometryRecord> cscGeomIdealToken_;
const edm::ESGetToken<GEMGeometry, MuonGeometryRecord> gemGeomIdealToken_;
};
#endif
|