30 #include <unordered_set> 54 static constexpr
double tol1_ = 0.01;
55 static constexpr
double tol2_ = 0.00001;
96 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: Creating an instance";
105 waferTypes_ =
static_cast<int>(nArgs[
"WaferTypes"]);
106 facingTypes_ =
static_cast<int>(nArgs[
"FacingTypes"]);
107 partialTypes_ =
static_cast<int>(nArgs[
"PartialTypes"]);
108 orientationTypes_ =
static_cast<int>(nArgs[
"OrientationTypes"]);
110 edm::LogVerbatim(
"HGCalGeom") <<
"Number of types of wafers: " << waferTypes_ <<
" facings: " << facingTypes_
111 <<
" partials: " << partialTypes_ <<
" Orientations: " << orientationTypes_;
113 firstLayer_ =
static_cast<int>(nArgs[
"FirstLayer"]);
114 absorbMode_ =
static_cast<int>(nArgs[
"AbsorberMode"]);
115 sensitiveMode_ =
static_cast<int>(nArgs[
"SensitiveMode"]);
118 <<
"Absober:Sensitive mode " << absorbMode_ <<
":" << sensitiveMode_;
120 zMinBlock_ = nArgs[
"zMinBlock"];
121 waferSize_ = nArgs[
"waferSize"];
122 waferSepar_ = nArgs[
"SensorSeparation"];
123 sectors_ = (
int)(nArgs[
"Sectors"]);
124 alpha_ = (1._pi) / sectors_;
125 cosAlpha_ =
cos(alpha_);
126 rotstr_ = sArgs[
"LayerRotation"];
128 edm::LogVerbatim(
"HGCalGeom") <<
"zStart " << zMinBlock_ <<
" wafer width " << waferSize_ <<
" separations " 129 << waferSepar_ <<
" sectors " << sectors_ <<
":" <<
convertRadToDeg(alpha_) <<
":" 130 << cosAlpha_ <<
" rotation matrix " << rotstr_;
132 waferFull_ = vsArgs[
"WaferNamesFull"];
133 waferPart_ = vsArgs[
"WaferNamesPartial"];
135 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: " << waferFull_.size() <<
" full and " << waferPart_.size()
136 <<
" partial modules\nDDHGCalSiliconModule:Full Modules:";
137 unsigned int i1max =
static_cast<unsigned int>(waferFull_.size());
138 for (
unsigned int i1 = 0;
i1 < i1max;
i1 += 2) {
139 std::ostringstream st1;
141 for (
unsigned int i =
i1;
i <
i2; ++
i)
142 st1 <<
" [" <<
i <<
"] " << waferFull_[
i];
146 i1max =
static_cast<unsigned int>(waferPart_.size());
147 for (
unsigned int i1 = 0;
i1 < i1max;
i1 += 2) {
148 std::ostringstream st1;
150 for (
unsigned int i =
i1;
i <
i2; ++
i)
151 st1 <<
" [" <<
i <<
"] " << waferPart_[
i];
155 materials_ = vsArgs[
"MaterialNames"];
156 names_ = vsArgs[
"VolumeNames"];
157 thick_ = vArgs[
"Thickness"];
158 copyNumber_.resize(materials_.size(), 1);
160 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: " << materials_.size() <<
" types of volumes";
161 for (
unsigned int i = 0;
i < names_.size(); ++
i)
162 edm::LogVerbatim(
"HGCalGeom") <<
"Volume [" <<
i <<
"] " << names_[
i] <<
" of thickness " << thick_[
i]
163 <<
" filled with " << materials_[
i] <<
" first copy number " << copyNumber_[
i];
166 layerThick_ = vArgs[
"LayerThick"];
168 edm::LogVerbatim(
"HGCalGeom") <<
"There are " << layers_.size() <<
" blocks";
169 for (
unsigned int i = 0;
i < layers_.size(); ++
i)
170 edm::LogVerbatim(
"HGCalGeom") <<
"Block [" <<
i <<
"] of thickness " << layerThick_[
i] <<
" with " << layers_[
i]
174 layerSense_ =
dbl_to_int(vArgs[
"LayerSense"]);
175 layerTypes_ =
dbl_to_int(vArgs[
"LayerTypes"]);
177 for (
unsigned int i = 0;
i < layerTypes_.size(); ++
i)
180 if (firstLayer_ > 0) {
181 for (
unsigned int i = 0;
i < layerType_.size(); ++
i) {
182 if (layerSense_[
i] > 0) {
183 int ii = layerType_[
i];
184 copyNumber_[
ii] = (layerSense_[
i] == 1) ? firstLayer_ : (firstLayer_ + 1);
186 edm::LogVerbatim(
"HGCalGeom") <<
"First copy number for layer type " <<
i <<
":" <<
ii <<
" with " 187 << materials_[
ii] <<
" changed to " << copyNumber_[
ii];
195 edm::LogVerbatim(
"HGCalGeom") <<
"There are " << layerType_.size() <<
" layers";
196 for (
unsigned int i = 0;
i < layerType_.size(); ++
i)
197 edm::LogVerbatim(
"HGCalGeom") <<
"Layer [" <<
i <<
"] with material type " << layerType_[
i] <<
" sensitive class " 200 slopeB_ = vArgs[
"SlopeBottom"];
201 zFrontB_ = vArgs[
"ZFrontBottom"];
202 rMinFront_ = vArgs[
"RMinFront"];
203 slopeT_ = vArgs[
"SlopeTop"];
204 zFrontT_ = vArgs[
"ZFrontTop"];
205 rMaxFront_ = vArgs[
"RMaxFront"];
207 for (
unsigned int i = 0;
i < slopeB_.size(); ++
i)
208 edm::LogVerbatim(
"HGCalGeom") <<
"Bottom Block [" <<
i <<
"] Zmin " << zFrontB_[
i] <<
" Rmin " << rMinFront_[
i]
209 <<
" Slope " << slopeB_[
i];
210 for (
unsigned int i = 0;
i < slopeT_.size(); ++
i)
211 edm::LogVerbatim(
"HGCalGeom") <<
"Top Block [" <<
i <<
"] Zmin " << zFrontT_[
i] <<
" Rmax " << rMaxFront_[
i]
212 <<
" Slope " << slopeT_[
i];
214 waferIndex_ =
dbl_to_int(vArgs[
"WaferIndex"]);
215 waferProperty_ =
dbl_to_int(vArgs[
"WaferProperties"]);
216 waferLayerStart_ =
dbl_to_int(vArgs[
"WaferLayerStart"]);
218 edm::LogVerbatim(
"HGCalGeom") <<
"waferProperties with " << waferIndex_.size() <<
" entries in " 219 << waferLayerStart_.size() <<
" layers";
220 for (
unsigned int k = 0;
k < waferLayerStart_.size(); ++
k)
222 for (
unsigned int k = 0;
k < waferIndex_.size(); ++
k)
233 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: NameSpace " << nameSpace_;
243 edm::LogVerbatim(
"HGCalGeom") <<
"==>> Constructing DDHGCalSiliconModule...";
248 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: " << copies_.size() <<
" different wafer copy numbers";
250 for (std::unordered_set<int>::const_iterator itr = copies_.begin(); itr != copies_.end(); ++itr, ++
k) {
254 edm::LogVerbatim(
"HGCalGeom") <<
"<<== End of DDHGCalSiliconModule construction...";
262 double zi(zMinBlock_);
264 for (
unsigned int i = 0;
i < layers_.size();
i++) {
265 double zo = zi + layerThick_[
i];
267 int laymax = laymin + layers_[
i];
270 for (
int ly = laymin; ly < laymax; ++ly) {
271 int ii = layerType_[ly];
272 int copy = copyNumber_[
ii];
273 double hthick = 0.5 * thick_[
ii];
276 thickTot += thick_[
ii];
280 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: Layer " << ly <<
":" <<
ii <<
" Front " << zi <<
", " 281 << routF <<
" Back " << zo <<
", " << rinB <<
" superlayer thickness " 287 if (layerSense_[ly] < 1) {
288 std::vector<double> pgonZ, pgonRin, pgonRout;
289 double rmax = routF * cosAlpha_ - tol1_;
302 for (
unsigned int isec = 0; isec < pgonZ.size(); ++isec) {
304 if (layerSense_[ly] == 0 || absorbMode_ == 0)
305 pgonRout[isec] = rmax;
307 pgonRout[isec] = pgonRout[isec] * cosAlpha_ - tol1_;
313 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: " << solid.
name() <<
" polyhedra of " << sectors_
316 <<
" sections and filled with " << matName;
317 for (
unsigned int k = 0;
k < pgonZ.size(); ++
k)
318 edm::LogVerbatim(
"HGCalGeom") <<
"[" <<
k <<
"] z " << pgonZ[
k] <<
" R " << pgonRin[
k] <<
":" << pgonRout[
k];
328 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: " << solid.
name() <<
" Tubs made of " << matName
329 <<
" of dimensions " << rinB <<
":" << rins <<
", " << routF <<
":" << routs
330 <<
", " << hthick <<
", 0.0, 360.0 and position " << glog.
name() <<
" number " 331 <<
copy <<
":" << layerTypes_[
copy - firstLayer_];
333 positionSensitive(glog, (
copy - firstLayer_), cpv);
347 int inc = ((layerSense_[ly] > 0) && (facingTypes_ > 1)) ? 2 : 1;
348 copyNumber_[
ii] =
copy + inc;
351 <<
" positioned in " <<
module.name() <<
" at " <<
r1 <<
" with " <<
rotName 359 if (
std::abs(thickTot - layerThick_[
i]) >= tol2_) {
360 if (thickTot > layerThick_[
i]) {
361 edm::LogError(
"HGCalGeom") <<
"Thickness of the partition " << layerThick_[
i] <<
" is smaller than " << thickTot
362 <<
": thickness of all its components **** ERROR ****";
364 edm::LogWarning(
"HGCalGeom") <<
"Thickness of the partition " << layerThick_[
i] <<
" does not match with " 365 << thickTot <<
" of the components";
372 static const double sqrt3 =
std::sqrt(3.0);
378 int firstWafer = waferLayerStart_[
layer];
379 int lastWafer = ((
layer + 1 <
static_cast<int>(waferLayerStart_.size())) ? waferLayerStart_[
layer + 1]
380 :
static_cast<int>(waferIndex_.size()));
381 double r = 0.5 * (waferSize_ + waferSepar_);
382 double R = 2.0 *
r / sqrt3;
383 double dy = 0.75 *
R;
384 const auto& xyoff = geomTools_.shiftXY(layercenter, (waferSize_ + waferSepar_));
386 int ium(0), ivm(0), kount(0);
387 std::vector<int> ntype(3, 0);
389 <<
dy <<
" Shift " << xyoff.first <<
":" << xyoff.second <<
" WaferSize " 390 << (waferSize_ + waferSepar_) <<
" index " << firstWafer <<
":" << (lastWafer - 1);
392 for (
int k = firstWafer;
k < lastWafer; ++
k) {
401 double xpos = xyoff.first + nc *
r;
402 double ypos = xyoff.second +
nr *
dy;
409 i = layertype * waferTypes_ +
type;
410 wafer = waferFull_[
i];
412 i = (
part - 1) * waferTypes_ * facingTypes_ * orientationTypes_ + layertype * waferTypes_ * orientationTypes_ +
413 type * orientationTypes_ + orien;
416 <<
":" << orien <<
":" <<
i <<
":" << waferPart_.size();
418 wafer = waferPart_[
i];
423 <<
" Wafer " << wafer <<
" number " <<
copy <<
" type:part:orien:ind " <<
type <<
":" 424 <<
part <<
":" << orien <<
":" <<
i <<
" layer:u:v:indx " << (
layer + firstLayer_)
425 <<
":" << u <<
":" <<
v;
431 if (copies_.count(
copy) == 0)
432 copies_.insert(
copy);
441 <<
":" <<
type <<
" positioned in " << glog.
ddname() <<
" at " << tran
442 <<
" with no rotation";
446 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalSiliconModule: Maximum # of u " << ium <<
" # of v " << ivm <<
" and " 447 << kount <<
" wafers (" << ntype[0] <<
":" << ntype[1] <<
":" << ntype[2] <<
") for " std::vector< double > rMaxFront_
Log< level::Info, true > LogVerbatim
static AlgebraicMatrix initialize()
static constexpr int32_t WaferCenteredRotated
static constexpr int32_t WaferCenter
std::vector< double > zFrontT_
std::vector< int > layerSense_
void position(const DDLogicalPart &self, const DDLogicalPart &parent, const std::string ©no, const DDTranslation &trans, const DDRotation &rot, const DDDivision *div=nullptr)
void positionSensitive(const DDLogicalPart &glog, int layer, DDCompactView &cpv)
DDMaterial is used to define and access material information.
int32_t waferU(const int32_t index)
int32_t waferLayer(const int32_t index)
static constexpr int32_t CornerCenterYm
constexpr NumType convertRadToDeg(NumType radians)
std::vector< std::string > materials_
std::vector< double > slopeT_
void constructLayers(const DDLogicalPart &, DDCompactView &cpv)
DDName is used to identify DDD entities uniquely.
std::string to_string(const V &value)
std::vector< int > waferIndex_
static std::string & ns()
std::vector< double > thick_
std::vector< int > layers_
Log< level::Error, false > LogError
std::vector< int > layerTypes_
Compact representation of the geometrical detector hierarchy.
int32_t waferOrient(const int32_t property)
A DDSolid represents the shape of a part.
std::vector< int > waferProperty_
constexpr std::array< uint8_t, layerIndexSize > layer
Represents a uniquely identifyable rotation matrix.
static const std::string & rotName(const T &rot, const cms::DDParsingContext &context)
U second(std::pair< T, U > const &p)
HGCalGeomTools geomTools_
static constexpr int32_t WaferFull
std::vector< double > layerThick_
void initialize(const DDNumericArguments &nArgs, const DDVectorArguments &vArgs, const DDMapArguments &mArgs, const DDStringArguments &sArgs, const DDStringVectorArguments &vsArgs) override
std::vector< std::string > names_
Cos< T >::type cos(const T &t)
Abs< T >::type abs(const T &t)
void constructLayers(const cms::DDNamespace &ns, const std::vector< std::string > &wafers, const std::vector< std::string > &covers, const std::vector< int > &layerType, const std::vector< int > &layerSense, const std::vector< int > &maxModule, const std::vector< std::string > &names, const std::vector< std::string > &materials, std::vector< int > ©Number, const std::vector< double > &layerThick, const double &absorbW, const double &absorbH, const double &waferTot, const double &rMax, const double &rMaxFine, std::unordered_set< int > &copies, int firstLayer, int lastLayer, double zFront, double totalWidth, bool ignoreCenter, dd4hep::Volume &module)
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
void execute(DDCompactView &cpv) override
static DDSolid tubs(const DDName &name, double zhalf, double rIn, double rOut, double startPhi, double deltaPhi)
int32_t waferThick(const int32_t property)
std::vector< int > copyNumber_
static constexpr int32_t CornerCenterYp
std::vector< int > dbl_to_int(const std::vector< double > &vecdbl)
Converts a std::vector of doubles to a std::vector of int.
static constexpr int32_t WaferCenteredBack
std::vector< int > waferLayerStart_
std::vector< double > zFrontB_
std::vector< std::string > waferPart_
static constexpr int32_t CornerCenteredLambda
std::vector< std::string > waferFull_
int32_t waferPartial(const int32_t property)
static constexpr int32_t CornerCenteredY
std::unordered_set< int > copies_
std::vector< double > rMinFront_
int32_t waferV(const int32_t index)
std::vector< int > layerType_
static int32_t packTypeUV(int type, int u, int v)
#define DEFINE_EDM_PLUGIN(factory, type, name)
Log< level::Warning, false > LogWarning
std::pair< std::string, std::string > DDSplit(const std::string &n)
split into (name,namespace), separator = ':'
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
static DDSolid polyhedra(const DDName &name, int sides, double startPhi, double deltaPhi, const std::vector< double > &z, const std::vector< double > &rmin, const std::vector< double > &rmax)
Creates a polyhedra (refere to Geant3 or Geant4 documentation)
std::vector< double > slopeB_