CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Public Attributes | Static Public Attributes
HGCalMixLayer Struct Reference

Public Member Functions

 HGCalMixLayer ()
 
 HGCalMixLayer (cms::DDParsingContext &ctxt, xml_h e)
 
void positionMix (cms::DDParsingContext &ctxt, xml_h e, const dd4hep::Volume &glog, const std::string &nameM, int copyM, double thick, const dd4hep::Material &matter)
 

Public Attributes

int absorbMode_
 
double alpha_
 
std::unordered_set< int > copies_
 
std::vector< int > copyNumber_
 
std::vector< int > copyNumberTop_
 
double cosAlpha_
 
int facingTypes_
 
int firstLayer_
 
HGCalGeomTools geomTools_
 
std::vector< int > layers_
 
std::vector< int > layerSense_
 
std::vector< double > layerThick_
 
std::vector< double > layerThickTop_
 
std::vector< int > layerType_
 
std::vector< int > layerTypes_
 
std::vector< int > layerTypeTop_
 
std::vector< std::string > materials_
 
std::vector< std::string > materialTop_
 
std::vector< std::string > names_
 
std::vector< std::string > namesTop_
 
int orientationTypes_
 
int partialTypes_
 
int phiBinsScint_
 
std::vector< double > rMaxFront_
 
std::vector< double > rMinFront_
 
int sectors_
 
int sensitiveMode_
 
std::vector< double > slopeB_
 
std::vector< double > slopeT_
 
std::vector< double > thick_
 
std::vector< int > tileIndex_
 
std::vector< int > tileLayerStart_
 
std::vector< int > tilePhis_
 
std::vector< double > tileRMax_
 
std::vector< double > tileRMin_
 
std::vector< std::string > waferFull_
 
std::vector< int > waferIndex_
 
std::vector< int > waferLayerStart_
 
std::vector< std::string > waferPart_
 
std::vector< int > waferProperty_
 
double waferSepar_
 
double waferSize_
 
int waferTypes_
 
std::vector< double > zFrontB_
 
std::vector< double > zFrontT_
 
double zMinBlock_
 

Static Public Attributes

static constexpr double tol2_ = 0.00001 * dd4hep::mm
 

Detailed Description

Definition at line 28 of file DDHGCalMixLayer.cc.

Constructor & Destructor Documentation

HGCalMixLayer::HGCalMixLayer ( )
inline

Definition at line 29 of file DDHGCalMixLayer.cc.

References Exception.

29 { throw cms::Exception("HGCalGeom") << "Wrong initialization to HGCalMixLayer"; }
HGCalMixLayer::HGCalMixLayer ( cms::DDParsingContext ctxt,
xml_h  e 
)
inline

Definition at line 30 of file DDHGCalMixLayer.cc.

References funct::abs(), cms::DDNamespace::addSolidNS(), cms::DDNamespace::addVolumeNS(), writedatasetfile::args, cms::convert2mm(), angle_units::operators::convertRadToDeg(), filterCSVwithJSON::copy, funct::cos(), mps_fire::i, cuy::ii, isotrackApplyRegressor::k, cms::DDNamespace::material(), SiStripPI::min, mergeVDriftHistosByStation::name, cms::DDNamespace::name(), cms::DDAlgoArguments::parentName(), HGCalGeometryMode::Polyhedra, PixelTestBeamValidation_cfi::Position, cms::DDNamespace::prepend(), diffTwoXMLs::r1, HGCalGeomTools::radius(), AlCaHLTBitMon_QueryRunRegistry::string, HGCalTileIndex::tileUnpack(), cond::impl::to_string(), cms::DDAlgoArguments::value(), cms::DDNamespace::volume(), HGCalWaferIndex::waferLayer(), HGCalProperty::waferOrient(), HGCalProperty::waferPartial(), HGCalProperty::waferThick(), HGCalWaferIndex::waferU(), and HGCalWaferIndex::waferV().

30  {
31  cms::DDNamespace ns(ctxt, e, true);
33 
34 #ifdef EDM_ML_DEBUG
35  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: Creating an instance";
36 #endif
37 
38  static constexpr double tol1 = 0.01 * dd4hep::mm;
39  dd4hep::Volume mother = ns.volume(args.parentName());
40 
41  waferTypes_ = args.value<int>("WaferTypes");
42  facingTypes_ = args.value<int>("FacingTypes");
43  partialTypes_ = args.value<int>("PartialTypes");
44  orientationTypes_ = args.value<int>("OrientationTypes");
45  phiBinsScint_ = args.value<int>("NPhiBinScint");
46 #ifdef EDM_ML_DEBUG
47  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer::Number of types of wafers: " << waferTypes_
48  << " facings: " << facingTypes_ << " partials: " << partialTypes_
49  << " Orientations: " << orientationTypes_ << "; number of cells along phi "
50  << phiBinsScint_;
51 #endif
52  firstLayer_ = args.value<int>("FirstLayer");
53  absorbMode_ = args.value<int>("AbsorberMode");
54  sensitiveMode_ = args.value<int>("SensitiveMode");
55 #ifdef EDM_ML_DEBUG
56  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer::First Layer " << firstLayer_ << " and "
57  << "Absober:Sensitive mode " << absorbMode_ << ":" << sensitiveMode_;
58 #endif
59  zMinBlock_ = args.value<double>("zMinBlock");
60  waferSize_ = args.value<double>("waferSize");
61  waferSepar_ = args.value<double>("SensorSeparation");
62  sectors_ = args.value<int>("Sectors");
63  alpha_ = (1._pi) / sectors_;
64  cosAlpha_ = cos(alpha_);
65 #ifdef EDM_ML_DEBUG
66  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: zStart " << cms::convert2mm(zMinBlock_) << " wafer width "
67  << cms::convert2mm(waferSize_) << " separations " << cms::convert2mm(waferSepar_)
68  << " sectors " << sectors_ << ":" << convertRadToDeg(alpha_) << ":" << cosAlpha_;
69 #endif
70  slopeB_ = args.value<std::vector<double>>("SlopeBottom");
71  zFrontB_ = args.value<std::vector<double>>("ZFrontBottom");
72  rMinFront_ = args.value<std::vector<double>>("RMinFront");
73  slopeT_ = args.value<std::vector<double>>("SlopeTop");
74  zFrontT_ = args.value<std::vector<double>>("ZFrontTop");
75  rMaxFront_ = args.value<std::vector<double>>("RMaxFront");
76 #ifdef EDM_ML_DEBUG
77  for (unsigned int i = 0; i < slopeB_.size(); ++i)
78  edm::LogVerbatim("HGCalGeom") << "Bottom Block [" << i << "] Zmin " << cms::convert2mm(zFrontB_[i]) << " Rmin "
79  << cms::convert2mm(rMinFront_[i]) << " Slope " << slopeB_[i];
80  for (unsigned int i = 0; i < slopeT_.size(); ++i)
81  edm::LogVerbatim("HGCalGeom") << "Top Block [" << i << "] Zmin " << cms::convert2mm(zFrontT_[i]) << " Rmax "
82  << cms::convert2mm(rMaxFront_[i]) << " Slope " << slopeT_[i];
83 #endif
84 
85  waferFull_ = args.value<std::vector<std::string>>("WaferNamesFull");
86  waferPart_ = args.value<std::vector<std::string>>("WaferNamesPartial");
87 #ifdef EDM_ML_DEBUG
88  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: " << waferFull_.size() << " full and " << waferPart_.size()
89  << " partial modules\nDDHGCalMixLayer:Full Modules:";
90  unsigned int i1max = static_cast<unsigned int>(waferFull_.size());
91  for (unsigned int i1 = 0; i1 < i1max; i1 += 2) {
92  std::ostringstream st1;
93  unsigned int i2 = std::min((i1 + 2), i1max);
94  for (unsigned int i = i1; i < i2; ++i)
95  st1 << " [" << i << "] " << waferFull_[i];
96  edm::LogVerbatim("HGCalGeom") << st1.str() << std::endl;
97  }
98  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: Partial Modules:";
99  i1max = static_cast<unsigned int>(waferPart_.size());
100  for (unsigned int i1 = 0; i1 < i1max; i1 += 2) {
101  std::ostringstream st1;
102  unsigned int i2 = std::min((i1 + 2), i1max);
103  for (unsigned int i = i1; i < i2; ++i)
104  st1 << " [" << i << "] " << waferPart_[i];
105  edm::LogVerbatim("HGCalGeom") << st1.str() << std::endl;
106  }
107 #endif
108 
109  materials_ = args.value<std::vector<std::string>>("MaterialNames");
110  names_ = args.value<std::vector<std::string>>("VolumeNames");
111  thick_ = args.value<std::vector<double>>("Thickness");
112  copyNumber_.resize(materials_.size(), 1);
113 #ifdef EDM_ML_DEBUG
114  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: " << materials_.size() << " types of volumes";
115  for (unsigned int i = 0; i < names_.size(); ++i)
116  edm::LogVerbatim("HGCalGeom") << "Volume [" << i << "] " << names_[i] << " of thickness "
117  << cms::convert2mm(thick_[i]) << " filled with " << materials_[i]
118  << " first copy number " << copyNumber_[i];
119 #endif
120  layers_ = args.value<std::vector<int>>("Layers");
121  layerThick_ = args.value<std::vector<double>>("LayerThick");
122 #ifdef EDM_ML_DEBUG
123  edm::LogVerbatim("HGCalGeom") << "There are " << layers_.size() << " blocks";
124  for (unsigned int i = 0; i < layers_.size(); ++i)
125  edm::LogVerbatim("HGCalGeom") << "Block [" << i << "] of thickness " << cms::convert2mm(layerThick_[i])
126  << " with " << layers_[i] << " layers";
127 #endif
128  layerType_ = args.value<std::vector<int>>("LayerType");
129  layerSense_ = args.value<std::vector<int>>("LayerSense");
130  layerTypes_ = args.value<std::vector<int>>("LayerTypes");
131 #ifdef EDM_ML_DEBUG
132  for (unsigned int i = 0; i < layerTypes_.size(); ++i)
133  edm::LogVerbatim("HGCalGeom") << "LayerTypes [" << i << "] " << layerTypes_[i];
134 #endif
135  if (firstLayer_ > 0) {
136  for (unsigned int i = 0; i < layerType_.size(); ++i) {
137  if (layerSense_[i] > 0) {
138  int ii = layerType_[i];
139  copyNumber_[ii] = firstLayer_;
140 #ifdef EDM_ML_DEBUG
141  edm::LogVerbatim("HGCalGeom") << "First copy number for layer type " << i << ":" << ii << " with "
142  << materials_[ii] << " changed to " << copyNumber_[ii];
143 #endif
144  break;
145  }
146  }
147  } else {
148  firstLayer_ = 1;
149  }
150 #ifdef EDM_ML_DEBUG
151  edm::LogVerbatim("HGCalGeom") << "There are " << layerType_.size() << " layers";
152  for (unsigned int i = 0; i < layerType_.size(); ++i)
153  edm::LogVerbatim("HGCalGeom") << "Layer [" << i << "] with material type " << layerType_[i] << " sensitive class "
154  << layerSense_[i];
155 #endif
156  materialTop_ = args.value<std::vector<std::string>>("TopMaterialNames");
157  namesTop_ = args.value<std::vector<std::string>>("TopVolumeNames");
158  layerThickTop_ = args.value<std::vector<double>>("TopLayerThickness");
159  layerTypeTop_ = args.value<std::vector<int>>("TopLayerType");
160  copyNumberTop_.resize(materialTop_.size(), firstLayer_);
161 #ifdef EDM_ML_DEBUG
162  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: " << materialTop_.size() << " types of volumes in the top part";
163  for (unsigned int i = 0; i < materialTop_.size(); ++i)
164  edm::LogVerbatim("HGCalGeom") << "Volume [" << i << "] " << namesTop_[i] << " of thickness "
165  << cms::convert2mm(layerThickTop_[i]) << " filled with " << materialTop_[i]
166  << " first copy number " << copyNumberTop_[i];
167  edm::LogVerbatim("HGCalGeom") << "There are " << layerTypeTop_.size() << " layers in the top part";
168  for (unsigned int i = 0; i < layerTypeTop_.size(); ++i)
169  edm::LogVerbatim("HGCalGeom") << "Layer [" << i << "] with material type " << layerTypeTop_[i];
170 #endif
171  waferIndex_ = args.value<std::vector<int>>("WaferIndex");
172  waferProperty_ = args.value<std::vector<int>>("WaferProperties");
173  waferLayerStart_ = args.value<std::vector<int>>("WaferLayerStart");
174 #ifdef EDM_ML_DEBUG
175  edm::LogVerbatim("HGCalGeom") << "waferProperties with " << waferIndex_.size() << " entries in "
176  << waferLayerStart_.size() << " layers";
177  for (unsigned int k = 0; k < waferLayerStart_.size(); ++k)
178  edm::LogVerbatim("HGCalGeom") << "LayerStart[" << k << "] " << waferLayerStart_[k];
179  for (unsigned int k = 0; k < waferIndex_.size(); ++k)
180  edm::LogVerbatim("HGCalGeom") << "[" << k << "] " << waferIndex_[k] << " ("
183  << HGCalWaferIndex::waferV(waferIndex_[k]) << ") : ("
184  << HGCalProperty::waferThick(waferProperty_[k]) << ":"
185  << HGCalProperty::waferPartial(waferProperty_[k]) << ":"
186  << HGCalProperty::waferOrient(waferProperty_[k]) << ")";
187 #endif
188  tileRMin_ = args.value<std::vector<double>>("TileRMin");
189  tileRMax_ = args.value<std::vector<double>>("TileRMax");
190  tileIndex_ = args.value<std::vector<int>>("TileLayerRings");
191  tilePhis_ = args.value<std::vector<int>>("TilePhiRange");
192  tileLayerStart_ = args.value<std::vector<int>>("TileLayerStart");
193 #ifdef EDM_ML_DEBUG
194  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer:: with " << tileRMin_.size() << " rings";
195  for (unsigned int k = 0; k < tileRMin_.size(); ++k)
196  edm::LogVerbatim("HGCalGeom") << "Ring[" << k << "] " << cms::convert2mm(tileRMin_[k]) << " : "
197  << cms::convert2mm(tileRMax_[k]);
198  edm::LogVerbatim("HGCalGeom") << "TileProperties with " << tileIndex_.size() << " entries in "
199  << tileLayerStart_.size() << " layers";
200  for (unsigned int k = 0; k < tileLayerStart_.size(); ++k)
201  edm::LogVerbatim("HGCalGeom") << "LayerStart[" << k << "] " << tileLayerStart_[k];
202  for (unsigned int k = 0; k < tileIndex_.size(); ++k)
203  edm::LogVerbatim("HGCalGeom") << "[" << k << "] " << tileIndex_[k] << " ("
204  << "Layer " << std::get<0>(HGCalTileIndex::tileUnpack(tileIndex_[k])) << " Ring "
205  << std::get<1>(HGCalTileIndex::tileUnpack(tileIndex_[k])) << ":"
206  << std::get<2>(HGCalTileIndex::tileUnpack(tileIndex_[k])) << ") Phi "
207  << std::get<1>(HGCalTileIndex::tileUnpack(tilePhis_[k])) << ":"
208  << std::get<2>(HGCalTileIndex::tileUnpack(tilePhis_[k]));
209 #endif
210 
211 #ifdef EDM_ML_DEBUG
212  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: NameSpace " << ns.name();
213 
214  edm::LogVerbatim("HGCalGeom") << "==>> Constructing DDHGCalMixLayer...";
215  copies_.clear();
216 #endif
217 
218  double zi(zMinBlock_);
219  int laymin(0);
220  for (unsigned int i = 0; i < layers_.size(); i++) {
221  double zo = zi + layerThick_[i];
222  double routF = HGCalGeomTools::radius(zi, zFrontT_, rMaxFront_, slopeT_);
223  int laymax = laymin + layers_[i];
224  double zz = zi;
225  double thickTot(0);
226  for (int ly = laymin; ly < laymax; ++ly) {
227  int ii = layerType_[ly];
228  int copy = copyNumber_[ii];
229  double hthick = 0.5 * thick_[ii];
230  double rinB = HGCalGeomTools::radius(zo, zFrontB_, rMinFront_, slopeB_);
231  zz += hthick;
232  thickTot += thick_[ii];
233 
234  std::string name = names_[ii] + std::to_string(copy);
235 #ifdef EDM_ML_DEBUG
236  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: Layer " << ly << ":" << ii << " Front "
237  << cms::convert2mm(zi) << ", " << cms::convert2mm(routF) << " Back "
238  << cms::convert2mm(zo) << ", " << cms::convert2mm(rinB)
239  << " superlayer thickness " << cms::convert2mm(layerThick_[i]);
240 #endif
241 
242  dd4hep::Material matter = ns.material(materials_[ii]);
243  dd4hep::Volume glog;
244 
245  if (layerSense_[ly] < 1) {
246  std::vector<double> pgonZ, pgonRin, pgonRout;
247  double rmax =
248  (std::min(routF, HGCalGeomTools::radius(zz + hthick, zFrontT_, rMaxFront_, slopeT_)) * cosAlpha_) - tol1;
249  HGCalGeomTools::radius(zz - hthick,
250  zz + hthick,
251  zFrontB_,
252  rMinFront_,
253  slopeB_,
254  zFrontT_,
255  rMaxFront_,
256  slopeT_,
257  -layerSense_[ly],
258  pgonZ,
259  pgonRin,
260  pgonRout);
261  for (unsigned int isec = 0; isec < pgonZ.size(); ++isec) {
262  pgonZ[isec] -= zz;
263  if (layerSense_[ly] == 0 || absorbMode_ == 0)
264  pgonRout[isec] = rmax;
265  else
266  pgonRout[isec] = pgonRout[isec] * cosAlpha_ - tol1;
267  }
268 
269  dd4hep::Solid solid = dd4hep::Polyhedra(sectors_, -alpha_, 2._pi, pgonZ, pgonRin, pgonRout);
270  ns.addSolidNS(ns.prepend(name), solid);
271  glog = dd4hep::Volume(solid.name(), solid, matter);
272  ns.addVolumeNS(glog);
273 #ifdef EDM_ML_DEBUG
274  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: " << solid.name() << " polyhedra of " << sectors_
275  << " sectors covering " << convertRadToDeg(-alpha_) << ":"
276  << convertRadToDeg(-alpha_ + 2._pi) << " with " << pgonZ.size() << " sections";
277  for (unsigned int k = 0; k < pgonZ.size(); ++k)
278  edm::LogVerbatim("HGCalGeom") << "[" << k << "] z " << cms::convert2mm(pgonZ[k]) << " R "
279  << cms::convert2mm(pgonRin[k]) << ":" << cms::convert2mm(pgonRout[k]);
280 #endif
281  } else {
282  double rins =
283  (sensitiveMode_ < 1) ? rinB : HGCalGeomTools::radius(zz + hthick, zFrontB_, rMinFront_, slopeB_);
284  double routs =
285  (sensitiveMode_ < 1) ? routF : HGCalGeomTools::radius(zz - hthick, zFrontT_, rMaxFront_, slopeT_);
286  dd4hep::Solid solid = dd4hep::Tube(rins, routs, hthick, 0.0, 2._pi);
287  ns.addSolidNS(ns.prepend(name), solid);
288  glog = dd4hep::Volume(solid.name(), solid, matter);
289  ns.addVolumeNS(glog);
290 
291 #ifdef EDM_ML_DEBUG
292  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: " << solid.name() << " Tubs made of " << matter.name()
293  << " of dimensions " << cms::convert2mm(rinB) << ":" << cms::convert2mm(rins)
294  << ", " << cms::convert2mm(routF) << ":" << cms::convert2mm(routs) << ", "
295  << cms::convert2mm(hthick) << ", 0.0, 360.0 and positioned in: " << glog.name()
296  << " number " << copy;
297 #endif
298  positionMix(ctxt, e, glog, name, copy, thick_[ii], matter);
299  }
300 
301  dd4hep::Position r1(0, 0, zz);
302  mother.placeVolume(glog, copy, r1);
303  ++copyNumber_[ii];
304 #ifdef EDM_ML_DEBUG
305  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: " << glog.name() << " number " << copy << " positioned in "
306  << mother.name() << " at (0,0," << cms::convert2mm(zz) << ") with no rotation";
307 #endif
308  zz += hthick;
309  } // End of loop over layers in a block
310  zi = zo;
311  laymin = laymax;
312  if (std::abs(thickTot - layerThick_[i]) > tol2_) {
313  if (thickTot > layerThick_[i]) {
314  edm::LogError("HGCalGeom") << "Thickness of the partition " << cms::convert2mm(layerThick_[i])
315  << " is smaller than " << cms::convert2mm(thickTot)
316  << ": thickness of all its components **** ERROR ****";
317  } else {
318  edm::LogWarning("HGCalGeom") << "Thickness of the partition " << cms::convert2mm(layerThick_[i])
319  << " does not match with " << cms::convert2mm(thickTot) << " of the components";
320  }
321  }
322  } // End of loop over blocks
323 
324 #ifdef EDM_ML_DEBUG
325  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: " << copies_.size() << " different wafer copy numbers";
326  int k(0);
327  for (std::unordered_set<int>::const_iterator itr = copies_.begin(); itr != copies_.end(); ++itr, ++k) {
328  edm::LogVerbatim("HGCalGeom") << "Copy [" << k << "] : " << (*itr);
329  }
330  copies_.clear();
331  edm::LogVerbatim("HGCalGeom") << "<<== End of DDHGCalMixLayer construction...";
332 #endif
333  }
std::vector< int > copyNumberTop_
Log< level::Info, true > LogVerbatim
std::vector< double > tileRMin_
static constexpr double tol2_
static void radius(double zf, double zb, std::vector< double > const &zFront1, std::vector< double > const &rFront1, std::vector< double > const &slope1, std::vector< double > const &zFront2, std::vector< double > const &rFront2, std::vector< double > const &slope2, int flag, std::vector< double > &zz, std::vector< double > &rin, std::vector< double > &rout)
std::vector< int > layerTypeTop_
std::vector< std::string > namesTop_
std::vector< std::string > materialTop_
int32_t waferU(const int32_t index)
int32_t waferLayer(const int32_t index)
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
constexpr NumType convert2mm(NumType length)
Definition: DDutils.h:7
std::string to_string(const V &value)
Definition: OMSAccess.h:71
std::vector< double > tileRMax_
std::vector< double > layerThick_
std::vector< std::string > waferFull_
std::vector< int > waferLayerStart_
Log< level::Error, false > LogError
int ii
Definition: cuy.py:589
std::vector< int > layerSense_
std::vector< int > copyNumber_
int32_t waferOrient(const int32_t property)
std::vector< double > slopeB_
std::vector< int > waferIndex_
std::vector< double > rMinFront_
std::vector< double > zFrontB_
std::vector< int > tilePhis_
std::vector< int > layers_
std::vector< int > tileLayerStart_
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
std::vector< std::string > waferPart_
std::vector< std::string > materials_
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int32_t waferThick(const int32_t property)
Definition: HGCalProperty.cc:9
std::vector< int > layerType_
std::vector< int > waferProperty_
dd4hep::Volume Volume
std::vector< double > rMaxFront_
void positionMix(cms::DDParsingContext &ctxt, xml_h e, const dd4hep::Volume &glog, const std::string &nameM, int copyM, double thick, const dd4hep::Material &matter)
std::tuple< int32_t, int32_t, int32_t > tileUnpack(int32_t index)
std::vector< std::string > names_
std::vector< double > thick_
std::vector< double > slopeT_
int32_t waferPartial(const int32_t property)
std::vector< double > zFrontT_
std::vector< int > layerTypes_
int32_t waferV(const int32_t index)
std::unordered_set< int > copies_
Log< level::Warning, false > LogWarning
std::vector< double > layerThickTop_
std::vector< int > tileIndex_

Member Function Documentation

void HGCalMixLayer::positionMix ( cms::DDParsingContext ctxt,
xml_h  e,
const dd4hep::Volume &  glog,
const std::string &  nameM,
int  copyM,
double  thick,
const dd4hep::Material &  matter 
)
inline

Definition at line 335 of file DDHGCalMixLayer.cc.

References funct::abs(), cms::DDNamespace::addSolidNS(), cms::DDNamespace::addVolumeNS(), cms::convert2mm(), angle_units::operators::convertRadToDeg(), filterCSVwithJSON::copy, HGCalTypes::CornerCenteredLambda, HGCalTypes::CornerCenteredY, PVValHelper::dy, mps_fire::i, cuy::ii, gpuVertexFinder::iv, isotrackApplyRegressor::k, phase1PixelTopology::layer, cms::DDNamespace::material(), mergeVDriftHistosByStation::name, HGCalTypes::packTypeUV(), PixelTestBeamValidation_cfi::Position, cms::DDNamespace::prepend(), dttmaxenums::R, alignCSCRings::r, diffTwoXMLs::r1, diffTwoXMLs::r2, mathSSE::sqrt(), AlCaHLTBitMon_QueryRunRegistry::string, HGCalTileIndex::tileUnpack(), cond::impl::to_string(), findQualityFiles::v, cms::DDNamespace::volume(), HGCalTypes::WaferCenteredBack, HGCalTypes::WaferFull, HGCalWaferIndex::waferLayer(), HGCalProperty::waferOrient(), HGCalProperty::waferPartial(), HGCalProperty::waferThick(), HGCalWaferIndex::waferU(), and HGCalWaferIndex::waferV().

341  {
342  cms::DDNamespace ns(ctxt, e, true);
343 
344  // Make the top part first
345  for (unsigned int ly = 0; ly < layerTypeTop_.size(); ++ly) {
346  int ii = layerTypeTop_[ly];
347  copyNumberTop_[ii] = copyM;
348  }
349  double hthick = 0.5 * thick;
350  double dphi = (2._pi) / phiBinsScint_;
351  double thickTot(0), zpos(-hthick);
352  for (unsigned int ly = 0; ly < layerTypeTop_.size(); ++ly) {
353  int ii = layerTypeTop_[ly];
354  int copy = copyNumberTop_[ii];
355  int layer = copy - firstLayer_;
356  double hthickl = 0.5 * layerThickTop_[ii];
357  thickTot += layerThickTop_[ii];
358  zpos += hthickl;
359  dd4hep::Material matter1 = ns.material(materialTop_[ii]);
360  unsigned int k = 0;
361  int firstTile = tileLayerStart_[layer];
362  int lastTile = ((layer + 1 < static_cast<int>(tileLayerStart_.size())) ? tileLayerStart_[layer + 1]
363  : static_cast<int>(tileIndex_.size()));
364 #ifdef EDM_ML_DEBUG
365  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: Layer " << ly << ":" << ii << " Copy " << copy << " Tiles "
366  << firstTile << ":" << lastTile;
367 #endif
368  for (int ti = firstTile; ti < lastTile; ++ti) {
369  double r1 = tileRMin_[std::get<1>(HGCalTileIndex::tileUnpack(tileIndex_[ti])) - 1];
370  double r2 = tileRMax_[std::get<2>(HGCalTileIndex::tileUnpack(tileIndex_[ti])) - 1];
371  int fimin = std::get<1>(HGCalTileIndex::tileUnpack(tilePhis_[ti]));
372  int fimax = std::get<2>(HGCalTileIndex::tileUnpack(tilePhis_[ti]));
373  double phi1 = dphi * (fimin - 1);
374  double phi2 = dphi * (fimax - fimin + 1);
375 #ifdef EDM_ML_DEBUG
376  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: Layer " << copy << " iR "
377  << std::get<1>(HGCalTileIndex::tileUnpack(tileIndex_[ly])) << ":"
378  << std::get<2>(HGCalTileIndex::tileUnpack(tileIndex_[ly])) << " R "
379  << cms::convert2mm(r1) << ":" << cms::convert2mm(r2) << " Thick "
380  << cms::convert2mm((2.0 * hthickl)) << " phi " << fimin << ":" << fimax << ":"
381  << convertRadToDeg(phi1) << ":" << convertRadToDeg(phi2);
382 #endif
383  std::string name = namesTop_[ii] + "L" + std::to_string(copy) + "F" + std::to_string(k);
384  ++k;
385  dd4hep::Solid solid = dd4hep::Tube(r1, r2, hthickl, phi1, phi2);
386  ns.addSolidNS(ns.prepend(name), solid);
387  dd4hep::Volume glog1 = dd4hep::Volume(solid.name(), solid, matter1);
388  ns.addVolumeNS(glog1);
389 #ifdef EDM_ML_DEBUG
390  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: " << glog1.name() << " Tubs made of " << materialTop_[ii]
391  << " of dimensions " << cms::convert2mm(r1) << ", " << cms::convert2mm(r2) << ", "
392  << cms::convert2mm(hthickl) << ", " << convertRadToDeg(phi1) << ", "
393  << convertRadToDeg(phi2);
394 #endif
395  dd4hep::Position tran(0, 0, zpos);
396  glog.placeVolume(glog1, copy, tran);
397 #ifdef EDM_ML_DEBUG
398  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: Position " << glog1.name() << " number " << copy << " in "
399  << glog.name() << " at (0, 0, " << cms::convert2mm(zpos) << ") with no rotation";
400 #endif
401  }
402  ++copyNumberTop_[ii];
403  zpos += hthickl;
404  }
405  if (std::abs(thickTot - thick) > tol2_) {
406  if (thickTot > thick) {
407  edm::LogError("HGCalGeom") << "Thickness of the partition " << cms::convert2mm(thick) << " is smaller than "
408  << cms::convert2mm(thickTot)
409  << ": thickness of all its components in the top part **** ERROR ****";
410  } else {
411  edm::LogWarning("HGCalGeom") << "Thickness of the partition " << cms::convert2mm(thick)
412  << " does not match with " << cms::convert2mm(thickTot)
413  << " of the components in top part";
414  }
415  }
416 
417  // Make the bottom part next
418  int layer = (copyM - firstLayer_);
419  static const double sqrt3 = std::sqrt(3.0);
420  int layercenter = (layerTypes_[layer] == HGCalTypes::CornerCenteredLambda)
421  ? 1
422  : ((layerTypes_[layer] == HGCalTypes::CornerCenteredY) ? 2 : 0);
423  int layerType = (layerTypes_[layer] == HGCalTypes::WaferCenteredBack) ? 1 : 0;
424  int firstWafer = waferLayerStart_[layer];
425  int lastWafer = ((layer + 1 < static_cast<int>(waferLayerStart_.size())) ? waferLayerStart_[layer + 1]
426  : static_cast<int>(waferIndex_.size()));
427  double r = 0.5 * (waferSize_ + waferSepar_);
428  double R = 2.0 * r / sqrt3;
429  double dy = 0.75 * R;
430  const auto& xyoff = geomTools_.shiftXY(layercenter, (waferSize_ + waferSepar_));
431 #ifdef EDM_ML_DEBUG
432  int ium(0), ivm(0), kount(0);
433  std::vector<int> ntype(3, 0);
434  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: " << glog.name() << " r " << cms::convert2mm(r) << " R "
435  << cms::convert2mm(R) << " dy " << cms::convert2mm(dy) << " Shift "
436  << cms::convert2mm(xyoff.first) << ":" << cms::convert2mm(xyoff.second)
437  << " WaferSize " << cms::convert2mm((waferSize_ + waferSepar_)) << " index "
438  << firstWafer << ":" << (lastWafer - 1);
439 #endif
440  for (int k = firstWafer; k < lastWafer; ++k) {
443 #ifdef EDM_ML_DEBUG
444  int iu = std::abs(u);
445  int iv = std::abs(v);
446 #endif
447  int nr = 2 * v;
448  int nc = -2 * u + v;
449  double xpos = xyoff.first + nc * r;
450  double ypos = xyoff.second + nr * dy;
454  std::string wafer;
455  int i(999);
456  if (part == HGCalTypes::WaferFull) {
457  i = layerType * waferTypes_ + type;
458  wafer = waferFull_[i];
459  } else {
460  i = (part - 1) * waferTypes_ * facingTypes_ * orientationTypes_ + layerType * waferTypes_ * orientationTypes_ +
461  type * orientationTypes_ + orien;
462 #ifdef EDM_ML_DEBUG
463  edm::LogVerbatim("HGCalGeom") << " layertype:type:part:orien:ind " << layerType << ":" << type << ":" << part
464  << ":" << orien << ":" << i << ":" << waferPart_.size();
465 #endif
466  wafer = waferPart_[i];
467  }
468  int copy = HGCalTypes::packTypeUV(type, u, v);
469 #ifdef EDM_ML_DEBUG
470  edm::LogVerbatim("HGCalGeom") << " DDHGCalMixLayer: Layer " << HGCalWaferIndex::waferLayer(waferIndex_[k])
471  << " Wafer " << wafer << " number " << copy << " type :part:orien:ind " << type
472  << ":" << part << ":" << orien << ":" << i << " layer:u:v " << (layer + firstLayer_)
473  << ":" << u << ":" << v;
474  if (iu > ium)
475  ium = iu;
476  if (iv > ivm)
477  ivm = iv;
478  kount++;
479  if (copies_.count(copy) == 0)
480  copies_.insert(copy);
481 #endif
482  dd4hep::Position tran(xpos, ypos, 0.0);
483  glog.placeVolume(ns.volume(wafer), copy, tran);
484 #ifdef EDM_ML_DEBUG
485  ++ntype[type];
486  edm::LogVerbatim("HGCalGeom") << " DDHGCalMixLayer: " << wafer << " number " << copy << " type " << layerType
487  << ":" << type << " positioned in " << glog.name() << " at ("
488  << cms::convert2mm(xpos) << "," << cms::convert2mm(ypos) << ",0) with no rotation";
489 #endif
490  }
491 
492 #ifdef EDM_ML_DEBUG
493  edm::LogVerbatim("HGCalGeom") << "DDHGCalMixLayer: Maximum # of u " << ium << " # of v " << ivm << " and " << kount
494  << " wafers (" << ntype[0] << ":" << ntype[1] << ":" << ntype[2] << ") for "
495  << glog.name();
496 #endif
497  }
std::vector< int > copyNumberTop_
Log< level::Info, true > LogVerbatim
std::vector< double > tileRMin_
static constexpr double tol2_
std::vector< int > layerTypeTop_
std::vector< std::string > namesTop_
int32_t *__restrict__ iv
std::vector< std::string > materialTop_
int32_t waferU(const int32_t index)
int32_t waferLayer(const int32_t index)
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
constexpr NumType convert2mm(NumType length)
Definition: DDutils.h:7
std::string to_string(const V &value)
Definition: OMSAccess.h:71
std::vector< double > tileRMax_
std::vector< std::string > waferFull_
std::vector< int > waferLayerStart_
Log< level::Error, false > LogError
int ii
Definition: cuy.py:589
HGCalGeomTools geomTools_
int32_t waferOrient(const int32_t property)
std::vector< int > waferIndex_
constexpr std::array< uint8_t, layerIndexSize > layer
std::vector< int > tilePhis_
std::pair< double, double > shiftXY(int waferPosition, double waferSize) const
T sqrt(T t)
Definition: SSEVec.h:19
std::vector< int > tileLayerStart_
std::vector< std::string > waferPart_
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int32_t waferThick(const int32_t property)
Definition: HGCalProperty.cc:9
std::vector< int > waferProperty_
dd4hep::Volume Volume
std::tuple< int32_t, int32_t, int32_t > tileUnpack(int32_t index)
part
Definition: HCALResponse.h:20
int32_t waferPartial(const int32_t property)
std::vector< int > layerTypes_
int32_t waferV(const int32_t index)
std::unordered_set< int > copies_
static int32_t packTypeUV(int type, int u, int v)
Definition: HGCalTypes.cc:3
Log< level::Warning, false > LogWarning
std::vector< double > layerThickTop_
std::vector< int > tileIndex_

Member Data Documentation

int HGCalMixLayer::absorbMode_

Definition at line 509 of file DDHGCalMixLayer.cc.

double HGCalMixLayer::alpha_

Definition at line 546 of file DDHGCalMixLayer.cc.

std::unordered_set<int> HGCalMixLayer::copies_

Definition at line 545 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::copyNumber_

Definition at line 526 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::copyNumberTop_

Definition at line 535 of file DDHGCalMixLayer.cc.

double HGCalMixLayer::cosAlpha_

Definition at line 546 of file DDHGCalMixLayer.cc.

int HGCalMixLayer::facingTypes_

Definition at line 504 of file DDHGCalMixLayer.cc.

int HGCalMixLayer::firstLayer_

Definition at line 508 of file DDHGCalMixLayer.cc.

HGCalGeomTools HGCalMixLayer::geomTools_

Definition at line 500 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::layers_

Definition at line 527 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::layerSense_

Definition at line 530 of file DDHGCalMixLayer.cc.

std::vector<double> HGCalMixLayer::layerThick_

Definition at line 528 of file DDHGCalMixLayer.cc.

std::vector<double> HGCalMixLayer::layerThickTop_

Definition at line 533 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::layerType_

Definition at line 529 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::layerTypes_

Definition at line 536 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::layerTypeTop_

Definition at line 534 of file DDHGCalMixLayer.cc.

std::vector<std::string> HGCalMixLayer::materials_

Definition at line 523 of file DDHGCalMixLayer.cc.

std::vector<std::string> HGCalMixLayer::materialTop_

Definition at line 531 of file DDHGCalMixLayer.cc.

std::vector<std::string> HGCalMixLayer::names_

Definition at line 524 of file DDHGCalMixLayer.cc.

std::vector<std::string> HGCalMixLayer::namesTop_

Definition at line 532 of file DDHGCalMixLayer.cc.

int HGCalMixLayer::orientationTypes_

Definition at line 506 of file DDHGCalMixLayer.cc.

int HGCalMixLayer::partialTypes_

Definition at line 505 of file DDHGCalMixLayer.cc.

int HGCalMixLayer::phiBinsScint_

Definition at line 507 of file DDHGCalMixLayer.cc.

std::vector<double> HGCalMixLayer::rMaxFront_

Definition at line 520 of file DDHGCalMixLayer.cc.

std::vector<double> HGCalMixLayer::rMinFront_

Definition at line 517 of file DDHGCalMixLayer.cc.

int HGCalMixLayer::sectors_

Definition at line 514 of file DDHGCalMixLayer.cc.

int HGCalMixLayer::sensitiveMode_

Definition at line 510 of file DDHGCalMixLayer.cc.

std::vector<double> HGCalMixLayer::slopeB_

Definition at line 515 of file DDHGCalMixLayer.cc.

std::vector<double> HGCalMixLayer::slopeT_

Definition at line 518 of file DDHGCalMixLayer.cc.

std::vector<double> HGCalMixLayer::thick_

Definition at line 525 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::tileIndex_

Definition at line 542 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::tileLayerStart_

Definition at line 544 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::tilePhis_

Definition at line 543 of file DDHGCalMixLayer.cc.

std::vector<double> HGCalMixLayer::tileRMax_

Definition at line 541 of file DDHGCalMixLayer.cc.

std::vector<double> HGCalMixLayer::tileRMin_

Definition at line 540 of file DDHGCalMixLayer.cc.

constexpr double HGCalMixLayer::tol2_ = 0.00001 * dd4hep::mm
static

Definition at line 501 of file DDHGCalMixLayer.cc.

std::vector<std::string> HGCalMixLayer::waferFull_

Definition at line 521 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::waferIndex_

Definition at line 537 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::waferLayerStart_

Definition at line 539 of file DDHGCalMixLayer.cc.

std::vector<std::string> HGCalMixLayer::waferPart_

Definition at line 522 of file DDHGCalMixLayer.cc.

std::vector<int> HGCalMixLayer::waferProperty_

Definition at line 538 of file DDHGCalMixLayer.cc.

double HGCalMixLayer::waferSepar_

Definition at line 513 of file DDHGCalMixLayer.cc.

double HGCalMixLayer::waferSize_

Definition at line 512 of file DDHGCalMixLayer.cc.

int HGCalMixLayer::waferTypes_

Definition at line 503 of file DDHGCalMixLayer.cc.

std::vector<double> HGCalMixLayer::zFrontB_

Definition at line 516 of file DDHGCalMixLayer.cc.

std::vector<double> HGCalMixLayer::zFrontT_

Definition at line 519 of file DDHGCalMixLayer.cc.

double HGCalMixLayer::zMinBlock_

Definition at line 511 of file DDHGCalMixLayer.cc.