CMS 3D CMS Logo

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

Public Member Functions

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

Private Attributes

std::vector< std::string > layerNames_
 
std::vector< int > layers_
 
std::vector< double > layerThick_
 
std::vector< int > layerType_
 
std::string material_
 
std::vector< std::string > materials_
 
std::string nameSpace_
 
std::vector< int > orientations_
 
std::vector< int > partialTypes_
 
int posSense_
 
std::string senseName_
 
double senseT_
 
int senseType_
 
std::vector< std::string > tags_
 
double thick_
 
double waferSepar_
 
double waferSize_
 
double waferThick_
 

Detailed Description

Definition at line 21 of file DDHGCalWaferP.cc.

Constructor & Destructor Documentation

◆ DDHGCalWaferP()

DDHGCalWaferP::DDHGCalWaferP ( )

Definition at line 55 of file DDHGCalWaferP.cc.

55  {
56 #ifdef EDM_ML_DEBUG
57  edm::LogVerbatim("HGCalGeom") << "DDHGCalWaferP: Creating an instance";
58 #endif
59 }
Log< level::Info, true > LogVerbatim

◆ ~DDHGCalWaferP()

DDHGCalWaferP::~DDHGCalWaferP ( )
override

Definition at line 61 of file DDHGCalWaferP.cc.

61 {}

Member Function Documentation

◆ execute()

void DDHGCalWaferP::execute ( DDCompactView cpv)
override

Definition at line 115 of file DDHGCalWaferP.cc.

References funct::abs(), filterCSVwithJSON::copy, DDBase< N, C >::ddname(), DDSplit(), DDSolidFactory::extrudedpolygon(), first, mps_fire::i, dqmiolumiharvest::j, dqmdumpme::k, MainPageGenerator::l, layerNames_, layers_, layerThick_, layerType_, material_, materials_, DDBase< N, C >::name(), orientations_, class-composition::parent, partialTypes_, DDCompactView::position(), posSense_, dttmaxenums::R, alignCSCRings::r, makeMuonMisalignmentScenario::rot, L1EGammaClusterEmuProducer_cfi::scale, edm::second(), senseName_, senseT_, senseType_, mathSSE::sqrt(), AlCaHLTBitMon_QueryRunRegistry::string, tags_, thick_, waferSize_, waferThick_, HGCalWaferMask::waferXY(), and zw().

115  {
116 #ifdef EDM_ML_DEBUG
117  edm::LogVerbatim("HGCalGeom") << "==>> Executing DDHGCalWaferP...";
118 #endif
119 
120  static constexpr double tol = 0.00001;
121  static const double sqrt3 = std::sqrt(3.0);
122  double r = 0.5 * waferSize_;
123  double R = 2.0 * r / sqrt3;
124  std::string parentName = parent().name().name();
125 
126  // Loop over all types
127  for (unsigned int k = 0; k < tags_.size(); ++k) {
128  // First the mother
129  std::string mother = parentName + tags_[k];
130  std::vector<std::pair<double, double> > wxy =
132  std::vector<double> xM, yM;
133  for (unsigned int i = 0; i < (wxy.size() - 1); ++i) {
134  xM.emplace_back(wxy[i].first);
135  yM.emplace_back(wxy[i].second);
136  }
137  std::vector<double> zw = {-0.5 * thick_, 0.5 * thick_};
138  std::vector<double> zx(2, 0), zy(2, 0), scale(2, 1.0);
139  DDSolid solid = DDSolidFactory::extrudedpolygon(mother, xM, yM, zw, zx, zy, scale);
141  DDMaterial matter(matName);
142  DDLogicalPart glogM = DDLogicalPart(solid.ddname(), matter, solid);
143 #ifdef EDM_ML_DEBUG
144  edm::LogVerbatim("HGCalGeom") << "DDHGCalWaferP: " << solid.name() << " extruded polygon made of " << matName
145  << " z|x|y|s (0) " << zw[0] << ":" << zx[0] << ":" << zy[0] << ":" << scale[0]
146  << " z|x|y|s (1) " << zw[1] << ":" << zx[1] << ":" << zy[1] << ":" << scale[1]
147  << " partial " << partialTypes_[k] << " orientation " << orientations_[k] << " and "
148  << xM.size() << " edges";
149  for (unsigned int j = 0; j < xM.size(); ++j)
150  edm::LogVerbatim("HGCalGeom") << "[" << j << "] " << xM[j] << ":" << yM[j];
151 #endif
152 
153  // Then the layers
154  wxy = HGCalWaferMask::waferXY(partialTypes_[k], orientations_[k], 1, r, R, 0.0, 0.0);
155  std::vector<double> xL, yL;
156  for (unsigned int i = 0; i < (wxy.size() - 1); ++i) {
157  xL.emplace_back(wxy[i].first);
158  yL.emplace_back(wxy[i].second);
159  }
160  std::vector<DDLogicalPart> glogs(materials_.size());
161  std::vector<int> copyNumber(materials_.size(), 1);
162  double zi(-0.5 * thick_), thickTot(0.0);
163  for (unsigned int l = 0; l < layers_.size(); l++) {
164  unsigned int i = layers_[l];
165 #ifdef EDM_ML_DEBUG
166  edm::LogVerbatim("HGCalGeom") << "DDHGCalWaferP:Layer " << l << ":" << i << " T " << layerThick_[i] << " Copy "
167  << copyNumber[i];
168 #endif
169  DDRotation rot;
170  if (copyNumber[i] == 1) {
171  if (layerType_[i] > 0) {
172  zw[0] = -0.5 * waferThick_;
173  zw[1] = 0.5 * waferThick_;
174  } else {
175  zw[0] = -0.5 * layerThick_[i];
176  zw[1] = 0.5 * layerThick_[i];
177  }
178  std::string lname = layerNames_[i] + tags_[k];
179  solid = DDSolidFactory::extrudedpolygon(lname, xL, yL, zw, zx, zy, scale);
181  DDMaterial matter(matN);
182  glogs[i] = DDLogicalPart(solid.ddname(), matter, solid);
183 #ifdef EDM_ML_DEBUG
184  edm::LogVerbatim("HGCalGeom") << "DDHGCalWaferP: " << solid.name() << " extruded polygon made of " << matN
185  << " z|x|y|s (0) " << zw[0] << ":" << zx[0] << ":" << zy[0] << ":" << scale[0]
186  << " z|x|y|s (1) " << zw[1] << ":" << zx[1] << ":" << zy[1] << ":" << scale[1]
187  << " partial " << partialTypes_[k] << " orientation " << orientations_[k]
188  << " and " << xL.size() << " edges";
189  for (unsigned int j = 0; j < xL.size(); ++j)
190  edm::LogVerbatim("HGCalGeom") << "[" << j << "] " << xL[j] << ":" << yL[j];
191 #endif
192  if (layerType_[i] > 0) {
193  std::string sname = senseName_ + tags_[k];
194  zw[0] = -0.5 * senseT_;
195  zw[1] = 0.5 * senseT_;
196  solid = DDSolidFactory::extrudedpolygon(sname, xL, yL, zw, zx, zy, scale);
197  DDLogicalPart glog = DDLogicalPart(solid.ddname(), matter, solid);
198 #ifdef EDM_ML_DEBUG
199  edm::LogVerbatim("HGCalGeom") << "DDHGCalWaferP: " << solid.name() << " extruded polygon made of " << matN
200  << " z|x|y|s (0) " << zw[0] << ":" << zx[0] << ":" << zy[0] << ":" << scale[0]
201  << " z|x|y|s (1) " << zw[1] << ":" << zx[1] << ":" << zy[1] << ":" << scale[1]
202  << " partial " << partialTypes_[k] << " orientation " << orientations_[k]
203  << " and " << xL.size() << " edges";
204  for (unsigned int j = 0; j < xL.size(); ++j)
205  edm::LogVerbatim("HGCalGeom") << "[" << j << "] " << xL[j] << ":" << yL[j];
206 #endif
207  double zpos = (posSense_ == 0) ? -0.5 * (waferThick_ - senseT_) : 0.5 * (waferThick_ - senseT_);
208  DDTranslation tran(0, 0, zpos);
209  int copy = 10 + senseType_;
210  cpv.position(glog, glogs[i], copy, tran, rot);
211 #ifdef EDM_ML_DEBUG
212  edm::LogVerbatim("HGCalGeom") << "DDHGCalWaferP: " << glog.name() << " number " << copy << " positioned in "
213  << glogs[i].name() << " at " << tran << " with no rotation";
214 #endif
215  }
216  }
217  DDTranslation tran0(0, 0, (zi + 0.5 * layerThick_[i]));
218  cpv.position(glogs[i], glogM, copyNumber[i], tran0, rot);
219 #ifdef EDM_ML_DEBUG
220  edm::LogVerbatim("HGCalGeom") << "DDHGCalWaferP: " << glogs[i].name() << " number " << copyNumber[i]
221  << " positioned in " << glogM.name() << " at " << tran0 << " with no rotation";
222 #endif
223  ++copyNumber[i];
224  zi += layerThick_[i];
225  thickTot += layerThick_[i];
226  }
227  if (std::abs(thickTot - thick_) >= tol) {
228  if (thickTot > thick_) {
229  edm::LogError("HGCalGeom") << "Thickness of the partition " << thick_ << " is smaller than " << thickTot
230  << ": thickness of all its components **** ERROR ****";
231  } else {
232  edm::LogWarning("HGCalGeom") << "Thickness of the partition " << thick_ << " does not match with " << thickTot
233  << " of the components";
234  }
235  }
236  }
237 }
Log< level::Info, true > LogVerbatim
std::vector< int > orientations_
std::vector< int > layerType_
std::vector< int > partialTypes_
void position(const DDLogicalPart &self, const DDLogicalPart &parent, const std::string &copyno, const DDTranslation &trans, const DDRotation &rot, const DDDivision *div=nullptr)
std::vector< std::string > tags_
std::vector< std::string > layerNames_
DDMaterial is used to define and access material information.
Definition: DDMaterial.h:45
static std::vector< std::pair< double, double > > waferXY(int part, int orient, int zside, double delX, double delY, double xpos, double ypos)
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:17
Log< level::Error, false > LogError
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:57
U second(std::pair< T, U > const &p)
std::vector< std::string > materials_
std::vector< int > layers_
T sqrt(T t)
Definition: SSEVec.h:19
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:93
const N & name() const
Definition: DDBase.h:59
static DDSolid extrudedpolygon(const DDName &name, const std::vector< double > &x, const std::vector< double > &y, const std::vector< double > &z, const std::vector< double > &zx, const std::vector< double > &zy, const std::vector< double > &zscale)
Definition: DDSolid.cc:584
const N & ddname() const
Definition: DDBase.h:61
std::vector< double > layerThick_
std::string material_
double waferThick_
auto zw(V v) -> Vec2< typename std::remove_reference< decltype(v[0])>::type >
Definition: ExtVec.h:75
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
std::string senseName_

◆ initialize()

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

Definition at line 63 of file DDHGCalWaferP.cc.

References dbl_to_int(), mps_fire::i, dqmdumpme::k, layerNames_, layers_, layerThick_, layerType_, material_, materials_, nameSpace_, DDCurrentNamespace::ns(), orientations_, class-composition::parent, partialTypes_, posSense_, senseName_, senseT_, senseType_, tags_, thick_, waferSepar_, waferSize_, and waferThick_.

67  {
68  material_ = sArgs["ModuleMaterial"];
69  thick_ = nArgs["ModuleThickness"];
70  waferSize_ = nArgs["WaferSize"];
71  waferThick_ = nArgs["WaferThickness"];
72 #ifdef EDM_ML_DEBUG
73  waferSepar_ = nArgs["SensorSeparation"];
74  edm::LogVerbatim("HGCalGeom") << "DDHGCalWaferP: Module " << parent().name() << " made of " << material_ << " T "
75  << thick_ << " Wafer 2r " << waferSize_ << " Half Separation " << waferSepar_ << " T "
76  << waferThick_;
77 #endif
78  tags_ = vsArgs["Tags"];
79  partialTypes_ = dbl_to_int(vArgs["PartialTypes"]);
80  orientations_ = dbl_to_int(vArgs["Orientations"]);
81 #ifdef EDM_ML_DEBUG
82  edm::LogVerbatim("HGCalGeom") << "DDHGCalWaferP: " << tags_.size() << " variations of wafer types";
83  for (unsigned int k = 0; k < tags_.size(); ++k)
84  edm::LogVerbatim("HGCalGeom") << "Type[" << k << "] " << tags_[k] << " Partial " << partialTypes_[k]
85  << " Orientation " << orientations_[k];
86 #endif
87  layerNames_ = vsArgs["LayerNames"];
88  materials_ = vsArgs["LayerMaterials"];
89  layerThick_ = vArgs["LayerThickness"];
90  layerType_ = dbl_to_int(vArgs["LayerTypes"]);
91 #ifdef EDM_ML_DEBUG
92  edm::LogVerbatim("HGCalGeom") << "DDHGCalWaferP: " << layerNames_.size() << " types of volumes";
93  for (unsigned int i = 0; i < layerNames_.size(); ++i)
94  edm::LogVerbatim("HGCalGeom") << "Volume [" << i << "] " << layerNames_[i] << " of thickness " << layerThick_[i]
95  << " filled with " << materials_[i] << " type " << layerType_[i];
96 #endif
97  layers_ = dbl_to_int(vArgs["Layers"]);
98 #ifdef EDM_ML_DEBUG
99  std::ostringstream st1;
100  for (unsigned int i = 0; i < layers_.size(); ++i)
101  st1 << " [" << i << "] " << layers_[i];
102  edm::LogVerbatim("HGCalGeom") << "There are " << layers_.size() << " blocks" << st1.str();
103 #endif
104  senseName_ = sArgs["SenseName"];
105  senseT_ = nArgs["SenseThick"];
106  senseType_ = static_cast<int>(nArgs["SenseType"]);
107  posSense_ = static_cast<int>(nArgs["PosSensitive"]);
109 #ifdef EDM_ML_DEBUG
110  edm::LogVerbatim("HGCalGeom") << "DDHGCalWaferP: NameSpace " << nameSpace_ << " Sensitive Layer Name " << senseName_
111  << " Thickness " << senseT_ << " Type " << senseType_ << " Position " << posSense_;
112 #endif
113 }
Log< level::Info, true > LogVerbatim
std::vector< int > orientations_
double waferSepar_
std::vector< int > layerType_
std::vector< int > partialTypes_
std::vector< std::string > tags_
std::vector< std::string > layerNames_
static std::string & ns()
std::vector< std::string > materials_
std::vector< int > layers_
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< double > layerThick_
std::string material_
double waferThick_
std::string nameSpace_
std::string senseName_

Member Data Documentation

◆ layerNames_

std::vector<std::string> DDHGCalWaferP::layerNames_
private

Definition at line 43 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ layers_

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

Definition at line 47 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ layerThick_

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

Definition at line 45 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ layerType_

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

Definition at line 46 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ material_

std::string DDHGCalWaferP::material_
private

Definition at line 35 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ materials_

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

Definition at line 44 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ nameSpace_

std::string DDHGCalWaferP::nameSpace_
private

Definition at line 52 of file DDHGCalWaferP.cc.

Referenced by initialize().

◆ orientations_

std::vector<int> DDHGCalWaferP::orientations_
private

Definition at line 42 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ partialTypes_

std::vector<int> DDHGCalWaferP::partialTypes_
private

Definition at line 41 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ posSense_

int DDHGCalWaferP::posSense_
private

Definition at line 51 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ senseName_

std::string DDHGCalWaferP::senseName_
private

Definition at line 48 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ senseT_

double DDHGCalWaferP::senseT_
private

Definition at line 49 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ senseType_

int DDHGCalWaferP::senseType_
private

Definition at line 50 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ tags_

std::vector<std::string> DDHGCalWaferP::tags_
private

Definition at line 40 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ thick_

double DDHGCalWaferP::thick_
private

Definition at line 36 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ waferSepar_

double DDHGCalWaferP::waferSepar_
private

Definition at line 38 of file DDHGCalWaferP.cc.

Referenced by initialize().

◆ waferSize_

double DDHGCalWaferP::waferSize_
private

Definition at line 37 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().

◆ waferThick_

double DDHGCalWaferP::waferThick_
private

Definition at line 39 of file DDHGCalWaferP.cc.

Referenced by execute(), and initialize().