CMS 3D CMS Logo

DDMuonAngular.cc
Go to the documentation of this file.
1 // File: DDMuonAngular.cc
3 // Description: Position inside the mother according to (eta,phi)
5 
6 #include <cmath>
7 #include <algorithm>
8 #include <map>
9 #include <string>
10 #include <vector>
11 
20 
21 using namespace angle_units::operators;
22 
23 //#define EDM_ML_DEBUG
24 
25 class DDMuonAngular : public DDAlgorithm {
26 public:
27  //Constructor and Destructor
28  DDMuonAngular();
29  ~DDMuonAngular() override;
30 
31  void initialize(const DDNumericArguments& nArgs,
32  const DDVectorArguments& vArgs,
33  const DDMapArguments& mArgs,
34  const DDStringArguments& sArgs,
35  const DDStringVectorArguments& vsArgs) override;
36 
37  void execute(DDCompactView& cpv) override;
38 
39 private:
40  double startAngle; //Start angle
41  double stepAngle; //Step angle
42  double zoffset; //Offset in z
43  int n; //Mumber of copies
44  int startCopyNo; //Start copy Number
45  int incrCopyNo; //Increment copy Number
46 
47  std::string rotns; //Namespace for rotation matrix
48  std::string idNameSpace; //Namespace of this and ALL sub-parts
49  std::string childName; //Children name
50 };
51 
53 #ifdef EDM_ML_DEBUG
54  edm::LogVerbatim("MuonGeom") << "DDMuonAngular: Creating an instance";
55 #endif
56 }
57 
59 
61  const DDVectorArguments&,
62  const DDMapArguments&,
63  const DDStringArguments& sArgs,
64  const DDStringVectorArguments&) {
65  startAngle = nArgs["startAngle"];
66  stepAngle = nArgs["stepAngle"];
67  zoffset = nArgs["zoffset"];
68  n = int(nArgs["n"]);
69  startCopyNo = int(nArgs["startCopyNo"]);
70  incrCopyNo = int(nArgs["incrCopyNo"]);
71 #ifdef EDM_ML_DEBUG
72  edm::LogVerbatim("MuonGeom") << "DDMuonAngular: Parameters for positioning-- " << n << " copies in steps of "
73  << convertRadToDeg(stepAngle) << " from " << convertRadToDeg(startAngle) << " \tZoffest "
74  << zoffset << "\tStart and inremental copy nos " << startCopyNo << ", " << incrCopyNo;
75 #endif
76  rotns = sArgs["RotNameSpace"];
77  idNameSpace = DDCurrentNamespace::ns();
78  childName = sArgs["ChildName"];
79 #ifdef EDM_ML_DEBUG
80  edm::LogVerbatim("MuonGeom") << "DDMuonAngular debug: Parent " << parent().name() << "\tChild " << childName
81  << "\tNameSpace " << idNameSpace << "\tRotation Namespace " << rotns;
82 #endif
83 }
84 
86  double phi = startAngle;
87  int copyNo = startCopyNo;
88 
89  for (int ii = 0; ii < n; ii++) {
90  double phitmp = phi;
91  if (phitmp >= 2._pi)
92  phitmp -= 2._pi;
94  std::string rotstr("NULL");
95 
96  if (std::abs(phitmp) >= 1.0_deg) {
97  rotstr = "R" + formatAsDegrees(phitmp);
98  rotation = DDRotation(DDName(rotstr, rotns));
99  if (!rotation) {
100 #ifdef EDM_ML_DEBUG
101  edm::LogVerbatim("MuonGeom") << "DDMuonAngular: Creating a new rotation " << DDName(rotstr, idNameSpace)
102  << "\t90, " << convertRadToDeg(phitmp) << ", 90, "
103  << convertRadToDeg(phitmp + 90._deg) << ", 0, 0";
104 #endif
105  rotation = DDrot(DDName(rotstr, rotns), 90._deg, phitmp, 90._deg, 90._deg + phitmp, 0., 0.);
106  }
107  }
108 
109  DDTranslation tran(0, 0, zoffset);
110 
111  DDName parentName = parent().name();
112  cpv.position(DDName(childName, idNameSpace), parentName, copyNo, tran, rotation);
113 #ifdef EDM_ML_DEBUG
114  edm::LogVerbatim("MuonGeom") << "DDMuonAngular: " << DDName(childName, idNameSpace) << " number " << copyNo
115  << " positioned in " << parentName << " at " << tran << " with " << rotstr << " "
116  << rotation;
117 #endif
118  phi += stepAngle;
119  copyNo += incrCopyNo;
120  }
121 }
122 
123 DEFINE_EDM_PLUGIN(DDAlgorithmFactory, DDMuonAngular, "muon:DDMuonAngular");
Log< level::Info, true > LogVerbatim
static AlgebraicMatrix initialize()
void position(const DDLogicalPart &self, const DDLogicalPart &parent, const std::string &copyno, const DDTranslation &trans, const DDRotation &rot, const DDDivision *div=nullptr)
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:17
static std::string & ns()
Compact representation of the geometrical detector hierarchy.
Definition: DDCompactView.h:81
~DDMuonAngular() override
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:57
std::string rotns
void execute(DDCompactView &cpv) override
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
DDRotation DDrot(const DDName &name, std::unique_ptr< DDRotationMatrix > rot)
Definition of a uniquely identifiable rotation matrix named by DDName name.
Definition: DDRotation.cc:67
std::string childName
std::string formatAsDegrees(double radianVal)
Definition: DDTypes.cc:68
ii
Definition: cuy.py:589
std::string idNameSpace
#define DEFINE_EDM_PLUGIN(factory, type, name)
void initialize(const DDNumericArguments &nArgs, const DDVectorArguments &vArgs, const DDMapArguments &mArgs, const DDStringArguments &sArgs, const DDStringVectorArguments &vsArgs) override
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7