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  LogDebug("TOBGeom") << "DDTOBAxCableAlgo debug: sectorNumber[" << i << "] = " << sectorNumber[i];
26 
27  LogDebug("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  LogDebug("TOBGeom") << "\t[" << i << "]\tPhi = " << sectorStartPhi[i];
31  LogDebug("TOBGeom") << "DDTOBAxCableAlgo debug: List of materials for the sectors/3 parts";
32  //
33  LogDebug("TOBGeom") << "DDTOBAxCableAlgo debug: Sector/3 A";
34  for (int i = 0; i < (int)(sectorNumber.size()); i++)
35  LogDebug("TOBGeom") << "\t[" << i << "]\tsectorMaterial_A = " << sectorMaterial_A[i];
36  //
37  LogDebug("TOBGeom") << "DDTOBAxCableAlgo debug: Sector/3 B";
38  for (int i = 0; i < (int)(sectorNumber.size()); i++)
39  LogDebug("TOBGeom") << "\t[" << i << "]\tsectorMaterial_B = " << sectorMaterial_B[i];
40  //
41  LogDebug("TOBGeom") << "DDTOBAxCableAlgo debug: Sector/3 C";
42  for (int i = 0; i < (int)(sectorNumber.size()); i++)
43  LogDebug("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(name, Tube(rin, rout, dz, startphi, startphi + deltaphi));
66  LogDebug("TOBGeom") << solid.name() << " Tubs made of " << sectorMaterial_A[i] << " from "
67  << convertRadToDeg(startphi) << " to " << convertRadToDeg((startphi + deltaphi)) << " with Rin "
68  << rin << " Rout " << rout << " ZHalf " << dz;
69  Volume sectorLogic = ns.addVolume(Volume(name, solid, ns.material(sectorMaterial_A[i])));
70  tubsVol.placeVolume(sectorLogic, i + 1); // copyNr: i+1
71  LogDebug("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(name, Tube(rin, rout, dz, startphi, startphi + deltaphi));
79  LogDebug("TOBGeom") << solid.name() << " Tubs made of " << sectorMaterial_B[i] << " from "
80  << convertRadToDeg(startphi) << " to " << convertRadToDeg((startphi + deltaphi)) << " with Rin "
81  << rin << " Rout " << rout << " ZHalf " << dz;
82 
83  sectorLogic = ns.addVolume(Volume(name, solid, ns.material(sectorMaterial_B[i])));
84  tubsVol.placeVolume(sectorLogic, i + 1); // copyNr: i+1
85  LogDebug("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(name, Tube(rin, rout, dz, startphi, startphi + deltaphi));
93  LogDebug("TOBGeom") << solid.name() << " Tubs made of " << sectorMaterial_C[i] << " from "
94  << convertRadToDeg(startphi) << " to " << convertRadToDeg((startphi + deltaphi)) << " with Rin "
95  << rin << " Rout " << rout << " ZHalf " << dz;
96  sectorLogic = ns.addVolume(Volume(name, solid, ns.material(sectorMaterial_C[i])));
97  tubsVol.placeVolume(sectorLogic, i + 1); // copyNr: i+1
98  LogDebug("TOBGeom") << sectorLogic.name() << " number " << i + 1 << " positioned in " << tubsName
99  << " with no translation and no rotation";
100  }
101  LogDebug("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)
writedatasetfile.args
args
Definition: writedatasetfile.py:18
mps_fire.i
i
Definition: mps_fire.py:428
cms_units::operators
Definition: CMSUnits.h:13
MessageLogger.h
algorithm
static long algorithm(Detector &, cms::DDParsingContext &ctxt, xml_h e)
Definition: DDTOBAxCableAlgo.cc:11
DECLARE_DDCMS_DETELEMENT
#define DECLARE_DDCMS_DETELEMENT(name, func)
Definition: DDPlugins.h:25
cms::DDNamespace::material
dd4hep::Material material(const std::string &name) const
Definition: DDNamespace.cc:116
cms::DDParsingContext
Definition: DDParsingContext.h:13
angle_units::operators::convertRadToDeg
constexpr NumType convertRadToDeg(NumType radians)
Definition: angle_units.h:21
cms::DDNamespace
Definition: DDNamespace.h:16
cms::Volume
dd4hep::Volume Volume
Definition: DDFilteredView.h:47
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:223
DDPlugins.h
createfilelist.int
int
Definition: createfilelist.py:10
cms::DDNamespace::addVolume
dd4hep::Volume addVolume(dd4hep::Volume vol) const
Add rotation matrix to current namespace.
Definition: DDNamespace.cc:165
cms::DDAlgoArguments
Definition: DDAlgoArguments.h:28
cms::DDNamespace::addSolid
dd4hep::Solid addSolid(const std::string &name, dd4hep::Solid solid) const
Definition: DDNamespace.cc:236
align::Detector
Definition: StructureType.h:86
std
Definition: JetResolutionObject.h:76
PVValHelper::dz
Definition: PVValidationHelpers.h:50
dd4hep
Definition: DDPlugins.h:8
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
CMSUnits.h
cms::DDNamespace::volume
dd4hep::Volume volume(const std::string &name, bool exc=true) const
Definition: DDNamespace.cc:205
cms
Namespace of DDCMS conversion namespace.
Definition: ProducerAnalyzer.cc:21
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37