4c039060 |
1 | /************************************************************************** |
2 | * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
3 | * * |
4 | * Author: The ALICE Off-line Project. * |
5 | * Contributors are mentioned in the code where appropriate. * |
6 | * * |
7 | * Permission to use, copy, modify and distribute this software and its * |
8 | * documentation strictly for non-commercial purposes is hereby granted * |
9 | * without fee, provided that the above copyright notice appears in all * |
10 | * copies and that both the copyright notice and this permission notice * |
11 | * appear in the supporting documentation. The authors make no claims * |
12 | * about the suitability of this software for any purpose. It is * |
13 | * provided "as is" without express or implied warranty. * |
14 | **************************************************************************/ |
15 | |
16 | /* |
17 | $Log$ |
b213b8bd |
18 | Revision 1.25 2001/11/22 11:22:51 hristov |
19 | Updated version of TOF digitization, N^2 problem solved (J.Chudoba) |
20 | |
e59d8a81 |
21 | Revision 1.23 2001/09/27 10:39:20 vicinanz |
22 | SDigitizer and Merger added |
23 | |
517b7f8f |
24 | Revision 1.22 2001/09/20 15:54:22 vicinanz |
25 | Updated Strip Structure (Double Stack) |
26 | |
dfacde63 |
27 | Revision 1.21 2001/08/28 08:45:59 vicinanz |
28 | TTask and TFolder structures implemented |
29 | |
68861244 |
30 | Revision 1.20 2001/05/16 14:57:24 alibrary |
31 | New files for folders and Stack |
32 | |
9e1a0ddb |
33 | Revision 1.19 2001/05/04 10:09:48 vicinanz |
34 | Major upgrades to the strip structure |
35 | |
b94fa26c |
36 | Revision 1.18 2000/12/04 08:48:20 alibrary |
37 | Fixing problems in the HEAD |
38 | |
0cc62300 |
39 | Revision 1.17 2000/10/02 21:28:17 fca |
40 | Removal of useless dependecies via forward declarations |
41 | |
94de3818 |
42 | Revision 1.16 2000/05/10 16:52:18 vicinanz |
43 | New TOF version with holes for PHOS/RICH |
44 | |
2cef3cb2 |
45 | Revision 1.14.2.1 2000/05/10 09:37:16 vicinanz |
46 | New version with Holes for PHOS/RICH |
47 | |
da39da0c |
48 | Revision 1.14 1999/11/05 22:39:06 fca |
49 | New hits structure |
50 | |
826b71ec |
51 | Revision 1.13 1999/11/02 11:26:39 fca |
52 | added stdlib.h for exit |
53 | |
0c50193f |
54 | Revision 1.12 1999/11/01 20:41:57 fca |
55 | Added protections against using the wrong version of FRAME |
56 | |
ab76897d |
57 | Revision 1.11 1999/10/22 08:04:14 fca |
58 | Correct improper use of negative parameters |
59 | |
d0a635a0 |
60 | Revision 1.10 1999/10/16 19:30:06 fca |
61 | Corrected Rotation Matrix and CVS log |
62 | |
00e5f8d9 |
63 | Revision 1.9 1999/10/15 15:35:20 fca |
64 | New version for frame1099 with and without holes |
65 | |
66 | Revision 1.8 1999/09/29 09:24:33 fca |
937fe4a4 |
67 | Introduction of the Copyright and cvs Log |
68 | |
4c039060 |
69 | */ |
70 | |
fe4da5cc |
71 | /////////////////////////////////////////////////////////////////////////////// |
72 | // // |
68861244 |
73 | // Time Of Flight: design of C.Williams // |
74 | // // |
75 | // This class contains the functions for version 3 of the Time Of Flight // |
fe4da5cc |
76 | // detector. // |
937fe4a4 |
77 | // |
78 | // VERSION WITH 5 MODULES AND TILTED STRIPS |
68861244 |
79 | // HITS DEFINED FOR THIS VERSION |
2cef3cb2 |
80 | // HOLES FOR RICH DETECTOR |
937fe4a4 |
81 | // |
82 | // Authors: |
83 | // |
84 | // Alessio Seganti |
85 | // Domenico Vicinanza |
86 | // |
87 | // University of Salerno - Italy |
88 | // |
b94fa26c |
89 | // Fabrizio Pierella |
90 | // University of Bologna - Italy |
91 | // |
937fe4a4 |
92 | // |
fe4da5cc |
93 | //Begin_Html |
94 | /* |
1439f98e |
95 | <img src="picts/AliTOFv3Class.gif"> |
fe4da5cc |
96 | */ |
97 | //End_Html |
98 | // // |
99 | /////////////////////////////////////////////////////////////////////////////// |
100 | |
826b71ec |
101 | #include <iostream.h> |
0c50193f |
102 | #include <stdlib.h> |
103 | |
fe4da5cc |
104 | #include "AliTOFv3.h" |
2cef3cb2 |
105 | #include "TBRIK.h" |
94de3818 |
106 | #include "TGeometry.h" |
2cef3cb2 |
107 | #include "TNode.h" |
0cc62300 |
108 | #include <TLorentzVector.h> |
2cef3cb2 |
109 | #include "TObject.h" |
fe4da5cc |
110 | #include "AliRun.h" |
94de3818 |
111 | #include "AliMC.h" |
3fe3a833 |
112 | #include "AliConst.h" |
2cef3cb2 |
113 | |
fe4da5cc |
114 | |
115 | ClassImp(AliTOFv3) |
116 | |
117 | //_____________________________________________________________________________ |
ad51aeb0 |
118 | AliTOFv3::AliTOFv3() |
fe4da5cc |
119 | { |
120 | // |
121 | // Default constructor |
122 | // |
123 | } |
124 | |
125 | //_____________________________________________________________________________ |
126 | AliTOFv3::AliTOFv3(const char *name, const char *title) |
2cef3cb2 |
127 | : AliTOF(name,title) |
fe4da5cc |
128 | { |
129 | // |
130 | // Standard constructor |
131 | // |
da39da0c |
132 | // |
133 | // Check that FRAME is there otherwise we have no place where to |
134 | // put TOF |
b94fa26c |
135 | AliModule* frame=gAlice->GetModule("FRAME"); |
136 | if(!frame) { |
da39da0c |
137 | Error("Ctor","TOF needs FRAME to be present\n"); |
138 | exit(1); |
2cef3cb2 |
139 | } else |
b94fa26c |
140 | if(frame->IsVersion()!=1) { |
da39da0c |
141 | Error("Ctor","FRAME version 1 needed with this version of TOF\n"); |
142 | exit(1); |
143 | } |
144 | |
fe4da5cc |
145 | } |
2cef3cb2 |
146 | |
b94fa26c |
147 | //____________________________________________________________________________ |
68861244 |
148 | |
2cef3cb2 |
149 | void AliTOFv3::BuildGeometry() |
150 | { |
151 | // |
152 | // Build TOF ROOT geometry for the ALICE event display |
153 | // |
b94fa26c |
154 | TNode *node, *top; |
2cef3cb2 |
155 | const int kColorTOF = 27; |
156 | |
157 | // Find top TNODE |
b94fa26c |
158 | top = gAlice->GetGeometry()->GetNode("alice"); |
2cef3cb2 |
159 | |
160 | // Position the different copies |
b94fa26c |
161 | const Float_t krTof =(fRmax+fRmin)/2; |
162 | const Float_t khTof = fRmax-fRmin; |
163 | const Int_t kNTof = fNTof; |
2cef3cb2 |
164 | const Float_t kPi = TMath::Pi(); |
b94fa26c |
165 | const Float_t kangle = 2*kPi/kNTof; |
2cef3cb2 |
166 | Float_t ang; |
167 | |
168 | // Define TOF basic volume |
169 | |
b94fa26c |
170 | char nodeName0[7], nodeName1[7], nodeName2[7]; |
171 | char nodeName3[7], nodeName4[7], rotMatNum[7]; |
2cef3cb2 |
172 | |
173 | new TBRIK("S_TOF_C","TOF box","void", |
b94fa26c |
174 | 120*0.5,khTof*0.5,fZlenC*0.5); |
2cef3cb2 |
175 | new TBRIK("S_TOF_B","TOF box","void", |
b94fa26c |
176 | 120*0.5,khTof*0.5,fZlenB*0.5); |
2cef3cb2 |
177 | new TBRIK("S_TOF_A","TOF box","void", |
b94fa26c |
178 | 120*0.5,khTof*0.5,fZlenA*0.5); |
2cef3cb2 |
179 | |
b94fa26c |
180 | for (Int_t nodeNum=1;nodeNum<19;nodeNum++){ |
2cef3cb2 |
181 | |
b94fa26c |
182 | if (nodeNum<10) { |
183 | sprintf(rotMatNum,"rot50%i",nodeNum); |
184 | sprintf(nodeName0,"FTO00%i",nodeNum); |
185 | sprintf(nodeName1,"FTO10%i",nodeNum); |
186 | sprintf(nodeName2,"FTO20%i",nodeNum); |
187 | sprintf(nodeName3,"FTO30%i",nodeNum); |
188 | sprintf(nodeName4,"FTO40%i",nodeNum); |
2cef3cb2 |
189 | } |
b94fa26c |
190 | if (nodeNum>9) { |
191 | sprintf(rotMatNum,"rot5%i",nodeNum); |
192 | sprintf(nodeName0,"FTO0%i",nodeNum); |
193 | sprintf(nodeName1,"FTO1%i",nodeNum); |
194 | sprintf(nodeName2,"FTO2%i",nodeNum); |
195 | sprintf(nodeName3,"FTO3%i",nodeNum); |
196 | sprintf(nodeName4,"FTO4%i",nodeNum); |
2cef3cb2 |
197 | } |
198 | |
b94fa26c |
199 | new TRotMatrix(rotMatNum,rotMatNum,90,-20*nodeNum,90,90-20*nodeNum,0,0); |
200 | ang = (4.5-nodeNum) * kangle; |
201 | |
202 | top->cd(); |
203 | node = new TNode(nodeName0,nodeName0,"S_TOF_C",krTof*TMath::Cos(ang),krTof*TMath::Sin(ang),299.15,rotMatNum); |
204 | node->SetLineColor(kColorTOF); |
205 | fNodes->Add(node); |
206 | |
207 | top->cd(); |
208 | node = new TNode(nodeName1,nodeName1,"S_TOF_C",krTof*TMath::Cos(ang),krTof*TMath::Sin(ang),-299.15,rotMatNum); |
209 | node->SetLineColor(kColorTOF); |
210 | fNodes->Add(node); |
211 | if (nodeNum !=1 && nodeNum!=2 && nodeNum !=18) |
2cef3cb2 |
212 | { |
b94fa26c |
213 | top->cd(); |
214 | node = new TNode(nodeName2,nodeName2,"S_TOF_B",krTof*TMath::Cos(ang),krTof*TMath::Sin(ang),146.45,rotMatNum); |
215 | node->SetLineColor(kColorTOF); |
216 | fNodes->Add(node); |
217 | |
218 | top->cd(); |
219 | node = new TNode(nodeName3,nodeName3,"S_TOF_B",krTof*TMath::Cos(ang),krTof*TMath::Sin(ang),-146.45,rotMatNum); |
220 | node->SetLineColor(kColorTOF); |
221 | fNodes->Add(node); |
2cef3cb2 |
222 | } // Holes for RICH detector |
223 | |
b94fa26c |
224 | if (nodeNum !=1 && nodeNum !=2 && nodeNum !=18) |
2cef3cb2 |
225 | { |
b94fa26c |
226 | top->cd(); |
227 | node = new TNode(nodeName4,nodeName4,"S_TOF_A",krTof*TMath::Cos(ang),krTof*TMath::Sin(ang),0.,rotMatNum); |
228 | node->SetLineColor(kColorTOF); |
229 | fNodes->Add(node); |
2cef3cb2 |
230 | } // Holes for RICH detector, central part |
231 | } |
232 | } |
233 | |
234 | |
fe4da5cc |
235 | |
236 | //_____________________________________________________________________________ |
237 | void AliTOFv3::CreateGeometry() |
238 | { |
239 | // |
3fe3a833 |
240 | // Create geometry for Time Of Flight version 0 |
fe4da5cc |
241 | // |
242 | //Begin_Html |
243 | /* |
1439f98e |
244 | <img src="picts/AliTOFv3.gif"> |
fe4da5cc |
245 | */ |
246 | //End_Html |
247 | // |
937fe4a4 |
248 | // Creates common geometry |
fe4da5cc |
249 | // |
250 | AliTOF::CreateGeometry(); |
251 | } |
252 | |
253 | //_____________________________________________________________________________ |
2cef3cb2 |
254 | void AliTOFv3::TOFpc(Float_t xtof, Float_t ytof, Float_t zlenC, |
255 | Float_t zlenB, Float_t zlenA, Float_t ztof0) |
fe4da5cc |
256 | { |
257 | // |
3fe3a833 |
258 | // Definition of the Time Of Fligh Resistive Plate Chambers |
937fe4a4 |
259 | // xFLT, yFLT, zFLT - sizes of TOF modules (large) |
3fe3a833 |
260 | |
937fe4a4 |
261 | Float_t ycoor, zcoor; |
b94fa26c |
262 | Float_t par[3]; |
2cef3cb2 |
263 | Int_t *idtmed = fIdtmed->GetArray()-499; |
264 | Int_t idrotm[100]; |
265 | Int_t nrot = 0; |
266 | Float_t hTof = fRmax-fRmin; |
fe4da5cc |
267 | |
b94fa26c |
268 | Float_t radius = fRmin+2.;//cm |
937fe4a4 |
269 | |
2cef3cb2 |
270 | par[0] = xtof * 0.5; |
271 | par[1] = ytof * 0.5; |
272 | par[2] = zlenC * 0.5; |
273 | gMC->Gsvolu("FTOC", "BOX ", idtmed[506], par, 3); |
274 | par[2] = zlenB * 0.5; |
275 | gMC->Gsvolu("FTOB", "BOX ", idtmed[506], par, 3); |
276 | par[2] = zlenA * 0.5; |
277 | gMC->Gsvolu("FTOA", "BOX ", idtmed[506], par, 3); |
937fe4a4 |
278 | |
279 | |
280 | // Positioning of modules |
281 | |
2cef3cb2 |
282 | Float_t zcor1 = ztof0 - zlenC*0.5; |
283 | Float_t zcor2 = ztof0 - zlenC - zlenB*0.5; |
937fe4a4 |
284 | Float_t zcor3 = 0.; |
285 | |
2cef3cb2 |
286 | AliMatrix(idrotm[0], 90., 0., 0., 0., 90,-90.); |
287 | AliMatrix(idrotm[1], 90.,180., 0., 0., 90, 90.); |
288 | gMC->Gspos("FTOC", 1, "BTO1", 0, zcor1, 0, idrotm[0], "ONLY"); |
289 | gMC->Gspos("FTOC", 2, "BTO1", 0, -zcor1, 0, idrotm[1], "ONLY"); |
290 | gMC->Gspos("FTOC", 1, "BTO2", 0, zcor1, 0, idrotm[0], "ONLY"); |
291 | gMC->Gspos("FTOC", 2, "BTO2", 0, -zcor1, 0, idrotm[1], "ONLY"); |
292 | gMC->Gspos("FTOC", 1, "BTO3", 0, zcor1, 0, idrotm[0], "ONLY"); |
293 | gMC->Gspos("FTOC", 2, "BTO3", 0, -zcor1, 0, idrotm[1], "ONLY"); |
937fe4a4 |
294 | |
2cef3cb2 |
295 | gMC->Gspos("FTOB", 1, "BTO1", 0, zcor2, 0, idrotm[0], "ONLY"); |
296 | gMC->Gspos("FTOB", 2, "BTO1", 0, -zcor2, 0, idrotm[1], "ONLY"); |
297 | gMC->Gspos("FTOB", 1, "BTO2", 0, zcor2, 0, idrotm[0], "ONLY"); |
298 | gMC->Gspos("FTOB", 2, "BTO2", 0, -zcor2, 0, idrotm[1], "ONLY"); |
937fe4a4 |
299 | |
2cef3cb2 |
300 | gMC->Gspos("FTOA", 0, "BTO1", 0, zcor3, 0, idrotm[0], "ONLY"); |
301 | gMC->Gspos("FTOA", 0, "BTO2", 0, zcor3, 0, idrotm[0], "ONLY"); |
937fe4a4 |
302 | |
2cef3cb2 |
303 | Float_t db = 0.5;//cm |
304 | Float_t xFLT, xFST, yFLT, zFLTA, zFLTB, zFLTC; |
937fe4a4 |
305 | |
2cef3cb2 |
306 | xFLT = fStripLn; |
937fe4a4 |
307 | yFLT = ytof; |
2cef3cb2 |
308 | zFLTA = zlenA; |
309 | zFLTB = zlenB; |
310 | zFLTC = zlenC; |
311 | |
312 | xFST = xFLT-fDeadBndX*2;//cm |
937fe4a4 |
313 | |
314 | // Sizes of MRPC pads |
315 | |
2cef3cb2 |
316 | Float_t yPad = 0.505;//cm |
937fe4a4 |
317 | |
b94fa26c |
318 | // Large not sensitive volumes with Insensitive Freon |
2cef3cb2 |
319 | par[0] = xFLT*0.5; |
320 | par[1] = yFLT*0.5; |
9e1a0ddb |
321 | |
68861244 |
322 | if (fDebug) cout << ClassName() << |
9e1a0ddb |
323 | cout <<": ************************* TOF geometry **************************"<<endl; |
937fe4a4 |
324 | |
2cef3cb2 |
325 | par[2] = (zFLTA *0.5); |
b94fa26c |
326 | gMC->Gsvolu("FLTA", "BOX ", idtmed[512], par, 3); // Insensitive Freon |
2cef3cb2 |
327 | gMC->Gspos ("FLTA", 0, "FTOA", 0., 0., 0., 0, "ONLY"); |
937fe4a4 |
328 | |
2cef3cb2 |
329 | par[2] = (zFLTB * 0.5); |
b94fa26c |
330 | gMC->Gsvolu("FLTB", "BOX ", idtmed[512], par, 3); // Insensitive Freon |
2cef3cb2 |
331 | gMC->Gspos ("FLTB", 0, "FTOB", 0., 0., 0., 0, "ONLY"); |
937fe4a4 |
332 | |
b94fa26c |
333 | par[2] = (zFLTC * 0.5); |
334 | gMC->Gsvolu("FLTC", "BOX ", idtmed[512], par, 3); // Insensitive Freon |
2cef3cb2 |
335 | gMC->Gspos ("FLTC", 0, "FTOC", 0., 0., 0., 0, "ONLY"); |
937fe4a4 |
336 | |
b94fa26c |
337 | ////////// Layers of Aluminum before and after detector ////////// |
338 | ////////// Aluminum Box for Modules (2.0 mm thickness) ///////// |
339 | ////////// lateral walls not simulated |
340 | par[0] = xFLT*0.5; |
2cef3cb2 |
341 | par[1] = 0.1;//cm |
937fe4a4 |
342 | ycoor = -yFLT/2 + par[1]; |
b94fa26c |
343 | par[2] = (zFLTA *0.5); |
344 | gMC->Gsvolu("FALA", "BOX ", idtmed[508], par, 3); // Alluminium |
345 | gMC->Gspos ("FALA", 1, "FLTA", 0., ycoor, 0., 0, "ONLY"); |
346 | gMC->Gspos ("FALA", 2, "FLTA", 0.,-ycoor, 0., 0, "ONLY"); |
347 | par[2] = (zFLTB *0.5); |
348 | gMC->Gsvolu("FALB", "BOX ", idtmed[508], par, 3); // Alluminium |
349 | gMC->Gspos ("FALB", 1, "FLTB", 0., ycoor, 0., 0, "ONLY"); |
350 | gMC->Gspos ("FALB", 2, "FLTB", 0.,-ycoor, 0., 0, "ONLY"); |
351 | par[2] = (zFLTC *0.5); |
352 | gMC->Gsvolu("FALC", "BOX ", idtmed[508], par, 3); // Alluminium |
353 | gMC->Gspos ("FALC", 1, "FLTC", 0., ycoor, 0., 0, "ONLY"); |
354 | gMC->Gspos ("FALC", 2, "FLTC", 0.,-ycoor, 0., 0, "ONLY"); |
355 | |
3fe3a833 |
356 | ///////////////// Detector itself ////////////////////// |
937fe4a4 |
357 | |
b94fa26c |
358 | const Float_t kdeadBound = fDeadBndZ; //cm non-sensitive between the pad edge |
2cef3cb2 |
359 | //and the boundary of the strip |
b94fa26c |
360 | const Int_t knx = fNpadX; // number of pads along x |
361 | const Int_t knz = fNpadZ; // number of pads along z |
362 | const Float_t kspace = fSpace; //cm distance from the front plate of the box |
937fe4a4 |
363 | |
2cef3cb2 |
364 | Float_t zSenStrip = fZpad*fNpadZ;//cm |
b94fa26c |
365 | Float_t stripWidth = zSenStrip + 2*kdeadBound; |
937fe4a4 |
366 | |
2cef3cb2 |
367 | par[0] = xFLT*0.5; |
368 | par[1] = yPad*0.5; |
b94fa26c |
369 | par[2] = stripWidth*0.5; |
937fe4a4 |
370 | |
dfacde63 |
371 | // new description for strip volume -double stack strip- |
b94fa26c |
372 | // -- all constants are expressed in cm |
373 | // heigth of different layers |
374 | const Float_t khhony = 1. ; // heigth of HONY Layer |
375 | const Float_t khpcby = 0.15 ; // heigth of PCB Layer |
376 | const Float_t khmyly = 0.035 ; // heigth of MYLAR Layer |
377 | const Float_t khgraphy = 0.02 ; // heigth of GRAPHITE Layer |
dfacde63 |
378 | const Float_t khglasseiy = 0.17; // 0.6 Ext. Glass + 1.1 i.e. (Int. Glass/2) (mm) |
b94fa26c |
379 | const Float_t khsensmy = 0.11 ; // heigth of Sensitive Freon Mixture |
380 | const Float_t kwsensmz = 2*3.5 ; // cm |
381 | const Float_t klsensmx = 48*2.5; // cm |
382 | const Float_t kwpadz = 3.5; // cm z dimension of the FPAD volume |
383 | const Float_t klpadx = 2.5; // cm x dimension of the FPAD volume |
384 | |
385 | // heigth of the FSTR Volume (the strip volume) |
dfacde63 |
386 | const Float_t khstripy = 2*khhony+3*khpcby+4*(khmyly+khgraphy+khglasseiy)+2*khsensmy; |
b94fa26c |
387 | // width of the FSTR Volume (the strip volume) |
388 | const Float_t kwstripz = 10.; |
389 | // length of the FSTR Volume (the strip volume) |
390 | const Float_t klstripx = 122.; |
391 | |
392 | Float_t parfp[3]={klstripx*0.5,khstripy*0.5,kwstripz*0.5}; |
393 | // coordinates of the strip center in the strip reference frame; used for positioning |
394 | // internal strip volumes |
395 | Float_t posfp[3]={0.,0.,0.}; |
dfacde63 |
396 | |
b94fa26c |
397 | |
398 | // FSTR volume definition and filling this volume with non sensitive Gas Mixture |
399 | gMC->Gsvolu("FSTR","BOX",idtmed[512],parfp,3); |
400 | //-- HONY Layer definition |
401 | // parfp[0] = -1; |
402 | parfp[1] = khhony*0.5; |
403 | // parfp[2] = -1; |
404 | gMC->Gsvolu("FHON","BOX",idtmed[503],parfp,3); |
405 | // positioning 2 HONY Layers on FSTR volume |
dfacde63 |
406 | |
b94fa26c |
407 | posfp[1]=-khstripy*0.5+parfp[1]; |
408 | gMC->Gspos("FHON",1,"FSTR",0., posfp[1],0.,0,"ONLY"); |
409 | gMC->Gspos("FHON",2,"FSTR",0.,-posfp[1],0.,0,"ONLY"); |
dfacde63 |
410 | |
b94fa26c |
411 | //-- PCB Layer definition |
412 | parfp[1] = khpcby*0.5; |
413 | gMC->Gsvolu("FPCB","BOX",idtmed[504],parfp,3); |
414 | // positioning 2 PCB Layers on FSTR volume |
415 | posfp[1]=-khstripy*0.5+khhony+parfp[1]; |
416 | gMC->Gspos("FPCB",1,"FSTR",0., posfp[1],0.,0,"ONLY"); |
417 | gMC->Gspos("FPCB",2,"FSTR",0.,-posfp[1],0.,0,"ONLY"); |
dfacde63 |
418 | // positioning the central PCB layer |
419 | gMC->Gspos("FPCB",3,"FSTR",0.,0.,0.,0,"ONLY"); |
420 | |
421 | |
422 | |
b94fa26c |
423 | //-- MYLAR Layer definition |
424 | parfp[1] = khmyly*0.5; |
425 | gMC->Gsvolu("FMYL","BOX",idtmed[511],parfp,3); |
426 | // positioning 2 MYLAR Layers on FSTR volume |
427 | posfp[1] = -khstripy*0.5+khhony+khpcby+parfp[1]; |
428 | gMC->Gspos("FMYL",1,"FSTR",0., posfp[1],0.,0,"ONLY"); |
429 | gMC->Gspos("FMYL",2,"FSTR",0.,-posfp[1],0.,0,"ONLY"); |
dfacde63 |
430 | // adding further 2 MYLAR Layers on FSTR volume |
431 | posfp[1] = khpcby*0.5+parfp[1]; |
432 | gMC->Gspos("FMYL",3,"FSTR",0., posfp[1],0.,0,"ONLY"); |
433 | gMC->Gspos("FMYL",4,"FSTR",0.,-posfp[1],0.,0,"ONLY"); |
434 | |
b94fa26c |
435 | |
436 | //-- Graphite Layer definition |
437 | parfp[1] = khgraphy*0.5; |
438 | gMC->Gsvolu("FGRP","BOX",idtmed[502],parfp,3); |
439 | // positioning 2 Graphite Layers on FSTR volume |
440 | posfp[1] = -khstripy*0.5+khhony+khpcby+khmyly+parfp[1]; |
441 | gMC->Gspos("FGRP",1,"FSTR",0., posfp[1],0.,0,"ONLY"); |
442 | gMC->Gspos("FGRP",2,"FSTR",0.,-posfp[1],0.,0,"ONLY"); |
dfacde63 |
443 | // adding further 2 Graphite Layers on FSTR volume |
444 | posfp[1] = khpcby*0.5+khmyly+parfp[1]; |
445 | gMC->Gspos("FGRP",3,"FSTR",0., posfp[1],0.,0,"ONLY"); |
446 | gMC->Gspos("FGRP",4,"FSTR",0.,-posfp[1],0.,0,"ONLY"); |
447 | |
b94fa26c |
448 | |
449 | //-- Glass (EXT. +Semi INT.) Layer definition |
450 | parfp[1] = khglasseiy*0.5; |
451 | gMC->Gsvolu("FGLA","BOX",idtmed[514],parfp,3); |
452 | // positioning 2 Glass Layers on FSTR volume |
453 | posfp[1] = -khstripy*0.5+khhony+khpcby+khmyly+khgraphy+parfp[1]; |
454 | gMC->Gspos("FGLA",1,"FSTR",0., posfp[1],0.,0,"ONLY"); |
455 | gMC->Gspos("FGLA",2,"FSTR",0.,-posfp[1],0.,0,"ONLY"); |
dfacde63 |
456 | // adding further 2 Glass Layers on FSTR volume |
457 | posfp[1] = khpcby*0.5+khmyly+khgraphy+parfp[1]; |
458 | gMC->Gspos("FGLA",3,"FSTR",0., posfp[1],0.,0,"ONLY"); |
459 | gMC->Gspos("FGLA",4,"FSTR",0.,-posfp[1],0.,0,"ONLY"); |
460 | |
b94fa26c |
461 | |
462 | //-- Sensitive Mixture Layer definition |
463 | parfp[0] = klsensmx*0.5; |
464 | parfp[1] = khsensmy*0.5; |
dfacde63 |
465 | parfp[2] = kwsensmz*0.5; |
b94fa26c |
466 | gMC->Gsvolu("FSEN","BOX",idtmed[513],parfp,3); |
dfacde63 |
467 | gMC->Gsvolu("FNSE","BOX",idtmed[512],parfp,3); |
468 | // positioning 2 gas Layers on FSTR volume |
469 | // the upper is insensitive freon |
470 | // while the remaining is sensitive |
471 | posfp[1] = khpcby*0.5+khmyly+khgraphy+khglasseiy+parfp[1]; |
472 | gMC->Gspos("FNSE",0,"FSTR", 0., posfp[1],0.,0,"ONLY"); |
473 | gMC->Gspos("FSEN",0,"FSTR", 0.,-posfp[1],0.,0,"ONLY"); |
b94fa26c |
474 | |
475 | // dividing FSEN along z in knz=2 and along x in knx=48 |
476 | gMC->Gsdvn("FSEZ","FSEN",knz,3); |
477 | gMC->Gsdvn("FSEX","FSEZ",knx,1); |
478 | |
479 | // FPAD volume definition |
480 | parfp[0] = klpadx*0.5; |
481 | parfp[1] = khsensmy*0.5; |
482 | parfp[2] = kwpadz*0.5; |
483 | gMC->Gsvolu("FPAD","BOX",idtmed[513],parfp,3); |
484 | // positioning the FPAD volumes on previous divisions |
485 | gMC->Gspos("FPAD",0,"FSEX",0.,0.,0.,0,"ONLY"); |
937fe4a4 |
486 | |
937fe4a4 |
487 | //// Positioning the Strips (FSTR) in the FLT volumes ///// |
488 | |
2cef3cb2 |
489 | // Plate A (Central) |
490 | |
491 | Float_t t = zFLTC+zFLTB+zFLTA*0.5+ 2*db;//Half Width of Barrel |
492 | |
b213b8bd |
493 | Float_t gap = fGapA+0.5; //cm updated distance between the strip axis |
937fe4a4 |
494 | Float_t zpos = 0; |
2cef3cb2 |
495 | Float_t ang = 0; |
937fe4a4 |
496 | Int_t i=1,j=1; |
2cef3cb2 |
497 | nrot = 0; |
498 | zcoor = 0; |
b94fa26c |
499 | ycoor = -14.5 + kspace ; //2 cm over front plate |
2cef3cb2 |
500 | |
501 | AliMatrix (idrotm[0], 90., 0.,90.,90.,0., 90.); |
502 | gMC->Gspos("FSTR",j,"FLTA",0.,ycoor, 0.,idrotm[0],"ONLY"); |
9e1a0ddb |
503 | if(fDebug) { |
68861244 |
504 | printf("%s: %f, St. %2i, Pl.3 ",ClassName(),ang*kRaddeg,i); |
2cef3cb2 |
505 | printf("y = %f, z = %f, zpos = %f \n",ycoor,zcoor,zpos); |
9e1a0ddb |
506 | } |
2cef3cb2 |
507 | zcoor -= zSenStrip; |
508 | j++; |
b94fa26c |
509 | Int_t upDown = -1; // upDown=-1 -> Upper strip |
510 | // upDown=+1 -> Lower strip |
937fe4a4 |
511 | do{ |
b94fa26c |
512 | ang = atan(zcoor/radius); |
2cef3cb2 |
513 | ang *= kRaddeg; |
514 | AliMatrix (idrotm[nrot], 90., 0.,90.-ang,90.,-ang, 90.); |
515 | AliMatrix (idrotm[nrot+1],90.,180.,90.+ang,90., ang, 90.); |
516 | ang /= kRaddeg; |
b94fa26c |
517 | ycoor = -14.5+ kspace; //2 cm over front plate |
518 | ycoor += (1-(upDown+1)/2)*gap; |
2cef3cb2 |
519 | gMC->Gspos("FSTR",j ,"FLTA",0.,ycoor, zcoor,idrotm[nrot], "ONLY"); |
520 | gMC->Gspos("FSTR",j+1,"FLTA",0.,ycoor,-zcoor,idrotm[nrot+1],"ONLY"); |
9e1a0ddb |
521 | if(fDebug) { |
68861244 |
522 | printf("%s: %f, St. %2i, Pl.3 ",ClassName(),ang*kRaddeg,i); |
9e1a0ddb |
523 | printf("y = %f, z = %f, zpos = %f \n",ycoor,zcoor,zpos); |
524 | } |
2cef3cb2 |
525 | j += 2; |
b94fa26c |
526 | upDown*= -1; // Alternate strips |
2cef3cb2 |
527 | zcoor = zcoor-(zSenStrip/2)/TMath::Cos(ang)- |
b94fa26c |
528 | upDown*gap*TMath::Tan(ang)- |
2cef3cb2 |
529 | (zSenStrip/2)/TMath::Cos(ang); |
b94fa26c |
530 | } while (zcoor-(stripWidth/2)*TMath::Cos(ang)>-t+zFLTC+zFLTB+db*2); |
937fe4a4 |
531 | |
2cef3cb2 |
532 | zcoor = zcoor+(zSenStrip/2)/TMath::Cos(ang)+ |
b94fa26c |
533 | upDown*gap*TMath::Tan(ang)+ |
2cef3cb2 |
534 | (zSenStrip/2)/TMath::Cos(ang); |
535 | |
b94fa26c |
536 | gap = fGapB; |
2cef3cb2 |
537 | zcoor = zcoor-(zSenStrip/2)/TMath::Cos(ang)- |
b94fa26c |
538 | upDown*gap*TMath::Tan(ang)- |
2cef3cb2 |
539 | (zSenStrip/2)/TMath::Cos(ang); |
540 | |
b94fa26c |
541 | ang = atan(zcoor/radius); |
2cef3cb2 |
542 | ang *= kRaddeg; |
543 | AliMatrix (idrotm[nrot], 90., 0.,90.-ang,90.,-ang, 90.); |
544 | AliMatrix (idrotm[nrot+1],90.,180.,90.+ang,90., ang, 90.); |
545 | ang /= kRaddeg; |
546 | |
b94fa26c |
547 | ycoor = -14.5+ kspace; //2 cm over front plate |
548 | ycoor += (1-(upDown+1)/2)*gap; |
2cef3cb2 |
549 | gMC->Gspos("FSTR",j ,"FLTA",0.,ycoor, zcoor,idrotm[nrot], "ONLY"); |
550 | gMC->Gspos("FSTR",j+1,"FLTA",0.,ycoor,-zcoor,idrotm[nrot+1],"ONLY"); |
68861244 |
551 | if(fDebug) { |
552 | printf("%s: %f, St. %2i, Pl.3 ",ClassName(),ang*kRaddeg,i); |
553 | printf("y = %f, z = %f, zpos = %f \n",ycoor,zcoor,zpos); |
9e1a0ddb |
554 | } |
b94fa26c |
555 | ycoor = -hTof/2.+ kspace;//2 cm over front plate |
2cef3cb2 |
556 | |
557 | // Plate B |
937fe4a4 |
558 | |
937fe4a4 |
559 | nrot = 0; |
560 | i=1; |
b94fa26c |
561 | upDown = 1; |
562 | Float_t deadRegion = 1.0;//cm |
2cef3cb2 |
563 | |
564 | zpos = zcoor - (zSenStrip/2)/TMath::Cos(ang)- |
b94fa26c |
565 | upDown*gap*TMath::Tan(ang)- |
2cef3cb2 |
566 | (zSenStrip/2)/TMath::Cos(ang)- |
b94fa26c |
567 | deadRegion/TMath::Cos(ang); |
2cef3cb2 |
568 | |
b94fa26c |
569 | ang = atan(zpos/radius); |
2cef3cb2 |
570 | ang *= kRaddeg; |
571 | AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.); |
572 | ang /= kRaddeg; |
b94fa26c |
573 | ycoor = -hTof*0.5+ kspace ; //2 cm over front plate |
574 | ycoor += (1-(upDown+1)/2)*gap; |
2cef3cb2 |
575 | zcoor = zpos+(zFLTA*0.5+zFLTB*0.5+db); // Moves to the system of the modulus FLTB |
576 | gMC->Gspos("FSTR",i, "FLTB", 0., ycoor, zcoor,idrotm[nrot], "ONLY"); |
68861244 |
577 | if(fDebug) { |
578 | printf("%s: %f, St. %2i, Pl.4 ",ClassName(),ang*kRaddeg,i); |
579 | printf("y = %f, z = %f, zpos = %f \n",ycoor,zcoor,zpos); |
9e1a0ddb |
580 | } |
2cef3cb2 |
581 | i++; |
b94fa26c |
582 | upDown*=-1; |
937fe4a4 |
583 | |
584 | do { |
2cef3cb2 |
585 | zpos = zpos - (zSenStrip/2)/TMath::Cos(ang)- |
b94fa26c |
586 | upDown*gap*TMath::Tan(ang)- |
2cef3cb2 |
587 | (zSenStrip/2)/TMath::Cos(ang); |
b94fa26c |
588 | ang = atan(zpos/radius); |
2cef3cb2 |
589 | ang *= kRaddeg; |
00e5f8d9 |
590 | AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.); |
2cef3cb2 |
591 | ang /= kRaddeg; |
b213b8bd |
592 | Float_t deltaSpaceinB=-0.5; // [cm] to avoid overlaps with the end of freon frame |
593 | Float_t deltaGapinB=0.5; // [cm] to avoid overlaps in between initial strips |
594 | ycoor = -hTof*0.5+ kspace+deltaSpaceinB ; //2 cm over front plate |
595 | ycoor += (1-(upDown+1)/2)*(gap+deltaGapinB); |
2cef3cb2 |
596 | zcoor = zpos+(zFLTA*0.5+zFLTB*0.5+db); // Moves to the system of the modulus FLTB |
597 | gMC->Gspos("FSTR",i, "FLTB", 0., ycoor, zcoor,idrotm[nrot], "ONLY"); |
68861244 |
598 | if(fDebug) { |
599 | printf("%s: %f, St. %2i, Pl.4 ",ClassName(),ang*kRaddeg,i); |
9e1a0ddb |
600 | printf("y = %f, z = %f, zpos = %f \n",ycoor,zcoor,zpos); |
601 | } |
b94fa26c |
602 | upDown*=-1; |
2cef3cb2 |
603 | i++; |
604 | } while (TMath::Abs(ang*kRaddeg)<22.5); |
605 | //till we reach a tilting angle of 22.5 degrees |
606 | |
b94fa26c |
607 | ycoor = -hTof*0.5+ kspace ; //2 cm over front plate |
2cef3cb2 |
608 | zpos = zpos - zSenStrip/TMath::Cos(ang); |
b213b8bd |
609 | // this avoid overlaps in between outer strips in plate B |
610 | Float_t deltaMovingUp=0.8; // [cm] |
611 | Float_t deltaMovingDown=-0.5; // [cm] |
2cef3cb2 |
612 | |
613 | do { |
b94fa26c |
614 | ang = atan(zpos/radius); |
2cef3cb2 |
615 | ang *= kRaddeg; |
616 | AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.); |
617 | ang /= kRaddeg; |
618 | zcoor = zpos+(zFLTB/2+zFLTA/2+db); |
b213b8bd |
619 | gMC->Gspos("FSTR",i, "FLTB", 0., ycoor+deltaMovingDown+deltaMovingUp, zcoor,idrotm[nrot], "ONLY"); |
620 | deltaMovingUp+=0.8; // update delta moving toward the end of the plate |
2cef3cb2 |
621 | zpos = zpos - zSenStrip/TMath::Cos(ang); |
68861244 |
622 | if(fDebug) { |
623 | printf("%s: %f, St. %2i, Pl.4 ",ClassName(),ang*kRaddeg,i); |
9e1a0ddb |
624 | printf("y = %f, z = %f, zpos = %f \n",ycoor,zcoor,zpos); |
625 | } |
2cef3cb2 |
626 | i++; |
627 | |
b94fa26c |
628 | } while (zpos-stripWidth*0.5/TMath::Cos(ang)>-t+zFLTC+db); |
2cef3cb2 |
629 | |
630 | // Plate C |
631 | |
632 | zpos = zpos + zSenStrip/TMath::Cos(ang); |
633 | |
634 | zpos = zpos - (zSenStrip/2)/TMath::Cos(ang)+ |
b94fa26c |
635 | gap*TMath::Tan(ang)- |
2cef3cb2 |
636 | (zSenStrip/2)/TMath::Cos(ang); |
637 | |
937fe4a4 |
638 | nrot = 0; |
639 | i=0; |
b213b8bd |
640 | Float_t deltaGap=-2.5; // [cm] update distance from strip center and plate |
641 | ycoor= -hTof*0.5+kspace+gap+deltaGap; |
937fe4a4 |
642 | |
2cef3cb2 |
643 | do { |
937fe4a4 |
644 | i++; |
b94fa26c |
645 | ang = atan(zpos/radius); |
2cef3cb2 |
646 | ang *= kRaddeg; |
647 | AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.); |
648 | ang /= kRaddeg; |
649 | zcoor = zpos+(zFLTC*0.5+zFLTB+zFLTA*0.5+db*2); |
650 | gMC->Gspos("FSTR",i, "FLTC", 0., ycoor, zcoor,idrotm[nrot], "ONLY"); |
68861244 |
651 | if(fDebug) { |
652 | printf("%s: %f, St. %2i, Pl.5 ",ClassName(),ang*kRaddeg,i); |
9e1a0ddb |
653 | printf("y = %f, z = %f, zpos = %f \n",ycoor,zcoor,zpos); |
68861244 |
654 | } |
937fe4a4 |
655 | zpos = zpos - zSenStrip/TMath::Cos(ang); |
b94fa26c |
656 | } while (zpos-stripWidth*TMath::Cos(ang)*0.5>-t); |
2cef3cb2 |
657 | |
937fe4a4 |
658 | |
b94fa26c |
659 | ////////// Layers after strips ///////////////// |
660 | // honeycomb (Polyethilene) Layer after (1.2cm) |
937fe4a4 |
661 | |
b94fa26c |
662 | Float_t overSpace = fOverSpc;//cm |
937fe4a4 |
663 | |
b94fa26c |
664 | par[0] = xFLT*0.5; |
937fe4a4 |
665 | par[1] = 0.6; |
b94fa26c |
666 | par[2] = (zFLTA *0.5); |
667 | ycoor = -yFLT/2 + overSpace + par[1]; |
2cef3cb2 |
668 | gMC->Gsvolu("FPEA", "BOX ", idtmed[503], par, 3); // Hony |
669 | gMC->Gspos ("FPEA", 0, "FLTA", 0., ycoor, 0., 0, "ONLY"); |
b94fa26c |
670 | par[2] = (zFLTB *0.5); |
2cef3cb2 |
671 | gMC->Gsvolu("FPEB", "BOX ", idtmed[503], par, 3); // Hony |
672 | gMC->Gspos ("FPEB", 0, "FLTB", 0., ycoor, 0., 0, "ONLY"); |
b94fa26c |
673 | par[2] = (zFLTC *0.5); |
2cef3cb2 |
674 | gMC->Gsvolu("FPEC", "BOX ", idtmed[503], par, 3); // Hony |
675 | gMC->Gspos ("FPEC", 0, "FLTC", 0., ycoor, 0., 0, "ONLY"); |
937fe4a4 |
676 | |
677 | // Electronics (Cu) after |
678 | ycoor += par[1]; |
b94fa26c |
679 | par[0] = xFLT*0.5; |
2cef3cb2 |
680 | par[1] = 1.43*0.05*0.5; // 5% of X0 |
b94fa26c |
681 | par[2] = (zFLTA *0.5); |
937fe4a4 |
682 | ycoor += par[1]; |
2cef3cb2 |
683 | gMC->Gsvolu("FECA", "BOX ", idtmed[501], par, 3); // Cu |
684 | gMC->Gspos ("FECA", 0, "FLTA", 0., ycoor, 0., 0, "ONLY"); |
b94fa26c |
685 | par[2] = (zFLTB *0.5); |
2cef3cb2 |
686 | gMC->Gsvolu("FECB", "BOX ", idtmed[501], par, 3); // Cu |
687 | gMC->Gspos ("FECB", 0, "FLTB", 0., ycoor, 0., 0, "ONLY"); |
b94fa26c |
688 | par[2] = (zFLTC *0.5); |
2cef3cb2 |
689 | gMC->Gsvolu("FECC", "BOX ", idtmed[501], par, 3); // Cu |
690 | gMC->Gspos ("FECC", 0, "FLTC", 0., ycoor, 0., 0, "ONLY"); |
691 | |
692 | // cooling WAter after |
937fe4a4 |
693 | ycoor += par[1]; |
b94fa26c |
694 | par[0] = xFLT*0.5; |
2cef3cb2 |
695 | par[1] = 36.1*0.02*0.5; // 2% of X0 |
b94fa26c |
696 | par[2] = (zFLTA *0.5); |
937fe4a4 |
697 | ycoor += par[1]; |
2cef3cb2 |
698 | gMC->Gsvolu("FWAA", "BOX ", idtmed[515], par, 3); // Water |
699 | gMC->Gspos ("FWAA", 0, "FLTA", 0., ycoor, 0., 0, "ONLY"); |
b94fa26c |
700 | par[2] = (zFLTB *0.5); |
2cef3cb2 |
701 | gMC->Gsvolu("FWAB", "BOX ", idtmed[515], par, 3); // Water |
702 | gMC->Gspos ("FWAB", 0, "FLTB", 0., ycoor, 0., 0, "ONLY"); |
b94fa26c |
703 | par[2] = (zFLTC *0.5); |
2cef3cb2 |
704 | gMC->Gsvolu("FWAC", "BOX ", idtmed[515], par, 3); // Water |
705 | gMC->Gspos ("FWAC", 0, "FLTC", 0., ycoor, 0., 0, "ONLY"); |
706 | |
b94fa26c |
707 | // frame of Air |
708 | ycoor += par[1]; |
709 | par[0] = xFLT*0.5; |
710 | par[1] = (yFLT/2-ycoor-0.2)*0.5; // Aluminum layer considered (0.2 cm) |
711 | par[2] = (zFLTA *0.5); |
712 | ycoor += par[1]; |
713 | gMC->Gsvolu("FAIA", "BOX ", idtmed[500], par, 3); // Air |
714 | gMC->Gspos ("FAIA", 0, "FLTA", 0., ycoor, 0., 0, "ONLY"); |
715 | par[2] = (zFLTB *0.5); |
716 | gMC->Gsvolu("FAIB", "BOX ", idtmed[500], par, 3); // Air |
717 | gMC->Gspos ("FAIB", 0, "FLTB", 0., ycoor, 0., 0, "ONLY"); |
718 | par[2] = (zFLTC *0.5); |
719 | gMC->Gsvolu("FAIC", "BOX ", idtmed[500], par, 3); // Air |
720 | gMC->Gspos ("FAIC", 0, "FLTC", 0., ycoor, 0., 0, "ONLY"); |
721 | /* fp |
2cef3cb2 |
722 | //Back Plate honycomb (2cm) |
3fe3a833 |
723 | par[0] = -1; |
2cef3cb2 |
724 | par[1] = 2 *0.5; |
3fe3a833 |
725 | par[2] = -1; |
937fe4a4 |
726 | ycoor = yFLT/2 - par[1]; |
2cef3cb2 |
727 | gMC->Gsvolu("FBPA", "BOX ", idtmed[503], par, 3); // Hony |
728 | gMC->Gspos ("FBPA", 0, "FLTA", 0., ycoor, 0., 0, "ONLY"); |
729 | gMC->Gsvolu("FBPB", "BOX ", idtmed[503], par, 3); // Hony |
730 | gMC->Gspos ("FBPB", 0, "FLTB", 0., ycoor, 0., 0, "ONLY"); |
731 | gMC->Gsvolu("FBPC", "BOX ", idtmed[503], par, 3); // Hony |
732 | gMC->Gspos ("FBPC", 0, "FLTC", 0., ycoor, 0., 0, "ONLY"); |
b94fa26c |
733 | fp */ |
fe4da5cc |
734 | } |
735 | |
736 | //_____________________________________________________________________________ |
68861244 |
737 | void AliTOFv3::DrawModule() const |
fe4da5cc |
738 | { |
739 | // |
517b7f8f |
740 | // Draw a shaded view of the Time Of Flight version 3 |
fe4da5cc |
741 | // |
fe4da5cc |
742 | // Set everything unseen |
cfce8870 |
743 | gMC->Gsatt("*", "seen", -1); |
fe4da5cc |
744 | // |
745 | // Set ALIC mother transparent |
cfce8870 |
746 | gMC->Gsatt("ALIC","SEEN",0); |
fe4da5cc |
747 | // |
748 | // Set the volumes visible |
cfce8870 |
749 | gMC->Gsatt("ALIC","SEEN",0); |
2cef3cb2 |
750 | |
751 | gMC->Gsatt("FTOA","SEEN",1); |
752 | gMC->Gsatt("FTOB","SEEN",1); |
753 | gMC->Gsatt("FTOC","SEEN",1); |
754 | gMC->Gsatt("FLTA","SEEN",1); |
755 | gMC->Gsatt("FLTB","SEEN",1); |
756 | gMC->Gsatt("FLTC","SEEN",1); |
757 | gMC->Gsatt("FPLA","SEEN",1); |
758 | gMC->Gsatt("FPLB","SEEN",1); |
759 | gMC->Gsatt("FPLC","SEEN",1); |
760 | gMC->Gsatt("FSTR","SEEN",1); |
761 | gMC->Gsatt("FPEA","SEEN",1); |
762 | gMC->Gsatt("FPEB","SEEN",1); |
763 | gMC->Gsatt("FPEC","SEEN",1); |
764 | |
765 | gMC->Gsatt("FLZ1","SEEN",0); |
766 | gMC->Gsatt("FLZ2","SEEN",0); |
767 | gMC->Gsatt("FLZ3","SEEN",0); |
768 | gMC->Gsatt("FLX1","SEEN",0); |
769 | gMC->Gsatt("FLX2","SEEN",0); |
770 | gMC->Gsatt("FLX3","SEEN",0); |
771 | gMC->Gsatt("FPAD","SEEN",0); |
772 | |
cfce8870 |
773 | gMC->Gdopt("hide", "on"); |
774 | gMC->Gdopt("shad", "on"); |
775 | gMC->Gsatt("*", "fill", 7); |
776 | gMC->SetClipBox("."); |
777 | gMC->SetClipBox("*", 0, 1000, -1000, 1000, -1000, 1000); |
778 | gMC->DefaultRange(); |
779 | gMC->Gdraw("alic", 40, 30, 0, 12, 9.5, .02, .02); |
780 | gMC->Gdhead(1111, "Time Of Flight"); |
781 | gMC->Gdman(18, 4, "MAN"); |
782 | gMC->Gdopt("hide","off"); |
fe4da5cc |
783 | } |
517b7f8f |
784 | //_____________________________________________________________________________ |
785 | void AliTOFv3::DrawDetectorModules() |
786 | { |
787 | // |
788 | // Draw a shaded view of the TOF detector version 3 |
789 | // |
790 | |
791 | AliMC* pMC = AliMC::GetMC(); |
792 | |
793 | //Set ALIC mother transparent |
794 | pMC->Gsatt("ALIC","SEEN",0); |
795 | |
796 | // |
797 | //Set volumes visible |
798 | // |
799 | //=====> Level 1 |
800 | // Level 1 for TOF volumes |
801 | gMC->Gsatt("B077","seen",0); |
802 | |
803 | |
804 | //==========> Level 2 |
805 | // Level 2 |
806 | gMC->Gsatt("B076","seen",-1); // all B076 sub-levels skipped - |
807 | gMC->Gsatt("B071","seen",0); |
808 | gMC->Gsatt("B074","seen",0); |
809 | gMC->Gsatt("B075","seen",0); |
810 | gMC->Gsatt("B080","seen",0); // B080 does not has sub-level |
811 | |
812 | |
813 | // Level 2 of B071 |
814 | gMC->Gsatt("B063","seen",-1); // all B063 sub-levels skipped - |
815 | gMC->Gsatt("B065","seen",-1); // all B065 sub-levels skipped - |
816 | gMC->Gsatt("B067","seen",-1); // all B067 sub-levels skipped - |
817 | gMC->Gsatt("B069","seen",-1); // all B069 sub-levels skipped - |
818 | gMC->Gsatt("B056","seen",0); // B056 does not has sub-levels - |
819 | gMC->Gsatt("B059","seen",-1); // all B059 sub-levels skipped - |
820 | gMC->Gsatt("B072","seen",-1); // all B072 sub-levels skipped - |
821 | gMC->Gsatt("BTR1","seen",0); // BTR1 do not have sub-levels - |
822 | gMC->Gsatt("BTO1","seen",0); |
823 | |
824 | |
825 | // Level 2 of B074 |
826 | gMC->Gsatt("BTR2","seen",0); // BTR2 does not has sub-levels - |
827 | gMC->Gsatt("BTO2","seen",0); |
828 | |
829 | // Level 2 of B075 |
830 | gMC->Gsatt("BTR3","seen",0); // BTR3 do not have sub-levels - |
831 | gMC->Gsatt("BTO3","seen",0); |
832 | |
833 | // ==================> Level 3 |
834 | // Level 3 of B071 / Level 2 of BTO1 |
835 | gMC->Gsatt("FTOC","seen",-2); |
836 | gMC->Gsatt("FTOB","seen",-2); |
837 | gMC->Gsatt("FTOA","seen",-2); |
838 | |
839 | // Level 3 of B074 / Level 2 of BTO2 |
840 | // -> cfr previous settings |
841 | |
842 | // Level 3 of B075 / Level 2 of BTO3 |
843 | // -> cfr previous settings |
844 | |
845 | gMC->Gdopt("hide","on"); |
846 | gMC->Gdopt("shad","on"); |
847 | gMC->Gsatt("*", "fill", 5); |
848 | gMC->SetClipBox("."); |
849 | gMC->SetClipBox("*", 0, 1000, 0, 1000, 0, 1000); |
850 | gMC->DefaultRange(); |
851 | gMC->Gdraw("alic", 45, 40, 0, 10, 10, .015, .015); |
852 | gMC->Gdhead(1111,"TOF detector V1"); |
853 | gMC->Gdman(18, 4, "MAN"); |
854 | gMC->Gdopt("hide","off"); |
855 | } |
856 | |
857 | //_____________________________________________________________________________ |
858 | void AliTOFv3::DrawDetectorStrips() |
859 | { |
860 | // |
861 | // Draw a shaded view of the TOF strips for version 3 |
862 | // |
863 | |
864 | AliMC* pMC = AliMC::GetMC(); |
865 | |
866 | //Set ALIC mother transparent |
867 | pMC->Gsatt("ALIC","SEEN",0); |
868 | |
869 | // |
870 | //Set volumes visible |
871 | //=====> Level 1 |
872 | // Level 1 for TOF volumes |
873 | gMC->Gsatt("B077","seen",0); |
874 | |
875 | //==========> Level 2 |
876 | // Level 2 |
877 | gMC->Gsatt("B076","seen",-1); // all B076 sub-levels skipped - |
878 | gMC->Gsatt("B071","seen",0); |
879 | gMC->Gsatt("B074","seen",0); |
880 | gMC->Gsatt("B075","seen",0); |
881 | gMC->Gsatt("B080","seen",0); // B080 does not has sub-level |
882 | |
883 | // Level 2 of B071 |
884 | gMC->Gsatt("B063","seen",-1); // all B063 sub-levels skipped - |
885 | gMC->Gsatt("B065","seen",-1); // all B065 sub-levels skipped - |
886 | gMC->Gsatt("B067","seen",-1); // all B067 sub-levels skipped - |
887 | gMC->Gsatt("B069","seen",-1); // all B069 sub-levels skipped - |
888 | gMC->Gsatt("B056","seen",0); // B056 does not has sub-levels - |
889 | gMC->Gsatt("B059","seen",-1); // all B059 sub-levels skipped - |
890 | gMC->Gsatt("B072","seen",-1); // all B072 sub-levels skipped - |
891 | gMC->Gsatt("BTR1","seen",0); // BTR1 do not have sub-levels - |
892 | gMC->Gsatt("BTO1","seen",0); |
893 | |
894 | // ==================> Level 3 |
895 | // Level 3 of B071 / Level 2 of BTO1 |
896 | gMC->Gsatt("FTOC","seen",0); |
897 | gMC->Gsatt("FTOB","seen",0); |
898 | gMC->Gsatt("FTOA","seen",0); |
899 | |
900 | // Level 3 of B074 / Level 2 of BTO2 |
901 | // -> cfr previous settings |
902 | |
903 | // Level 3 of B075 / Level 2 of BTO3 |
904 | // -> cfr previous settings |
905 | |
906 | |
907 | // ==========================> Level 4 |
908 | // Level 4 of B071 / Level 3 of BTO1 / Level 2 of FTOC |
909 | gMC->Gsatt("FLTC","seen",0); |
910 | // Level 4 of B071 / Level 3 of BTO1 / Level 2 of FTOB |
911 | gMC->Gsatt("FLTB","seen",0); |
912 | // Level 4 of B071 / Level 3 of BTO1 / Level 2 of FTOA |
913 | gMC->Gsatt("FLTA","seen",0); |
914 | |
915 | // Level 4 of B074 / Level 3 of BTO2 / Level 2 of FTOC |
916 | // -> cfr previous settings |
917 | // Level 4 of B074 / Level 3 of BTO2 / Level 2 of FTOB |
918 | // -> cfr previous settings |
919 | |
920 | // Level 4 of B075 / Level 3 of BTO3 / Level 2 of FTOC |
921 | // -> cfr previous settings |
922 | |
923 | //======================================> Level 5 |
924 | // Level 5 of B071 / Level 4 of BTO1 / Level 3 of FTOC / Level 2 of FLTC |
925 | gMC->Gsatt("FALC","seen",0); // no children for FALC |
926 | gMC->Gsatt("FSTR","seen",-2); |
927 | gMC->Gsatt("FPEC","seen",0); // no children for FPEC |
928 | gMC->Gsatt("FECC","seen",0); // no children for FECC |
929 | gMC->Gsatt("FWAC","seen",0); // no children for FWAC |
930 | gMC->Gsatt("FAIC","seen",0); // no children for FAIC |
931 | |
932 | // Level 5 of B071 / Level 4 of BTO1 / Level 3 of FTOB / Level 2 of FLTB |
933 | gMC->Gsatt("FALB","seen",0); // no children for FALB |
934 | //--> gMC->Gsatt("FSTR","seen",-2); |
935 | |
936 | |
937 | // -> cfr previous settings |
938 | gMC->Gsatt("FPEB","seen",0); // no children for FPEB |
939 | gMC->Gsatt("FECB","seen",0); // no children for FECB |
940 | gMC->Gsatt("FWAB","seen",0); // no children for FWAB |
941 | gMC->Gsatt("FAIB","seen",0); // no children for FAIB |
942 | |
943 | // Level 5 of B071 / Level 4 of BTO1 / Level 3 of FTOA / Level 2 of FLTA |
944 | gMC->Gsatt("FALA","seen",0); // no children for FALB |
945 | //--> gMC->Gsatt("FSTR","seen",-2); |
946 | // -> cfr previous settings |
947 | gMC->Gsatt("FPEA","seen",0); // no children for FPEA |
948 | gMC->Gsatt("FECA","seen",0); // no children for FECA |
949 | gMC->Gsatt("FWAA","seen",0); // no children for FWAA |
950 | gMC->Gsatt("FAIA","seen",0); // no children for FAIA |
951 | |
952 | // Level 2 of B074 |
953 | gMC->Gsatt("BTR2","seen",0); // BTR2 does not has sub-levels - |
954 | gMC->Gsatt("BTO2","seen",0); |
955 | |
956 | // Level 2 of B075 |
957 | gMC->Gsatt("BTR3","seen",0); // BTR3 do not have sub-levels - |
958 | gMC->Gsatt("BTO3","seen",0); |
959 | |
960 | // for others Level 5, cfr. previous settings |
961 | |
962 | gMC->Gdopt("hide","on"); |
963 | gMC->Gdopt("shad","on"); |
964 | gMC->Gsatt("*", "fill", 5); |
965 | gMC->SetClipBox("."); |
966 | gMC->SetClipBox("*", 0, 1000, 0, 1000, 0, 1000); |
967 | gMC->DefaultRange(); |
968 | gMC->Gdraw("alic", 45, 40, 0, 10, 10, .015, .015); |
969 | gMC->Gdhead(1111,"TOF Strips V1"); |
970 | gMC->Gdman(18, 4, "MAN"); |
971 | gMC->Gdopt("hide","off"); |
972 | } |
fe4da5cc |
973 | |
974 | //_____________________________________________________________________________ |
975 | void AliTOFv3::CreateMaterials() |
976 | { |
977 | // |
978 | // Define materials for the Time Of Flight |
979 | // |
3fe3a833 |
980 | AliTOF::CreateMaterials(); |
fe4da5cc |
981 | } |
982 | |
983 | //_____________________________________________________________________________ |
984 | void AliTOFv3::Init() |
985 | { |
986 | // |
987 | // Initialise the detector after the geometry has been defined |
988 | // |
9e1a0ddb |
989 | if(fDebug) { |
990 | printf("%s: **************************************" |
68861244 |
991 | " TOF " |
992 | "**************************************\n",ClassName()); |
9e1a0ddb |
993 | printf("\n%s Version 3 of TOF initialing, " |
68861244 |
994 | "TOF with holes for RICH detector\n",ClassName()); |
9e1a0ddb |
995 | } |
ab76897d |
996 | |
fe4da5cc |
997 | AliTOF::Init(); |
ab76897d |
998 | |
2cef3cb2 |
999 | fIdFTOA = gMC->VolId("FTOA"); |
1000 | fIdFTOB = gMC->VolId("FTOB"); |
1001 | fIdFTOC = gMC->VolId("FTOC"); |
1002 | fIdFLTA = gMC->VolId("FLTA"); |
1003 | fIdFLTB = gMC->VolId("FLTB"); |
1004 | fIdFLTC = gMC->VolId("FLTC"); |
ab76897d |
1005 | |
9e1a0ddb |
1006 | if(fDebug) { |
1007 | printf("%s: **************************************" |
68861244 |
1008 | " TOF " |
1009 | "**************************************\n",ClassName()); |
1010 | } |
fe4da5cc |
1011 | } |
1012 | |
1013 | //_____________________________________________________________________________ |
1014 | void AliTOFv3::StepManager() |
1015 | { |
1016 | // |
1017 | // Procedure called at each step in the Time Of Flight |
1018 | // |
0a6d8768 |
1019 | TLorentzVector mom, pos; |
2cef3cb2 |
1020 | Float_t xm[3],pm[3],xpad[3],ppad[3]; |
1021 | Float_t hits[13],phi,phid,z; |
1022 | Int_t vol[5]; |
b94fa26c |
1023 | Int_t sector, plate, padx, padz, strip; |
1024 | Int_t copy, padzid, padxid, stripid, i; |
2cef3cb2 |
1025 | Int_t *idtmed = fIdtmed->GetArray()-499; |
b94fa26c |
1026 | Float_t incidenceAngle; |
826b71ec |
1027 | |
1028 | if(gMC->GetMedium()==idtmed[513] && |
0a6d8768 |
1029 | gMC->IsTrackEntering() && gMC->TrackCharge() |
826b71ec |
1030 | && gMC->CurrentVolID(copy)==fIdSens) |
2cef3cb2 |
1031 | { |
1032 | // getting information about hit volumes |
826b71ec |
1033 | |
b94fa26c |
1034 | padzid=gMC->CurrentVolOffID(2,copy); |
1035 | padz=copy; |
826b71ec |
1036 | |
b94fa26c |
1037 | padxid=gMC->CurrentVolOffID(1,copy); |
1038 | padx=copy; |
826b71ec |
1039 | |
b94fa26c |
1040 | stripid=gMC->CurrentVolOffID(4,copy); |
826b71ec |
1041 | strip=copy; |
1042 | |
0a6d8768 |
1043 | gMC->TrackPosition(pos); |
1044 | gMC->TrackMomentum(mom); |
826b71ec |
1045 | |
2cef3cb2 |
1046 | // Double_t NormPos=1./pos.Rho(); |
b94fa26c |
1047 | Double_t normMom=1./mom.Rho(); |
2cef3cb2 |
1048 | |
1049 | // getting the cohordinates in pad ref system |
1050 | xm[0] = (Float_t)pos.X(); |
1051 | xm[1] = (Float_t)pos.Y(); |
1052 | xm[2] = (Float_t)pos.Z(); |
1053 | |
b94fa26c |
1054 | pm[0] = (Float_t)mom.X()*normMom; |
1055 | pm[1] = (Float_t)mom.Y()*normMom; |
1056 | pm[2] = (Float_t)mom.Z()*normMom; |
2cef3cb2 |
1057 | |
1058 | gMC->Gmtod(xm,xpad,1); |
1059 | gMC->Gmtod(pm,ppad,2); |
5919c40c |
1060 | |
b94fa26c |
1061 | incidenceAngle = TMath::ACos(ppad[1])*kRaddeg; |
826b71ec |
1062 | |
1063 | z = pos[2]; |
2cef3cb2 |
1064 | |
1065 | plate = 0; |
1066 | if (TMath::Abs(z) <= fZlenA*0.5) plate = 3; |
1067 | if (z < (fZlenA*0.5+fZlenB) && |
1068 | z > fZlenA*0.5) plate = 4; |
1069 | if (z >-(fZlenA*0.5+fZlenB) && |
1070 | z < -fZlenA*0.5) plate = 2; |
1071 | if (z > (fZlenA*0.5+fZlenB)) plate = 5; |
1072 | if (z <-(fZlenA*0.5+fZlenB)) plate = 1; |
1073 | |
1074 | phi = pos.Phi(); |
1075 | phid = phi*kRaddeg+180.; |
826b71ec |
1076 | sector = Int_t (phid/20.); |
1077 | sector++; |
1078 | |
0a6d8768 |
1079 | for(i=0;i<3;++i) { |
2cef3cb2 |
1080 | hits[i] = pos[i]; |
1081 | hits[i+3] = pm[i]; |
0a6d8768 |
1082 | } |
2cef3cb2 |
1083 | |
1084 | hits[6] = mom.Rho(); |
1085 | hits[7] = pos[3]; |
1086 | hits[8] = xpad[0]; |
1087 | hits[9] = xpad[1]; |
1088 | hits[10]= xpad[2]; |
b94fa26c |
1089 | hits[11]= incidenceAngle; |
2cef3cb2 |
1090 | hits[12]= gMC->Edep(); |
1091 | |
1092 | vol[0]= sector; |
1093 | vol[1]= plate; |
1094 | vol[2]= strip; |
b94fa26c |
1095 | vol[3]= padx; |
1096 | vol[4]= padz; |
2cef3cb2 |
1097 | |
1098 | AddHit(gAlice->CurrentTrack(),vol, hits); |
fe4da5cc |
1099 | } |
1100 | } |