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
|
#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"
#include "Geometry/HGCalCommonData/interface/HGCalWaferMask.h"
#include <string>
#include <vector>
#include <sstream>
//#define EDM_ML_DEBUG
class DDHGCalPassivePartial : public DDAlgorithm {
public:
// Constructor and Destructor
DDHGCalPassivePartial() = default;
~DDHGCalPassivePartial() override = default;
void initialize(const DDNumericArguments& nArgs,
const DDVectorArguments& vArgs,
const DDMapArguments& mArgs,
const DDStringArguments& sArgs,
const DDStringVectorArguments& vsArgs) override;
void execute(DDCompactView& cpv) override;
private:
std::string material_; // Material name for module with gap
double thick_; // Module thickness
double waferSize_; // Wafer size
double waferSepar_; // Sensor separation
std::vector<std::string> tags_; // Tags to be added to each name
std::vector<int> partialTypes_; // Type of partial wafer
std::vector<int> placementIndex_;
std::vector<std::string> placementIndexTags_; // Plaement index of the wafers
std::vector<std::string> layerNames_; // Names of the layers
std::vector<std::string> materials_; // Materials of the layers
std::vector<double> layerThick_; // Thickness of layers
std::vector<int> layerType_; // Types of layers
};
void DDHGCalPassivePartial::initialize(const DDNumericArguments& nArgs,
const DDVectorArguments& vArgs,
const DDMapArguments&,
const DDStringArguments& sArgs,
const DDStringVectorArguments& vsArgs) {
material_ = sArgs["ModuleMaterial"];
thick_ = nArgs["ModuleThickness"];
waferSize_ = nArgs["WaferSize"];
#ifdef EDM_ML_DEBUG
waferSepar_ = nArgs["SensorSeparation"];
edm::LogVerbatim("HGCalGeom") << "DDHGCalPassivePartial: Module " << parent().name() << " made of " << material_
<< " T " << thick_ << " Wafer 2r " << waferSize_ << " Half Separation " << waferSepar_;
#endif
tags_ = vsArgs["Tags"];
partialTypes_ = dbl_to_int(vArgs["PartialTypes"]);
placementIndex_ = dbl_to_int(vArgs["PlacementIndex"]);
placementIndexTags_ = vsArgs["PlacementIndexTags"];
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalPassivePartial: " << tags_.size() << " variations of wafer types";
for (unsigned int k = 0; k < tags_.size(); ++k) {
for (unsigned int m = 0; m < placementIndex_.size(); ++m) {
edm::LogVerbatim("HGCalGeom") << "Type[" << k << "] " << tags_[k] << " Partial " << partialTypes_[k]
<< " Placement Index " << placementIndex_[m] << " Tag " << placementIndexTags_[m];
}
}
#endif
layerNames_ = vsArgs["LayerNames"];
materials_ = vsArgs["LayerMaterials"];
layerThick_ = vArgs["LayerThickness"];
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalPassivePartial: " << layerNames_.size() << " types of volumes";
for (unsigned int i = 0; i < layerNames_.size(); ++i)
edm::LogVerbatim("HGCalGeom") << "Volume [" << i << "] " << layerNames_[i] << " of thickness " << layerThick_[i]
<< " filled with " << materials_[i];
#endif
layerType_ = dbl_to_int(vArgs["LayerType"]);
#ifdef EDM_ML_DEBUG
std::ostringstream st1;
for (unsigned int i = 0; i < layerType_.size(); ++i)
st1 << " [" << i << "] " << layerType_[i];
edm::LogVerbatim("HGCalGeom") << "There are " << layerType_.size() << " blocks" << st1.str();
#endif
}
void DDHGCalPassivePartial::execute(DDCompactView& cpv) {
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "==>> Executing DDHGCalPassivePartial...";
#endif
static constexpr double tol = 0.00001;
std::string parentName = parent().name().name();
// Loop over all types
for (unsigned int k = 0; k < tags_.size(); ++k) {
for (unsigned int m = 0; m < placementIndex_.size(); ++m) {
// First the mother
std::string mother = parentName + placementIndexTags_[m] + tags_[k];
std::vector<std::pair<double, double> > wxy =
HGCalWaferMask::waferXY(partialTypes_[k], placementIndex_[m], waferSize_, 0.0, 0.0, 0.0, false);
std::vector<double> xM, yM;
for (unsigned int i = 0; i < (wxy.size() - 1); ++i) {
xM.emplace_back(wxy[i].first);
yM.emplace_back(wxy[i].second);
}
std::vector<double> zw = {-0.5 * thick_, 0.5 * thick_};
std::vector<double> zx(2, 0), zy(2, 0), scale(2, 1.0);
DDSolid solid = DDSolidFactory::extrudedpolygon(mother, xM, yM, zw, zx, zy, scale);
DDName matName(DDSplit(material_).first, DDSplit(material_).second);
DDMaterial matter(matName);
DDLogicalPart glogM = DDLogicalPart(solid.ddname(), matter, solid);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalPassivePartial: " << solid.name() << " extruded polygon made of "
<< matName << " z|x|y|s (0) " << zw[0] << ":" << zx[0] << ":" << zy[0] << ":"
<< scale[0] << " z|x|y|s (1) " << zw[1] << ":" << zx[1] << ":" << zy[1] << ":"
<< scale[1] << " partial " << partialTypes_[k] << " placement index "
<< placementIndex_[m] << " and " << xM.size() << " edges";
for (unsigned int j = 0; j < xM.size(); ++j)
edm::LogVerbatim("HGCalGeom") << "[" << j << "] " << xM[j] << ":" << yM[j];
#endif
// Then the layers
std::vector<DDLogicalPart> glogs(materials_.size());
std::vector<int> copyNumber(materials_.size(), 1);
double zi(-0.5 * thick_), thickTot(0.0);
for (unsigned int l = 0; l < layerType_.size(); l++) {
unsigned int i = layerType_[l];
wxy = HGCalWaferMask::waferXY(partialTypes_[k], placementIndex_[m], waferSize_, 0.0, 0.0, 0.0, false);
std::vector<double> xL, yL;
for (unsigned int i0 = 0; i0 < (wxy.size() - 1); ++i0) {
xL.emplace_back(wxy[i0].first);
yL.emplace_back(wxy[i0].second);
}
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalPassivePartial:Layer " << l << ":" << i << " T " << layerThick_[i]
<< " Copy " << copyNumber[i] << " Partial type " << partialTypes_[k];
#endif
DDRotation rot;
if (copyNumber[i] == 1) {
zw[0] = -0.5 * layerThick_[i];
zw[1] = 0.5 * layerThick_[i];
std::string lname = mother + layerNames_[i];
solid = DDSolidFactory::extrudedpolygon(lname, xL, yL, zw, zx, zy, scale);
DDName matN(DDSplit(materials_[i]).first, DDSplit(materials_[i]).second);
DDMaterial matter(matN);
glogs[i] = DDLogicalPart(solid.ddname(), matter, solid);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalPassivePartial: " << solid.name() << " extruded polygon made of "
<< matN << " z|x|y|s (0) " << zw[0] << ":" << zx[0] << ":" << zy[0] << ":"
<< scale[0] << " z|x|y|s (1) " << zw[1] << ":" << zx[1] << ":" << zy[1] << ":"
<< scale[1] << " partial " << partialTypes_[k] << " placement index "
<< placementIndex_[m] << " and " << xL.size() << " edges";
for (unsigned int j = 0; j < xL.size(); ++j)
edm::LogVerbatim("HGCalGeom") << "[" << j << "] " << xL[j] << ":" << yL[j];
#endif
}
DDTranslation tran(0, 0, (zi + 0.5 * layerThick_[i]));
cpv.position(glogs[i], glogM, copyNumber[i], tran, rot);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HGCalGeom") << "DDHGCalPassivePartial: " << glogs[i].name() << " number " << copyNumber[i]
<< " positioned in " << glogM.name() << " at " << tran << " with no rotation";
#endif
++copyNumber[i];
zi += layerThick_[i];
thickTot += layerThick_[i];
}
if ((std::abs(thickTot - thick_) >= tol) && (!layerType_.empty())) {
if (thickTot > thick_) {
edm::LogError("HGCalGeom") << "Thickness of the partition " << thick_ << " is smaller than " << thickTot
<< ": thickness of all its components **** ERROR ****";
} else {
edm::LogWarning("HGCalGeom") << "Thickness of the partition " << thick_ << " does not match with " << thickTot
<< " of the components";
}
}
}
}
}
DEFINE_EDM_PLUGIN(DDAlgorithmFactory, DDHGCalPassivePartial, "hgcal:DDHGCalPassivePartial");
|