CMS 3D CMS Logo

Functions
DDTrackerPhiAltAlgo.cc File Reference
#include "DD4hep/DetFactoryHelper.h"
#include "DataFormats/Math/interface/CMSUnits.h"
#include "DetectorDescription/DDCMS/interface/DDPlugins.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"

Go to the source code of this file.

Functions

static long algorithm (Detector &, cms::DDParsingContext &ctxt, xml_h e)
 
 DD4HEP_OPEN_PLUGIN (dd4hep, ddcms_det_element_DDCMS_track_DDTrackerPhiAltAlgo)
 

Function Documentation

◆ algorithm()

static long algorithm ( Detector &  ,
cms::DDParsingContext ctxt,
xml_h  e 
)
static

Definition at line 11 of file DDTrackerPhiAltAlgo.cc.

References writedatasetfile::args, angle_units::operators::convertRadToDeg(), funct::cos(), MillePedeFileConverter_cfg::e, mps_fire::i, cms::makeRotation3D(), cms::DDNamespace::name(), contentValuesFiles::number, PixelTestBeamValidation_cfi::Position, idealTransformation::rotation, funct::sin(), theta(), and cms::DDNamespace::volume().

11  {
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 tilt = args.value<double>("Tilt"); //Tilt of the module
17  double startAngle = args.value<double>("StartAngle"); //offset in phi
18  double rangeAngle = args.value<double>("RangeAngle"); //Maximum range in phi
19  double radiusIn = args.value<double>("RadiusIn"); //Inner radius
20  double radiusOut = args.value<double>("RadiusOut"); //Outer radius
21  double zpos = args.value<double>("ZPosition"); //z position
22  int number = args.value<int>("Number"); //Number of copies
23  int startCopyNo = args.find("StartCopyNo") ? args.value<int>("StartCopyNo") : 1; //Start copy number
24  int incrCopyNo = args.find("IncrCopyNo") ? args.value<int>("IncrCopyNo") : 1; //Increment in copy number
25 
26  edm::LogVerbatim("TrackerGeom") << "Parent " << mother.name() << "\tChild " << child.name() << " NameSpace "
27  << ns.name();
28  edm::LogVerbatim("TrackerGeom") << "Parameters for positioning-- Tilt " << tilt << "\tStartAngle "
29  << convertRadToDeg(startAngle) << "\tRangeAngle " << convertRadToDeg(rangeAngle)
30  << "\tRin " << radiusIn << "\tRout " << radiusOut << "\t ZPos " << zpos
31  << "\tCopy Numbers " << number << " Start/Increment " << startCopyNo << ", "
32  << incrCopyNo;
33 
34  if (number > 0) {
35  double theta = 90._deg;
36  double dphi;
37  if (number == 1 || fabs(rangeAngle - 360.0_deg) < 0.001_deg)
38  dphi = rangeAngle / number;
39  else
40  dphi = rangeAngle / (number - 1);
41  int copyNo = startCopyNo;
42 
43  for (int i = 0; i < number; i++) {
44  double phi = startAngle + i * dphi;
45  double phix = phi - tilt + 90._deg;
46  double phiy = phix + 90._deg;
47  double phideg = convertRadToDeg(phix);
48 
49  Rotation3D rotation;
50  if (phideg != 0) {
51  rotation = makeRotation3D(theta, phix, theta, phiy, 0., 0.);
52  }
53 
54  double xpos, ypos;
55  if (i % 2 == 0) {
56  xpos = radiusIn * cos(phi);
57  ypos = radiusIn * sin(phi);
58  } else {
59  xpos = radiusOut * cos(phi);
60  ypos = radiusOut * sin(phi);
61  }
62  Position tran(xpos, ypos, zpos);
63  /* PlacedVolume pv = */ mother.placeVolume(child, copyNo, Transform3D(rotation, tran));
64  edm::LogVerbatim("TrackerGeom") << "" << child.name() << " number " << copyNo << " positioned in "
65  << mother.name() << " at " << tran << " with " << rotation;
66  copyNo += incrCopyNo;
67  }
68  }
69  return 1;
70 }
Log< level::Info, true > LogVerbatim
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
DDRotationMatrix makeRotation3D(double thetaX, double phiX, double thetaY, double phiY, double thetaZ, double phiZ)
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
dd4hep::Volume Volume
Geom::Theta< T > theta() const

◆ DD4HEP_OPEN_PLUGIN()

DD4HEP_OPEN_PLUGIN ( dd4hep  ,
ddcms_det_element_DDCMS_track_DDTrackerPhiAltAlgo   
)

Definition at line 73 of file DDTrackerPhiAltAlgo.cc.