1 #include "DD4hep/DetFactoryHelper.h" 16 double tilt = args.
value<
double>(
"Tilt");
17 double startAngle = args.
value<
double>(
"StartAngle");
18 double rangeAngle = args.
value<
double>(
"RangeAngle");
19 double radiusIn = args.
value<
double>(
"RadiusIn");
20 double radiusOut = args.
value<
double>(
"RadiusOut");
21 double zpos = args.
value<
double>(
"ZPosition");
23 int startCopyNo = args.
find(
"StartCopyNo") ? args.
value<
int>(
"StartCopyNo") : 1;
24 int incrCopyNo = args.
find(
"IncrCopyNo") ? args.
value<
int>(
"IncrCopyNo") : 1;
26 LogDebug(
"TrackerGeom") <<
"Parent " << mother.name() <<
"\tChild " << child.name() <<
" NameSpace " << ns.
name();
27 LogDebug(
"TrackerGeom") <<
"Parameters for positioning-- Tilt " << tilt <<
"\tStartAngle " 29 << radiusIn <<
"\tRout " << radiusOut <<
"\t ZPos " << zpos <<
"\tCopy Numbers " << number
30 <<
" Start/Increment " << startCopyNo <<
", " << incrCopyNo;
33 double theta = 90._deg;
35 if (number == 1 || fabs(rangeAngle - 360.0_deg) < 0.001_deg)
36 dphi = rangeAngle /
number;
38 dphi = rangeAngle / (number - 1);
39 int copyNo = startCopyNo;
42 double phi = startAngle +
i * dphi;
43 double phix = phi - tilt + 90._deg;
44 double phiy = phix + 90._deg;
54 xpos = radiusIn *
cos(phi);
55 ypos = radiusIn *
sin(phi);
57 xpos = radiusOut *
cos(phi);
58 ypos = radiusOut *
sin(phi);
60 Position tran(xpos, ypos, zpos);
61 mother.placeVolume(child, copyNo, Transform3D(rotation, tran));
62 LogDebug(
"TrackerGeom") <<
"" << child.name() <<
" number " << copyNo <<
" positioned in " << mother.name()
63 <<
" at " << tran <<
" with " <<
rotation;
dd4hep::Volume volume(const std::string &name, bool exc=true) const
std::string childName() const
Access value of child'name from the xml element.
constexpr NumType convertRadToDeg(NumType radians)
Sin< T >::type sin(const T &t)
T value(const std::string &name) const
Geom::Theta< T > theta() const
dd4hep::Rotation3D makeRotation3D(double thetaX, double phiX, double thetaY, double phiY, double thetaZ, double phiZ)
std::string_view name() const
Cos< T >::type cos(const T &t)
static long algorithm(Detector &, cms::DDParsingContext &ctxt, xml_h e, SensitiveDetector &)
Namespace of DDCMS conversion namespace.
#define DECLARE_DDCMS_DETELEMENT(name, func)
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.