4 #include "KVFAZIANFS.h"
6 #include "KVMaterial.h"
8 #include "TGeoManager.h"
9 #include "TGeoMedium.h"
10 #include "TGeoVolume.h"
11 #include "TGeoMatrix.h"
46 SetTitle(ClassName());
77 Double_t distance_si2_si1 = 0.220;
78 Double_t distance_csi_si2 = 0.434;
81 Double_t side_csi_front = 2.050;
82 Double_t side_csi_back = 2.272;
86 Double_t thick_csi = 10;
88 double total_thickness = thick_si1 + centre_dist;
90 TGeoVolumeAssembly* tel = gGeoManager->MakeVolumeAssembly(
"STRUCT_TEL");
91 TGeoTranslation* tr = 0;
94 si = gGeoManager->MakeBox(Form(
"DET_SI"), silicon.
GetGeoMedium(), side_si / 2, side_si / 2, thick_si1 / 2.);
95 tr =
new TGeoTranslation(0, 0, thick_si1 / 2.);
96 tel->AddNode(si, 1, tr);
98 si = gGeoManager->MakeBox(Form(
"DET_SI"), silicon.
GetGeoMedium(), side_si / 2, side_si / 2, thick_si2 / 2.);
99 tr =
new TGeoTranslation(0, 0, thick_si2 / 2. + distance_si2_si1);
100 tel->AddNode(si, 2, tr);
102 csi = gGeoManager->MakeTrd2(Form(
"DET_CSI"), CesiumIodide, side_csi_front / 2, side_csi_back / 2, side_csi_front / 2, side_csi_back / 2, thick_csi / 2.);
103 tr =
new TGeoTranslation(0, 0, thick_csi / 2. + distance_csi_si2);
104 tel->AddNode(csi, 3, tr);
107 const double distance = 0.25 *
KVUnits::m + 0.5 * total_thickness;
114 TGeoRotation rot1, rot2;
115 TGeoTranslation trans(0, 0, distance);
123 for (th = tmin; th <= tmax; th += dt) {
124 rot1.SetAngles(ph, 0., 0.);
125 rot2.SetAngles(ph + 90, th, 0);
126 h = rot2 * trans * rot1;
127 gGeoManager->GetTopVolume()->AddNode(tel, nt++,
new TGeoHMatrix(h));
129 Double_t phi_comp = ph * -1;
130 Double_t th_comp = 90 - th;
131 rot1.SetAngles(phi_comp, 0., 0.);
132 rot2.SetAngles(phi_comp + 90, th_comp, 0);
134 printf(
"nt=%d th=%lf th_comp=%lf\n", nt, th, th_comp);
136 h = rot2 * trans * rot1;
137 gGeoManager->GetTopVolume()->AddNode(tel, nt++,
new TGeoHMatrix(h));
174 TGeoVolume* target = gGeoManager->MakeEltu(
"TARGET", target_holder_mat.
GetGeoMedium(), 4., 4., 30 *
KVUnits::um / 2.);
175 TGeoTranslation* tr =
new TGeoTranslation(0, 0, -0.1);
176 gGeoManager->GetTopVolume()->AddNode(target, 1, tr);
187 for (Int_t tt = 1; tt <= 8; tt += 1) {
188 env.SetValue(Form(
"TEL_%d_SI_1", tt), Form(
"SI1-T%d", tt));
189 env.SetValue(Form(
"TEL_%d_SI_2", tt), Form(
"SI2-T%d", tt));
190 env.SetValue(Form(
"TEL_%d_CSI_3", tt), Form(
"CSI-T%d", tt));
Extension of TEnv to allow the writing of comments in the file.
configuration of FAZIA telescopes for NFS experiments
KVFAZIANFS()
Default constructor.
virtual ~KVFAZIANFS()
Destructor.
virtual void BuildFAZIA()
void SetNameOfDetectors(KVEnv &env)
Description of a FAZIA detector geometry.
void SetGeometryImportParameters(Double_t dt=0.25, Double_t dp=1.0, Double_t tmin=2., Double_t pmin=0, Double_t tmax=20., Double_t pmax=360., Double_t xorg=0, Double_t yorg=0, Double_t zorg=0)
Description of physical materials used to construct detectors & targets; interface to range tables.
virtual TGeoMedium * GetGeoMedium(const Char_t *="")