CMS 3D CMS Logo

DDTrackerZPosAlgo.cc
Go to the documentation of this file.
1 #include "DD4hep/DetFactoryHelper.h"
4 
5 using namespace std;
6 using namespace dd4hep;
7 using namespace cms;
8 
9 static long algorithm(Detector& /* description */, cms::DDParsingContext& ctxt, xml_h e) {
10  cms::DDNamespace ns(ctxt, e, true);
11  DDAlgoArguments args(ctxt, e);
12  int startCopyNo = args.find("StartCopyNo") ? args.value<int>("StartCopyNo") : 1;
13  int incrCopyNo = args.find("IncrCopyNo") ? args.value<int>("IncrCopyNo") : 1;
14  Volume mother = ns.volume(args.parentName());
15  Volume child = ns.volume(args.value<string>("ChildName"));
16  vector<double> zvec = args.value<vector<double> >("ZPositions"); // Z positions
17  vector<string> rotMat = args.value<vector<string> >("Rotations"); // Names of rotation matrices
18 
19  edm::LogVerbatim("TrackerGeom") << "debug: Parent " << mother.name() << "\tChild " << child.name() << " NameSpace "
20  << ns.name() << "\tCopyNo (Start/Increment) " << startCopyNo << ", " << incrCopyNo
21  << "\tNumber " << zvec.size();
22  for (int i = 0; i < (int)(zvec.size()); i++)
23  edm::LogVerbatim("TrackerGeom") << "\t[" << i << "]\tZ = " << zvec[i] << ", Rot.Matrix = " << rotMat[i];
24 
25  for (int i = 0, copy = startCopyNo; i < (int)(zvec.size()); i++, copy += incrCopyNo) {
26  Position tran(0, 0, zvec[i]);
27  Rotation3D rot;
28  /* PlacedVolume pv = */ rotMat[i] != "NULL"
29  ? mother.placeVolume(child, copy, Transform3D(ns.rotation(rotMat[i]), tran))
30  : mother.placeVolume(child, copy, tran);
31  edm::LogVerbatim("TrackerGeom") << "test: " << child.name() << " number " << copy << " positioned in "
32  << mother.name() << " at " << tran << " with " << rot;
33  }
34  return 1;
35 }
36 
37 // first argument is the type from the xml file
38 DECLARE_DDCMS_DETELEMENT(DDCMS_track_DDTrackerZPosAlgo, algorithm)
Log< level::Info, true > LogVerbatim
const dd4hep::Rotation3D & rotation(const std::string &name) const
Definition: DDNamespace.cc:182
#define DECLARE_DDCMS_DETELEMENT(name, func)
Definition: DDPlugins.h:25
std::string_view name() const
Definition: DDNamespace.h:79
dd4hep::Volume Volume
Namespace of DDCMS conversion namespace.
static long algorithm(Detector &, cms::DDParsingContext &ctxt, xml_h e)
dd4hep::Volume volume(const std::string &name, bool exc=true) const
Definition: DDNamespace.cc:276