10 #include <unordered_set> 19 #include "DD4hep/DetFactoryHelper.h" 35 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: Creating an instance";
37 static constexpr double tol1 = 0.01 * dd4hep::mm;
38 static constexpr double tol2 = 0.00001 * dd4hep::mm;
41 waferTypes_ =
args.value<
int>(
"WaferTypes");
42 facingTypes_ =
args.value<
int>(
"FacingTypes");
43 partialTypes_ =
args.value<
int>(
"PartialTypes");
44 orientationTypes_ =
args.value<
int>(
"OrientationTypes");
46 edm::LogVerbatim(
"HGCalGeom") <<
"Number of types of wafers: " << waferTypes_ <<
" facings: " << facingTypes_
47 <<
" partials: " << partialTypes_ <<
" Orientations: " << orientationTypes_;
49 firstLayer_ =
args.value<
int>(
"FirstLayer");
50 absorbMode_ =
args.value<
int>(
"AbsorberMode");
51 sensitiveMode_ =
args.value<
int>(
"SensitiveMode");
54 <<
"Absober:Sensitive mode " << absorbMode_ <<
":" << sensitiveMode_;
56 zMinBlock_ =
args.value<
double>(
"zMinBlock");
57 waferSize_ =
args.value<
double>(
"waferSize");
58 waferSepar_ =
args.value<
double>(
"SensorSeparation");
59 sectors_ =
args.value<
int>(
"Sectors");
60 alpha_ = (1._pi) / sectors_;
61 cosAlpha_ =
cos(alpha_);
66 <<
" sectors " << sectors_ <<
":" <<
convertRadToDeg(alpha_) <<
":" << cosAlpha_
67 <<
" rotation matrix " << rotstr_;
69 waferFull_ =
args.value<std::vector<std::string>>(
"WaferNamesFull");
70 waferPart_ =
args.value<std::vector<std::string>>(
"WaferNamesPartial");
72 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: " << waferFull_.size() <<
" full and " << waferPart_.size()
73 <<
" partial modules\nDDHGCalSiliconModule:Full Modules:";
74 unsigned int i1max =
static_cast<unsigned int>(waferFull_.size());
75 for (
unsigned int i1 = 0;
i1 < i1max;
i1 += 2) {
76 std::ostringstream st1;
78 for (
unsigned int i =
i1;
i <
i2; ++
i)
79 st1 <<
" [" <<
i <<
"] " << waferFull_[
i];
83 i1max =
static_cast<unsigned int>(waferPart_.size());
84 for (
unsigned int i1 = 0;
i1 < i1max;
i1 += 2) {
85 std::ostringstream st1;
87 for (
unsigned int i =
i1;
i <
i2; ++
i)
88 st1 <<
" [" <<
i <<
"] " << waferPart_[
i];
92 materials_ =
args.value<std::vector<std::string>>(
"MaterialNames");
93 names_ =
args.value<std::vector<std::string>>(
"VolumeNames");
94 thick_ =
args.value<std::vector<double>>(
"Thickness");
95 copyNumber_.resize(materials_.size(), 1);
97 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: " << materials_.size() <<
" types of volumes";
98 for (
unsigned int i = 0;
i < names_.size(); ++
i)
99 edm::LogVerbatim(
"HGCalGeom") <<
"Volume [" <<
i <<
"] " << names_[
i] <<
" of thickness " 101 <<
" first copy number " << copyNumber_[
i];
103 layers_ =
args.value<std::vector<int>>(
"Layers");
104 layerThick_ =
args.value<std::vector<double>>(
"LayerThick");
106 edm::LogVerbatim(
"HGCalGeom") <<
"There are " << layers_.size() <<
" blocks";
107 for (
unsigned int i = 0;
i < layers_.size(); ++
i)
109 <<
" with " << layers_[
i] <<
" layers";
111 layerType_ =
args.value<std::vector<int>>(
"LayerType");
112 layerSense_ =
args.value<std::vector<int>>(
"LayerSense");
113 layerOrient_ =
args.value<std::vector<int>>(
"LayerTypes");
114 for (
unsigned int k = 0;
k < layerOrient_.size(); ++
k)
117 for (
unsigned int i = 0;
i < layerOrient_.size(); ++
i)
120 if (firstLayer_ > 0) {
121 for (
unsigned int i = 0;
i < layerType_.size(); ++
i) {
122 if (layerSense_[
i] > 0) {
123 int ii = layerType_[
i];
124 copyNumber_[
ii] = (layerSense_[
i] == 1) ? firstLayer_ : (firstLayer_ + 1);
126 edm::LogVerbatim(
"HGCalGeom") <<
"First copy number for layer type " <<
i <<
":" <<
ii <<
" with " 127 << materials_[
ii] <<
" changed to " << copyNumber_[
ii];
135 edm::LogVerbatim(
"HGCalGeom") <<
"There are " << layerType_.size() <<
" layers";
136 for (
unsigned int i = 0;
i < layerType_.size(); ++
i)
137 edm::LogVerbatim(
"HGCalGeom") <<
"Layer [" <<
i <<
"] with material type " << layerType_[
i] <<
" sensitive class " 140 slopeB_ =
args.value<std::vector<double>>(
"SlopeBottom");
141 zFrontB_ =
args.value<std::vector<double>>(
"ZFrontBottom");
142 rMinFront_ =
args.value<std::vector<double>>(
"RMinFront");
143 slopeT_ =
args.value<std::vector<double>>(
"SlopeTop");
144 zFrontT_ =
args.value<std::vector<double>>(
"ZFrontTop");
145 rMaxFront_ =
args.value<std::vector<double>>(
"RMaxFront");
147 for (
unsigned int i = 0;
i < slopeB_.size(); ++
i)
150 for (
unsigned int i = 0;
i < slopeT_.size(); ++
i)
154 waferIndex_ =
args.value<std::vector<int>>(
"WaferIndex");
155 waferProperty_ =
args.value<std::vector<int>>(
"WaferProperties");
156 waferLayerStart_ =
args.value<std::vector<int>>(
"WaferLayerStart");
158 edm::LogVerbatim(
"HGCalGeom") <<
"waferProperties with " << waferIndex_.size() <<
" entries in " 159 << waferLayerStart_.size() <<
" layers";
160 for (
unsigned int k = 0;
k < waferLayerStart_.size(); ++
k)
162 for (
unsigned int k = 0;
k < waferIndex_.size(); ++
k)
174 edm::LogVerbatim(
"HGCalGeom") <<
"==>> Constructing DDHGCalSiliconModule...";
178 double zi(zMinBlock_);
180 for (
unsigned int i = 0;
i < layers_.size(); ++
i) {
181 double zo = zi + layerThick_[
i];
183 int laymax = laymin + layers_[
i];
186 for (
int ly = laymin; ly < laymax; ++ly) {
187 int ii = layerType_[ly];
188 int copy = copyNumber_[
ii];
189 double hthick = 0.5 * thick_[
ii];
192 thickTot += thick_[
ii];
196 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: Layer " << ly <<
":" <<
ii <<
" Front " 205 if (layerSense_[ly] < 1) {
206 std::vector<double> pgonZ, pgonRin, pgonRout;
207 double rmax = routF * cosAlpha_ - tol1;
220 for (
unsigned int isec = 0;
isec < pgonZ.size(); ++
isec) {
222 if (layerSense_[ly] == 0 || absorbMode_ == 0)
223 pgonRout[
isec] = rmax;
225 pgonRout[
isec] = pgonRout[
isec] * cosAlpha_ - tol1;
227 dd4hep::Solid solid =
dd4hep::Polyhedra(sectors_, -alpha_, 2._pi, pgonZ, pgonRin, pgonRout);
232 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: " << solid.name() <<
" polyhedra of " << sectors_
235 <<
" sections and filled with " << matter.name();
236 for (
unsigned int k = 0;
k < pgonZ.size(); ++
k)
245 dd4hep::Solid solid = dd4hep::Tube(rins, routs, hthick, 0.0, 2._pi);
251 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: " << solid.name() <<
" Tubs made of " << matter.name()
254 <<
cms::convert2mm(hthick) <<
", 0.0, 360.0 and position " << glog.name()
255 <<
" number " <<
copy <<
":" << layerOrient_[
copy - firstLayer_];
257 positionSensitive(ctxt,
e, glog, (
copy - firstLayer_));
261 dd4hep::Rotation3D
rot;
271 mother.placeVolume(glog,
copy, dd4hep::Transform3D(
rot, r1));
272 int inc = ((layerSense_[ly] > 0) && (facingTypes_ > 1)) ? 2 : 1;
273 copyNumber_[
ii] =
copy + inc;
277 <<
") with " <<
rotName <<
" rotation";
284 if (
std::abs(thickTot - layerThick_[
i]) >= tol2) {
285 if (thickTot > layerThick_[
i]) {
288 <<
": thickness of all its components **** ERROR ****";
291 <<
" does not match with " <<
cms::convert2mm(thickTot) <<
" of the components";
297 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: " << copies_.size() <<
" different wafer copy numbers";
299 for (std::unordered_set<int>::const_iterator itr = copies_.begin(); itr != copies_.end(); ++itr, ++
k) {
303 edm::LogVerbatim(
"HGCalGeom") <<
"<<== End of DDHGCalSiliconModule construction...";
309 static const double sqrt3 =
std::sqrt(3.0);
310 int layercenter = layerOrient_[layer];
312 int firstWafer = waferLayerStart_[layer];
313 int lastWafer = ((layer + 1 <
static_cast<int>(waferLayerStart_.size())) ? waferLayerStart_[layer + 1]
314 :
static_cast<int>(waferIndex_.size()));
315 double r = 0.5 * (waferSize_ + waferSepar_);
316 double R = 2.0 * r / sqrt3;
317 double dy = 0.75 *
R;
318 const auto& xyoff = geomTools_.shiftXY(layercenter, (waferSize_ + waferSepar_));
320 int ium(0), ivm(0), kount(0);
321 std::vector<int> ntype(3, 0);
325 <<
" WaferSize " <<
cms::convert2mm((waferSize_ + waferSepar_)) <<
" index " 326 << firstWafer <<
":" << (lastWafer - 1);
328 for (
int k = firstWafer;
k < lastWafer; ++
k) {
337 double xpos = xyoff.first + nc * r;
338 double ypos = xyoff.second +
nr *
dy;
345 i = layertype * waferTypes_ +
type;
346 wafer = waferFull_[
i];
348 i = (
part - 1) * waferTypes_ * facingTypes_ * orientationTypes_ + layertype * waferTypes_ * orientationTypes_ +
349 type * orientationTypes_ + orien;
352 <<
":" << orien <<
":" <<
i <<
":" << waferPart_.size();
354 wafer = waferPart_[
i];
359 <<
" Wafer " << wafer <<
" number " <<
copy <<
" type:part:orien:ind " <<
type 360 <<
":" <<
part <<
":" << orien <<
":" <<
i <<
" layer:u:v:indx " 361 << (layer + firstLayer_) <<
":" << u <<
":" <<
v;
367 if (copies_.count(
copy) == 0)
368 copies_.insert(
copy);
371 glog.placeVolume(ns.
volume(wafer),
copy, tran);
374 edm::LogVerbatim(
"HGCalGeom") <<
" DDHGCalSiliconModule: " << wafer <<
" number " <<
copy <<
" type " << layertype
375 <<
":" <<
type <<
" positioned in " << glog.name() <<
" at (" 381 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: Maximum # of u " << ium <<
" # of v " << ivm <<
" and " 382 << kount <<
" wafers (" << ntype[0] <<
":" << ntype[1] <<
":" << ntype[2] <<
") for " Log< level::Info, true > LogVerbatim
std::unordered_set< int > copies_
const dd4hep::Rotation3D & rotation(const std::string &name) const
std::vector< double > slopeT_
std::vector< double > slopeB_
int32_t waferU(const int32_t index)
int32_t waferLayer(const int32_t index)
std::vector< int > copyNumber_
constexpr NumType convertRadToDeg(NumType radians)
constexpr NumType convert2mm(NumType length)
std::vector< int > layerOrient_
std::vector< int > layerSense_
Log< level::Error, false > LogError
dd4hep::Material material(const std::string &name) const
int32_t waferOrient(const int32_t property)
static std::string to_string(const XMLCh *ch)
std::vector< double > zFrontT_
static const std::string & rotName(const T &rot, const cms::DDParsingContext &context)
HGCalGeomTools geomTools_
#define DECLARE_DDCMS_DETELEMENT(name, func)
static constexpr int32_t WaferFull
std::vector< double > zFrontB_
static constexpr long s_executed
std::string_view name() const
std::vector< double > thick_
Cos< T >::type cos(const T &t)
Abs< T >::type abs(const T &t)
std::vector< std::string > names_
int32_t waferThick(const int32_t property)
std::vector< int > waferProperty_
static long algorithm(dd4hep::Detector &, cms::DDParsingContext &ctxt, xml_h e)
std::vector< std::string > waferPart_
std::vector< double > rMaxFront_
static constexpr int32_t WaferCenterR
std::vector< int > waferLayerStart_
std::vector< std::string > materials_
std::vector< int > layerType_
void positionSensitive(cms::DDParsingContext &ctxt, xml_h e, const dd4hep::Volume &glog, int layer)
int32_t waferPartial(const int32_t property)
int32_t waferV(const int32_t index)
static int32_t packTypeUV(int type, int u, int v)
std::vector< int > layers_
Log< level::Warning, false > LogWarning
static int32_t layerType(int type)
std::vector< std::string > waferFull_
std::vector< double > rMinFront_
dd4hep::Volume addVolumeNS(dd4hep::Volume vol) const
static constexpr int32_t WaferCenterB
std::vector< int > waferIndex_
std::vector< double > layerThick_
dd4hep::Volume volume(const std::string &name, bool exc=true) const
dd4hep::Solid addSolidNS(const std::string &name, dd4hep::Solid solid) const
HGCalSiliconModule(cms::DDParsingContext &ctxt, xml_h e)
std::string prepend(const std::string &) const