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
|
#include "DetectorDescription/DDCMS/interface/DDNamespace.h"
#include "DetectorDescription/DDCMS/interface/DDParsingContext.h"
#include "DataFormats/Math/interface/Rounding.h"
#include "DD4hep/Path.h"
#include "DD4hep/Printout.h"
#include "Evaluator/Evaluator.h"
#include "XML/XML.h"
#include <TClass.h>
#include <iomanip>
#include <sstream>
#include <unordered_map>
#include <vector>
using namespace std;
using namespace cms;
double cms::rotation_utils::roundBinary(double value) {
value = cms_rounding::roundIfNear0(value);
static constexpr double roundingVal = 1 << 24;
value = (round(value * roundingVal) / roundingVal);
// Set -0 to 0
return (cms_rounding::roundIfNear0(value));
}
std::string cms::rotation_utils::rotHash(const Double_t* rot) {
std::string hashVal;
for (int row = 0; row <= 2; ++row) {
for (int col = 0; col <= 2; ++col) {
std::ostringstream numStream;
numStream << std::fixed << std::setprecision(7);
numStream << roundBinary(rot[(3 * row) + col]);
hashVal += numStream.str();
}
}
return (hashVal);
}
std::string cms::rotation_utils::rotHash(const dd4hep::Rotation3D& rot) {
std::string hashVal;
std::vector<double> matrix;
matrix.assign(9, 0.);
rot.GetComponents(matrix.begin());
for (double val : matrix) {
std::ostringstream numStream;
numStream << std::fixed << std::setprecision(7);
numStream << roundBinary(val);
hashVal += numStream.str();
}
return (hashVal);
}
DDNamespace::DDNamespace(DDParsingContext* context, xml_h element) : m_context(context) {
dd4hep::Path path(xml_handler_t::system_path(element));
m_name = path.filename().substr(0, path.filename().rfind('.'));
if (!m_name.empty())
m_name += NAMESPACE_SEP;
m_context->namespaces.emplace_back(m_name);
m_pop = true;
dd4hep::printout(m_context->debug_namespaces ? dd4hep::ALWAYS : dd4hep::DEBUG,
"DD4CMS",
"+++ Current namespace is now: %s",
m_name.c_str());
}
DDNamespace::DDNamespace(DDParsingContext& ctx, xml_h element, bool) : m_context(&ctx) {
dd4hep::Path path(xml_handler_t::system_path(element));
m_name = path.filename().substr(0, path.filename().rfind('.'));
if (!m_name.empty())
m_name += NAMESPACE_SEP;
m_context->namespaces.emplace_back(m_name);
m_pop = true;
dd4hep::printout(m_context->debug_namespaces ? dd4hep::ALWAYS : dd4hep::DEBUG,
"DD4CMS",
"+++ Current namespace is now: %s",
m_name.c_str());
}
DDNamespace::DDNamespace(DDParsingContext* ctx) : m_context(ctx) {
if (!m_context->namespaces.empty())
m_name = m_context->namespaces.back();
}
DDNamespace::DDNamespace(DDParsingContext& ctx) : m_context(&ctx) {
if (!m_context->namespaces.empty())
m_name = m_context->namespaces.back();
}
DDNamespace::~DDNamespace() {
if (m_pop) {
m_context->namespaces.pop_back();
dd4hep::printout(m_context->debug_namespaces ? dd4hep::ALWAYS : dd4hep::DEBUG,
"DD4CMS",
"+++ Current namespace is now: %s",
m_context->ns().c_str());
}
}
string DDNamespace::prepend(const string& n) const {
if (strchr(n.c_str(), NAMESPACE_SEP) == nullptr)
return m_name + n;
else
return n;
}
string DDNamespace::realName(const string& v) const {
size_t idx, idq, idp;
string val = v;
while ((idx = val.find('[')) != string::npos) {
val.erase(idx, 1);
idp = val.find(NAMESPACE_SEP, idx);
idq = val.find(']', idx);
val.erase(idq, 1);
if (idp == string::npos || idp > idq)
val.insert(idx, m_name);
else if (idp != string::npos && idp < idq)
val[idp] = NAMESPACE_SEP;
}
return val;
}
string DDNamespace::nsName(const string& name) {
size_t idx;
if ((idx = name.find(NAMESPACE_SEP)) != string::npos)
return name.substr(0, idx);
return "";
}
string DDNamespace::objName(const string& name) {
size_t idx;
if ((idx = name.find(NAMESPACE_SEP)) != string::npos)
return name.substr(idx + 1);
return "";
}
void DDNamespace::addConstant(const string& name, const string& val, const string& type) const {
addConstantNS(prepend(name), val, type);
}
namespace dd4hep {
dd4hep::tools::Evaluator& evaluator();
}
void DDNamespace::addConstantNS(const string& name, const string& val, const string& type) const {
const string& v = val;
const string& n = name;
dd4hep::printout(m_context->debug_constants ? dd4hep::ALWAYS : dd4hep::DEBUG,
"DD4CMS",
"+++ Add constant object: %-40s = %s [type:%s]",
n.c_str(),
v.c_str(),
type.c_str());
const dd4hep::tools::Evaluator& eval(dd4hep::evaluator());
bool constExists = eval.findVariable(n);
dd4hep::printout(
m_context->debug_constants ? dd4hep::ALWAYS : dd4hep::DEBUG, "DD4CMS", "findVariable result = %d", constExists);
if (constExists == false) {
// Only add it to the dictionary if it is not yet defined
dd4hep::_toDictionary(n, v, type);
}
dd4hep::Constant c(n, v, type);
m_context->description.addConstant(c);
}
dd4hep::Material DDNamespace::material(const string& name) const {
return m_context->description.material(realName(name));
}
void DDNamespace::addRotation(const string& name, const dd4hep::Rotation3D& rot) const {
string n = prepend(name);
m_context->rotations[n] = rot;
if (m_context->makePayload) {
string hashVal = cms::rotation_utils::rotHash(rot);
if (m_context->rotRevMap.find(hashVal) == m_context->rotRevMap.end()) {
// Only set a rotation that is not already in the map
m_context->rotRevMap[hashVal] = n;
}
}
}
const dd4hep::Rotation3D& DDNamespace::rotation(const string& name) const {
static const dd4hep::Rotation3D s_null;
size_t idx;
auto i = m_context->rotations.find(name);
if (i != m_context->rotations.end())
return (*i).second;
else if (name == "NULL")
return s_null;
else if (name.find(":NULL") == name.length() - 5)
return s_null;
string n = name;
if ((idx = name.find(NAMESPACE_SEP)) != string::npos) {
n[idx] = NAMESPACE_SEP;
i = m_context->rotations.find(n);
if (i != m_context->rotations.end())
return (*i).second;
}
throw runtime_error("Unknown rotation identifier:" + name);
}
dd4hep::Volume DDNamespace::addVolumeNS(dd4hep::Volume vol) const {
string n = prepend(vol.name());
dd4hep::Solid s = vol.solid();
dd4hep::Material m = vol.material();
vol->SetName(n.c_str());
m_context->volumes[n] = vol;
const char* solidName = "Invalid solid";
if (s.isValid()) // Protect against seg fault
solidName = s.name(); // If Solid is not valid, s.name() will seg fault.
dd4hep::printout(m_context->debug_volumes ? dd4hep::ALWAYS : dd4hep::DEBUG,
"DD4CMS",
"+++ Add volumeNS:%-38s Solid:%-26s[%-16s] Material:%s",
vol.name(),
solidName,
s.type(),
m.name());
return vol;
}
dd4hep::Volume DDNamespace::addVolume(dd4hep::Volume vol) const {
string n = prepend(vol.name());
dd4hep::Solid s = vol.solid();
dd4hep::Material m = vol.material();
m_context->volumes[n] = vol;
const char* solidName = "Invalid solid";
if (s.isValid()) // Protect against seg fault
solidName = s.name(); // If Solid is not valid, s.name() will seg fault.
dd4hep::printout(m_context->debug_volumes ? dd4hep::ALWAYS : dd4hep::DEBUG,
"DD4CMS",
"+++ Add volume:%-38s as [%s] Solid:%-26s[%-16s] Material:%s",
vol.name(),
n.c_str(),
solidName,
s.type(),
m.name());
return vol;
}
dd4hep::Assembly DDNamespace::addAssembly(dd4hep::Assembly assembly, bool addSolid) const {
string n = assembly.name();
m_context->assemblies[n] = assembly;
if (addSolid) { // In algorithms, Assembly solids are not added separately, so add it here
m_context->assemblySolids.emplace(n);
}
dd4hep::printout(
m_context->debug_volumes ? dd4hep::ALWAYS : dd4hep::DEBUG, "DD4CMS", "+++ Add assembly: %-38s", n.c_str());
return assembly;
}
dd4hep::Assembly DDNamespace::addAssemblySolid(dd4hep::Assembly assembly) const {
string n = prepend(assembly.name());
m_context->assemblySolids.emplace(n);
dd4hep::printout(
m_context->debug_volumes ? dd4hep::ALWAYS : dd4hep::DEBUG, "DD4CMS", "+++ Add assembly solid: %-38s", n.c_str());
return assembly;
}
dd4hep::Assembly DDNamespace::assembly(const std::string& name, bool exception) const {
auto i = m_context->assemblies.find(name);
if (i != m_context->assemblies.end()) {
return (*i).second;
}
if (name.front() == NAMESPACE_SEP) {
i = m_context->assemblies.find(name.substr(1, name.size()));
if (i != m_context->assemblies.end())
return (*i).second;
}
if (exception) {
throw runtime_error("Unknown assembly identifier: " + name);
}
dd4hep::Volume nullVol(nullptr);
return nullVol;
}
dd4hep::Volume DDNamespace::volume(const string& name, bool exc) const {
auto i = m_context->volumes.find(name);
if (i != m_context->volumes.end()) {
return (*i).second;
}
if (name.front() == NAMESPACE_SEP) {
i = m_context->volumes.find(name.substr(1, name.size()));
if (i != m_context->volumes.end())
return (*i).second;
}
if (exc) {
throw runtime_error("Unknown volume identifier:" + name);
}
return nullptr;
}
dd4hep::Solid DDNamespace::addSolidNS(const string& name, dd4hep::Solid solid) const {
dd4hep::printout(m_context->debug_shapes ? dd4hep::ALWAYS : dd4hep::DEBUG,
"DD4CMS",
"+++ Add shape of type %s : %s",
solid->IsA()->GetName(),
name.c_str());
auto shape = m_context->shapes.emplace(name, solid.setName(name));
if (!shape.second) {
m_context->shapes[name] = solid.setName(name);
}
return solid;
}
dd4hep::Solid DDNamespace::addSolid(const string& name, dd4hep::Solid sol) const {
return addSolidNS(prepend(name), sol);
}
dd4hep::Solid DDNamespace::solid(const string& nam) const {
size_t idx;
string n = m_name + nam;
auto i = m_context->shapes.find(n);
if (i != m_context->shapes.end())
return (*i).second;
if ((idx = nam.find(NAMESPACE_SEP)) != string::npos) {
n = realName(nam);
n[idx] = NAMESPACE_SEP;
i = m_context->shapes.find(n);
if (i != m_context->shapes.end())
return (*i).second;
}
i = m_context->shapes.find(nam);
if (i != m_context->shapes.end())
return (*i).second;
// Register a temporary shape
auto tmpShape = m_context->shapes.emplace(nam, dd4hep::Solid(nullptr));
return (*tmpShape.first).second;
}
std::vector<double> DDNamespace::vecDbl(const std::string& name) const {
cms::DDVectorsMap* registry = m_context->description.extension<cms::DDVectorsMap>();
auto it = registry->find(name);
if (it != registry->end()) {
return {begin(it->second), end(it->second)};
} else
return std::vector<double>();
}
std::vector<float> DDNamespace::vecFloat(const std::string& name) const {
cms::DDVectorsMap* registry = m_context->description.extension<cms::DDVectorsMap>();
auto it = registry->find(name);
if (it != registry->end()) {
std::vector<float> result;
std::transform(
begin(it->second), end(it->second), std::back_inserter(result), [](double i) -> float { return (float)i; });
return result;
} else
return std::vector<float>();
}
std::string DDNamespace::noNamespace(const std::string& fullName) const {
std::string result(fullName);
auto n = result.find(':');
if (n == std::string::npos) {
return result;
} else {
return result.substr(n + 1);
}
}
|