CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
DDTrackerLinear.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 startcn = args.find("StartCopyNo") ? args.value<int>("StartCopyNo") : 1;
13  int incrcn = args.find("IncrCopyNo") ? args.value<int>("IncrCopyNo") : 1;
14  int number = args.value<int>("Number");
15  double theta = args.value<double>("Theta");
16  double phi = args.value<double>("Phi");
17  double offset = args.value<double>("Offset");
18  double delta = args.value<double>("Delta");
19  vector<double> centre = args.value<vector<double> >("Center");
20  string rotMat = args.value<string>("Rotation");
21  Volume mother = ns.volume(args.parentName());
22  Volume child = ns.volume(args.value<string>("ChildName"));
23 
24  edm::LogVerbatim("TrackerGeom") << "DDTrackerLinear +++ Executing Algorithm. rParent:" << mother.name();
25  edm::LogVerbatim("TrackerGeom") << "debug: Parent " << mother.name() << "\tChild " << child.name() << " NameSpace "
26  << ns.name() << "\tNumber " << number << "\tAxis (theta/phi) " << theta / dd4hep::deg
27  << ", " << phi / dd4hep::deg << "\t(Offset/Delta) " << offset << ", " << delta
28  << "\tCentre " << centre[0] << ", " << centre[1] << ", " << centre[2] << "\tRotation "
29  << rotMat;
30 
31  Position direction(sin(theta) * cos(phi), sin(theta) * sin(phi), cos(theta));
32  Position base(centre[0], centre[1], centre[2]);
33 
34  const Rotation3D& rot = ns.rotation(rotMat);
35 
36  for (int i = 0, ci = startcn; i < number; i++, ci += incrcn) {
37  Position tran = base + (offset + double(i) * delta) * direction;
38  mother.placeVolume(child, ci, Transform3D(rot, tran));
39 
40  edm::LogVerbatim("TrackerGeom") << child.name() << " number " << ci << " positioned in " << mother.name() << " at "
41  << tran << " with " << rot;
42  }
43  return cms::s_executed;
44 }
45 
46 // first argument is the type from the xml file
47 DECLARE_DDCMS_DETELEMENT(DDCMS_track_DDTrackerLinear, algorithm)
tuple base
Main Program
Definition: newFWLiteAna.py:92
Log< level::Info, true > LogVerbatim
dd4hep::Volume volume(const std::string &name, bool exc=true) const
Definition: DDNamespace.cc:276
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
T value(const std::string &name) const
Geom::Theta< T > theta() const
std::string_view name() const
Definition: DDNamespace.h:79
#define DECLARE_DDCMS_DETELEMENT(name, func)
Definition: DDPlugins.h:25
tuple dd4hep
Definition: dd4hep_cff.py:3
static constexpr long s_executed
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
dd4hep::Volume Volume
const dd4hep::Rotation3D & rotation(const std::string &name) const
Definition: DDNamespace.cc:182
bool find(const std::string &name) const
Check the existence of an argument by name.
std::string parentName() const
Access value of rParent child node.