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
|
#include <algorithm>
#include <cmath>
#include <string>
#include <unordered_set>
#include <vector>
#include "DataFormats/Math/interface/angle_units.h"
#include "DetectorDescription/Core/interface/DDAlgorithm.h"
#include "DetectorDescription/Core/interface/DDAlgorithmFactory.h"
#include "DetectorDescription/Core/interface/DDCurrentNamespace.h"
#include "DetectorDescription/Core/interface/DDLogicalPart.h"
#include "DetectorDescription/Core/interface/DDMaterial.h"
#include "DetectorDescription/Core/interface/DDSolid.h"
#include "DetectorDescription/Core/interface/DDSplit.h"
#include "DetectorDescription/Core/interface/DDTypes.h"
#include "DetectorDescription/Core/interface/DDutils.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/PluginManager/interface/PluginFactory.h"
#include "Geometry/HGCalCommonData/interface/HGCalTypes.h"
//#define EDM_ML_DEBUG
using namespace angle_units::operators;
class DDHGCalTBModuleX : public DDAlgorithm {
public:
// Constructor and Destructor
DDHGCalTBModuleX(); //
~DDHGCalTBModuleX() override;
void initialize(const DDNumericArguments& nArgs,
const DDVectorArguments& vArgs,
const DDMapArguments& mArgs,
const DDStringArguments& sArgs,
const DDStringVectorArguments& vsArgs) override;
void execute(DDCompactView& cpv) override;
protected:
void constructBlocks(const DDLogicalPart&, DDCompactView& cpv);
void constructLayers(int block,
int layerFront,
int layerBack,
double zFront,
double thick,
bool ignore,
const DDLogicalPart&,
DDCompactView&);
void positionSensitive(double zpos,
int copyIn,
int type,
double rmax,
int ncrMax,
bool ignoreCenter,
const std::string&,
const DDMaterial&,
const DDLogicalPart&,
DDCompactView& cpv);
private:
static constexpr double tolerance_ = 0.00001;
const double factor_, tan30deg_;
std::vector<std::string> wafer_; // Wafers
std::vector<std::string> covers_; // Insensitive layers of hexagonal size
std::string genMat_; // General material used for blocks
std::vector<std::string> materials_; // Material names in each layer
std::vector<std::string> names_; // Names of each layer
std::vector<double> layerThick_; // Thickness of the material
std::vector<int> copyNumber_; // Copy numbers (initiated to 1)
std::vector<double> blockThick_; // Thickness of each section
int inOut_; // Number of inner+outer parts
std::vector<int> layerFrontIn_; // First layer index (inner) in block
std::vector<int> layerBackIn_; // Last layer index (inner) in block
std::vector<int> layerFrontOut_; // First layer index (outner) in block
std::vector<int> layerBackOut_; // Last layer index (outner) in block
std::vector<int> layerType_; // Type of the layer
std::vector<int> layerSense_; // Content of a layer
std::vector<int> maxModule_; // Maximum # of row/column
double zMinBlock_; // Starting z-value of the block
double rMaxFine_; // Maximum r-value for fine wafer
double waferW_; // Width of the wafer
double waferGap_; // Gap between 2 wafers
double absorbW_; // Width of the absorber
double absorbH_; // Height of the absorber
double rMax_; // Maximum radial extent
double rMaxB_; // Maximum radial extent of a block
std::string idName_; // Name of the "parent" volume.
std::string idNameSpace_; // Namespace of this and ALL sub-parts
std::unordered_set<int> copies_; // List of copy #'s
};
DDHGCalTBModuleX::DDHGCalTBModuleX() : factor_(0.5 * sqrt(2.0)), tan30deg_(tan(30._deg)) {
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX info: Creating instance";
#endif
}
DDHGCalTBModuleX::~DDHGCalTBModuleX() {}
void DDHGCalTBModuleX::initialize(const DDNumericArguments& nArgs,
const DDVectorArguments& vArgs,
const DDMapArguments&,
const DDStringArguments& sArgs,
const DDStringVectorArguments& vsArgs) {
wafer_ = vsArgs["WaferName"];
covers_ = vsArgs["CoverName"];
genMat_ = sArgs["GeneralMaterial"];
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: Material " << genMat_ << " with " << wafer_.size() << " wafers";
unsigned int i(0);
for (auto wafer : wafer_) {
edm::LogVerbatim("HGCalGeom") << "Wafer[" << i << "] " << wafer;
++i;
}
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: " << covers_.size() << " covers";
i = 0;
for (auto cover : covers_) {
edm::LogVerbatim("HGCalGeom") << "Cover[" << i << "] " << cover;
++i;
}
#endif
materials_ = vsArgs["MaterialNames"];
names_ = vsArgs["VolumeNames"];
layerThick_ = vArgs["Thickness"];
for (unsigned int k = 0; k < layerThick_.size(); ++k)
copyNumber_.emplace_back(1);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: " << materials_.size() << " types of volumes";
for (unsigned int i = 0; i < names_.size(); ++i)
edm::LogVerbatim("HGCalGeom") << "Volume [" << i << "] " << names_[i] << " of thickness " << layerThick_[i]
<< " filled with " << materials_[i] << " first copy number " << copyNumber_[i];
#endif
inOut_ = nArgs["InOut"];
blockThick_ = vArgs["BlockThick"];
layerFrontIn_ = dbl_to_int(vArgs["LayerFrontIn"]);
layerBackIn_ = dbl_to_int(vArgs["LayerBackIn"]);
if (inOut_ > 1) {
layerFrontOut_ = dbl_to_int(vArgs["LayerFrontOut"]);
layerBackOut_ = dbl_to_int(vArgs["LayerBackOut"]);
}
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: " << blockThick_.size() << " blocks with in/out " << inOut_;
for (unsigned int i = 0; i < blockThick_.size(); ++i) {
if (inOut_ > 1)
edm::LogVerbatim("HGCalGeom") << "Block [" << i << "] of thickness " << blockThick_[i] << " with inner layers "
<< layerFrontIn_[i] << ":" << layerBackIn_[i] << " and outer layers "
<< layerFrontOut_[i] << ":" << layerBackOut_[i];
else
edm::LogVerbatim("HGCalGeom") << "Block [" << i << "] of thickness " << blockThick_[i] << " with inner layers "
<< layerFrontIn_[i] << ":" << layerBackIn_[i];
}
#endif
layerType_ = dbl_to_int(vArgs["LayerType"]);
layerSense_ = dbl_to_int(vArgs["LayerSense"]);
maxModule_ = dbl_to_int(vArgs["MaxModule"]);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: " << layerType_.size() << " layers";
for (unsigned int i = 0; i < layerType_.size(); ++i)
edm::LogVerbatim("HGCalGeom") << "Layer [" << i << "] with material type " << layerType_[i] << " sensitive class "
<< layerSense_[i] << " and " << maxModule_[i] << " maximum row/columns";
#endif
zMinBlock_ = nArgs["zMinBlock"];
rMaxFine_ = nArgs["rMaxFine"];
waferW_ = nArgs["waferW"];
waferGap_ = nArgs["waferGap"];
absorbW_ = nArgs["absorberW"];
absorbH_ = nArgs["absorberH"];
rMax_ = nArgs["rMax"];
rMaxB_ = nArgs["rMaxB"];
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: zStart " << zMinBlock_ << " rFineCoarse " << rMaxFine_
<< " wafer width " << waferW_ << " gap among wafers " << waferGap_ << " absorber width "
<< absorbW_ << " absorber height " << absorbH_ << " rMax " << rMax_ << ":" << rMaxB_;
#endif
idNameSpace_ = DDCurrentNamespace::ns();
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: NameSpace " << idNameSpace_ << " Parent Name "
<< parent().name().name();
#endif
}
////////////////////////////////////////////////////////////////////
// DDHGCalTBModuleX methods...
////////////////////////////////////////////////////////////////////
void DDHGCalTBModuleX::execute(DDCompactView& cpv) {
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "==>> Constructing DDHGCalTBModuleX...";
#endif
copies_.clear();
constructBlocks(parent(), cpv);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << copies_.size() << " different wafer copy numbers";
#endif
copies_.clear();
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "<<== End of DDHGCalTBModuleX construction";
#endif
}
void DDHGCalTBModuleX::constructBlocks(const DDLogicalPart& parent, DDCompactView& cpv) {
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: Inside constructBlock";
#endif
double zi(zMinBlock_);
for (unsigned int i = 0; i < blockThick_.size(); i++) {
double zo = zi + blockThick_[i];
std::string name = parent.ddname().name() + "Block" + std::to_string(i);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: Block " << i << ":" << name << " z " << zi << ":" << zo << " R "
<< rMaxB_ << " T " << blockThick_[i];
#endif
DDName matName(DDSplit(genMat_).first, DDSplit(genMat_).second);
DDMaterial matter(matName);
DDSolid solid = DDSolidFactory::tubs(DDName(name, idNameSpace_), 0.5 * blockThick_[i], 0, rMaxB_, 0.0, 2._pi);
DDLogicalPart glog = DDLogicalPart(solid.ddname(), matter, solid);
double zz = zi + 0.5 * blockThick_[i];
DDTranslation r1(0, 0, zz);
DDRotation rot;
cpv.position(glog, parent, i, r1, rot);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: " << glog.name() << " number " << i << " positioned in "
<< parent.name() << " at " << r1 << " with " << rot;
#endif
constructLayers(i, layerFrontIn_[i], layerBackIn_[i], -0.5 * blockThick_[i], blockThick_[i], false, glog, cpv);
if (inOut_ > 1)
constructLayers(i, layerFrontOut_[i], layerBackOut_[i], -0.5 * blockThick_[i], blockThick_[i], true, glog, cpv);
zi = zo;
}
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: All blocks are "
<< "placed in " << zMinBlock_ << ":" << zi;
#endif
}
void DDHGCalTBModuleX::constructLayers(int block,
int firstLayer,
int lastLayer,
double zFront,
double totalWidth,
bool ignoreCenter,
const DDLogicalPart& module,
DDCompactView& cpv) {
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: \t\tInside Block " << block << " Layers " << firstLayer << ":"
<< lastLayer << " zFront " << zFront << " thickness " << totalWidth << " ignore Center "
<< ignoreCenter;
#endif
double zi(zFront), thickTot(0);
for (int ly = firstLayer; ly <= lastLayer; ++ly) {
int ii = layerType_[ly];
int copy = copyNumber_[ii];
double zz = zi + (0.5 * layerThick_[ii]);
double zo = zi + layerThick_[ii];
thickTot += layerThick_[ii];
std::string name = "HGCal" + names_[ii] + std::to_string(copy);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: " << name << " Layer " << ly << ":" << ii << " Z " << zi << ":"
<< zo << " Thick " << layerThick_[ii] << " Sense " << layerSense_[ly];
#endif
DDName matName(DDSplit(materials_[ii]).first, DDSplit(materials_[ii]).second);
DDMaterial matter(matName);
DDLogicalPart glog;
if (layerSense_[ly] == 0) {
DDSolid solid = DDSolidFactory::box(DDName(name, idNameSpace_), absorbW_, absorbH_, 0.5 * layerThick_[ii]);
glog = DDLogicalPart(solid.ddname(), matter, solid);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: " << solid.name() << " box of dimension " << absorbW_ << ":"
<< absorbH_ << ":" << 0.5 * layerThick_[ii];
#endif
DDTranslation r1(0, 0, zz);
DDRotation rot;
cpv.position(glog, module, copy, r1, rot);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: " << glog.name() << " number " << copy << " positioned in "
<< module.name() << " at " << r1 << " with " << rot;
#endif
} else if (layerSense_[ly] > 0) {
positionSensitive(zz, copy, layerSense_[ly], rMax_, maxModule_[ly], ignoreCenter, name, matter, module, cpv);
}
++copyNumber_[ii];
zi = zo;
} // End of loop over layers in a block
if (fabs(thickTot - totalWidth) < tolerance_) {
} else if (thickTot > totalWidth) {
edm::LogError("HGCalGeom") << "Thickness of the partition " << totalWidth << " is smaller than " << thickTot
<< ": total thickness of all its components in " << module.name() << " Layers "
<< firstLayer << ":" << lastLayer << ":" << ignoreCenter << "**** ERROR ****";
} else if (thickTot < totalWidth) {
edm::LogWarning("HGCalGeom") << "Thickness of the partition " << totalWidth << " does not match with " << thickTot
<< " of the components in " << module.name() << " Layers " << firstLayer << ":"
<< lastLayer << ":" << ignoreCenter;
}
}
void DDHGCalTBModuleX::positionSensitive(double zpos,
int copyIn,
int type,
double rout,
int ncrMax,
bool ignoreCenter,
const std::string& nameIn,
const DDMaterial& matter,
const DDLogicalPart& glog,
DDCompactView& cpv) {
double ww = (waferW_ + waferGap_);
double dx = 0.5 * ww;
double dy = 3.0 * dx * tan30deg_;
double rr = 2.0 * dx * tan30deg_;
int ncol = (int)(2.0 * rout / ww) + 1;
int nrow = (int)(rout / (ww * tan30deg_)) + 1;
#ifdef EDM_ML_DEBUG
int incm(0), inrm(0);
edm::LogVerbatim("HGCalGeom") << glog.ddname() << " Copy " << copyIn << " Type " << type << " rout " << rout
<< " Row " << nrow << " column " << ncol << " ncrMax " << ncrMax << " Z " << zpos
<< " Center " << ignoreCenter << " name " << nameIn << " matter " << matter.name();
int kount(0);
#endif
if (ncrMax >= 0) {
nrow = std::min(nrow, ncrMax);
ncol = std::min(ncol, ncrMax);
}
for (int nr = -nrow; nr <= nrow; ++nr) {
int inr = std::abs(nr);
for (int nc = -ncol; nc <= ncol; ++nc) {
int inc = std::abs(nc);
if ((inr % 2 == inc % 2) && (!ignoreCenter || nc != 0 || nr != 0)) {
double xpos = nc * dx;
double ypos = nr * dy;
double xc[6], yc[6];
xc[0] = xpos + dx;
yc[0] = ypos - 0.5 * rr;
xc[1] = xpos + dx;
yc[1] = ypos + 0.5 * rr;
xc[2] = xpos;
yc[2] = ypos + rr;
xc[3] = xpos - dx;
yc[3] = ypos + 0.5 * rr;
xc[4] = xpos + dx;
yc[4] = ypos - 0.5 * rr;
xc[5] = xpos;
yc[5] = ypos - rr;
bool cornerAll(true);
for (int k = 0; k < 6; ++k) {
double rpos = std::sqrt(xc[k] * xc[k] + yc[k] * yc[k]);
if (rpos > rout)
cornerAll = false;
}
if (cornerAll) {
double rpos = std::sqrt(xpos * xpos + ypos * ypos);
DDTranslation tran(xpos, ypos, zpos);
DDRotation rotation;
int copy = HGCalTypes::packTypeUV(0, nc, nr);
DDName name, nameX;
if (type == 1) {
nameX = DDName(DDSplit(covers_[0]).first, DDSplit(covers_[0]).second);
std::string name0 = nameIn + "M" + std::to_string(copy);
DDLogicalPart glog1 = DDLogicalPart(DDName(name0, idNameSpace_), matter, nameX);
cpv.position(glog1.ddname(), glog.ddname(), copyIn, tran, rotation);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom")
<< "DDHGCalTBModuleX: " << glog1.ddname() << " number " << copyIn << " positioned in " << glog.ddname()
<< " at " << tran << " with " << rotation;
#endif
name = (rpos < rMaxFine_) ? DDName(DDSplit(wafer_[0]).first, DDSplit(wafer_[0]).second)
: DDName(DDSplit(wafer_[1]).first, DDSplit(wafer_[1]).second);
DDTranslation tran1;
cpv.position(name, glog1.ddname(), copy, tran1, rotation);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: " << name << " number " << copy << " positioned in "
<< glog1.ddname() << " at " << tran1 << " with " << rotation;
#endif
if (copies_.count(copy) == 0 && type == 1)
copies_.insert(copy);
} else {
name = DDName(DDSplit(covers_[type - 1]).first, DDSplit(covers_[type - 1]).second);
copy += copyIn * 1000000;
cpv.position(name, glog.ddname(), copy, tran, rotation);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: " << name << " number " << copy << " positioned in "
<< glog.ddname() << " at " << tran << " with " << rotation;
#endif
}
#ifdef EDM_ML_DEBUG
if (inc > incm)
incm = inc;
if (inr > inrm)
inrm = inr;
kount++;
#endif
}
}
}
}
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalTBModuleX: # of columns " << incm << " # of rows " << inrm << " and "
<< kount << " wafers for " << glog.ddname();
#endif
}
DEFINE_EDM_PLUGIN(DDAlgorithmFactory, DDHGCalTBModuleX, "hgcal:DDHGCalTBModuleX");
|