CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Functions
DDTrackerXYZPosAlgo.cc File Reference
#include "DD4hep/DetFactoryHelper.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_DDTrackerXYZPosAlgo)
 

Function Documentation

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

Definition at line 9 of file DDTrackerXYZPosAlgo.cc.

References writedatasetfile::args, filterCSVwithJSON::copy, cms::DDAlgoArguments::find(), mps_fire::i, cms::DDNamespace::name(), cms::DDAlgoArguments::parentName(), PixelTestBeamValidation_cfi::Position, makeMuonMisalignmentScenario::rot, cms::DDNamespace::rotation(), cms::DDAlgoArguments::value(), and cms::DDNamespace::volume().

9  {
10  cms::DDNamespace ns(ctxt, e, true);
11  DDAlgoArguments args(ctxt, e);
12  int startCopyNo = args.find("StartCopyNo") ? args.value<int>("StartCopyNo") : 1;
13  int incrCopyNo = args.find("IncrCopyNo") ? args.value<int>("IncrCopyNo") : 1;
14  Volume mother = ns.volume(args.parentName());
15  Volume child = ns.volume(args.value<string>("ChildName"));
16  vector<double> xvec = args.value<vector<double> >("XPositions"); // X positions
17  vector<double> yvec = args.value<vector<double> >("YPositions"); // Y positions
18  vector<double> zvec = args.value<vector<double> >("ZPositions"); // Z positions
19  vector<string> rotMat = args.value<vector<string> >("Rotations"); // Names of rotation matrices
20 
21  edm::LogVerbatim("TrackerGeom") << "debug: Parent " << mother.name() << "\tChild " << child.name() << " NameSpace "
22  << ns.name() << "\tCopyNo (Start/Increment) " << startCopyNo << ", " << incrCopyNo
23  << "\tNumber " << xvec.size() << ", " << yvec.size() << ", " << zvec.size();
24  for (int i = 0; i < (int)(zvec.size()); i++) {
25  edm::LogVerbatim("TrackerGeom") << "\t[" << i << "]\tX = " << xvec[i] << "\t[" << i << "]\tY = " << yvec[i] << "\t["
26  << i << "]\tZ = " << zvec[i] << ", Rot.Matrix = " << rotMat[i];
27  }
28 
29  for (int i = 0, copy = startCopyNo; i < (int)(zvec.size()); i++, copy += incrCopyNo) {
30  Position tran(xvec[i], yvec[i], zvec[i]);
31  Rotation3D rot;
32  /* PlacedVolume pv = */ rotMat[i] != "NULL"
33  ? mother.placeVolume(child, copy, Transform3D(ns.rotation(rotMat[i]), tran))
34  : mother.placeVolume(child, tran);
35  edm::LogVerbatim("TrackerGeom") << "test: " << child.name() << " number " << copy << " positioned in "
36  << mother.name() << " at " << tran << " with " << rot;
37  }
38  return 1;
39 }
Log< level::Info, true > LogVerbatim
dd4hep::Volume Volume
DD4HEP_OPEN_PLUGIN ( dd4hep  ,
ddcms_det_element_DDCMS_track_DDTrackerXYZPosAlgo   
)

Definition at line 42 of file DDTrackerXYZPosAlgo.cc.