GenericSiliconTrackerBarrel_geo.cpp
Go to the documentation of this file.
1 #include "DD4hep/DetFactoryHelper.h"
2 #include "DD4hep/Printout.h"
3 #include "TMath.h"
4 #include "DDRec/Surface.h"
5 #include "DDRec/DetectorData.h"
6 
7 using namespace std;
8 using namespace dd4hep;
9 //using namespace DD4hep::Geometry;
10 //using namespace DD4hep::DDRec;
11 using namespace dd4hep::rec;
12 //using namespace DDSurfaces;
13 
28 static Ref_t create_detector(Detector& lcdd, xml_h e, SensitiveDetector sens)
29 {
30  typedef vector<PlacedVolume> Placements;
31 
32  xml_det_t x_det = e;
33  Material air = lcdd.air();
34  Material carbon = lcdd.material("CarbonFiber");
35  Material silicon = lcdd.material("SiliconOxide");
36  int det_id = x_det.id();
37  string det_name = x_det.nameStr();
38  PlacedVolume pv;
39 
40  double inner_r = x_det.attr<double>( _Unicode(inner_r) ) ;
41  DetElement sdet(det_name, det_id);
42  Assembly assembly(det_name+"_assembly");
43  //printout(INFO, "SiTrackerBarrelJLEIC", "In the Create Detector Function");
44 
45  sens.setType("tracker");
46  string module_name = "VtxBarrelModule";
47 
48  double init_layer_radius = inner_r;//380.0*dd4hep::mm;
49 
50  // Critical parameters
51  int N_layers = 3; // Total number of layers
52  std::vector<int> N_z_modules = { 1, 1, 1 };//, 1 }; // Number of modules in Z
53  std::vector<int> N_phi_modules = { 8, 14, 20 };//, 20 }; // Number of modules in Z
54 
55  double extra_module_width = 0.2*dd4hep::cm;
56  double module_x = (2.0*TMath::Pi()*init_layer_radius)/(N_phi_modules.at(0)*2.0);
57  double module_y = 100.0*dd4hep::cm/2.0;
58  double module_z = 2.0*dd4hep::mm;
59 
60  Position offset{ 0.0, 0.0, 1.0*dd4hep::m };
61 
62  // For each layer, calculate the delta_phi covered by each module
63  std::vector<double> delta_phi_layer;
64  std::for_each(N_phi_modules.begin(), N_phi_modules.end(),
65  [&](auto const& n){ delta_phi_layer.push_back( TMath::Pi()/double(n) ); });
66 
67  // Calculate the radius for each layer
68  std::vector<double> layer_radius;
69  std::for_each(delta_phi_layer.begin(), delta_phi_layer.end(),
70  [&](auto const& p){ layer_radius.push_back( module_x/p ); });
71 
72  Volume module_vol(module_name, Box(module_x+extra_module_width, module_y-1.0*dd4hep::cm, module_z), carbon);
73  Volume sense_vol("sense_volume", Box(module_x+extra_module_width-1.0*dd4hep::mm, module_y-2.0*dd4hep::cm, 0.5*dd4hep::mm), silicon);
74 
75  PlacedVolume sensitive_pv = module_vol.placeVolume( sense_vol );
76  sensitive_pv.addPhysVolID( "sensor", 1 );
77 
78  // -------- create a measurement plane for the tracking surface attched to the sensitive volume -----
79  Vector3D u( 1. , 0. , 0. ) ;
80  Vector3D v( 0. , 1. , 0. ) ;
81  Vector3D n( 0. , 0. , 1. ) ;
82  Vector3D o( 0. , 0. , 0. ) ;
83 
84  // compute the inner and outer thicknesses that need to be assigned to the tracking surface
85  // depending on wether the support is above or below the sensor
86  // The tracking surface is used in reconstruction. It provides material thickness
87  // and radation lengths needed for various algorithms, routines, etc.
88  double inner_thickness = module_z/2.0;
89  double outer_thickness = module_z/2.0;
90 
91  SurfaceType type( SurfaceType::Sensitive ) ;
92  VolPlane surf( sense_vol, type, inner_thickness , outer_thickness , u,v,n,o ) ;
93 
94  //--------------------------------------------
95 
96  sens.setType("tracker");
97  sense_vol.setSensitiveDetector(sens);
98 
99  ROOT::Math::RotationX Rx( TMath::Pi()/2.0 );
100  ROOT::Math::RotationZ Rz( TMath::Pi()/2.0 );
101 
102  for(int i_layer=0; i_layer<N_layers; i_layer++){
103 
104  int layer_id = i_layer + 1;
105  string layer_name = std::string("layer") + std::to_string(layer_id) ;
106  double phi0 = 0;
107  double phi_tilt = 180.0*dd4hep::degree/(double(N_phi_modules.at(i_layer))+3.0);
108 
109  std::cout << "Radius of layer " << layer_id << " is " << layer_radius.at(i_layer) << endl;
110  DetElement layer_DE( sdet, _toString(layer_id,"layer%d"), layer_id );
111  Assembly layer_assembly( layer_name+"_assembly" );
112  pv = assembly.placeVolume( layer_assembly );
113  pv.addPhysVolID( "layer", layer_id );
114  layer_DE.setPlacement(pv);
115  layer_DE.setAttributes(lcdd, layer_assembly, "", "", "SiVertexLayerVis");
116 
117  // Loop over the number of modules in phi.
118  for (int i_phi = 0; i_phi < N_phi_modules.at(i_layer); i_phi++){
119 
120  double phi = phi0 + i_phi*2.0*delta_phi_layer.at(i_layer);
121 
122  // The radial displacement of the module
123  ROOT::Math::Polar3DVector rho_module( layer_radius.at(i_layer), TMath::Pi()/2.0, phi );
124 
125  double z0 = -1.0*module_y*double(N_z_modules.at(i_layer)) + module_y;
126  double dz = 2.0*module_y;
127 
128  // Loop over the number of modules in z.
129  for (int i_Z = 0; i_Z < N_z_modules.at(i_layer); i_Z++){
130 
131  ROOT::Math::XYZVector z_displacement(0.0, 0.0, z0 + double(i_Z)*dz);
132 
133  int i_module = 1 + i_Z + i_phi*N_z_modules.at(i_layer);
134  string a_module_name = _toString(i_module, "module%d");
135 
136  Transform3D tr( RotationZ(phi_tilt)*RotationZ(phi)*Rx, Rz*rho_module + z_displacement);
137 
138  DetElement module_DE(layer_DE, a_module_name, i_module);
139  module_vol.setVisAttributes(lcdd, x_det.visStr());
140  pv = layer_assembly.placeVolume( module_vol, tr );
141  pv.addPhysVolID( "module", i_module );
142  module_DE.setPlacement(pv);
143 
144  DetElement module_sense_DE( module_DE, std::string("sense_DE")+std::to_string(i_module), i_module );
145  module_sense_DE.setPlacement( sensitive_pv );
146 
147  }
148  }
149  }
150 
151  sdet.setAttributes(lcdd, assembly,x_det.regionStr(),x_det.limitsStr(),x_det.visStr());
152  assembly.setVisAttributes(lcdd.invisible());
153 
154  pv = lcdd.pickMotherVolume(sdet).placeVolume(assembly);
155  pv.addPhysVolID("system", det_id); // Set the subdetector system ID.
156  pv.addPhysVolID("barrel", 1); // Flag this as a barrel subdetector.
157  sdet.setPlacement(pv);
158 
159  assembly->GetShape()->ComputeBBox() ;
160 
161  return sdet;
162 }
164 DECLARE_DETELEMENT(GenericSiliconTrackerBarrel, create_detector)
Detector
Definition: DDG4.py:69
Namespace for the AIDA detector description toolkit.
static Ref_t create_detector(Detector &lcdd, xml_h e, SensitiveDetector sens)