CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Member Functions | Private Attributes | Static Private Attributes
DDHGCalSiliconRotatedModule Class Reference
Inheritance diagram for DDHGCalSiliconRotatedModule:

Public Member Functions

 DDHGCalSiliconRotatedModule ()
 
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_
 
HGCalCassette cassette_
 
int cassettes_
 
std::vector< double > cassetteShift_
 
std::unordered_set< int > copies_
 
std::vector< int > copyNumber_
 
double cosAlpha_
 
int facingTypes_
 
int firstLayer_
 
HGCalGeomTools geomTools_
 
std::vector< int > layerOrient_
 
std::vector< int > layers_
 
std::vector< int > layerSense_
 
std::vector< double > layerThick_
 
std::vector< int > layerType_
 
std::vector< std::string > materials_
 
std::vector< std::string > names_
 
std::string nameSpace_
 
int orientationTypes_
 
int placeOffset_
 
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 38 of file DDHGCalSiliconRotatedModule.cc.

Constructor & Destructor Documentation

◆ DDHGCalSiliconRotatedModule()

DDHGCalSiliconRotatedModule::DDHGCalSiliconRotatedModule ( )

Definition at line 99 of file DDHGCalSiliconRotatedModule.cc.

99  {
100 #ifdef EDM_ML_DEBUG
101  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: Creating an instance";
102 #endif
103 }
Log< level::Info, true > LogVerbatim

Member Function Documentation

◆ constructLayers()

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

Definition at line 279 of file DDHGCalSiliconRotatedModule.cc.

References funct::abs(), angle_units::operators::convertRadToDeg(), filterCSVwithJSON::copy, DDBase< N, C >::ddname(), DDSplit(), dqmdumpme::first, mps_fire::i, cuy::ii, dqmdumpme::k, Skims_PA_cff::name, DDBase< N, C >::name(), DDSolidFactory::polyhedra(), DDCompactView::position(), HGCalGeomTools::radius(), makeMuonMisalignmentScenario::rot, cms::rotation_utils::rotName(), edm::second(), AlCaHLTBitMon_QueryRunRegistry::string, to_string(), DDSolidFactory::tubs(), HGCalTypes::WaferCenterR, and geometryCSVtoXML::zz.

279  {
280  double zi(zMinBlock_);
281  int laymin(0);
282  for (unsigned int i = 0; i < layers_.size(); i++) {
283  double zo = zi + layerThick_[i];
284  double routF = HGCalGeomTools::radius(zi, zFrontT_, rMaxFront_, slopeT_);
285  int laymax = laymin + layers_[i];
286  double zz = zi;
287  double thickTot(0);
288  for (int ly = laymin; ly < laymax; ++ly) {
289  int ii = layerType_[ly];
290  int copy = copyNumber_[ii];
291  double hthick = 0.5 * thick_[ii];
292  double rinB = HGCalGeomTools::radius(zo - tol1_, zFrontB_, rMinFront_, slopeB_);
293  zz += hthick;
294  thickTot += thick_[ii];
295 
297 #ifdef EDM_ML_DEBUG
298  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: Layer " << ly << ":" << ii << " Front " << zi
299  << ", " << routF << " Back " << zo << ", " << rinB << " superlayer thickness "
300  << layerThick_[i];
301 #endif
303  DDMaterial matter(matName);
304  DDLogicalPart glog;
305  if (layerSense_[ly] < 1) {
306  std::vector<double> pgonZ, pgonRin, pgonRout;
307  double rmax = routF * cosAlpha_ - tol1_;
308  HGCalGeomTools::radius(zz - hthick,
309  zz + hthick,
310  zFrontB_,
311  rMinFront_,
312  slopeB_,
313  zFrontT_,
314  rMaxFront_,
315  slopeT_,
316  -layerSense_[ly],
317  pgonZ,
318  pgonRin,
319  pgonRout);
320  for (unsigned int isec = 0; isec < pgonZ.size(); ++isec) {
321  pgonZ[isec] -= zz;
322  if (layerSense_[ly] == 0 || absorbMode_ == 0)
323  pgonRout[isec] = rmax;
324  else
325  pgonRout[isec] = pgonRout[isec] * cosAlpha_ - tol1_;
326  }
327  DDSolid solid =
328  DDSolidFactory::polyhedra(DDName(name, nameSpace_), sectors_, -alpha_, 2._pi, pgonZ, pgonRin, pgonRout);
329  glog = DDLogicalPart(solid.ddname(), matter, solid);
330 #ifdef EDM_ML_DEBUG
331  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: " << solid.name() << " polyhedra of " << sectors_
332  << " sectors covering " << convertRadToDeg(-alpha_) << ":"
333  << convertRadToDeg(-alpha_ + 2._pi) << " with " << pgonZ.size()
334  << " sections and filled with " << matName;
335  for (unsigned int k = 0; k < pgonZ.size(); ++k)
336  edm::LogVerbatim("HGCalGeom") << "[" << k << "] z " << pgonZ[k] << " R " << pgonRin[k] << ":" << pgonRout[k];
337 #endif
338  } else {
339  double rins =
341  double routs =
342  (sensitiveMode_ < 1) ? routF : HGCalGeomTools::radius(zz - hthick, zFrontT_, rMaxFront_, slopeT_);
343  DDSolid solid = DDSolidFactory::tubs(DDName(name, nameSpace_), hthick, rins, routs, 0.0, 2._pi);
344  glog = DDLogicalPart(solid.ddname(), matter, solid);
345 #ifdef EDM_ML_DEBUG
346  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: " << solid.name() << " Tubs made of " << matName
347  << " of dimensions " << rinB << ":" << rins << ", " << routF << ":" << routs
348  << ", " << hthick << ", 0.0, 360.0 and position " << glog.name() << " number "
349  << copy << ":" << layerOrient_[copy - firstLayer_];
350 #endif
351  positionSensitive(glog, (copy - firstLayer_), cpv);
352  }
353  DDTranslation r1(0, 0, zz);
354  DDRotation rot;
355 #ifdef EDM_ML_DEBUG
356  std::string rotName("Null");
357 #endif
360 #ifdef EDM_ML_DEBUG
361  rotName = rotstr_;
362 #endif
363  }
364  cpv.position(glog, module, copy, r1, rot);
365  int inc = ((layerSense_[ly] > 0) && (facingTypes_ > 1)) ? 2 : 1;
366  copyNumber_[ii] = copy + inc;
367 #ifdef EDM_ML_DEBUG
368  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: " << glog.name() << " number " << copy
369  << " positioned in " << module.name() << " at " << r1 << " with " << rotName
370  << " rotation";
371 #endif
372  zz += hthick;
373  } // End of loop over layers in a block
374  zi = zo;
375  laymin = laymax;
376  // Make consistency check of all the partitions of the block
377  if (std::abs(thickTot - layerThick_[i]) >= tol2_) {
378  if (thickTot > layerThick_[i]) {
379  edm::LogError("HGCalGeom") << "Thickness of the partition " << layerThick_[i] << " is smaller than " << thickTot
380  << ": thickness of all its components **** ERROR ****";
381  } else {
382  edm::LogWarning("HGCalGeom") << "Thickness of the partition " << layerThick_[i] << " does not match with "
383  << thickTot << " of the components";
384  }
385  }
386  } // End of loop over blocks
387 }
Log< level::Info, true > LogVerbatim
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)
void position(const DDLogicalPart &self, const DDLogicalPart &parent, const std::string &copyno, const DDTranslation &trans, const DDRotation &rot, const DDDivision *div=nullptr)
DDMaterial is used to define and access material information.
Definition: DDMaterial.h:45
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:17
void positionSensitive(const DDLogicalPart &glog, int layer, DDCompactView &cpv)
Log< level::Error, false > LogError
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
static std::string to_string(const XMLCh *ch)
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)
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
ii
Definition: cuy.py:589
const N & name() const
Definition: DDBase.h:59
static constexpr int32_t WaferCenterR
Definition: HGCalTypes.h:27
const N & ddname() const
Definition: DDBase.h:61
std::vector< std::string > materials_
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

◆ execute()

void DDHGCalSiliconRotatedModule::execute ( DDCompactView cpv)
override

Definition at line 262 of file DDHGCalSiliconRotatedModule.cc.

References DDHGCalGeom::constructLayers(), dqmdumpme::k, and class-composition::parent.

262  {
263 #ifdef EDM_ML_DEBUG
264  edm::LogVerbatim("HGCalGeom") << "==>> Constructing DDHGCalSiliconRotatedModule...";
265  copies_.clear();
266 #endif
267  constructLayers(parent(), cpv);
268 #ifdef EDM_ML_DEBUG
269  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: " << copies_.size() << " different wafer copy numbers";
270  int k(0);
271  for (std::unordered_set<int>::const_iterator itr = copies_.begin(); itr != copies_.end(); ++itr, ++k) {
272  edm::LogVerbatim("HGCalGeom") << "Copy [" << k << "] : " << (*itr);
273  }
274  copies_.clear();
275  edm::LogVerbatim("HGCalGeom") << "<<== End of DDHGCalSiliconRotatedModule construction...";
276 #endif
277 }
Log< level::Info, true > LogVerbatim
void constructLayers(const DDLogicalPart &, DDCompactView &cpv)

◆ initialize()

void DDHGCalSiliconRotatedModule::initialize ( const DDNumericArguments nArgs,
const DDVectorArguments vArgs,
const DDMapArguments mArgs,
const DDStringArguments sArgs,
const DDStringVectorArguments vsArgs 
)
override

Definition at line 105 of file DDHGCalSiliconRotatedModule.cc.

References angle_units::operators::convertRadToDeg(), funct::cos(), dbl_to_int(), mps_fire::i, testProducerWithPsetDescEmpty_cfi::i1, testProducerWithPsetDescEmpty_cfi::i2, cuy::ii, dqmiolumiharvest::j, dqmdumpme::k, HGCalTypes::layerType(), SiStripPI::min, DDCurrentNamespace::ns(), HGCalWaferIndex::waferLayer(), HGCalProperty::waferOrient(), HGCalProperty::waferPartial(), HGCalProperty::waferThick(), HGCalWaferIndex::waferU(), and HGCalWaferIndex::waferV().

109  {
110  waferTypes_ = static_cast<int>(nArgs["WaferTypes"]);
111  facingTypes_ = static_cast<int>(nArgs["FacingTypes"]);
112  orientationTypes_ = static_cast<int>(nArgs["OrientationTypes"]);
113  placeOffset_ = static_cast<int>(nArgs["PlaceOffset"]);
114 #ifdef EDM_ML_DEBUG
115  edm::LogVerbatim("HGCalGeom") << "Number of types of wafers: " << waferTypes_ << " facings: " << facingTypes_
116  << " Orientations: " << orientationTypes_ << " PlaceOffset: " << placeOffset_;
117 #endif
118  firstLayer_ = static_cast<int>(nArgs["FirstLayer"]);
119  absorbMode_ = static_cast<int>(nArgs["AbsorberMode"]);
120  sensitiveMode_ = static_cast<int>(nArgs["SensitiveMode"]);
121 #ifdef EDM_ML_DEBUG
122  edm::LogVerbatim("HGCalGeom") << "First Layer " << firstLayer_ << " and "
123  << "Absober:Sensitive mode " << absorbMode_ << ":" << sensitiveMode_;
124 #endif
125  zMinBlock_ = nArgs["zMinBlock"];
126  waferSize_ = nArgs["waferSize"];
127  waferSepar_ = nArgs["SensorSeparation"];
128  sectors_ = static_cast<int>(nArgs["Sectors"]);
129  cassettes_ = static_cast<int>(nArgs["Cassettes"]);
130  alpha_ = (1._pi) / sectors_;
131  cosAlpha_ = cos(alpha_);
132  rotstr_ = sArgs["LayerRotation"];
133 #ifdef EDM_ML_DEBUG
134  edm::LogVerbatim("HGCalGeom") << "zStart " << zMinBlock_ << " wafer width " << waferSize_ << " separations "
135  << waferSepar_ << " sectors " << sectors_ << ":" << convertRadToDeg(alpha_) << ":"
136  << cosAlpha_ << " rotation matrix " << rotstr_ << " with " << cassettes_
137  << " cassettes";
138 #endif
139  waferFull_ = vsArgs["WaferNamesFull"];
140  waferPart_ = vsArgs["WaferNamesPartial"];
141 #ifdef EDM_ML_DEBUG
142  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: " << waferFull_.size() << " full and "
143  << waferPart_.size() << " partial modules\nDDHGCalSiliconRotatedModule:Full Modules:";
144  unsigned int i1max = static_cast<unsigned int>(waferFull_.size());
145  for (unsigned int i1 = 0; i1 < i1max; i1 += 2) {
146  std::ostringstream st1;
147  unsigned int i2 = std::min((i1 + 2), i1max);
148  for (unsigned int i = i1; i < i2; ++i)
149  st1 << " [" << i << "] " << waferFull_[i];
150  edm::LogVerbatim("HGCalGeom") << st1.str();
151  }
152  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: Partial Modules:";
153  i1max = static_cast<unsigned int>(waferPart_.size());
154  for (unsigned int i1 = 0; i1 < i1max; i1 += 2) {
155  std::ostringstream st1;
156  unsigned int i2 = std::min((i1 + 2), i1max);
157  for (unsigned int i = i1; i < i2; ++i)
158  st1 << " [" << i << "] " << waferPart_[i];
159  edm::LogVerbatim("HGCalGeom") << st1.str();
160  }
161 #endif
162  materials_ = vsArgs["MaterialNames"];
163  names_ = vsArgs["VolumeNames"];
164  thick_ = vArgs["Thickness"];
165  copyNumber_.resize(materials_.size(), 1);
166 #ifdef EDM_ML_DEBUG
167  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: " << materials_.size() << " types of volumes";
168  for (unsigned int i = 0; i < names_.size(); ++i)
169  edm::LogVerbatim("HGCalGeom") << "Volume [" << i << "] " << names_[i] << " of thickness " << thick_[i]
170  << " filled with " << materials_[i] << " first copy number " << copyNumber_[i];
171 #endif
172  layers_ = dbl_to_int(vArgs["Layers"]);
173  layerThick_ = vArgs["LayerThick"];
174 #ifdef EDM_ML_DEBUG
175  edm::LogVerbatim("HGCalGeom") << "There are " << layers_.size() << " blocks";
176  for (unsigned int i = 0; i < layers_.size(); ++i)
177  edm::LogVerbatim("HGCalGeom") << "Block [" << i << "] of thickness " << layerThick_[i] << " with " << layers_[i]
178  << " layers";
179 #endif
180  layerType_ = dbl_to_int(vArgs["LayerType"]);
181  layerSense_ = dbl_to_int(vArgs["LayerSense"]);
182  layerOrient_ = dbl_to_int(vArgs["LayerTypes"]);
183  for (unsigned int k = 0; k < layerOrient_.size(); ++k)
185 #ifdef EDM_ML_DEBUG
186  for (unsigned int i = 0; i < layerOrient_.size(); ++i)
187  edm::LogVerbatim("HGCalGeom") << "LayerTypes [" << i << "] " << layerOrient_[i];
188 #endif
189  if (firstLayer_ > 0) {
190  for (unsigned int i = 0; i < layerType_.size(); ++i) {
191  if (layerSense_[i] > 0) {
192  int ii = layerType_[i];
193  copyNumber_[ii] = (layerSense_[i] == 1) ? firstLayer_ : (firstLayer_ + 1);
194 #ifdef EDM_ML_DEBUG
195  edm::LogVerbatim("HGCalGeom") << "First copy number for layer type " << i << ":" << ii << " with "
196  << materials_[ii] << " changed to " << copyNumber_[ii];
197 #endif
198  }
199  }
200  } else {
201  firstLayer_ = 1;
202  }
203 #ifdef EDM_ML_DEBUG
204  edm::LogVerbatim("HGCalGeom") << "There are " << layerType_.size() << " layers";
205  for (unsigned int i = 0; i < layerType_.size(); ++i)
206  edm::LogVerbatim("HGCalGeom") << "Layer [" << i << "] with material type " << layerType_[i] << " sensitive class "
207  << layerSense_[i];
208 #endif
209  slopeB_ = vArgs["SlopeBottom"];
210  zFrontB_ = vArgs["ZFrontBottom"];
211  rMinFront_ = vArgs["RMinFront"];
212  slopeT_ = vArgs["SlopeTop"];
213  zFrontT_ = vArgs["ZFrontTop"];
214  rMaxFront_ = vArgs["RMaxFront"];
215 #ifdef EDM_ML_DEBUG
216  for (unsigned int i = 0; i < slopeB_.size(); ++i)
217  edm::LogVerbatim("HGCalGeom") << "Bottom Block [" << i << "] Zmin " << zFrontB_[i] << " Rmin " << rMinFront_[i]
218  << " Slope " << slopeB_[i];
219  for (unsigned int i = 0; i < slopeT_.size(); ++i)
220  edm::LogVerbatim("HGCalGeom") << "Top Block [" << i << "] Zmin " << zFrontT_[i] << " Rmax " << rMaxFront_[i]
221  << " Slope " << slopeT_[i];
222 #endif
223  waferIndex_ = dbl_to_int(vArgs["WaferIndex"]);
224  waferProperty_ = dbl_to_int(vArgs["WaferProperties"]);
225  waferLayerStart_ = dbl_to_int(vArgs["WaferLayerStart"]);
226  cassetteShift_ = vArgs["CassetteShift"];
227 #ifdef EDM_ML_DEBUG
228  edm::LogVerbatim("HGCalGeom") << "waferProperties with " << waferIndex_.size() << " entries in "
229  << waferLayerStart_.size() << " layers";
230  for (unsigned int k = 0; k < waferLayerStart_.size(); ++k)
231  edm::LogVerbatim("HGCalGeom") << "LayerStart[" << k << "] " << waferLayerStart_[k];
232  for (unsigned int k = 0; k < waferIndex_.size(); ++k)
233  edm::LogVerbatim("HGCalGeom") << "Wafer[" << k << "] " << waferIndex_[k] << " ("
236  << HGCalWaferIndex::waferV(waferIndex_[k]) << ") : ("
240  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: " << cassetteShift_.size()
241  << " elements for cassette shifts";
242  unsigned int j1max = cassetteShift_.size();
243  for (unsigned int j1 = 0; j1 < j1max; j1 += 6) {
244  std::ostringstream st1;
245  unsigned int j2 = std::min((j1 + 6), j1max);
246  for (unsigned int j = j1; j < j2; ++j)
247  st1 << " [" << j << "] " << std::setw(9) << cassetteShift_[j];
248  edm::LogVerbatim("HGCalGeom") << st1.str();
249  }
250 #endif
252 #ifdef EDM_ML_DEBUG
253  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: NameSpace " << nameSpace_ << ":";
254 #endif
256 }
Log< level::Info, true > LogVerbatim
int32_t waferU(const int32_t index)
int32_t waferLayer(const int32_t index)
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
static std::string & ns()
std::vector< std::string > waferFull_
int32_t waferOrient(const int32_t property)
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
int32_t waferThick(const int32_t property)
ii
Definition: cuy.py:589
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< std::string > materials_
int32_t waferPartial(const int32_t property)
int32_t waferV(const int32_t index)
static int32_t layerType(int type)
Definition: HGCalTypes.cc:42
std::vector< std::string > waferPart_
void setParameter(int cassette, const std::vector< double > &shifts)
Definition: HGCalCassette.cc:8

◆ positionSensitive()

void DDHGCalSiliconRotatedModule::positionSensitive ( const DDLogicalPart glog,
int  layer,
DDCompactView cpv 
)
protected

Definition at line 390 of file DDHGCalSiliconRotatedModule.cc.

References funct::abs(), angle(), HGCalCell::cellPlacementIndex(), angle_units::operators::convertRadToDeg(), filterCSVwithJSON::copy, DDBase< N, C >::ddname(), DDSplit(), PVValHelper::dy, dqmdumpme::first, mps_fire::i, gpuVertexFinder::iv, dqmdumpme::k, Skims_PA_cff::name, EgHLTOffHistBins_cfi::nr, HGCalTypes::packTypeUV(), DDCompactView::position(), idealTransformation::rotation, edm::second(), mathSSE::sqrt(), AlCaHLTBitMon_QueryRunRegistry::string, findQualityFiles::v, HGCalProperty::waferCassette(), HGCalTypes::WaferCenterB, HGCalTypes::WaferFull, HGCalTypes::WaferHDTop, HGCalWaferIndex::waferLayer(), HGCalProperty::waferOrient(), HGCalTypes::WaferPartHDOffset, HGCalProperty::waferPartial(), HGCalTypes::WaferPartLDOffset, HGCalProperty::waferThick(), HGCalTypes::WaferTypeOffset, HGCalWaferIndex::waferU(), and HGCalWaferIndex::waferV().

390  {
391  static const double sqrt3 = std::sqrt(3.0);
392  int layercenter = layerOrient_[layer];
393  int layertype = (layerOrient_[layer] == HGCalTypes::WaferCenterB) ? 1 : 0;
394  int firstWafer = waferLayerStart_[layer];
395  int lastWafer = ((layer + 1 < static_cast<int>(waferLayerStart_.size())) ? waferLayerStart_[layer + 1]
396  : static_cast<int>(waferIndex_.size()));
397  double delx = 0.5 * (waferSize_ + waferSepar_);
398  double dely = 2.0 * delx / sqrt3;
399  double dy = 0.75 * dely;
400  const auto& xyoff = geomTools_.shiftXY(layercenter, (waferSize_ + waferSepar_));
401 #ifdef EDM_ML_DEBUG
402  int ium(0), ivm(0), kount(0);
403  std::vector<int> ntype(3, 0);
404  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: " << glog.ddname() << " r " << delx << " R " << dely
405  << " dy " << dy << " Shift " << xyoff.first << ":" << xyoff.second << " WaferSize "
406  << (waferSize_ + waferSepar_) << " index " << firstWafer << ":" << (lastWafer - 1)
407  << " Layer Center " << layercenter << ":" << layertype;
408 #endif
409  for (int k = firstWafer; k < lastWafer; ++k) {
412 #ifdef EDM_ML_DEBUG
413  int iu = std::abs(u);
414  int iv = std::abs(v);
415 #endif
416  int nr = 2 * v;
417  int nc = -2 * u + v;
422  int place = HGCalCell::cellPlacementIndex(1, layertype, orien);
423  auto cshift = cassette_.getShift(layer + 1, -1, cassette);
424  double xpos = xyoff.first - cshift.first + nc * delx;
425  double ypos = xyoff.second + cshift.second + nr * dy;
426 #ifdef EDM_ML_DEBUG
427  double xorig = xyoff.first + nc * delx;
428  double yorig = xyoff.second + nr * dy;
429  double angle = std::atan2(yorig, xorig);
430  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule::Wafer: layer " << layer + 1 << " cassette "
431  << cassette << " Shift " << cshift.first << ":" << cshift.second << " Original "
432  << xorig << ":" << yorig << ":" << convertRadToDeg(angle) << " Final " << xpos << ":"
433  << ypos << " u|v " << u << ":" << v << " type|part|orient|place " << type << ":"
434  << part << ":" << orien << ":" << place;
435 #endif
436  std::string wafer;
437  int i(999);
438  if (part == HGCalTypes::WaferFull) {
440  wafer = waferFull_[i];
441 #ifdef EDM_ML_DEBUG
442  edm::LogVerbatim("HGCalGeom") << " layertype:type:part:orien:cassette:place:offsets:ind " << layertype << ":"
443  << type << ":" << part << ":" << orien << ":" << cassette << ":" << place << ":"
444  << placeOffset_ << ":" << facingTypes_ << ":" << orientationTypes_ << " wafer " << i
445  << ":" << wafer;
446 #endif
447  } else {
449  i = (part - partoffset) * facingTypes_ * orientationTypes_ +
451 #ifdef EDM_ML_DEBUG
452  edm::LogVerbatim("HGCalGeom") << " layertype:type:part:orien:cassette:place:offsets:ind " << layertype << ":"
453  << type << ":" << part << ":" << orien << ":" << cassette << ":" << place << ":"
454  << partoffset << ":" << HGCalTypes::WaferTypeOffset[type] << ":" << i << ":"
455  << waferPart_.size();
456 #endif
457  wafer = waferPart_[i];
458  }
459  int copy = HGCalTypes::packTypeUV(type, u, v);
460 #ifdef EDM_ML_DEBUG
461  edm::LogVerbatim("HGCalGeom") << " DDHGCalSiliconRotatedModule: Layer "
462  << HGCalWaferIndex::waferLayer(waferIndex_[k]) << " Wafer " << wafer << " number "
463  << copy << " type:part:orien:ind " << type << ":" << part << ":" << orien << ":" << i
464  << " layer:u:v:indx " << (layer + firstLayer_) << ":" << u << ":" << v;
465  if (iu > ium)
466  ium = iu;
467  if (iv > ivm)
468  ivm = iv;
469  kount++;
470  if (copies_.count(copy) == 0)
471  copies_.insert(copy);
472 #endif
473  DDTranslation tran(xpos, ypos, 0.0);
475  DDName name = DDName(DDSplit(wafer).first, DDSplit(wafer).second);
476  cpv.position(name, glog.ddname(), copy, tran, rotation);
477 #ifdef EDM_ML_DEBUG
478  ++ntype[type];
479  edm::LogVerbatim("HGCalGeom") << " DDHGCalSiliconRotatedModule: " << name << " number " << copy << " type "
480  << layertype << ":" << type << " positioned in " << glog.ddname() << " at " << tran
481  << " with no rotation";
482 #endif
483  }
484 #ifdef EDM_ML_DEBUG
485  edm::LogVerbatim("HGCalGeom") << "DDHGCalSiliconRotatedModule: Maximum # of u " << ium << " # of v " << ivm << " and "
486  << kount << " wafers (" << ntype[0] << ":" << ntype[1] << ":" << ntype[2] << ") for "
487  << glog.ddname();
488 #endif
489 }
Log< level::Info, true > LogVerbatim
static int32_t cellPlacementIndex(int32_t iz, int32_t frontBack, int32_t orient)
Definition: HGCalCell.cc:237
static constexpr int32_t WaferPartLDOffset
Definition: HGCalTypes.h:57
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)
static constexpr int32_t WaferTypeOffset[3]
Definition: HGCalTypes.h:59
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::pair< double, double > getShift(int layer, int zside, int cassette) const
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:17
std::vector< std::string > waferFull_
int32_t waferOrient(const int32_t property)
std::pair< double, double > shiftXY(int waferPosition, double waferSize) const
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:57
U second(std::pair< T, U > const &p)
int32_t waferCassette(const int32_t property)
static constexpr int32_t WaferFull
Definition: HGCalTypes.h:35
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)
static constexpr int32_t WaferPartHDOffset
Definition: HGCalTypes.h:58
part
Definition: HCALResponse.h:20
const N & ddname() const
Definition: DDBase.h:61
int32_t waferPartial(const int32_t property)
int32_t waferV(const int32_t index)
static int32_t packTypeUV(int type, int u, int v)
Definition: HGCalTypes.cc:3
static constexpr int32_t WaferHDTop
Definition: HGCalTypes.h:51
static constexpr int32_t WaferCenterB
Definition: HGCalTypes.h:26
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
std::vector< std::string > waferPart_
T angle(T x1, T y1, T z1, T x2, T y2, T z2)
Definition: angle.h:11

Member Data Documentation

◆ absorbMode_

int DDHGCalSiliconRotatedModule::absorbMode_
private

Definition at line 65 of file DDHGCalSiliconRotatedModule.cc.

◆ alpha_

double DDHGCalSiliconRotatedModule::alpha_
private

Definition at line 96 of file DDHGCalSiliconRotatedModule.cc.

◆ cassette_

HGCalCassette DDHGCalSiliconRotatedModule::cassette_
private

Definition at line 55 of file DDHGCalSiliconRotatedModule.cc.

◆ cassettes_

int DDHGCalSiliconRotatedModule::cassettes_
private

Definition at line 71 of file DDHGCalSiliconRotatedModule.cc.

◆ cassetteShift_

std::vector<double> DDHGCalSiliconRotatedModule::cassetteShift_
private

Definition at line 93 of file DDHGCalSiliconRotatedModule.cc.

◆ copies_

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

Definition at line 95 of file DDHGCalSiliconRotatedModule.cc.

◆ copyNumber_

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

Definition at line 78 of file DDHGCalSiliconRotatedModule.cc.

◆ cosAlpha_

double DDHGCalSiliconRotatedModule::cosAlpha_
private

Definition at line 96 of file DDHGCalSiliconRotatedModule.cc.

◆ facingTypes_

int DDHGCalSiliconRotatedModule::facingTypes_
private

Definition at line 61 of file DDHGCalSiliconRotatedModule.cc.

◆ firstLayer_

int DDHGCalSiliconRotatedModule::firstLayer_
private

Definition at line 64 of file DDHGCalSiliconRotatedModule.cc.

◆ geomTools_

HGCalGeomTools DDHGCalSiliconRotatedModule::geomTools_
private

Definition at line 54 of file DDHGCalSiliconRotatedModule.cc.

◆ layerOrient_

std::vector<int> DDHGCalSiliconRotatedModule::layerOrient_
private

Definition at line 89 of file DDHGCalSiliconRotatedModule.cc.

◆ layers_

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

Definition at line 79 of file DDHGCalSiliconRotatedModule.cc.

◆ layerSense_

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

Definition at line 82 of file DDHGCalSiliconRotatedModule.cc.

◆ layerThick_

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

Definition at line 80 of file DDHGCalSiliconRotatedModule.cc.

◆ layerType_

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

Definition at line 81 of file DDHGCalSiliconRotatedModule.cc.

◆ materials_

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

Definition at line 75 of file DDHGCalSiliconRotatedModule.cc.

◆ names_

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

Definition at line 76 of file DDHGCalSiliconRotatedModule.cc.

◆ nameSpace_

std::string DDHGCalSiliconRotatedModule::nameSpace_
private

Definition at line 94 of file DDHGCalSiliconRotatedModule.cc.

◆ orientationTypes_

int DDHGCalSiliconRotatedModule::orientationTypes_
private

Definition at line 62 of file DDHGCalSiliconRotatedModule.cc.

◆ placeOffset_

int DDHGCalSiliconRotatedModule::placeOffset_
private

Definition at line 63 of file DDHGCalSiliconRotatedModule.cc.

◆ rMaxFront_

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

Definition at line 88 of file DDHGCalSiliconRotatedModule.cc.

◆ rMinFront_

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

Definition at line 85 of file DDHGCalSiliconRotatedModule.cc.

◆ rotstr_

std::string DDHGCalSiliconRotatedModule::rotstr_
private

Definition at line 72 of file DDHGCalSiliconRotatedModule.cc.

◆ sectors_

int DDHGCalSiliconRotatedModule::sectors_
private

Definition at line 70 of file DDHGCalSiliconRotatedModule.cc.

◆ sensitiveMode_

int DDHGCalSiliconRotatedModule::sensitiveMode_
private

Definition at line 66 of file DDHGCalSiliconRotatedModule.cc.

◆ slopeB_

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

Definition at line 83 of file DDHGCalSiliconRotatedModule.cc.

◆ slopeT_

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

Definition at line 86 of file DDHGCalSiliconRotatedModule.cc.

◆ thick_

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

Definition at line 77 of file DDHGCalSiliconRotatedModule.cc.

◆ tol1_

constexpr double DDHGCalSiliconRotatedModule::tol1_ = 0.01
staticprivate

Definition at line 57 of file DDHGCalSiliconRotatedModule.cc.

◆ tol2_

constexpr double DDHGCalSiliconRotatedModule::tol2_ = 0.00001
staticprivate

Definition at line 58 of file DDHGCalSiliconRotatedModule.cc.

◆ waferFull_

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

Definition at line 73 of file DDHGCalSiliconRotatedModule.cc.

◆ waferIndex_

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

Definition at line 90 of file DDHGCalSiliconRotatedModule.cc.

◆ waferLayerStart_

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

Definition at line 92 of file DDHGCalSiliconRotatedModule.cc.

◆ waferPart_

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

Definition at line 74 of file DDHGCalSiliconRotatedModule.cc.

◆ waferProperty_

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

Definition at line 91 of file DDHGCalSiliconRotatedModule.cc.

◆ waferSepar_

double DDHGCalSiliconRotatedModule::waferSepar_
private

Definition at line 69 of file DDHGCalSiliconRotatedModule.cc.

◆ waferSize_

double DDHGCalSiliconRotatedModule::waferSize_
private

Definition at line 68 of file DDHGCalSiliconRotatedModule.cc.

◆ waferTypes_

int DDHGCalSiliconRotatedModule::waferTypes_
private

Definition at line 60 of file DDHGCalSiliconRotatedModule.cc.

◆ zFrontB_

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

Definition at line 84 of file DDHGCalSiliconRotatedModule.cc.

◆ zFrontT_

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

Definition at line 87 of file DDHGCalSiliconRotatedModule.cc.

◆ zMinBlock_

double DDHGCalSiliconRotatedModule::zMinBlock_
private

Definition at line 67 of file DDHGCalSiliconRotatedModule.cc.