9 #include "DD4hep/DetFactoryHelper.h"
20 #include <unordered_set>
22 using namespace angle_units::operators;
27 static constexpr
double tol = 0.01 * dd4hep::mm;
28 static constexpr
double tol2 = 0.00001 * dd4hep::mm;
30 const auto& wafer = args.
value<std::vector<std::string> >(
"WaferName");
31 auto materials = args.
value<std::vector<std::string> >(
"MaterialNames");
32 const auto&
names = args.
value<std::vector<std::string> >(
"VolumeNames");
33 const auto& thick = args.
value<std::vector<double> >(
"Thickness");
34 std::vector<int> copyNumber;
35 copyNumber.resize(materials.size(), 1);
36 for (
unsigned int i = 0;
i < materials.size(); ++
i) {
37 if (materials[
i] ==
"materials:M_NEMAFR4plate")
38 materials[
i] =
"materials:M_NEMA FR4 plate";
41 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalModule: " << wafer.size() <<
" wafers";
42 for (
unsigned int i = 0;
i < wafer.size(); ++
i)
44 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalModule: " << materials.size() <<
" types of volumes";
45 for (
unsigned int i = 0;
i < names.size(); ++
i)
46 edm::LogVerbatim(
"HGCalGeom") <<
"Volume [" <<
i <<
"] " << names[
i] <<
" of thickness "
48 <<
" first copy number " << copyNumber[
i];
50 const auto&
layers = args.
value<std::vector<int> >(
"Layers");
51 const auto& layerThick = args.
value<std::vector<double> >(
"LayerThick");
52 const auto& layerType = args.
value<std::vector<int> >(
"LayerType");
53 const auto& layerSense = args.
value<std::vector<int> >(
"LayerSense");
56 for (
unsigned int i = 0; i <
layers.size(); ++
i)
59 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalModule: " << layerType.size() <<
" layers";
60 for (
unsigned int i = 0; i < layerType.size(); ++
i)
61 edm::LogVerbatim(
"HGCalGeom") <<
"Layer [" << i <<
"] with material type " << layerType[
i] <<
" sensitive class "
64 double zMinBlock = args.
value<
double>(
"zMinBlock");
65 double rMaxFine = args.
value<
double>(
"rMaxFine");
66 double waferW = args.
value<
double>(
"waferW");
73 const auto& slopeB = args.
value<std::vector<double> >(
"SlopeBottom");
74 const auto& slopeT = args.
value<std::vector<double> >(
"SlopeTop");
75 const auto& zFront = args.
value<std::vector<double> >(
"ZFront");
76 const auto& rMaxFront = args.
value<std::vector<double> >(
"RMaxFront");
78 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalModule: Bottom slopes " << slopeB[0] <<
":" << slopeB[1] <<
" and "
79 << slopeT.size() <<
" slopes for top";
80 for (
unsigned int i = 0; i < slopeT.size(); ++
i)
87 std::unordered_set<int> copies;
96 for (
unsigned int i = 0; i < layers.size(); i++) {
97 double zo = zi + layerThick[
i];
99 int laymax = laymin + layers[
i];
102 for (
int ly = laymin; ly < laymax; ++ly) {
103 int ii = layerType[ly];
104 int copy = copyNumber[
ii];
105 double rinB = (layerSense[ly] == 0) ? (zo * slopeB[0]) : (zo * slopeB[1]);
106 zz += (0.5 * thick[
ii]);
107 thickTot += thick[
ii];
116 dd4hep::Material matter = ns.
material(materials[ii]);
118 if (layerSense[ly] == 0) {
120 double rmax = routF *
cos(alpha) - tol;
121 std::vector<double> pgonZ, pgonRin, pgonRout;
122 pgonZ.emplace_back(-0.5 * thick[ii]);
123 pgonZ.emplace_back(0.5 * thick[ii]);
124 pgonRin.emplace_back(rinB);
125 pgonRin.emplace_back(rinB);
126 pgonRout.emplace_back(rmax);
127 pgonRout.emplace_back(rmax);
128 dd4hep::Solid solid =
dd4hep::Polyhedra(sectors, -alpha, 2._pi, pgonZ, pgonRin, pgonRout);
132 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalModule: " << solid.name() <<
" polyhedra of " << sectors
134 << (360.0 +
convertRadToDeg(-alpha)) <<
" with " << pgonZ.size() <<
" sections";
135 for (
unsigned int k = 0;
k < pgonZ.size(); ++
k)
140 dd4hep::Solid solid = dd4hep::Tube(0.5 * thick[ii], rinB, routF, 0.0, 2._pi);
144 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalModule: " << solid.name() <<
" Tubs made of " << materials[
ii]
147 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalModule test position in: " << glog.name() <<
" number " <<
copy;
149 double dx = 0.5 * waferW;
150 double dy = 3.0 * dx *
tan(30._deg);
151 double rr = 2.0 * dx *
tan(30._deg);
152 int ncol =
static_cast<int>(2.0 * routF / waferW) + 1;
153 int nrow =
static_cast<int>(routF / (waferW *
tan(30._deg))) + 1;
155 int incm(0), inrm(0), kount(0),
ntot(0),
nin(0), nfine(0), ncoarse(0);
157 <<
" Column " << ncol;
159 for (
int nr = -nrow; nr <= nrow; ++nr) {
160 int inr = (nr >= 0) ? nr : -nr;
161 for (
int nc = -ncol; nc <= ncol; ++nc) {
162 int inc = (nc >= 0) ? nc : -nc;
163 if (inr % 2 == inc % 2) {
164 double xpos = nc *
dx;
165 double ypos = nr *
dy;
170 if (corner.first > 0) {
181 double rpos =
std::sqrt(xpos * xpos + ypos * ypos);
185 glog.placeVolume(glog1, copyL, dd4hep::Transform3D(rotation, tran));
193 <<
"DDHGCalModule: " << glog1.name() <<
" number " << copyL <<
" positioned in " << glog.name()
202 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalModule: # of columns " << incm <<
" # of rows " << inrm <<
" and "
203 <<
nin <<
":" << kount <<
":" <<
ntot <<
" wafers (" << nfine <<
":" << ncoarse
209 dd4hep::Rotation3D
rot;
210 module.placeVolume(glog, copy, dd4hep::Transform3D(rot, r1));
213 edm::LogVerbatim(
"HGCalGeom") <<
"DDHGCalModule: " << glog.name() <<
" number " << copy <<
" positioned in "
214 << module.name() <<
" at (0,0," <<
cms::convert2mm(zz) <<
") with no rotation";
216 zz += (0.5 * thick[
ii]);
220 if (fabs(thickTot - layerThick[i]) > tol2) {
221 if (thickTot > layerThick[i]) {
224 <<
" of all its components **** ERROR ****\n";
227 <<
" does not match with " <<
cms::convert2mm(thickTot) <<
" of the components\n";
233 edm::LogVerbatim(
"HGCalGeom") << copies.size() <<
" different wafer copy numbers";
235 for (std::unordered_set<int>::const_iterator itr = copies.begin(); itr != copies.end(); ++itr, ++
k)
237 edm::LogVerbatim(
"HGCalGeom") <<
"<<== End of DDHGCalModule construction ...";
dd4hep::Solid addSolidNS(const std::string &name, dd4hep::Solid solid) const
Log< level::Info, true > LogVerbatim
dd4hep::Volume volume(const std::string &name, bool exc=true) const
std::vector< LayerSetAndLayers > layers(const SeedingLayerSetsHits &sets)
constexpr NumType convertRadToDeg(NumType radians)
constexpr NumType convert2mm(NumType length)
T value(const std::string &name) const
std::string to_string(const V &value)
Log< level::Error, false > LogError
const std::string names[nVars_]
static constexpr uint32_t k_CornerSize
std::string_view name() const
#define DECLARE_DDCMS_DETELEMENT(name, func)
static constexpr long s_executed
Cos< T >::type cos(const T &t)
Tan< T >::type tan(const T &t)
dd4hep::Material material(const std::string &name) const
std::string prepend(const std::string &) const
static int32_t packTypeUV(int type, int u, int v)
Log< level::Warning, false > LogWarning
std::string parentName() const
Access value of rParent child node.