1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#include "DD4hep/DetFactoryHelper.h"
#include "DetectorDescription/DDCMS/interface/DDPlugins.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
using namespace std;
using namespace dd4hep;
using namespace cms;
static long algorithm(Detector& /* description */, cms::DDParsingContext& ctxt, xml_h e) {
cms::DDNamespace ns(ctxt, e, true);
DDAlgoArguments args(ctxt, e);
int startCopyNo = args.find("StartCopyNo") ? args.value<int>("StartCopyNo") : 1;
int incrCopyNo = args.find("IncrCopyNo") ? args.value<int>("IncrCopyNo") : 1;
Volume mother = ns.volume(args.parentName());
Volume child = ns.volume(args.value<string>("ChildName"));
vector<double> zvec = args.value<vector<double> >("ZPositions"); // Z positions
vector<string> rotMat = args.value<vector<string> >("Rotations"); // Names of rotation matrices
edm::LogVerbatim("TrackerGeom") << "debug: Parent " << mother.name() << "\tChild " << child.name() << " NameSpace "
<< ns.name() << "\tCopyNo (Start/Increment) " << startCopyNo << ", " << incrCopyNo
<< "\tNumber " << zvec.size();
for (int i = 0; i < (int)(zvec.size()); i++)
edm::LogVerbatim("TrackerGeom") << "\t[" << i << "]\tZ = " << zvec[i] << ", Rot.Matrix = " << rotMat[i];
for (int i = 0, copy = startCopyNo; i < (int)(zvec.size()); i++, copy += incrCopyNo) {
Position tran(0, 0, zvec[i]);
Rotation3D rot;
/* PlacedVolume pv = */ rotMat[i] != "NULL"
? mother.placeVolume(child, copy, Transform3D(ns.rotation(rotMat[i]), tran))
: mother.placeVolume(child, copy, tran);
edm::LogVerbatim("TrackerGeom") << "test: " << child.name() << " number " << copy << " positioned in "
<< mother.name() << " at " << tran << " with " << rot;
}
return 1;
}
// first argument is the type from the xml file
DECLARE_DDCMS_DETELEMENT(DDCMS_track_DDTrackerZPosAlgo, algorithm)
|