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
|
#include "TFile.h"
#include "TTree.h"
#include "TEveGeoNode.h"
#include "TEveGeoShape.h"
#include "TPRegexp.h"
#include "TSystem.h"
#include "TGeoArb8.h"
#include "TObjArray.h"
#include "TObjString.h"
#include "TPRegexp.h"
#include "Fireworks/Core/interface/FWGeometry.h"
#include "Fireworks/Core/interface/fwLog.h"
#include "DataFormats/DetId/interface/DetId.h"
// AMT deprication of tracker specific DetIds
#include "CalibTracker/StandaloneTrackerTopology/interface/StandaloneTrackerTopology.h"
#include <cassert>
#include <iostream>
#include <memory>
#include <sstream>
#include <stdexcept>
#include <algorithm>
FWGeometry::FWGeometry(void) : m_producerVersion(0) {}
FWGeometry::~FWGeometry(void) {}
bool FWGeometry::isEmpty() const {
// AMT this is a check if geomtery is not loaded
// e.g. cmsShow starts with no data file and without given explicit argument ( --geometry-file option )
return m_idToInfo.empty();
}
TFile* FWGeometry::findFile(const char* fileName) {
std::string searchPath = ".";
if (gSystem->Getenv("CMSSW_SEARCH_PATH")) {
TString paths = gSystem->Getenv("CMSSW_SEARCH_PATH");
TObjArray* tokens = paths.Tokenize(":");
for (int i = 0; i < tokens->GetEntries(); ++i) {
TObjString* path = (TObjString*)tokens->At(i);
searchPath += ":";
searchPath += static_cast<const char*>(path->GetString());
if (gSystem->Getenv("CMSSW_VERSION"))
searchPath += "/Fireworks/Geometry/data/";
}
}
TString fn = fileName;
const char* fp = gSystem->FindFile(searchPath.c_str(), fn, kFileExists);
return fp ? TFile::Open(fp) : nullptr;
}
void FWGeometry::applyGlobalTag(const std::string& globalTag) {
const std::string fnRun2 = "cmsGeomRun2.root";
const std::string fnRun3 = "cmsGeom2021.root";
const std::string fnSLHC = "cmsGeom2026.root";
TPMERegexp year_re("^[^_]+_[a-zA-Z]*20(\\d\\d)_");
TPMERegexp run_re("^[^_]+_[a-zA-Z]*Run(\\d)_");
TString test = globalTag.c_str();
std::string cfn;
if (year_re.Match(test)) {
TString r = year_re[1];
int year = atoi(r.Data());
if (year < 18) {
cfn = fnRun2;
} else if (year < 21) {
cfn = fnRun3;
} else {
cfn = fnSLHC;
}
} else if (run_re.Match(test)) {
TString rn = run_re[1];
if (rn == "1") {
fwLog(fwlog::kWarning) << "Run1 geometry not included. Using Run2 geometry." << std::endl;
cfn = fnRun2;
} else if (rn == "2") {
cfn = fnRun2;
} else if (rn == "4") {
cfn = fnSLHC;
} else {
fwLog(fwlog::kWarning) << "Detected Run" << rn << ". Using geometry scenario 2021.\n";
cfn = fnRun3;
}
} else {
fwLog(fwlog::kWarning) << "Could not guess geometry from global tag. Using geometry scenario 2021.\n";
cfn = fnRun3;
}
fwLog(fwlog::kInfo) << "Guessed geometry " << cfn << " from global tag " << globalTag << std::endl;
if (cfn.compare(m_fileName)) {
loadMap(cfn.c_str());
}
}
void FWGeometry::loadMap(const char* iFileName) {
TFile* file = findFile(iFileName);
if (!file) {
throw std::runtime_error("ERROR: failed to find geometry file. Initialization failed.");
return;
}
m_fileName = iFileName;
TTree* tree = static_cast<TTree*>(file->Get("idToGeo"));
if (!tree) {
throw std::runtime_error("ERROR: cannot find detector id map in the file. Initialization failed.");
return;
}
unsigned int id;
Float_t points[24];
Float_t topology[9];
Float_t shape[5];
Float_t translation[3];
Float_t matrix[9];
bool loadPoints = tree->GetBranch("points") != nullptr;
bool loadParameters = tree->GetBranch("topology") != nullptr;
bool loadShape = tree->GetBranch("shape") != nullptr;
bool loadTranslation = tree->GetBranch("translation") != nullptr;
bool loadMatrix = tree->GetBranch("matrix") != nullptr;
tree->SetBranchAddress("id", &id);
if (loadPoints)
tree->SetBranchAddress("points", &points);
if (loadParameters)
tree->SetBranchAddress("topology", &topology);
if (loadShape)
tree->SetBranchAddress("shape", &shape);
if (loadTranslation)
tree->SetBranchAddress("translation", &translation);
if (loadMatrix)
tree->SetBranchAddress("matrix", &matrix);
// reset previous values
m_idToInfo.clear();
for (const auto& p : m_idToMatrix)
delete p.second;
m_trackerTopology.reset();
unsigned int treeSize = tree->GetEntries();
if (m_idToInfo.size() != treeSize)
m_idToInfo.resize(treeSize);
for (unsigned int i = 0; i < treeSize; ++i) {
tree->GetEntry(i);
m_idToInfo[i].id = id;
if (loadPoints) {
for (unsigned int j = 0; j < 24; ++j)
m_idToInfo[i].points[j] = points[j];
}
if (loadParameters) {
for (unsigned int j = 0; j < 9; ++j)
m_idToInfo[i].parameters[j] = topology[j];
}
if (loadShape) {
for (unsigned int j = 0; j < 5; ++j)
m_idToInfo[i].shape[j] = shape[j];
}
if (loadTranslation) {
for (unsigned int j = 0; j < 3; ++j)
m_idToInfo[i].translation[j] = translation[j];
}
if (loadMatrix) {
for (unsigned int j = 0; j < 9; ++j)
m_idToInfo[i].matrix[j] = matrix[j];
}
}
m_versionInfo.productionTag = static_cast<TNamed*>(file->Get("tag"));
m_versionInfo.cmsswVersion = static_cast<TNamed*>(file->Get("CMSSW_VERSION"));
m_versionInfo.extraDetectors = static_cast<TObjArray*>(file->Get("ExtraDetectors"));
TString path = file->GetPath();
if (path.EndsWith(":/"))
path.Resize(path.Length() - 2);
if (m_versionInfo.productionTag)
fwLog(fwlog::kInfo) << Form(
"Load %s %s from %s\n", tree->GetName(), m_versionInfo.productionTag->GetTitle(), path.Data());
else
fwLog(fwlog::kInfo) << Form("Load %s from %s\n", tree->GetName(), path.Data());
TNamed* producerInfo = static_cast<TNamed*>(file->Get("PRODUCER_VERSION"));
if (producerInfo) {
m_producerVersion = atoi(producerInfo->GetTitle());
}
TNamed* ttopology = static_cast<TNamed*>(file->Get("TrackerTopology"));
if (ttopology) {
std::string xml = ttopology->GetTitle();
m_trackerTopology =
std::make_unique<TrackerTopology>(StandaloneTrackerTopology::fromTrackerParametersXMLString(xml));
}
file->Close();
}
void FWGeometry::initMap(const FWRecoGeom::InfoMap& map) {
FWRecoGeom::InfoMapItr begin = map.begin();
FWRecoGeom::InfoMapItr end = map.end();
unsigned int mapSize = map.size();
if (m_idToInfo.size() != mapSize)
m_idToInfo.resize(mapSize);
unsigned int i = 0;
for (FWRecoGeom::InfoMapItr it = begin; it != end; ++it, ++i) {
m_idToInfo[i].id = it->id;
for (unsigned int j = 0; j < 24; ++j)
m_idToInfo[i].points[j] = it->points[j];
for (unsigned int j = 0; j < 9; ++j)
m_idToInfo[i].parameters[j] = it->topology[j];
for (unsigned int j = 0; j < 5; ++j)
m_idToInfo[i].shape[j] = it->shape[j];
for (unsigned int j = 0; j < 3; ++j)
m_idToInfo[i].translation[j] = it->translation[j];
for (unsigned int j = 0; j < 9; ++j)
m_idToInfo[i].matrix[j] = it->matrix[j];
}
}
const TGeoMatrix* FWGeometry::getMatrix(unsigned int id) const {
std::map<unsigned int, TGeoMatrix*>::iterator mit = m_idToMatrix.find(id);
if (mit != m_idToMatrix.end())
return mit->second;
IdToInfoItr it = FWGeometry::find(id);
if (it == m_idToInfo.end()) {
fwLog(fwlog::kWarning) << "no reco geometry found for id " << id << std::endl;
return nullptr;
} else {
const GeomDetInfo& info = *it;
TGeoTranslation trans(info.translation[0], info.translation[1], info.translation[2]);
TGeoRotation rotation;
const Double_t matrix[9] = {info.matrix[0],
info.matrix[1],
info.matrix[2],
info.matrix[3],
info.matrix[4],
info.matrix[5],
info.matrix[6],
info.matrix[7],
info.matrix[8]};
rotation.SetMatrix(matrix);
m_idToMatrix[id] = new TGeoCombiTrans(trans, rotation);
return m_idToMatrix[id];
}
}
std::vector<unsigned int> FWGeometry::getMatchedIds(Detector det, SubDetector subdet) const {
std::vector<unsigned int> ids;
unsigned int mask = (det << 4) | (subdet);
for (IdToInfoItr it = m_idToInfo.begin(), itEnd = m_idToInfo.end(); it != itEnd; ++it) {
if (FWGeometry::match_id(*it, mask))
ids.push_back((*it).id);
}
return ids;
}
std::vector<unsigned int> FWGeometry::getMatchedIds(Detector det) const {
std::vector<unsigned int> ids;
for (const auto& it : m_idToInfo) {
if (((it.id >> kDetOffset) & 0xF) != det)
continue;
// select only the fake DetIds that have all the (u,v) bits set at 1. This
// is used to draw the HGCal Geometry that is wafer-based for the silicon
// part. The Scintillators are treated on a tile-basis.
if (det == HGCalHSc) {
ids.push_back(it.id);
} else {
auto key = 0x3FF; // 10 bits mask of 1s.
if ((it.id | key) == it.id) {
ids.push_back(it.id);
}
}
}
return ids;
}
TGeoShape* FWGeometry::getShape(unsigned int id) const {
IdToInfoItr it = FWGeometry::find(id);
if (it == m_idToInfo.end()) {
fwLog(fwlog::kWarning) << "no reco geoemtry found for id " << id << std::endl;
return nullptr;
} else {
return getShape(*it);
}
}
TGeoShape* FWGeometry::getShape(const GeomDetInfo& info) const {
TEveGeoManagerHolder gmgr(TEveGeoShape::GetGeoMangeur());
TGeoShape* geoShape = nullptr;
if (info.shape[0] == 1) {
geoShape = new TGeoTrap(info.shape[3], //dz
0, //theta
0, //phi
info.shape[4], //dy1
info.shape[1], //dx1
info.shape[2], //dx2
0, //alpha1
info.shape[4], //dy2
info.shape[1], //dx3
info.shape[2], //dx4
0); //alpha2
} else
geoShape = new TGeoBBox(info.shape[1], info.shape[2], info.shape[3]);
return geoShape;
}
TEveGeoShape* FWGeometry::getEveShape(unsigned int id) const {
IdToInfoItr it = FWGeometry::find(id);
if (it == m_idToInfo.end()) {
fwLog(fwlog::kWarning) << "no reco geoemtry found for id " << id << std::endl;
return nullptr;
} else {
const GeomDetInfo& info = *it;
double array[16] = {info.matrix[0],
info.matrix[3],
info.matrix[6],
0.,
info.matrix[1],
info.matrix[4],
info.matrix[7],
0.,
info.matrix[2],
info.matrix[5],
info.matrix[8],
0.,
info.translation[0],
info.translation[1],
info.translation[2],
1.};
TEveGeoManagerHolder gmgr(TEveGeoShape::GetGeoMangeur());
TEveGeoShape* shape = new TEveGeoShape(TString::Format("RecoGeom Id=%u", id));
TGeoShape* geoShape = getShape(info);
shape->SetShape(geoShape);
// Set transformation matrix from a column-major array
shape->SetTransMatrix(array);
return shape;
}
}
TEveGeoShape* FWGeometry::getHGCSiliconEveShape(unsigned int id) const {
IdToInfoItr it = FWGeometry::find(id);
if (it == m_idToInfo.end()) {
fwLog(fwlog::kWarning) << "no reco geometry found for id " << id << std::endl;
return nullptr;
}
GeomDetInfo info = *it;
TEveGeoManagerHolder gmgr(TEveGeoShape::GetGeoMangeur());
TEveGeoShape* shape = new TEveGeoShape(TString::Format("RecoGeom Id=%u", id));
TGeoXtru* geoShape = new TGeoXtru(2);
Double_t x[6];
Double_t y[6];
for (unsigned int i = 0; i < 6; ++i) {
x[i] = info.points[i * 3];
y[i] = info.points[3 * i + 1];
}
geoShape->DefinePolygon(6, x, y);
geoShape->DefineSection(0, info.points[2] - 0.0150); // First plane at the Z position of the wafer, minus 150um
geoShape->DefineSection(1, info.points[2] + 0.0150); // Second plane at the Z position of the wafer, minus 150um
shape->SetShape(geoShape);
double array[16] = {info.matrix[0],
info.matrix[3],
info.matrix[6],
0.,
info.matrix[1],
info.matrix[4],
info.matrix[7],
0.,
info.matrix[2],
info.matrix[5],
info.matrix[8],
0.,
0., // translation x
0., // translation y
0., // translation z
1.};
// Set transformation matrix from a column-major array
shape->SetTransMatrix(array);
return shape;
}
TEveGeoShape* FWGeometry::getHGCScintillatorEveShape(unsigned int id) const {
IdToInfoItr it = FWGeometry::find(id);
if (it == m_idToInfo.end()) {
fwLog(fwlog::kWarning) << "no reco geometry found for id " << id << std::endl;
return nullptr;
}
GeomDetInfo info = *it;
TEveGeoManagerHolder gmgr(TEveGeoShape::GetGeoMangeur());
TEveGeoShape* shape = new TEveGeoShape(TString::Format("RecoGeom Id=%u", id));
TGeoXtru* geoShape = new TGeoXtru(2);
Double_t x[4] = {info.points[0], info.points[3], info.points[6], info.points[9]};
Double_t y[4] = {info.points[1], info.points[4], info.points[7], info.points[10]};
bool isNeg = info.shape[3] < 0;
geoShape->DefinePolygon(4, x, y);
geoShape->DefineSection(0, isNeg * info.shape[3]);
geoShape->DefineSection(1, !isNeg * info.shape[3]);
info.translation[2] = info.points[2];
shape->SetShape(geoShape);
double array[16] = {info.matrix[0],
info.matrix[3],
info.matrix[6],
0.,
info.matrix[1],
info.matrix[4],
info.matrix[7],
0.,
info.matrix[2],
info.matrix[5],
info.matrix[8],
0.,
info.translation[0],
info.translation[1],
info.translation[2],
1.};
// Set transformation matrix from a column-major array
shape->SetTransMatrix(array);
return shape;
}
const float* FWGeometry::getCorners(unsigned int id) const {
// reco geometry points
IdToInfoItr it = FWGeometry::find(id);
if (it == m_idToInfo.end()) {
fwLog(fwlog::kWarning) << "no reco geometry found for id " << id << std::endl;
return nullptr;
} else {
return (*it).points;
}
}
const float* FWGeometry::getParameters(unsigned int id) const {
// reco geometry parameters
IdToInfoItr it = FWGeometry::find(id);
if (it == m_idToInfo.end()) {
fwLog(fwlog::kWarning) << "no reco geometry found for id " << id << std::endl;
return nullptr;
} else {
return (*it).parameters;
}
}
const float* FWGeometry::getShapePars(unsigned int id) const {
// reco geometry parameters
IdToInfoItr it = FWGeometry::find(id);
if (it == m_idToInfo.end()) {
fwLog(fwlog::kWarning) << "no reco geometry found for id " << id << std::endl;
return nullptr;
} else {
return (*it).shape;
}
}
void FWGeometry::localToGlobal(unsigned int id, const float* local, float* global, bool translatep) const {
IdToInfoItr it = FWGeometry::find(id);
if (it == m_idToInfo.end()) {
fwLog(fwlog::kWarning) << "no reco geometry found for id " << id << std::endl;
} else {
localToGlobal(*it, local, global, translatep);
}
}
void FWGeometry::localToGlobal(
unsigned int id, const float* local1, float* global1, const float* local2, float* global2, bool translatep) const {
IdToInfoItr it = FWGeometry::find(id);
if (it == m_idToInfo.end()) {
fwLog(fwlog::kWarning) << "no reco geometry found for id " << id << std::endl;
} else {
localToGlobal(*it, local1, global1, translatep);
localToGlobal(*it, local2, global2, translatep);
}
}
FWGeometry::IdToInfoItr FWGeometry::find(unsigned int id) const {
FWGeometry::IdToInfoItr begin = m_idToInfo.begin();
FWGeometry::IdToInfoItr end = m_idToInfo.end();
return std::lower_bound(begin, end, id);
}
void FWGeometry::localToGlobal(const GeomDetInfo& info, const float* local, float* global, bool translatep) const {
for (int i = 0; i < 3; ++i) {
global[i] = translatep ? info.translation[i] : 0;
global[i] += local[0] * info.matrix[3 * i] + local[1] * info.matrix[3 * i + 1] + local[2] * info.matrix[3 * i + 2];
}
}
//______________________________________________________________________________
bool FWGeometry::VersionInfo::haveExtraDet(const char* det) const {
return (extraDetectors && extraDetectors->FindObject(det)) ? true : false;
}
|