CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
DDTECPhiAltAlgo.cc
Go to the documentation of this file.
1 #include "DD4hep/DetFactoryHelper.h"
5 
6 using namespace std;
7 using namespace dd4hep;
8 using namespace cms;
9 using namespace cms_units::operators;
10 
11 static long algorithm(Detector& /* description */, cms::DDParsingContext& ctxt, xml_h e) {
12  cms::DDNamespace ns(ctxt, e, true);
13  DDAlgoArguments args(ctxt, e);
14  Volume mother = ns.volume(args.parentName());
15  Volume child = ns.volume(args.childName());
16  double startAngle = args.value<double>("StartAngle"); //Start angle
17  double incrAngle = args.value<double>("IncrAngle"); //Increment in angle
18  double radius = args.value<double>("Radius"); //Radius
19  double zIn = args.value<double>("ZIn"); //z position for the even ones
20  double zOut = args.value<double>("ZOut"); //z position for the odd ones
21  int number = args.value<double>("Number"); //Number of copies
22  int startCopyNo = args.find("StartCopyNo") ? args.value<int>("StartCopyNo") : 1; //Start copy number
23  int incrCopyNo = args.find("IncrCopyNo") ? args.value<int>("IncrCopyNo") : 1; //Increment in copy number
24 
25  edm::LogVerbatim("TECGeom") << "debug: Parameters for "
26  << "positioning--"
27  << "\tStartAngle " << convertRadToDeg(startAngle) << "\tIncrAngle "
28  << convertRadToDeg(incrAngle) << "\tZ in/out " << zIn << ", " << zOut << "\tCopy Numbers "
29  << number << " Start/Increment " << startCopyNo << ", " << incrCopyNo;
30  edm::LogVerbatim("TECGeom") << "debug: Parent " << mother.name() << "\tChild " << child.name() << " NameSpace "
31  << ns.name();
32 
33  if (number > 0) {
34  double theta = 90._deg;
35  int copyNo = startCopyNo;
36  for (int i = 0; i < number; i++) {
37  double phiz = startAngle + i * incrAngle;
38  double phix = phiz + 90._deg;
39  Rotation3D rotation = makeRotation3D(theta, phix, 0e0, 0e0, theta, phiz);
40  Position tran(radius * cos(phiz), radius * sin(phiz), (i % 2 == 0) ? zIn : zOut);
41  mother.placeVolume(child, copyNo, Transform3D(rotation, tran));
42  edm::LogVerbatim("TECGeom") << "test: " << child.name() << " number " << copyNo << " positioned in "
43  << mother.name() << " at " << tran << " with " << rotation;
44  copyNo += incrCopyNo;
45  }
46  }
47  return 1;
48 }
49 
50 // first argument is the type from the xml file
51 DECLARE_DDCMS_DETELEMENT(DDCMS_track_DDTECPhiAltAlgo, algorithm)
Log< level::Info, true > LogVerbatim
dd4hep::Volume volume(const std::string &name, bool exc=true) const
Definition: DDNamespace.cc:276
std::string childName() const
Access value of child&#39;name from the xml element.
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
T value(const std::string &name) const
Geom::Theta< T > theta() const
DDRotationMatrix makeRotation3D(double thetaX, double phiX, double thetaY, double phiY, double thetaZ, double phiZ)
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
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
dd4hep::Volume Volume
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.