CMS 3D CMS Logo

DDTrackerXYZPosAlgo.cc
Go to the documentation of this file.
1 // File: DDTrackerXYZPosAlgo.cc
3 // Description: Position n copies at given x-values, y-values and z-values
5 
12 
13 #include <string>
14 #include <vector>
15 
16 using namespace std;
17 
18 class DDTrackerXYZPosAlgo : public DDAlgorithm {
19 public:
20  //Constructor and Destructor
22  ~DDTrackerXYZPosAlgo() override;
23 
24  void initialize(const DDNumericArguments& nArgs,
25  const DDVectorArguments& vArgs,
26  const DDMapArguments& mArgs,
27  const DDStringArguments& sArgs,
28  const DDStringVectorArguments& vsArgs) override;
29 
30  void execute(DDCompactView& cpv) override;
31 
32 private:
33  vector<double> xvec; //X positions
34  vector<double> yvec; //Y positions
35  vector<double> zvec; //Z positions
36  vector<string> rotMat; //Names of rotation matrices
37 
38  string idNameSpace; //Namespace of this and ALL sub-parts
39  string childName; //Child name
40  int startCopyNo; //Start Copy number
41  int incrCopyNo; //Increment in Copy number
42 };
43 
45  LogDebug("TrackerGeom") << "DDTrackerXYZPosAlgo info: Creating an instance";
46 }
47 
49 
51  const DDVectorArguments& vArgs,
52  const DDMapArguments&,
53  const DDStringArguments& sArgs,
54  const DDStringVectorArguments& vsArgs) {
55  startCopyNo = int(nArgs["StartCopyNo"]);
56  incrCopyNo = int(nArgs["IncrCopyNo"]);
57  xvec = vArgs["XPositions"];
58  yvec = vArgs["YPositions"];
59  zvec = vArgs["ZPositions"];
60  rotMat = vsArgs["Rotations"];
61 
62  idNameSpace = DDCurrentNamespace::ns();
63  childName = sArgs["ChildName"];
64  DDName parentName = parent().name();
65  LogDebug("TrackerGeom") << "DDTrackerXYZPosAlgo debug: Parent " << parentName << "\tChild " << childName
66  << " NameSpace " << idNameSpace << "\tCopyNo (Start/Increment) " << startCopyNo << ", "
67  << incrCopyNo << "\tNumber " << xvec.size() << ", " << yvec.size() << ", " << zvec.size();
68  for (int i = 0; i < (int)(zvec.size()); i++) {
69  LogDebug("TrackerGeom") << "\t[" << i << "]\tX = " << xvec[i] << "\t[" << i << "]\tY = " << yvec[i] << "\t[" << i
70  << "]\tZ = " << zvec[i] << ", Rot.Matrix = " << rotMat[i];
71  }
72 }
73 
75  int copy = startCopyNo;
76  DDName mother = parent().name();
77  DDName child(DDSplit(childName).first, DDSplit(childName).second);
78 
79  for (int i = 0; i < (int)(zvec.size()); i++) {
80  DDTranslation tran(xvec[i], yvec[i], zvec[i]);
81  string rotstr = DDSplit(rotMat[i]).first;
83  if (rotstr != "NULL") {
84  string rotns = DDSplit(rotMat[i]).second;
85  rot = DDRotation(DDName(rotstr, rotns));
86  }
87  cpv.position(child, mother, copy, tran, rot);
88  LogDebug("TrackerGeom") << "DDTrackerXYZPosAlgo test: " << child << " number " << copy << " positioned in "
89  << mother << " at " << tran << " with " << rot;
90  copy += incrCopyNo;
91  }
92 }
93 
94 DEFINE_EDM_PLUGIN(DDAlgorithmFactory, DDTrackerXYZPosAlgo, "track:DDTrackerXYZPosAlgo");
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)
void initialize(const DDNumericArguments &nArgs, const DDVectorArguments &vArgs, const DDMapArguments &mArgs, const DDStringArguments &sArgs, const DDStringVectorArguments &vsArgs) override
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
vector< string > rotMat
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:57
U second(std::pair< T, U > const &p)
void execute(DDCompactView &cpv) override
#define DEFINE_EDM_PLUGIN(factory, type, name)
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
#define LogDebug(id)