CMS 3D CMS Logo

DDTOBAxCableAlgo.cc
Go to the documentation of this file.
1 #include "DD4hep/DetFactoryHelper.h"
5 
6 using namespace std;
7 using namespace dd4hep;
8 using namespace cms;
9 using namespace cms_units::operators;
10 
11 static long algorithm(Detector& /* description */, cms::DDParsingContext& ctxt, xml_h e) {
12  cms::DDNamespace ns(ctxt, e, true);
13  DDAlgoArguments args(ctxt, e);
14  vector<string> sectorNumber = args.vecStr("SectorNumber"); // Id. Number of the sectors
15  double sectorRin = args.dble("SectorRin"); // Inner radius of service sectors
16  double sectorRout = args.dble("SectorRout"); // Outer radius of service sectors
17  double sectorDz = args.dble("SectorDz"); // Sector half-length
18  double sectorDeltaPhi_B = args.dble("SectorDeltaPhi_B"); // Sector B phi width [A=C=0.5*(360/sectors)]
19  vector<double> sectorStartPhi = args.vecDble("SectorStartPhi"); // Starting phi for the service sectors
20  vector<string> sectorMaterial_A = args.vecStr("SectorMaterial_A"); // Material for the A sectors
21  vector<string> sectorMaterial_B = args.vecStr("SectorMaterial_B"); // Material for the B sectors
22  vector<string> sectorMaterial_C = args.vecStr("SectorMaterial_C"); // Material for the C sectors
23 
24  for (int i = 0; i < (int)(sectorNumber.size()); i++)
25  edm::LogVerbatim("TOBGeom") << "DDTOBAxCableAlgo debug: sectorNumber[" << i << "] = " << sectorNumber[i];
26 
27  edm::LogVerbatim("TOBGeom") << "DDTOBAxCableAlgo debug: Axial Service Sectors half-length " << sectorDz << "\tRin "
28  << sectorRin << "\tRout = " << sectorRout << "\tPhi of sectors position:";
29  for (int i = 0; i < (int)(sectorNumber.size()); i++)
30  edm::LogVerbatim("TOBGeom") << "\t[" << i << "]\tPhi = " << sectorStartPhi[i];
31  edm::LogVerbatim("TOBGeom") << "DDTOBAxCableAlgo debug: List of materials for the sectors/3 parts";
32  //
33  edm::LogVerbatim("TOBGeom") << "DDTOBAxCableAlgo debug: Sector/3 A";
34  for (int i = 0; i < (int)(sectorNumber.size()); i++)
35  edm::LogVerbatim("TOBGeom") << "\t[" << i << "]\tsectorMaterial_A = " << sectorMaterial_A[i];
36  //
37  edm::LogVerbatim("TOBGeom") << "DDTOBAxCableAlgo debug: Sector/3 B";
38  for (int i = 0; i < (int)(sectorNumber.size()); i++)
39  edm::LogVerbatim("TOBGeom") << "\t[" << i << "]\tsectorMaterial_B = " << sectorMaterial_B[i];
40  //
41  edm::LogVerbatim("TOBGeom") << "DDTOBAxCableAlgo debug: Sector/3 C";
42  for (int i = 0; i < (int)(sectorNumber.size()); i++)
43  edm::LogVerbatim("TOBGeom") << "\t[" << i << "]\tsectorMaterial_C = " << sectorMaterial_C[i];
44 
45  string tubsName = args.parentName();
46  Volume tubsVol = ns.volume(tubsName);
47  // Loop over sectors (sectorNumber vector)
48  for (int i = 0; i < (int)(sectorNumber.size()); i++) {
49  Solid solid;
50  string name;
51  double dz, rin, rout, startphi, widthphi, deltaphi;
52 
53  // Axial Services
54  // Each sector is divided in 3 parts from phi[i] to phi[i+1]
55 
56  widthphi = ((i + 1 == (int)(sectorStartPhi.size())) ? (sectorStartPhi[0] + 2_pi) - sectorStartPhi[i]
57  : (sectorStartPhi[i + 1] - sectorStartPhi[i]));
58  // First Part: A
59  name = "TOBAxService_" + sectorNumber[i] + "A";
60  dz = sectorDz;
61  rin = sectorRin;
62  rout = sectorRout;
63  startphi = sectorStartPhi[i];
64  deltaphi = 0.5 * (widthphi - sectorDeltaPhi_B);
65  solid = ns.addSolid(ns.prepend(name), Tube(rin, rout, dz, startphi, startphi + deltaphi));
66  edm::LogVerbatim("TOBGeom") << solid.name() << " Tubs made of " << sectorMaterial_A[i] << " from "
67  << convertRadToDeg(startphi) << " to " << convertRadToDeg((startphi + deltaphi))
68  << " with Rin " << rin << " Rout " << rout << " ZHalf " << dz;
69  Volume sectorLogic = ns.addVolume(Volume(solid.name(), solid, ns.material(sectorMaterial_A[i])));
70  tubsVol.placeVolume(sectorLogic, i + 1); // copyNr: i+1
71  edm::LogVerbatim("TOBGeom") << sectorLogic.name() << " number " << i + 1 << " positioned in " << tubsName
72  << " with no translation and no rotation";
73 
74  // Second Part: B
75  name = "TOBAxService_" + sectorNumber[i] + "B";
76  startphi += deltaphi;
77  deltaphi = sectorDeltaPhi_B;
78  solid = ns.addSolid(ns.prepend(name), Tube(rin, rout, dz, startphi, startphi + deltaphi));
79  edm::LogVerbatim("TOBGeom") << solid.name() << " Tubs made of " << sectorMaterial_B[i] << " from "
80  << convertRadToDeg(startphi) << " to " << convertRadToDeg((startphi + deltaphi))
81  << " with Rin " << rin << " Rout " << rout << " ZHalf " << dz;
82 
83  sectorLogic = ns.addVolume(Volume(solid.name(), solid, ns.material(sectorMaterial_B[i])));
84  tubsVol.placeVolume(sectorLogic, i + 1); // copyNr: i+1
85  edm::LogVerbatim("TOBGeom") << sectorLogic.name() << " number " << i + 1 << " positioned in " << tubsName
86  << " with no translation and no rotation";
87 
88  // Third Part: C
89  name = "TOBAxService_" + sectorNumber[i] + "C";
90  startphi += deltaphi;
91  deltaphi = 0.5 * (widthphi - sectorDeltaPhi_B);
92  solid = ns.addSolid(ns.prepend(name), Tube(rin, rout, dz, startphi, startphi + deltaphi));
93  edm::LogVerbatim("TOBGeom") << solid.name() << " Tubs made of " << sectorMaterial_C[i] << " from "
94  << convertRadToDeg(startphi) << " to " << convertRadToDeg((startphi + deltaphi))
95  << " with Rin " << rin << " Rout " << rout << " ZHalf " << dz;
96  sectorLogic = ns.addVolume(Volume(solid.name(), solid, ns.material(sectorMaterial_C[i])));
97  tubsVol.placeVolume(sectorLogic, i + 1); // copyNr: i+1
98  edm::LogVerbatim("TOBGeom") << sectorLogic.name() << " number " << i + 1 << " positioned in " << tubsName
99  << " with no translation and no rotation";
100  }
101  edm::LogVerbatim("TOBGeom") << "<<== End of DDTOBAxCableAlgo construction ...";
102  return 1;
103 }
104 
105 // first argument is the type from the xml file
106 DECLARE_DDCMS_DETELEMENT(DDCMS_track_DDTOBAxCableAlgo, algorithm)
Log< level::Info, true > LogVerbatim
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
dd4hep::Material material(const std::string &name) const
Definition: DDNamespace.cc:166
#define DECLARE_DDCMS_DETELEMENT(name, func)
Definition: DDPlugins.h:25
dd4hep::Volume addVolume(dd4hep::Volume vol) const
Definition: DDNamespace.cc:221
dd4hep::Volume Volume
Namespace of DDCMS conversion namespace.
dd4hep::Solid addSolid(const std::string &name, dd4hep::Solid solid) const
Definition: DDNamespace.cc:307
dd4hep::Volume volume(const std::string &name, bool exc=true) const
Definition: DDNamespace.cc:276
static long algorithm(Detector &, cms::DDParsingContext &ctxt, xml_h e)
std::string prepend(const std::string &) const
Definition: DDNamespace.cc:99