CMS 3D CMS Logo

Typedefs | Functions
DDLinear.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"
#include <Math/Cartesian3D.h>
#include <Math/DisplacementVector3D.h>

Go to the source code of this file.

Typedefs

using DD3Vector = ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > >
 

Functions

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

Typedef Documentation

◆ DD3Vector

using DD3Vector = ROOT::Math::DisplacementVector3D<ROOT::Math::Cartesian3D<double> >

Definition at line 13 of file DDLinear.cc.

Function Documentation

◆ algorithm()

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

Definition at line 15 of file DDLinear.cc.

References writedatasetfile::args, edmMakeDummyCfis::base, angle_units::operators::convertRadToDeg(), filterCSVwithJSON::copy, funct::cos(), dumpMFGeometry_cfg::delta, MillePedeFileConverter_cfg::e, mps_fire::i, LogDebug, dqmiodumpmetadata::n, cms::DDNamespace::name(), PixelTestBeamValidation_cfi::Position, idealTransformation::rotation, funct::sin(), theta(), and cms::DDNamespace::volume().

15  {
16  cms::DDNamespace ns(ctxt, e, true);
17  DDAlgoArguments args(ctxt, e);
18 
19  int n = args.value<int>("N");
20  int startCopyNo = args.find("StartCopyNo") ? args.value<int>("StartCopyNo") : 1;
21  int incrCopyNo = args.find("IncrCopyNo") ? args.value<int>("IncrCopyNo") : 1;
22  double theta = args.find("Theta") ? args.value<double>("Theta") : 0.;
23  double phi = args.find("Phi") ? args.value<double>("Phi") : 0.;
24  double delta = args.find("Delta") ? args.value<double>("Delta") : 0.;
25  vector<double> base = args.value<vector<double> >("Base");
26  Volume mother = ns.volume(args.parentName());
27  Volume child = ns.volume(args.value<string>("ChildName"));
28  int copy = startCopyNo;
29 
30  LogDebug("DDAlgorithm") << "DDLinear: Parameters for positioning:: n " << n << " Direction Theta, Phi, Delta "
32  << " Base " << base[0] << ", " << base[1] << ", " << base[2];
33 
34  LogDebug("DDAlgorithm") << "DDLinear: Parent " << mother.name() << "\tChild " << child.name() << " NameSpace "
35  << ns.name();
36 
37  Position direction(sin(theta) * cos(phi), sin(theta) * sin(phi), cos(theta));
38 
39  Position basetr(base[0], base[1], base[2]);
40 
41  Rotation3D rotation = Rotation3D(); // Identity rotation
42 
43  for (int i = 0; i < n; ++i) {
44  Position tran = basetr + (double(copy) * delta) * direction;
45  mother.placeVolume(child, copy, Transform3D(rotation, tran));
46  LogDebug("DDAlgorithm") << "DDLinear: " << child.name() << " number " << copy << " positioned in " << mother.name()
47  << " at " << tran << " with " << rotation;
48 
49  copy += incrCopyNo;
50  }
51 
52  return 1;
53 }
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
dd4hep::Volume Volume
Geom::Theta< T > theta() const
#define LogDebug(id)

◆ DD4HEP_OPEN_PLUGIN()

DD4HEP_OPEN_PLUGIN ( dd4hep  ,
ddcms_det_element_DDCMS_global_DDLinear   
)

Definition at line 56 of file DDLinear.cc.