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 | Protected Member Functions | Private Attributes | Static Private Attributes
DDHGCalSiliconModule Class Reference
Inheritance diagram for DDHGCalSiliconModule:

Public Member Functions

 DDHGCalSiliconModule ()
 
void execute (DDCompactView &cpv) override
 
void initialize (const DDNumericArguments &nArgs, const DDVectorArguments &vArgs, const DDMapArguments &mArgs, const DDStringArguments &sArgs, const DDStringVectorArguments &vsArgs) override
 

Protected Member Functions

void constructLayers (const DDLogicalPart &, DDCompactView &cpv)
 
void positionSensitive (const DDLogicalPart &glog, int layer, DDCompactView &cpv)
 

Private Attributes

int absorbMode_
 
double alpha_
 
std::unordered_set< int > copies_
 
std::vector< int > copyNumber_
 
double cosAlpha_
 
int facingTypes_
 
int firstLayer_
 
HGCalGeomTools geomTools_
 
std::vector< int > layers_
 
std::vector< int > layerSense_
 
std::vector< double > layerThick_
 
std::vector< int > layerType_
 
std::vector< int > layerTypes_
 
std::vector< std::string > materials_
 
std::vector< std::string > names_
 
std::string nameSpace_
 
int orientationTypes_
 
int partialTypes_
 
std::vector< double > rMaxFront_
 
std::vector< double > rMinFront_
 
std::string rotstr_
 
int sectors_
 
int sensitiveMode_
 
std::vector< double > slopeB_
 
std::vector< double > slopeT_
 
std::vector< double > thick_
 
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 Private Attributes

static constexpr double tol1_ = 0.01
 
static constexpr double tol2_ = 0.00001
 

Detailed Description

Definition at line 36 of file DDHGCalSiliconModule.cc.

Constructor & Destructor Documentation

DDHGCalSiliconModule::DDHGCalSiliconModule ( )

Definition at line 94 of file DDHGCalSiliconModule.cc.

94  {
95 #ifdef EDM_ML_DEBUG
96  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconModule: Creating an instance";
97 #endif
98 }
Log< level::Info, true > LogVerbatim

Member Function Documentation

void DDHGCalSiliconModule::constructLayers ( const DDLogicalPart module,
DDCompactView cpv 
)
protected

Definition at line 258 of file DDHGCalSiliconModule.cc.

References funct::abs(), angle_units::operators::convertRadToDeg(), filterCSVwithJSON::copy, DDBase< N, C >::ddname(), DDSplit(), first, mps_fire::i, cuy::ii, isotrackApplyRegressor::k, DDBase< N, C >::name(), mergeVDriftHistosByStation::name, DDSolidFactory::polyhedra(), DDCompactView::position(), diffTwoXMLs::r1, HGCalGeomTools::radius(), makeMuonMisalignmentScenario::rot, cms::rotation_utils::rotName(), edm::second(), AlCaHLTBitMon_QueryRunRegistry::string, cond::impl::to_string(), DDSolidFactory::tubs(), and HGCalTypes::WaferCenteredRotated.

258  {
259 #ifdef EDM_ML_DEBUG
260  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconModule: \t\tInside Layers";
261 #endif
262  double zi(zMinBlock_);
263  int laymin(0);
264  for (unsigned int i = 0; i < layers_.size(); i++) {
265  double zo = zi + layerThick_[i];
266  double routF = HGCalGeomTools::radius(zi, zFrontT_, rMaxFront_, slopeT_);
267  int laymax = laymin + layers_[i];
268  double zz = zi;
269  double thickTot(0);
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];
274  double rinB = HGCalGeomTools::radius(zo - tol1_, zFrontB_, rMinFront_, slopeB_);
275  zz += hthick;
276  thickTot += thick_[ii];
277 
279 #ifdef EDM_ML_DEBUG
280  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconModule: Layer " << ly << ":" << ii << " Front " << zi << ", "
281  << routF << " Back " << zo << ", " << rinB << " superlayer thickness "
282  << layerThick_[i];
283 #endif
284  DDName matName(DDSplit(materials_[ii]).first, DDSplit(materials_[ii]).second);
285  DDMaterial matter(matName);
286  DDLogicalPart glog;
287  if (layerSense_[ly] < 1) {
288  std::vector<double> pgonZ, pgonRin, pgonRout;
289  double rmax = routF * cosAlpha_ - tol1_;
290  HGCalGeomTools::radius(zz - hthick,
291  zz + hthick,
292  zFrontB_,
293  rMinFront_,
294  slopeB_,
295  zFrontT_,
296  rMaxFront_,
297  slopeT_,
298  -layerSense_[ly],
299  pgonZ,
300  pgonRin,
301  pgonRout);
302  for (unsigned int isec = 0; isec < pgonZ.size(); ++isec) {
303  pgonZ[isec] -= zz;
304  if (layerSense_[ly] == 0 || absorbMode_ == 0)
305  pgonRout[isec] = rmax;
306  else
307  pgonRout[isec] = pgonRout[isec] * cosAlpha_ - tol1_;
308  }
309  DDSolid solid =
310  DDSolidFactory::polyhedra(DDName(name, nameSpace_), sectors_, -alpha_, 2._pi, pgonZ, pgonRin, pgonRout);
311  glog = DDLogicalPart(solid.ddname(), matter, solid);
312 #ifdef EDM_ML_DEBUG
313  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconModule: " << solid.name() << " polyhedra of " << sectors_
314  << " sectors covering " << convertRadToDeg(-alpha_) << ":"
315  << convertRadToDeg(-alpha_ + 2._pi) << " with " << pgonZ.size()
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];
319 #endif
320  } else {
321  double rins =
322  (sensitiveMode_ < 1) ? rinB : HGCalGeomTools::radius(zz + hthick - tol1_, zFrontB_, rMinFront_, slopeB_);
323  double routs =
324  (sensitiveMode_ < 1) ? routF : HGCalGeomTools::radius(zz - hthick, zFrontT_, rMaxFront_, slopeT_);
325  DDSolid solid = DDSolidFactory::tubs(DDName(name, nameSpace_), hthick, rins, routs, 0.0, 2._pi);
326  glog = DDLogicalPart(solid.ddname(), matter, solid);
327 #ifdef EDM_ML_DEBUG
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_];
332 #endif
333  positionSensitive(glog, (copy - firstLayer_), cpv);
334  }
335  DDTranslation r1(0, 0, zz);
336  DDRotation rot;
337 #ifdef EDM_ML_DEBUG
338  std::string rotName("Null");
339 #endif
340  if ((layerSense_[ly] > 0) && (layerTypes_[copy - firstLayer_] == HGCalTypes::WaferCenteredRotated)) {
342 #ifdef EDM_ML_DEBUG
343  rotName = rotstr_;
344 #endif
345  }
346  cpv.position(glog, module, copy, r1, rot);
347  int inc = ((layerSense_[ly] > 0) && (facingTypes_ > 1)) ? 2 : 1;
348  copyNumber_[ii] = copy + inc;
349 #ifdef EDM_ML_DEBUG
350  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconModule: " << glog.name() << " number " << copy
351  << " positioned in " << module.name() << " at " << r1 << " with " << rotName
352  << " rotation";
353 #endif
354  zz += hthick;
355  } // End of loop over layers in a block
356  zi = zo;
357  laymin = laymax;
358  // Make consistency check of all the partitions of the block
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 ****";
363  } else {
364  edm::LogWarning("HGCalGeom") << "Thickness of the partition " << layerThick_[i] << " does not match with "
365  << thickTot << " of the components";
366  }
367  }
368  } // End of loop over blocks
369 }
std::vector< double > rMaxFront_
Log< level::Info, true > LogVerbatim
std::vector< double > zFrontT_
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)
const N & name() const
Definition: DDBase.h:59
std::vector< int > layerSense_
void position(const DDLogicalPart &self, const DDLogicalPart &parent, const std::string &copyno, 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.
Definition: DDMaterial.h:45
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
std::vector< std::string > materials_
std::vector< double > slopeT_
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:17
std::string to_string(const V &value)
Definition: OMSAccess.h:71
std::vector< double > thick_
std::vector< int > layers_
Log< level::Error, false > LogError
int ii
Definition: cuy.py:589
std::vector< int > layerTypes_
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:57
static const std::string & rotName(const T &rot, const cms::DDParsingContext &context)
U second(std::pair< T, U > const &p)
std::vector< double > layerThick_
std::vector< std::string > names_
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:93
static DDSolid tubs(const DDName &name, double zhalf, double rIn, double rOut, double startPhi, double deltaPhi)
Definition: DDSolid.cc:667
std::vector< int > copyNumber_
static constexpr double tol1_
std::vector< double > zFrontB_
std::vector< double > rMinFront_
std::vector< int > layerType_
Log< level::Warning, false > LogWarning
std::pair< std::string, std::string > DDSplit(const std::string &n)
split into (name,namespace), separator = &#39;:&#39;
Definition: DDSplit.cc:3
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7
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)
Definition: DDSolid.cc:565
static constexpr double tol2_
std::vector< double > slopeB_
const N & ddname() const
Definition: DDBase.h:61
void DDHGCalSiliconModule::execute ( DDCompactView cpv)
override

Definition at line 241 of file DDHGCalSiliconModule.cc.

References DDHGCalGeom::constructLayers(), isotrackApplyRegressor::k, and SpecificationBuilder_cfi::parent().

241  {
242 #ifdef EDM_ML_DEBUG
243  edm::LogVerbatim("HGCalGeom") << "==>> Constructing DDHGCalSiliconModule...";
244  copies_.clear();
245 #endif
246  constructLayers(parent(), cpv);
247 #ifdef EDM_ML_DEBUG
248  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconModule: " << copies_.size() << " different wafer copy numbers";
249  int k(0);
250  for (std::unordered_set<int>::const_iterator itr = copies_.begin(); itr != copies_.end(); ++itr, ++k) {
251  edm::LogVerbatim("HGCalGeom") << "Copy [" << k << "] : " << (*itr);
252  }
253  copies_.clear();
254  edm::LogVerbatim("HGCalGeom") << "<<== End of DDHGCalSiliconModule construction...";
255 #endif
256 }
Log< level::Info, true > LogVerbatim
void constructLayers(const DDLogicalPart &, DDCompactView &cpv)
std::unordered_set< int > copies_
void DDHGCalSiliconModule::initialize ( const DDNumericArguments nArgs,
const DDVectorArguments vArgs,
const DDMapArguments mArgs,
const DDStringArguments sArgs,
const DDStringVectorArguments vsArgs 
)
override

Definition at line 100 of file DDHGCalSiliconModule.cc.

References angle_units::operators::convertRadToDeg(), funct::cos(), dbl_to_int(), mps_fire::i, cuy::ii, isotrackApplyRegressor::k, SiStripPI::min, DDCurrentNamespace::ns(), HGCalWaferIndex::waferLayer(), HGCalProperty::waferOrient(), HGCalProperty::waferPartial(), HGCalProperty::waferThick(), HGCalWaferIndex::waferU(), and HGCalWaferIndex::waferV().

104  {
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"]);
109 #ifdef EDM_ML_DEBUG
110  edm::LogVerbatim("HGCalGeom") << "Number of types of wafers: " << waferTypes_ << " facings: " << facingTypes_
111  << " partials: " << partialTypes_ << " Orientations: " << orientationTypes_;
112 #endif
113  firstLayer_ = static_cast<int>(nArgs["FirstLayer"]);
114  absorbMode_ = static_cast<int>(nArgs["AbsorberMode"]);
115  sensitiveMode_ = static_cast<int>(nArgs["SensitiveMode"]);
116 #ifdef EDM_ML_DEBUG
117  edm::LogVerbatim("HGCalGeom") << "First Layer " << firstLayer_ << " and "
118  << "Absober:Sensitive mode " << absorbMode_ << ":" << sensitiveMode_;
119 #endif
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"];
127 #ifdef EDM_ML_DEBUG
128  edm::LogVerbatim("HGCalGeom") << "zStart " << zMinBlock_ << " wafer width " << waferSize_ << " separations "
129  << waferSepar_ << " sectors " << sectors_ << ":" << convertRadToDeg(alpha_) << ":"
130  << cosAlpha_ << " rotation matrix " << rotstr_;
131 #endif
132  waferFull_ = vsArgs["WaferNamesFull"];
133  waferPart_ = vsArgs["WaferNamesPartial"];
134 #ifdef EDM_ML_DEBUG
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;
140  unsigned int i2 = std::min((i1 + 2), i1max);
141  for (unsigned int i = i1; i < i2; ++i)
142  st1 << " [" << i << "] " << waferFull_[i];
143  edm::LogVerbatim("HGCalGeom") << st1.str() << std::endl;
144  }
145  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconModule: Partial Modules:";
146  i1max = static_cast<unsigned int>(waferPart_.size());
147  for (unsigned int i1 = 0; i1 < i1max; i1 += 2) {
148  std::ostringstream st1;
149  unsigned int i2 = std::min((i1 + 2), i1max);
150  for (unsigned int i = i1; i < i2; ++i)
151  st1 << " [" << i << "] " << waferPart_[i];
152  edm::LogVerbatim("HGCalGeom") << st1.str() << std::endl;
153  }
154 #endif
155  materials_ = vsArgs["MaterialNames"];
156  names_ = vsArgs["VolumeNames"];
157  thick_ = vArgs["Thickness"];
158  copyNumber_.resize(materials_.size(), 1);
159 #ifdef EDM_ML_DEBUG
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];
164 #endif
165  layers_ = dbl_to_int(vArgs["Layers"]);
166  layerThick_ = vArgs["LayerThick"];
167 #ifdef EDM_ML_DEBUG
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]
171  << " layers";
172 #endif
173  layerType_ = dbl_to_int(vArgs["LayerType"]);
174  layerSense_ = dbl_to_int(vArgs["LayerSense"]);
175  layerTypes_ = dbl_to_int(vArgs["LayerTypes"]);
176 #ifdef EDM_ML_DEBUG
177  for (unsigned int i = 0; i < layerTypes_.size(); ++i)
178  edm::LogVerbatim("HGCalGeom") << "LayerTypes [" << i << "] " << layerTypes_[i];
179 #endif
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);
185 #ifdef EDM_ML_DEBUG
186  edm::LogVerbatim("HGCalGeom") << "First copy number for layer type " << i << ":" << ii << " with "
187  << materials_[ii] << " changed to " << copyNumber_[ii];
188 #endif
189  }
190  }
191  } else {
192  firstLayer_ = 1;
193  }
194 #ifdef EDM_ML_DEBUG
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 "
198  << layerSense_[i];
199 #endif
200  slopeB_ = vArgs["SlopeBottom"];
201  zFrontB_ = vArgs["ZFrontBottom"];
202  rMinFront_ = vArgs["RMinFront"];
203  slopeT_ = vArgs["SlopeTop"];
204  zFrontT_ = vArgs["ZFrontTop"];
205  rMaxFront_ = vArgs["RMaxFront"];
206 #ifdef EDM_ML_DEBUG
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];
213 #endif
214  waferIndex_ = dbl_to_int(vArgs["WaferIndex"]);
215  waferProperty_ = dbl_to_int(vArgs["WaferProperties"]);
216  waferLayerStart_ = dbl_to_int(vArgs["WaferLayerStart"]);
217 #ifdef EDM_ML_DEBUG
218  edm::LogVerbatim("HGCalGeom") << "waferProperties with " << waferIndex_.size() << " entries in "
219  << waferLayerStart_.size() << " layers";
220  for (unsigned int k = 0; k < waferLayerStart_.size(); ++k)
221  edm::LogVerbatim("HGCalGeom") << "LayerStart[" << k << "] " << waferLayerStart_[k];
222  for (unsigned int k = 0; k < waferIndex_.size(); ++k)
223  edm::LogVerbatim("HGCalGeom") << "Wafer[" << k << "] " << waferIndex_[k] << " ("
226  << HGCalWaferIndex::waferV(waferIndex_[k]) << ") : ("
230 #endif
232 #ifdef EDM_ML_DEBUG
233  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconModule: NameSpace " << nameSpace_;
234 #endif
235 }
std::vector< double > rMaxFront_
Log< level::Info, true > LogVerbatim
std::vector< double > zFrontT_
std::vector< int > layerSense_
int32_t waferU(const int32_t index)
int32_t waferLayer(const int32_t index)
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
std::vector< std::string > materials_
std::vector< double > slopeT_
std::vector< int > waferIndex_
static std::string & ns()
std::vector< double > thick_
std::vector< int > layers_
int ii
Definition: cuy.py:589
std::vector< int > layerTypes_
int32_t waferOrient(const int32_t property)
std::vector< int > waferProperty_
std::vector< double > layerThick_
std::vector< std::string > names_
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
int32_t waferThick(const int32_t property)
Definition: HGCalProperty.cc:9
std::vector< int > copyNumber_
std::vector< int > dbl_to_int(const std::vector< double > &vecdbl)
Converts a std::vector of doubles to a std::vector of int.
Definition: DDutils.h:7
std::vector< int > waferLayerStart_
std::vector< double > zFrontB_
std::vector< std::string > waferPart_
std::vector< std::string > waferFull_
int32_t waferPartial(const int32_t property)
std::vector< double > rMinFront_
int32_t waferV(const int32_t index)
std::vector< int > layerType_
std::vector< double > slopeB_
void DDHGCalSiliconModule::positionSensitive ( const DDLogicalPart glog,
int  layer,
DDCompactView cpv 
)
protected

Definition at line 371 of file DDHGCalSiliconModule.cc.

References funct::abs(), filterCSVwithJSON::copy, HGCalTypes::CornerCenteredLambda, HGCalTypes::CornerCenteredY, DDBase< N, C >::ddname(), DDSplit(), PVValHelper::dy, first, mps_fire::i, gpuVertexFinder::iv, isotrackApplyRegressor::k, phase1PixelTopology::layer, mergeVDriftHistosByStation::name, HGCalTypes::packTypeUV(), DDCompactView::position(), dttmaxenums::R, alignCSCRings::r, idealTransformation::rotation, edm::second(), mathSSE::sqrt(), AlCaHLTBitMon_QueryRunRegistry::string, findQualityFiles::v, HGCalTypes::WaferCenteredBack, HGCalTypes::WaferFull, HGCalWaferIndex::waferLayer(), HGCalProperty::waferOrient(), HGCalProperty::waferPartial(), HGCalProperty::waferThick(), HGCalWaferIndex::waferU(), and HGCalWaferIndex::waferV().

371  {
372  static const double sqrt3 = std::sqrt(3.0);
373  int layercenter = (layerTypes_[layer] == HGCalTypes::CornerCenteredLambda)
374  ? 1
376  int layertype = (layerTypes_[layer] == HGCalTypes::WaferCenteredBack) ? 1 : 0;
377  int firstWafer = waferLayerStart_[layer];
378  int lastWafer = ((layer + 1 < static_cast<int>(waferLayerStart_.size())) ? waferLayerStart_[layer + 1]
379  : static_cast<int>(waferIndex_.size()));
380  double r = 0.5 * (waferSize_ + waferSepar_);
381  double R = 2.0 * r / sqrt3;
382  double dy = 0.75 * R;
383  const auto& xyoff = geomTools_.shiftXY(layercenter, (waferSize_ + waferSepar_));
384 #ifdef EDM_ML_DEBUG
385  int ium(0), ivm(0), kount(0);
386  std::vector<int> ntype(3, 0);
387  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconModule: " << glog.ddname() << " r " << r << " R " << R << " dy "
388  << dy << " Shift " << xyoff.first << ":" << xyoff.second << " WaferSize "
389  << (waferSize_ + waferSepar_) << " index " << firstWafer << ":" << (lastWafer - 1);
390 #endif
391  for (int k = firstWafer; k < lastWafer; ++k) {
394 #ifdef EDM_ML_DEBUG
395  int iu = std::abs(u);
396  int iv = std::abs(v);
397 #endif
398  int nr = 2 * v;
399  int nc = -2 * u + v;
400  double xpos = xyoff.first + nc * r;
401  double ypos = xyoff.second + nr * dy;
405  std::string wafer;
406  int i(999);
407  if (part == HGCalTypes::WaferFull) {
408  i = layertype * waferTypes_ + type;
409  wafer = waferFull_[i];
410  } else {
411  i = (part - 1) * waferTypes_ * facingTypes_ * orientationTypes_ + layertype * waferTypes_ * orientationTypes_ +
412  type * orientationTypes_ + orien;
413 #ifdef EDM_ML_DEBUG
414  edm::LogVerbatim("HGCalGeom") << " layertype:type:part:orien:ind " << layertype << ":" << type << ":" << part
415  << ":" << orien << ":" << i << ":" << waferPart_.size();
416 #endif
417  wafer = waferPart_[i];
418  }
419  int copy = HGCalTypes::packTypeUV(type, u, v);
420 #ifdef EDM_ML_DEBUG
421  edm::LogVerbatim("HGCalGeom") << " DDHGCalSiliconModule: Layer " << HGCalWaferIndex::waferLayer(waferIndex_[k])
422  << " Wafer " << wafer << " number " << copy << " type:part:orien:ind " << type << ":"
423  << part << ":" << orien << ":" << i << " layer:u:v:indx " << (layer + firstLayer_)
424  << ":" << u << ":" << v;
425  if (iu > ium)
426  ium = iu;
427  if (iv > ivm)
428  ivm = iv;
429  kount++;
430  if (copies_.count(copy) == 0)
431  copies_.insert(copy);
432 #endif
433  DDTranslation tran(xpos, ypos, 0.0);
435  DDName name = DDName(DDSplit(wafer).first, DDSplit(wafer).second);
436  cpv.position(name, glog.ddname(), copy, tran, rotation);
437 #ifdef EDM_ML_DEBUG
438  ++ntype[type];
439  edm::LogVerbatim("HGCalGeom") << " DDHGCalSiliconModule: " << name << " number " << copy << " type " << layertype
440  << ":" << type << " positioned in " << glog.ddname() << " at " << tran
441  << " with no rotation";
442 #endif
443  }
444 #ifdef EDM_ML_DEBUG
445  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconModule: Maximum # of u " << ium << " # of v " << ivm << " and "
446  << kount << " wafers (" << ntype[0] << ":" << ntype[1] << ":" << ntype[2] << ") for "
447  << glog.ddname();
448 #endif
449 }
Log< level::Info, true > LogVerbatim
int32_t *__restrict__ iv
void position(const DDLogicalPart &self, const DDLogicalPart &parent, const std::string &copyno, const DDTranslation &trans, const DDRotation &rot, const DDDivision *div=nullptr)
int32_t waferU(const int32_t index)
int32_t waferLayer(const int32_t index)
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:17
std::vector< int > waferIndex_
std::vector< int > layerTypes_
int32_t waferOrient(const int32_t property)
std::vector< int > waferProperty_
constexpr std::array< uint8_t, layerIndexSize > layer
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:57
U second(std::pair< T, U > const &p)
std::pair< double, double > shiftXY(int waferPosition, double waferSize) const
T sqrt(T t)
Definition: SSEVec.h:19
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 > waferLayerStart_
part
Definition: HCALResponse.h:20
std::vector< std::string > waferPart_
std::vector< std::string > waferFull_
int32_t waferPartial(const int32_t property)
std::unordered_set< int > copies_
int32_t waferV(const int32_t index)
static int32_t packTypeUV(int type, int u, int v)
Definition: HGCalTypes.cc:3
std::pair< std::string, std::string > DDSplit(const std::string &n)
split into (name,namespace), separator = &#39;:&#39;
Definition: DDSplit.cc:3
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7
const N & ddname() const
Definition: DDBase.h:61

Member Data Documentation

int DDHGCalSiliconModule::absorbMode_
private

Definition at line 62 of file DDHGCalSiliconModule.cc.

double DDHGCalSiliconModule::alpha_
private

Definition at line 91 of file DDHGCalSiliconModule.cc.

std::unordered_set<int> DDHGCalSiliconModule::copies_
private

Definition at line 90 of file DDHGCalSiliconModule.cc.

std::vector<int> DDHGCalSiliconModule::copyNumber_
private

Definition at line 74 of file DDHGCalSiliconModule.cc.

double DDHGCalSiliconModule::cosAlpha_
private

Definition at line 91 of file DDHGCalSiliconModule.cc.

int DDHGCalSiliconModule::facingTypes_
private

Definition at line 58 of file DDHGCalSiliconModule.cc.

int DDHGCalSiliconModule::firstLayer_
private

Definition at line 61 of file DDHGCalSiliconModule.cc.

HGCalGeomTools DDHGCalSiliconModule::geomTools_
private

Definition at line 52 of file DDHGCalSiliconModule.cc.

std::vector<int> DDHGCalSiliconModule::layers_
private

Definition at line 75 of file DDHGCalSiliconModule.cc.

std::vector<int> DDHGCalSiliconModule::layerSense_
private

Definition at line 78 of file DDHGCalSiliconModule.cc.

std::vector<double> DDHGCalSiliconModule::layerThick_
private

Definition at line 76 of file DDHGCalSiliconModule.cc.

std::vector<int> DDHGCalSiliconModule::layerType_
private

Definition at line 77 of file DDHGCalSiliconModule.cc.

std::vector<int> DDHGCalSiliconModule::layerTypes_
private

Definition at line 85 of file DDHGCalSiliconModule.cc.

std::vector<std::string> DDHGCalSiliconModule::materials_
private

Definition at line 71 of file DDHGCalSiliconModule.cc.

std::vector<std::string> DDHGCalSiliconModule::names_
private

Definition at line 72 of file DDHGCalSiliconModule.cc.

std::string DDHGCalSiliconModule::nameSpace_
private

Definition at line 89 of file DDHGCalSiliconModule.cc.

int DDHGCalSiliconModule::orientationTypes_
private

Definition at line 60 of file DDHGCalSiliconModule.cc.

int DDHGCalSiliconModule::partialTypes_
private

Definition at line 59 of file DDHGCalSiliconModule.cc.

std::vector<double> DDHGCalSiliconModule::rMaxFront_
private

Definition at line 84 of file DDHGCalSiliconModule.cc.

std::vector<double> DDHGCalSiliconModule::rMinFront_
private

Definition at line 81 of file DDHGCalSiliconModule.cc.

std::string DDHGCalSiliconModule::rotstr_
private

Definition at line 68 of file DDHGCalSiliconModule.cc.

int DDHGCalSiliconModule::sectors_
private

Definition at line 67 of file DDHGCalSiliconModule.cc.

int DDHGCalSiliconModule::sensitiveMode_
private

Definition at line 63 of file DDHGCalSiliconModule.cc.

std::vector<double> DDHGCalSiliconModule::slopeB_
private

Definition at line 79 of file DDHGCalSiliconModule.cc.

std::vector<double> DDHGCalSiliconModule::slopeT_
private

Definition at line 82 of file DDHGCalSiliconModule.cc.

std::vector<double> DDHGCalSiliconModule::thick_
private

Definition at line 73 of file DDHGCalSiliconModule.cc.

constexpr double DDHGCalSiliconModule::tol1_ = 0.01
staticprivate

Definition at line 54 of file DDHGCalSiliconModule.cc.

constexpr double DDHGCalSiliconModule::tol2_ = 0.00001
staticprivate

Definition at line 55 of file DDHGCalSiliconModule.cc.

std::vector<std::string> DDHGCalSiliconModule::waferFull_
private

Definition at line 69 of file DDHGCalSiliconModule.cc.

std::vector<int> DDHGCalSiliconModule::waferIndex_
private

Definition at line 86 of file DDHGCalSiliconModule.cc.

std::vector<int> DDHGCalSiliconModule::waferLayerStart_
private

Definition at line 88 of file DDHGCalSiliconModule.cc.

std::vector<std::string> DDHGCalSiliconModule::waferPart_
private

Definition at line 70 of file DDHGCalSiliconModule.cc.

std::vector<int> DDHGCalSiliconModule::waferProperty_
private

Definition at line 87 of file DDHGCalSiliconModule.cc.

double DDHGCalSiliconModule::waferSepar_
private

Definition at line 66 of file DDHGCalSiliconModule.cc.

double DDHGCalSiliconModule::waferSize_
private

Definition at line 65 of file DDHGCalSiliconModule.cc.

int DDHGCalSiliconModule::waferTypes_
private

Definition at line 57 of file DDHGCalSiliconModule.cc.

std::vector<double> DDHGCalSiliconModule::zFrontB_
private

Definition at line 80 of file DDHGCalSiliconModule.cc.

std::vector<double> DDHGCalSiliconModule::zFrontT_
private

Definition at line 83 of file DDHGCalSiliconModule.cc.

double DDHGCalSiliconModule::zMinBlock_
private

Definition at line 64 of file DDHGCalSiliconModule.cc.