]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRD.cxx
Fix bug in creation of matrix arrays and rename functions and arrays
[u/mrichter/AliRoot.git] / TRD / AliTRD.cxx
CommitLineData
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
88cb7938 16/* $Id$ */
4c039060 17
fe4da5cc 18///////////////////////////////////////////////////////////////////////////////
19// //
20// Transition Radiation Detector //
21// This class contains the basic functions for the Transition Radiation //
6f1e466d 22// Detector. //
fe4da5cc 23// //
24///////////////////////////////////////////////////////////////////////////////
25
5c7f4665 26#include <stdlib.h>
a2cb5b3d 27#include <Riostream.h>
5c7f4665 28
7ca4655f 29#include <TClonesArray.h>
88cb7938 30#include <TFile.h>
31#include <TGeometry.h>
32#include <TLorentzVector.h>
fe4da5cc 33#include <TMath.h>
fe4da5cc 34#include <TNode.h>
793ff80c 35#include <TPGON.h>
332e9569 36#include <TParticle.h>
88cb7938 37#include <TROOT.h>
38#include <TTree.h>
39#include <TVirtualMC.h>
40
d3f347ff 41#include "AliConst.h"
793ff80c 42#include "AliDigit.h"
88cb7938 43#include "AliLoader.h"
45160b1f 44#include "AliLog.h"
45#include "AliMC.h"
793ff80c 46#include "AliMagF.h"
88cb7938 47#include "AliRun.h"
030b4415 48#include "AliTrackReference.h"
68119ad1 49#include "AliRawReader.h"
030b4415 50
793ff80c 51#include "AliTRD.h"
793ff80c 52#include "AliTRDdigit.h"
851d3db9 53#include "AliTRDdigitizer.h"
88cb7938 54#include "AliTRDdigitsManager.h"
bd0f8685 55#include "AliTRDgeometry.h"
88cb7938 56#include "AliTRDhit.h"
57#include "AliTRDpoints.h"
b864d801 58#include "AliTRDrawData.h"
3551db50 59#include "AliTRDSimParam.h"
60#include "AliTRDRecParam.h"
61#include "AliTRDCommonParam.h"
62#include "AliTRDcalibDB.h"
63
fe4da5cc 64ClassImp(AliTRD)
65
66//_____________________________________________________________________________
67AliTRD::AliTRD()
030b4415 68 :AliDetector()
69 ,fGeometry(0)
70 ,fGasDensity(0)
71 ,fFoilDensity(0)
72 ,fDrawTR(0)
73 ,fDisplayType(0)
fe4da5cc 74{
75 //
76 // Default constructor
77 //
332e9569 78
fe4da5cc 79}
80
81//_____________________________________________________________________________
82AliTRD::AliTRD(const char *name, const char *title)
030b4415 83 :AliDetector(name,title)
84 ,fGeometry(0)
85 ,fGasDensity(0)
86 ,fFoilDensity(0)
87 ,fDrawTR(0)
88 ,fDisplayType(0)
fe4da5cc 89{
90 //
91 // Standard constructor for the TRD
92 //
93
030b4415 94 // Check that FRAME is there otherwise we have no place where to put TRD
95 AliModule *frame = gAlice->GetModule("FRAME");
8230f242 96 if (!frame) {
030b4415 97 AliError("TRD needs FRAME to be present\n");
5c7f4665 98 exit(1);
99 }
100
d37eec5e 101 // Define the TRD geometry
102 if ((frame->IsVersion() == 0) ||
103 (frame->IsVersion() == 1)) {
bd0f8685 104 fGeometry = new AliTRDgeometry();
851d3db9 105 }
106 else {
030b4415 107 AliError("Could not find valid FRAME version\n");
851d3db9 108 exit(1);
109 }
5c7f4665 110
fe4da5cc 111 // Allocate the hit array
030b4415 112 fHits = new TClonesArray("AliTRDhit",405);
5d12ce38 113 gAlice->GetMCApp()->AddHitList(fHits);
99d5402e 114
8230f242 115}
116
99d5402e 117//_____________________________________________________________________________
118AliTRD::~AliTRD()
119{
120 //
121 // TRD destructor
122 //
123
abaf1f1d 124 if (fGeometry) {
125 delete fGeometry;
030b4415 126 fGeometry = 0;
abaf1f1d 127 }
030b4415 128
abaf1f1d 129 if (fHits) {
130 delete fHits;
030b4415 131 fHits = 0;
abaf1f1d 132 }
bd0f8685 133
5c7f4665 134}
135
6244debe 136//_____________________________________________________________________________
137void AliTRD::Hits2Digits()
2ab0c725 138{
139 //
140 // Create digits
141 //
bd0f8685 142
be385a87 143 AliTRDdigitizer digitizer("TRDdigitizer","TRD digitizer class");
45160b1f 144 AliLog::SetClassDebugLevel("TRDdigitizer",AliDebugLevel());
9a96f175 145
6244debe 146 // Initialization
be385a87 147 digitizer.InitDetector();
6244debe 148
030b4415 149 if (!fLoader->TreeH()) {
150 fLoader->LoadHits("read");
151 }
85a5290f 152 fLoader->LoadDigits("recreate");
95867fd1 153
030b4415 154 AliRunLoader *runLoader = fLoader->GetRunLoader();
6244debe 155
85a5290f 156 for (Int_t iEvent = 0; iEvent < runLoader->GetNumberOfEvents(); iEvent++) {
95867fd1 157 runLoader->GetEvent(iEvent);
158 digitizer.Open(runLoader,iEvent);
be385a87 159 digitizer.MakeDigits();
160 digitizer.WriteDigits();
6244debe 161 }
162
85a5290f 163 fLoader->UnloadHits();
164 fLoader->UnloadDigits();
a328fff9 165
6244debe 166}
167
168//_____________________________________________________________________________
169void AliTRD::Hits2SDigits()
170{
171 //
172 // Create summable digits
173 //
a328fff9 174
be385a87 175 AliTRDdigitizer digitizer("TRDdigitizer","TRD digitizer class");
6244debe 176 // For the summable digits
be385a87 177 digitizer.SetSDigits(kTRUE);
45160b1f 178 AliLog::SetClassDebugLevel("TRDdigitizer",AliDebugLevel());
6244debe 179
180 // Initialization
be385a87 181 digitizer.InitDetector();
2ab0c725 182
030b4415 183 if (!fLoader->TreeH()) {
184 fLoader->LoadHits("read");
185 }
85a5290f 186 fLoader->LoadSDigits("recreate");
95867fd1 187
188 AliRunLoader *runLoader = fLoader->GetRunLoader();
6244debe 189
85a5290f 190 for (Int_t iEvent = 0; iEvent < runLoader->GetNumberOfEvents(); iEvent++) {
95867fd1 191 runLoader->GetEvent(iEvent);
192 digitizer.Open(runLoader,iEvent);
be385a87 193 digitizer.MakeDigits();
194 digitizer.WriteDigits();
85a5290f 195 }
2ab0c725 196
85a5290f 197 fLoader->UnloadHits();
198 fLoader->UnloadSDigits();
a328fff9 199
200}
6244debe 201
85a5290f 202//_____________________________________________________________________________
95867fd1 203AliDigitizer *AliTRD::CreateDigitizer(AliRunDigitizer *manager) const
85a5290f 204{
a328fff9 205 //
206 // Creates a new digitizer object
207 //
208
85a5290f 209 return new AliTRDdigitizer(manager);
a328fff9 210
6244debe 211}
212
213//_____________________________________________________________________________
214void AliTRD::SDigits2Digits()
215{
216 //
217 // Create final digits from summable digits
218 //
219
bd0f8685 220 // Create the TRD digitizer
be385a87 221 AliTRDdigitizer digitizer("TRDdigitizer","TRD digitizer class");
45160b1f 222 AliLog::SetClassDebugLevel("TRDdigitizer",AliDebugLevel());
99d5402e 223
abaf1f1d 224 // Set the parameter
be385a87 225 digitizer.SetEvent(gAlice->GetEvNumber());
abaf1f1d 226
227 // Initialization
be385a87 228 digitizer.InitDetector();
abaf1f1d 229
230 // Read the s-digits via digits manager
be385a87 231 AliTRDdigitsManager sdigitsManager;
88cb7938 232
45160b1f 233 AliLog::SetClassDebugLevel("TRDdigitisManager",AliDebugLevel());
be385a87 234 sdigitsManager.SetSDigits(kTRUE);
235 sdigitsManager.CreateArrays();
88cb7938 236
030b4415 237 if (!fLoader->TreeS()) {
238 if (fLoader->LoadSDigits("read")) {
239 return;
240 }
241 }
242 if (!fLoader->TreeS()) {
243 AliError(Form("Error while reading SDigits for event %d",gAlice->GetEvNumber()));
244 return;
245 }
88cb7938 246
be385a87 247 sdigitsManager.ReadDigits(fLoader->TreeS());
abaf1f1d 248
249 // Add the s-digits to the input list
be385a87 250 digitizer.AddSDigitsManager(&sdigitsManager);
99d5402e 251
abaf1f1d 252 // Convert the s-digits to normal digits
be385a87 253 digitizer.SDigits2Digits();
abaf1f1d 254
255 // Store the digits
030b4415 256 if (!fLoader->TreeD()) {
257 fLoader->MakeTree("D");
258 }
be385a87 259 if (digitizer.MakeBranch(fLoader->TreeD())){
260 digitizer.WriteDigits();
abaf1f1d 261 }
99d5402e 262
263}
264
b864d801 265//_____________________________________________________________________________
266void AliTRD::Digits2Raw()
267{
268 //
030b4415 269 // Convert digits of the current event to raw data
b864d801 270 //
271
272 fLoader->LoadDigits();
030b4415 273 TTree *digits = fLoader->TreeD();
b864d801 274 if (!digits) {
030b4415 275 AliError("No digits tree");
b864d801 276 return;
277 }
278
279 AliTRDrawData rawWriter;
b864d801 280 if (!rawWriter.Digits2Raw(digits)) {
030b4415 281 AliError("The raw writer could not load the digits tree");
b864d801 282 }
283
284 fLoader->UnloadDigits();
285
286}
287
fe4da5cc 288//_____________________________________________________________________________
332e9569 289void AliTRD::AddHit(Int_t track, Int_t det, Float_t *hits, Int_t q
2fa01832 290 , Float_t time, Bool_t inDrift)
fe4da5cc 291{
292 //
293 // Add a hit for the TRD
332e9569 294 //
82bbf98a 295
a328fff9 296 TClonesArray &lhits = *fHits;
2fa01832 297 AliTRDhit *hit = new(lhits[fNhits++]) AliTRDhit(fIshunt
298 ,track
299 ,det
300 ,hits
301 ,q
302 ,time);
303
a328fff9 304 if (inDrift) {
305 hit->SetDrift();
332e9569 306 }
a328fff9 307 else {
308 hit->SetAmplification();
309 }
030b4415 310
a328fff9 311 if (q < 0) {
312 hit->SetTRphoton();
332e9569 313 }
82bbf98a 314
fe4da5cc 315}
316
317//_____________________________________________________________________________
318void AliTRD::BuildGeometry()
319{
320 //
321 // Create the ROOT TNode geometry for the TRD
322 //
82bbf98a 323
0c5a8090 324 TNode *node;
325 TNode *top;
fe4da5cc 326 TPGON *pgon;
793ff80c 327
0c5a8090 328 // The dimensions of the TRD super module
329 const Float_t kRmin = 291.0;
330 const Float_t kRmax = 369.0;
331 const Float_t kZmax1 = 378.35;
332 const Float_t kZmax2 = 302.0;
333
030b4415 334 Float_t rmin;
335 Float_t rmax;
336 Float_t zmax1;
337 Float_t zmax2;
db30bf0f 338
339 Int_t iPlan;
793ff80c 340
fe4da5cc 341 const Int_t kColorTRD = 46;
d3f347ff 342
fe4da5cc 343 // Find the top node alice
8230f242 344 top = gAlice->GetGeometry()->GetNode("alice");
d3f347ff 345
db30bf0f 346 if (fDisplayType == 0) {
793ff80c 347
348 pgon = new TPGON("S_TRD","TRD","void",0,360,AliTRDgeometry::Nsect(),4);
0c5a8090 349 rmin = kRmin;
350 rmax = kRmax;
351 pgon->DefineSection(0,-kZmax1,rmax,rmax);
352 pgon->DefineSection(1,-kZmax2,rmin,rmax);
353 pgon->DefineSection(2, kZmax2,rmin,rmax);
354 pgon->DefineSection(3, kZmax1,rmax,rmax);
793ff80c 355 top->cd();
356 node = new TNode("TRD","TRD","S_TRD",0,0,0,"");
357 node->SetLineColor(kColorTRD);
358 fNodes->Add(node);
359
db30bf0f 360 }
361 else if (fDisplayType == 1) {
793ff80c 362
f73816f5 363 Char_t name[7];
364
0c5a8090 365 Float_t slope = (kZmax1 - kZmax2) / (kRmax - kRmin);
793ff80c 366
0c5a8090 367 rmin = kRmin + AliTRDgeometry::CraHght();
368 rmax = rmin + AliTRDgeometry::CdrHght();
f73816f5 369
0c5a8090 370 Float_t thickness = rmin - kRmin;
371 zmax2 = kZmax2 + slope * thickness;
793ff80c 372 zmax1 = zmax2 + slope * AliTRDgeometry::DrThick();
793ff80c 373
db30bf0f 374 for (iPlan = 0; iPlan < AliTRDgeometry::Nplan(); iPlan++) {
793ff80c 375
f73816f5 376 sprintf(name,"S_TR1%d",iPlan);
377 pgon = new TPGON(name,"TRD","void",0,360,AliTRDgeometry::Nsect(),4);
378 pgon->DefineSection(0,-zmax1,rmax,rmax);
379 pgon->DefineSection(1,-zmax2,rmin,rmax);
380 pgon->DefineSection(2, zmax2,rmin,rmax);
381 pgon->DefineSection(3, zmax1,rmax,rmax);
382 top->cd();
383 node = new TNode("TRD","TRD",name,0,0,0,"");
384 node->SetLineColor(kColorTRD);
385 fNodes->Add(node);
386
387 Float_t height = AliTRDgeometry::Cheight() + AliTRDgeometry::Cspace();
388 rmin = rmin + height;
389 rmax = rmax + height;
390 zmax1 = zmax1 + slope * height;
391 zmax2 = zmax2 + slope * height;
392
393 }
394
395 thickness += AliTRDgeometry::DrThick();
0c5a8090 396 rmin = kRmin + thickness;
397 rmax = rmin + AliTRDgeometry::AmThick();
398 zmax2 = kZmax2 + slope * thickness;
399 zmax1 = zmax2 + slope * AliTRDgeometry::AmThick();
f73816f5 400
db30bf0f 401 for (iPlan = 0; iPlan < AliTRDgeometry::Nplan(); iPlan++) {
f73816f5 402
403 sprintf(name,"S_TR2%d",iPlan);
793ff80c 404 pgon = new TPGON(name,"TRD","void",0,360,AliTRDgeometry::Nsect(),4);
405 pgon->DefineSection(0,-zmax1,rmax,rmax);
406 pgon->DefineSection(1,-zmax2,rmin,rmax);
407 pgon->DefineSection(2, zmax2,rmin,rmax);
408 pgon->DefineSection(3, zmax1,rmax,rmax);
409 top->cd();
410 node = new TNode("TRD","TRD",name,0,0,0,"");
411 node->SetLineColor(kColorTRD);
412 fNodes->Add(node);
413
414 Float_t height = AliTRDgeometry::Cheight() + AliTRDgeometry::Cspace();
415 rmin = rmin + height;
416 rmax = rmax + height;
417 zmax1 = zmax1 + slope * height;
418 zmax2 = zmax2 + slope * height;
419
420 }
421
db30bf0f 422 }
d3f347ff 423
fe4da5cc 424}
425
426//_____________________________________________________________________________
82bbf98a 427void AliTRD::CreateGeometry()
fe4da5cc 428{
82bbf98a 429 //
430 // Creates the volumes for the TRD chambers
431 //
82bbf98a 432
433 // Check that FRAME is there otherwise we have no place where to put the TRD
030b4415 434 AliModule *frame = gAlice->GetModule("FRAME");
8230f242 435 if (!frame) {
45160b1f 436 AliFatal("The TRD needs the FRAME to be defined first");
82bbf98a 437 }
d3f347ff 438
851d3db9 439 fGeometry->CreateGeometry(fIdtmed->GetArray() - 1299);
5c7f4665 440
82bbf98a 441}
442
443//_____________________________________________________________________________
444void AliTRD::CreateMaterials()
445{
fe4da5cc 446 //
447 // Create the materials for the TRD
fe4da5cc 448 //
449
8230f242 450 Int_t isxfld = gAlice->Field()->Integ();
451 Float_t sxmgmx = gAlice->Field()->Max();
fe4da5cc 452
d3f347ff 453 // For polyethilene (CH2)
030b4415 454 Float_t ape[2] = { 12.011 , 1.0079 };
455 Float_t zpe[2] = { 6.0 , 1.0 };
456 Float_t wpe[2] = { 1.0 , 2.0 };
457 Float_t dpe = 0.95;
d3f347ff 458
d3f347ff 459 // For CO2
030b4415 460 Float_t aco[2] = { 12.011 , 15.9994 };
461 Float_t zco[2] = { 6.0 , 8.0 };
462 Float_t wco[2] = { 1.0 , 2.0 };
463 Float_t dco = 0.00186;
d3f347ff 464
465 // For water
030b4415 466 Float_t awa[2] = { 1.0079, 15.9994 };
467 Float_t zwa[2] = { 1.0 , 8.0 };
468 Float_t wwa[2] = { 2.0 , 1.0 };
469 Float_t dwa = 1.0;
d3f347ff 470
471 // For isobutane (C4H10)
030b4415 472 Float_t ais[2] = { 12.011 , 1.0079 };
473 Float_t zis[2] = { 6.0 , 1.0 };
474 Float_t wis[2] = { 4.0 , 10.0 };
475 Float_t dis = 0.00267;
d3f347ff 476
db30bf0f 477 // For plexiglas (C5H8O2)
030b4415 478 Float_t apg[3] = { 12.011 , 1.0079, 15.9994 };
479 Float_t zpg[3] = { 6.0 , 1.0 , 8.0 };
480 Float_t wpg[3] = { 5.0 , 8.0 , 2.0 };
481 Float_t dpg = 1.18;
08ca3951 482
483 // For epoxy (C18H19O3)
3dac2b2d 484 Float_t aEpoxy[3] = { 15.9994, 1.0079, 12.011 };
485 Float_t zEpoxy[3] = { 8.0 , 1.0 , 6.0 };
486 Float_t wEpoxy[3] = { 3.0 , 19.0 , 18.0 };
08ca3951 487 Float_t dEpoxy = 1.8 ;
488
0c5a8090 489 // For Araldite, low density epoxy (C18H19O3)
490 Float_t aAral[3] = { 15.9994, 1.0079, 12.011 };
491 Float_t zAral[3] = { 8.0 , 1.0 , 6.0 };
492 Float_t wAral[3] = { 3.0 , 19.0 , 18.0 };
493 Float_t dAral = 1.05;
494
08ca3951 495 // For air
3dac2b2d 496 Float_t aAir[4] = { 12.011 , 14.0 , 15.9994 , 36.0 };
497 Float_t zAir[4] = { 6.0 , 7.0 , 8.0 , 18.0 };
498 Float_t wAir[4] = { 0.000124, 0.755267, 0.231781, 0.012827 };
0c5a8090 499 Float_t dAir = 1.20479e-03;
08ca3951 500
501 // For G10
3dac2b2d 502 Float_t aG10[4] = { 1.0079 , 12.011 , 15.9994 , 28.086 };
503 Float_t zG10[4] = { 1.0 , 6.0 , 8.0 , 14.0 };
504 Float_t wG10[4] = { 0.15201 , 0.10641 , 0.49444 , 0.24714 };
08ca3951 505 Float_t dG10 = 1.7;
db30bf0f 506
d3f347ff 507 // For Xe/CO2-gas-mixture
3dac2b2d 508 Float_t aXeCO2[3] = { 131.29 , 12.0107 , 15.9994 };
509 Float_t zXeCO2[3] = { 54.0 , 6.0 , 8.0 };
330bfc2f 510 Float_t wXeCO2[3] = { 8.5 , 1.5 , 3.0 };
db30bf0f 511 // Xe-content of the Xe/CO2-mixture (85% / 15%)
3dac2b2d 512 Float_t fxc = 0.85;
513 Float_t dxe = 0.00549;
514 Float_t dgm = fxc * dxe + (1.0 - fxc) * dco;
fe4da5cc 515
d3f347ff 516 // General tracking parameter
030b4415 517 Float_t tmaxfd = -10.0;
518 Float_t stemax = -1.0e10;
519 Float_t deemax = -0.1;
520 Float_t epsil = 1.0e-4;
521 Float_t stmin = -0.001;
fe4da5cc 522
d3f347ff 523 //////////////////////////////////////////////////////////////////////////
fe4da5cc 524 // Define Materials
d3f347ff 525 //////////////////////////////////////////////////////////////////////////
526
16bf9884 527 AliMaterial( 1, "Al" , 26.98, 13.0, 2.7 , 8.9 , 37.2);
3dac2b2d 528 AliMaterial( 4, "Xe" , 131.29, 54.0, dxe , 1546.16, 0.0);
16bf9884 529 AliMaterial( 5, "Cu" , 63.54, 29.0, 8.96 , 1.43, 14.8);
530 AliMaterial( 6, "C" , 12.01, 6.0, 2.265 , 18.8 , 74.4);
16bf9884 531 AliMaterial(15, "Sn" , 118.71, 50.0, 7.31 , 1.21, 14.8);
532 AliMaterial(16, "Si" , 28.09, 14.0, 2.33 , 9.36, 37.2);
0c5a8090 533 AliMaterial(18, "Fe" , 55.85, 26.0, 7.87 , 1.76, 14.8);
d3f347ff 534
535 // Mixtures
3dac2b2d 536 AliMixture(2, "Air" , aAir, zAir, dAir, 4, wAir );
537 AliMixture(3, "Polyethilene", ape, zpe, dpe, -2, wpe );
3dac2b2d 538 AliMixture(8, "CO2", aco, zco, dco, -2, wco );
539 AliMixture(9, "Isobutane", ais, zis, dis, -2, wis );
330bfc2f 540 AliMixture(10,"Gas mixture", aXeCO2, zXeCO2, dgm, -3, wXeCO2);
3dac2b2d 541 AliMixture(12,"G10", aG10, zG10, dG10, 4, wG10 );
542 AliMixture(13,"Water", awa, zwa, dwa, -2, wwa );
543 AliMixture(14,"Plexiglas", apg, zpg, dpg, -3, wpg );
544 AliMixture(17,"Epoxy", aEpoxy, zEpoxy, dEpoxy, -3, wEpoxy);
0c5a8090 545 AliMixture(19,"Araldite", aAral, zAral, dAral, -3, wAral );
3dac2b2d 546
d3f347ff 547 //////////////////////////////////////////////////////////////////////////
fe4da5cc 548 // Tracking Media Parameters
d3f347ff 549 //////////////////////////////////////////////////////////////////////////
550
551 // Al Frame
0c5a8090 552 AliMedium( 1,"Al Frame" , 1,0,isxfld,sxmgmx
553 ,tmaxfd,stemax,deemax,epsil,stmin);
d3f347ff 554 // Air
0c5a8090 555 AliMedium( 2,"Air" , 2,0,isxfld,sxmgmx
556 ,tmaxfd,stemax,deemax,epsil,stmin);
557 // Wires
558 AliMedium( 3,"Wires" , 5,0,isxfld,sxmgmx
559 ,tmaxfd,stemax,deemax,epsil,stmin);
560 // All other ROB materials (caps, etc.)
561 AliMedium( 4,"ROB Other" , 5,0,isxfld,sxmgmx
562 ,tmaxfd,stemax,deemax,epsil,stmin);
d3f347ff 563 // Cu pads
0c5a8090 564 AliMedium( 5,"Padplane" , 5,1,isxfld,sxmgmx
565 ,tmaxfd,stemax,deemax,epsil,stmin);
d3f347ff 566 // Fee + cables
0c5a8090 567 AliMedium( 6,"Readout" , 5,0,isxfld,sxmgmx
568 ,tmaxfd,stemax,deemax,epsil,stmin);
d3f347ff 569 // C frame
0c5a8090 570 AliMedium( 7,"C Frame" , 6,0,isxfld,sxmgmx
571 ,tmaxfd,stemax,deemax,epsil,stmin);
572 // INOX of cooling bus bars
573 AliMedium( 8,"Cooling bus",18,0,isxfld,sxmgmx
574 ,tmaxfd,stemax,deemax,epsil,stmin);
3dac2b2d 575 // Gas-mixture (Xe/CO2)
0c5a8090 576 AliMedium( 9,"Gas-mix" ,10,1,isxfld,sxmgmx
577 ,tmaxfd,stemax,deemax,epsil,stmin);
578 // Nomex-honeycomb
579 AliMedium(10,"Nomex" ,12,0,isxfld,sxmgmx
580 ,tmaxfd,stemax,deemax,epsil,stmin);
581 // Araldite glue
582 AliMedium(11,"Glue" ,19,0,isxfld,sxmgmx
583 ,tmaxfd,stemax,deemax,epsil,stmin);
d3f347ff 584 // G10-plates
0c5a8090 585 AliMedium(13,"G10-plates" ,12,0,isxfld,sxmgmx
586 ,tmaxfd,stemax,deemax,epsil,stmin);
d3f347ff 587 // Cooling water
0c5a8090 588 AliMedium(14,"Water" ,13,0,isxfld,sxmgmx
589 ,tmaxfd,stemax,deemax,epsil,stmin);
db30bf0f 590 // Rohacell (plexiglas) for the radiator
0c5a8090 591 AliMedium(15,"Rohacell" ,14,0,isxfld,sxmgmx
592 ,tmaxfd,stemax,deemax,epsil,stmin);
16bf9884 593 // Al layer in MCMs
0c5a8090 594 AliMedium(16,"MCM-Al" , 1,0,isxfld,sxmgmx
595 ,tmaxfd,stemax,deemax,epsil,stmin);
16bf9884 596 // Sn layer in MCMs
0c5a8090 597 AliMedium(17,"MCM-Sn" ,15,0,isxfld,sxmgmx
598 ,tmaxfd,stemax,deemax,epsil,stmin);
16bf9884 599 // Cu layer in MCMs
0c5a8090 600 AliMedium(18,"MCM-Cu" , 5,0,isxfld,sxmgmx
601 ,tmaxfd,stemax,deemax,epsil,stmin);
16bf9884 602 // G10 layer in MCMs
0c5a8090 603 AliMedium(19,"MCM-G10" ,12,0,isxfld,sxmgmx
604 ,tmaxfd,stemax,deemax,epsil,stmin);
16bf9884 605 // Si in readout chips
0c5a8090 606 AliMedium(20,"Chip-Si" ,16,0,isxfld,sxmgmx
607 ,tmaxfd,stemax,deemax,epsil,stmin);
16bf9884 608 // Epoxy in readout chips
0c5a8090 609 AliMedium(21,"Chip-Ep" ,17,0,isxfld,sxmgmx
610 ,tmaxfd,stemax,deemax,epsil,stmin);
16bf9884 611 // PE in connectors
0c5a8090 612 AliMedium(22,"Conn-PE" , 3,0,isxfld,sxmgmx
613 ,tmaxfd,stemax,deemax,epsil,stmin);
16bf9884 614 // Cu in connectors
0c5a8090 615 AliMedium(23,"Chip-Cu" , 5,0,isxfld,sxmgmx
616 ,tmaxfd,stemax,deemax,epsil,stmin);
16bf9884 617 // Al of cooling pipes
0c5a8090 618 AliMedium(24,"Cooling" , 1,0,isxfld,sxmgmx
619 ,tmaxfd,stemax,deemax,epsil,stmin);
73ae7b59 620 // Cu in services
0c5a8090 621 AliMedium(25,"Serv-Cu" , 5,0,isxfld,sxmgmx
622 ,tmaxfd,stemax,deemax,epsil,stmin);
d3f347ff 623
793ff80c 624 // Save the density values for the TRD absorbtion
0c5a8090 625 Float_t dmy = 1.39;
793ff80c 626 fFoilDensity = dmy;
3dac2b2d 627 fGasDensity = dgm;
793ff80c 628
fe4da5cc 629}
630
82bbf98a 631//_____________________________________________________________________________
ba380e33 632void AliTRD::DrawModule() const
82bbf98a 633{
634 //
635 // Draw a shaded view of the Transition Radiation Detector version 0
636 //
637
638 // Set everything unseen
639 gMC->Gsatt("*" ,"SEEN",-1);
640
641 // Set ALIC mother transparent
642 gMC->Gsatt("ALIC","SEEN", 0);
643
644 // Set the volumes visible
851d3db9 645 if (fGeometry->IsVersion() == 0) {
5c7f4665 646 gMC->Gsatt("B071","SEEN", 0);
647 gMC->Gsatt("B074","SEEN", 0);
648 gMC->Gsatt("B075","SEEN", 0);
649 gMC->Gsatt("B077","SEEN", 0);
650 gMC->Gsatt("BTR1","SEEN", 0);
651 gMC->Gsatt("BTR2","SEEN", 0);
652 gMC->Gsatt("BTR3","SEEN", 0);
332e9569 653 gMC->Gsatt("UTR1","SEEN", 0);
654 gMC->Gsatt("UTR2","SEEN", 0);
655 gMC->Gsatt("UTR3","SEEN", 0);
5c7f4665 656 }
657 else {
658 gMC->Gsatt("B071","SEEN", 0);
659 gMC->Gsatt("B074","SEEN", 0);
660 gMC->Gsatt("B075","SEEN", 0);
661 gMC->Gsatt("B077","SEEN", 0);
662 gMC->Gsatt("BTR1","SEEN", 0);
663 gMC->Gsatt("BTR2","SEEN", 0);
664 gMC->Gsatt("BTR3","SEEN", 0);
332e9569 665 gMC->Gsatt("UTR1","SEEN", 0);
5c7f4665 666 }
82bbf98a 667
668 gMC->Gdopt("hide", "on");
669 gMC->Gdopt("shad", "on");
670 gMC->Gsatt("*", "fill", 7);
671 gMC->SetClipBox(".");
672 gMC->SetClipBox("*", 0, 2000, -2000, 2000, -2000, 2000);
673 gMC->DefaultRange();
674 gMC->Gdraw("alic", 40, 30, 0, 12, 9.4, .021, .021);
675 gMC->Gdhead(1111, "Transition Radiation Detector");
676 gMC->Gdman(18, 4, "MAN");
677
678}
679
fe4da5cc 680//_____________________________________________________________________________
e0d47c25 681Int_t AliTRD::DistancetoPrimitive(Int_t , Int_t )
fe4da5cc 682{
683 //
684 // Distance between the mouse and the TRD detector on the screen
685 // Dummy routine
030b4415 686 //
82bbf98a 687
688 return 9999;
689
fe4da5cc 690}
691
692//_____________________________________________________________________________
693void AliTRD::Init()
694{
695 //
851d3db9 696 // Initialize the TRD detector after the geometry has been created
fe4da5cc 697 //
82bbf98a 698
45160b1f 699 AliDebug(1,"++++++++++++++++++++++++++++++++++++++++++++++");
5c7f4665 700
bd0f8685 701 if (fGeometry->IsVersion() != 1) {
45160b1f 702 AliError("Not a valid geometry");
d37eec5e 703 }
5f06bf41 704
7235aed2 705 // Special tracking options for charged particles for XeCO2
5f06bf41 706 gMC->Gstpar((* fIdtmed)[9],"DRAY" , 1.0);
707 gMC->Gstpar((* fIdtmed)[9],"STRA" , 1.0);
708 gMC->Gstpar((* fIdtmed)[9],"LOSS" ,13.0); // Specific energy loss
709 gMC->Gstpar((* fIdtmed)[9],"PRIMIO_E",23.53); // 1st ionisation potential
710 gMC->Gstpar((* fIdtmed)[9],"PRIMIO_N",19.344431); // Number of primaries
711
5c7f4665 712}
713
793ff80c 714//_____________________________________________________________________________
73ae7b59 715void AliTRD::LoadPoints(Int_t )
793ff80c 716{
717 //
718 // Store x, y, z of all hits in memory.
719 // Hit originating from TR photons are given a different color
720 //
721
030b4415 722 if (fHits == 0) {
723 return;
724 }
793ff80c 725
030b4415 726 Int_t nhits = fHits->GetEntriesFast();
727 if (nhits == 0) {
728 return;
729 }
793ff80c 730
5d12ce38 731 Int_t tracks = gAlice->GetMCApp()->GetNtrack();
030b4415 732 if (fPoints == 0) {
733 fPoints = new TObjArray(tracks);
734 }
793ff80c 735
736 AliTRDhit *ahit;
737
738 Int_t *ntrkE = new Int_t[tracks];
739 Int_t *ntrkT = new Int_t[tracks];
740 Int_t *limiE = new Int_t[tracks];
741 Int_t *limiT = new Int_t[tracks];
742 Float_t **coorE = new Float_t*[tracks];
743 Float_t **coorT = new Float_t*[tracks];
744 for(Int_t i = 0; i < tracks; i++) {
745 ntrkE[i] = 0;
746 ntrkT[i] = 0;
747 coorE[i] = 0;
748 coorT[i] = 0;
749 limiE[i] = 0;
750 limiT[i] = 0;
751 }
752
332e9569 753 AliTRDpoints *points = 0;
754 Float_t *fp = 0;
755 Int_t trk;
756 Int_t chunk = nhits / 4 + 1;
793ff80c 757
758 // Loop over all the hits and store their position
332e9569 759 ahit = (AliTRDhit *) FirstHit(-1);
760 while (ahit) {
793ff80c 761
762 // dEdx hits
332e9569 763 if (ahit->GetCharge() >= 0) {
793ff80c 764
765 trk = ahit->GetTrack();
766 if (ntrkE[trk] == limiE[trk]) {
767 // Initialise a new track
768 fp = new Float_t[3*(limiE[trk]+chunk)];
769 if (coorE[trk]) {
770 memcpy(fp,coorE[trk],sizeof(Float_t)*3*limiE[trk]);
771 delete [] coorE[trk];
772 }
773 limiE[trk] += chunk;
774 coorE[trk] = fp;
775 }
776 else {
777 fp = coorE[trk];
778 }
779 fp[3*ntrkE[trk] ] = ahit->X();
780 fp[3*ntrkE[trk]+1] = ahit->Y();
781 fp[3*ntrkE[trk]+2] = ahit->Z();
782 ntrkE[trk]++;
783
784 }
785 // TR photon hits
030b4415 786 else if ((ahit->GetCharge() < 0) &&
787 (fDrawTR)) {
793ff80c 788
789 trk = ahit->GetTrack();
790 if (ntrkT[trk] == limiT[trk]) {
791 // Initialise a new track
792 fp = new Float_t[3*(limiT[trk]+chunk)];
793 if (coorT[trk]) {
794 memcpy(fp,coorT[trk],sizeof(Float_t)*3*limiT[trk]);
795 delete [] coorT[trk];
796 }
797 limiT[trk] += chunk;
798 coorT[trk] = fp;
799 }
800 else {
801 fp = coorT[trk];
802 }
803 fp[3*ntrkT[trk] ] = ahit->X();
804 fp[3*ntrkT[trk]+1] = ahit->Y();
805 fp[3*ntrkT[trk]+2] = ahit->Z();
806 ntrkT[trk]++;
807
808 }
809
332e9569 810 ahit = (AliTRDhit *) NextHit();
811
793ff80c 812 }
813
814 for (trk = 0; trk < tracks; ++trk) {
815
816 if (ntrkE[trk] || ntrkT[trk]) {
817
818 points = new AliTRDpoints();
819 points->SetDetector(this);
820 points->SetParticle(trk);
821
822 // Set the dEdx points
823 if (ntrkE[trk]) {
e939a978 824 points->SetMarkerColor(kWhite); //PH This is the default color in TRD
825 points->SetMarkerSize(1); //PH Default size=1
826 points->SetPolyMarker(ntrkE[trk],coorE[trk],1); //PH Default style=1
793ff80c 827 delete [] coorE[trk];
828 coorE[trk] = 0;
829 }
830
831 // Set the TR photon points
832 if (ntrkT[trk]) {
833 points->SetTRpoints(ntrkT[trk],coorT[trk]);
834 delete [] coorT[trk];
835 coorT[trk] = 0;
836 }
837
838 fPoints->AddAt(points,trk);
839
840 }
841
842 }
843
844 delete [] coorE;
845 delete [] coorT;
846 delete [] ntrkE;
847 delete [] ntrkT;
848 delete [] limiE;
849 delete [] limiT;
850
851}
852
5c7f4665 853//_____________________________________________________________________________
030b4415 854void AliTRD::MakeBranch(Option_t *option)
5c7f4665 855{
856 //
abaf1f1d 857 // Create Tree branches for the TRD digits.
5c7f4665 858 //
859
abaf1f1d 860 Int_t buffersize = 4000;
861 Char_t branchname[15];
862 sprintf(branchname,"%s",GetName());
5c7f4665 863
030b4415 864 const Char_t *cD = strstr(option,"D");
aa9d00f0 865
88cb7938 866 AliDetector::MakeBranch(option);
5c7f4665 867
030b4415 868 if (fDigits &&
869 gAlice->TreeD() &&
870 cD) {
88cb7938 871 MakeBranchInTree(gAlice->TreeD(),branchname,&fDigits,buffersize,0);
030b4415 872 }
abaf1f1d 873
851d3db9 874}
875
6244debe 876//_____________________________________________________________________________
877void AliTRD::ResetDigits()
878{
879 //
abaf1f1d 880 // Reset number of digits and the digits array for this detector
6244debe 881 //
882
abaf1f1d 883 fNdigits = 0;
030b4415 884
885 if (fDigits) {
886 fDigits->Clear();
887 }
6244debe 888
889}
890
5c7f4665 891//_____________________________________________________________________________
892void AliTRD::SetTreeAddress()
893{
894 //
895 // Set the branch addresses for the trees.
896 //
897
030b4415 898 if (fLoader->TreeH() &&
899 (fHits == 0x0)) {
a328fff9 900 fHits = new TClonesArray("AliTRDhit",405);
332e9569 901 }
a328fff9 902 AliDetector::SetTreeAddress();
332e9569 903
fe4da5cc 904}
905
68119ad1 906//_____________________________________________________________________________
907Bool_t AliTRD::Raw2SDigits(AliRawReader *rawReader)
908{
909 //
910 // Converts RAW data to SDigits
911 //
912
913 AliLoader *loader = fRunLoader->GetLoader("TRDLoader");
914 if (!loader) {
915 AliError("Can not get TRD loader from Run Loader");
916 return kFALSE;
917 }
918
919 TTree *tree = 0;
920 tree = loader->TreeS();
921 if (!tree) {
922 loader->MakeTree("S");
923 tree = loader->TreeS();
924 }
925
926 AliTRDrawData *rawdata = new AliTRDrawData();
927 AliTRDdigitsManager *sdigitsManager = rawdata->Raw2Digits(rawReader);
928 if (sdigitsManager) {
929 sdigitsManager->SetSDigits(kTRUE);
930 sdigitsManager->MakeBranch(tree);
931 sdigitsManager->WriteDigits();
932 return kTRUE;
933 }
934 else {
935 return kFALSE;
936 }
937
938}
939
dd9a6ee3 940//_____________________________________________________________________________
941AliTRD &AliTRD::operator=(const AliTRD &trd)
942{
943 //
944 // Assignment operator
945 //
946
0c5a8090 947 if (this != &trd) {
948 ((AliTRD &) trd).Copy(*this);
949 }
030b4415 950
dd9a6ee3 951 return *this;
952
68119ad1 953}