1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
18 ///////////////////////////////////////////////////////////////////////////////
20 // Transition Radiation Detector //
21 // This class contains the basic functions for the Transition Radiation //
24 ///////////////////////////////////////////////////////////////////////////////
27 #include <Riostream.h>
29 #include <TClonesArray.h>
31 #include <TGeometry.h>
32 #include <TLorentzVector.h>
36 #include <TParticle.h>
39 #include <TVirtualMC.h>
43 #include "AliLoader.h"
48 #include "AliTrackReference.h"
51 #include "AliTRDdigit.h"
52 #include "AliTRDdigitizer.h"
53 #include "AliTRDdigitsManager.h"
54 #include "AliTRDgeometry.h"
55 #include "AliTRDhit.h"
56 #include "AliTRDpoints.h"
57 #include "AliTRDrawData.h"
58 #include "AliTRDSimParam.h"
59 #include "AliTRDRecParam.h"
60 #include "AliTRDCommonParam.h"
61 #include "AliTRDcalibDB.h"
65 //_____________________________________________________________________________
75 // Default constructor
80 //_____________________________________________________________________________
81 AliTRD::AliTRD(const char *name, const char *title)
82 :AliDetector(name,title)
90 // Standard constructor for the TRD
93 // Check that FRAME is there otherwise we have no place where to put TRD
94 AliModule *frame = gAlice->GetModule("FRAME");
96 AliError("TRD needs FRAME to be present\n");
100 // Define the TRD geometry
101 if ((frame->IsVersion() == 0) ||
102 (frame->IsVersion() == 1)) {
103 fGeometry = new AliTRDgeometry();
106 AliError("Could not find valid FRAME version\n");
111 TDirectory *saveDir = gDirectory;
112 gAlice->GetRunLoader()->CdGAFile();
113 fGeometry->Write("TRDgeometry");
116 // Allocate the hit array
117 fHits = new TClonesArray("AliTRDhit",405);
118 gAlice->GetMCApp()->AddHitList(fHits);
120 //PH SetMarkerColor(kWhite);
124 //_____________________________________________________________________________
143 //_____________________________________________________________________________
144 void AliTRD::Hits2Digits()
150 AliTRDdigitizer digitizer("TRDdigitizer","TRD digitizer class");
151 AliLog::SetClassDebugLevel("TRDdigitizer",AliDebugLevel());
154 digitizer.InitDetector();
156 if (!fLoader->TreeH()) {
157 fLoader->LoadHits("read");
159 fLoader->LoadDigits("recreate");
161 AliRunLoader *runLoader = fLoader->GetRunLoader();
163 for (Int_t iEvent = 0; iEvent < runLoader->GetNumberOfEvents(); iEvent++) {
164 runLoader->GetEvent(iEvent);
165 digitizer.Open(runLoader,iEvent);
166 digitizer.MakeDigits();
167 digitizer.WriteDigits();
170 fLoader->UnloadHits();
171 fLoader->UnloadDigits();
175 //_____________________________________________________________________________
176 void AliTRD::Hits2SDigits()
179 // Create summable digits
182 AliTRDdigitizer digitizer("TRDdigitizer","TRD digitizer class");
183 // For the summable digits
184 digitizer.SetSDigits(kTRUE);
185 AliLog::SetClassDebugLevel("TRDdigitizer",AliDebugLevel());
188 digitizer.InitDetector();
190 if (!fLoader->TreeH()) {
191 fLoader->LoadHits("read");
193 fLoader->LoadSDigits("recreate");
195 AliRunLoader *runLoader = fLoader->GetRunLoader();
197 for (Int_t iEvent = 0; iEvent < runLoader->GetNumberOfEvents(); iEvent++) {
198 runLoader->GetEvent(iEvent);
199 digitizer.Open(runLoader,iEvent);
200 digitizer.MakeDigits();
201 digitizer.WriteDigits();
204 fLoader->UnloadHits();
205 fLoader->UnloadSDigits();
209 //_____________________________________________________________________________
210 AliDigitizer *AliTRD::CreateDigitizer(AliRunDigitizer *manager) const
213 // Creates a new digitizer object
216 return new AliTRDdigitizer(manager);
220 //_____________________________________________________________________________
221 void AliTRD::SDigits2Digits()
224 // Create final digits from summable digits
227 // Create the TRD digitizer
228 AliTRDdigitizer digitizer("TRDdigitizer","TRD digitizer class");
229 AliLog::SetClassDebugLevel("TRDdigitizer",AliDebugLevel());
232 digitizer.SetEvent(gAlice->GetEvNumber());
235 digitizer.InitDetector();
237 // Read the s-digits via digits manager
238 AliTRDdigitsManager sdigitsManager;
240 AliLog::SetClassDebugLevel("TRDdigitisManager",AliDebugLevel());
241 sdigitsManager.SetSDigits(kTRUE);
242 sdigitsManager.CreateArrays();
244 if (!fLoader->TreeS()) {
245 if (fLoader->LoadSDigits("read")) {
249 if (!fLoader->TreeS()) {
250 AliError(Form("Error while reading SDigits for event %d",gAlice->GetEvNumber()));
254 sdigitsManager.ReadDigits(fLoader->TreeS());
256 // Add the s-digits to the input list
257 digitizer.AddSDigitsManager(&sdigitsManager);
259 // Convert the s-digits to normal digits
260 digitizer.SDigits2Digits();
263 if (!fLoader->TreeD()) {
264 fLoader->MakeTree("D");
266 if (digitizer.MakeBranch(fLoader->TreeD())){
267 digitizer.WriteDigits();
272 //_____________________________________________________________________________
273 void AliTRD::Digits2Raw()
276 // Convert digits of the current event to raw data
279 fLoader->LoadDigits();
280 TTree *digits = fLoader->TreeD();
282 AliError("No digits tree");
286 AliTRDrawData rawWriter;
287 if (!rawWriter.Digits2Raw(digits)) {
288 AliError("The raw writer could not load the digits tree");
291 fLoader->UnloadDigits();
295 //_____________________________________________________________________________
296 void AliTRD::AddHit(Int_t track, Int_t det, Float_t *hits, Int_t q
300 // Add a hit for the TRD
303 TClonesArray &lhits = *fHits;
304 AliTRDhit *hit = new(lhits[fNhits++]) AliTRDhit(fIshunt,track,det,hits,q);
310 hit->SetAmplification();
319 //_____________________________________________________________________________
320 void AliTRD::BuildGeometry()
323 // Create the ROOT TNode geometry for the TRD
330 // The dimensions of the TRD super module
331 const Float_t kRmin = 291.0;
332 const Float_t kRmax = 369.0;
333 const Float_t kZmax1 = 378.35;
334 const Float_t kZmax2 = 302.0;
343 const Int_t kColorTRD = 46;
345 // Find the top node alice
346 top = gAlice->GetGeometry()->GetNode("alice");
348 if (fDisplayType == 0) {
350 pgon = new TPGON("S_TRD","TRD","void",0,360,AliTRDgeometry::Nsect(),4);
353 pgon->DefineSection(0,-kZmax1,rmax,rmax);
354 pgon->DefineSection(1,-kZmax2,rmin,rmax);
355 pgon->DefineSection(2, kZmax2,rmin,rmax);
356 pgon->DefineSection(3, kZmax1,rmax,rmax);
358 node = new TNode("TRD","TRD","S_TRD",0,0,0,"");
359 node->SetLineColor(kColorTRD);
363 else if (fDisplayType == 1) {
367 Float_t slope = (kZmax1 - kZmax2) / (kRmax - kRmin);
369 rmin = kRmin + AliTRDgeometry::CraHght();
370 rmax = rmin + AliTRDgeometry::CdrHght();
372 Float_t thickness = rmin - kRmin;
373 zmax2 = kZmax2 + slope * thickness;
374 zmax1 = zmax2 + slope * AliTRDgeometry::DrThick();
376 for (iPlan = 0; iPlan < AliTRDgeometry::Nplan(); iPlan++) {
378 sprintf(name,"S_TR1%d",iPlan);
379 pgon = new TPGON(name,"TRD","void",0,360,AliTRDgeometry::Nsect(),4);
380 pgon->DefineSection(0,-zmax1,rmax,rmax);
381 pgon->DefineSection(1,-zmax2,rmin,rmax);
382 pgon->DefineSection(2, zmax2,rmin,rmax);
383 pgon->DefineSection(3, zmax1,rmax,rmax);
385 node = new TNode("TRD","TRD",name,0,0,0,"");
386 node->SetLineColor(kColorTRD);
389 Float_t height = AliTRDgeometry::Cheight() + AliTRDgeometry::Cspace();
390 rmin = rmin + height;
391 rmax = rmax + height;
392 zmax1 = zmax1 + slope * height;
393 zmax2 = zmax2 + slope * height;
397 thickness += AliTRDgeometry::DrThick();
398 rmin = kRmin + thickness;
399 rmax = rmin + AliTRDgeometry::AmThick();
400 zmax2 = kZmax2 + slope * thickness;
401 zmax1 = zmax2 + slope * AliTRDgeometry::AmThick();
403 for (iPlan = 0; iPlan < AliTRDgeometry::Nplan(); iPlan++) {
405 sprintf(name,"S_TR2%d",iPlan);
406 pgon = new TPGON(name,"TRD","void",0,360,AliTRDgeometry::Nsect(),4);
407 pgon->DefineSection(0,-zmax1,rmax,rmax);
408 pgon->DefineSection(1,-zmax2,rmin,rmax);
409 pgon->DefineSection(2, zmax2,rmin,rmax);
410 pgon->DefineSection(3, zmax1,rmax,rmax);
412 node = new TNode("TRD","TRD",name,0,0,0,"");
413 node->SetLineColor(kColorTRD);
416 Float_t height = AliTRDgeometry::Cheight() + AliTRDgeometry::Cspace();
417 rmin = rmin + height;
418 rmax = rmax + height;
419 zmax1 = zmax1 + slope * height;
420 zmax2 = zmax2 + slope * height;
428 //_____________________________________________________________________________
429 void AliTRD::CreateGeometry()
432 // Creates the volumes for the TRD chambers
435 // Check that FRAME is there otherwise we have no place where to put the TRD
436 AliModule *frame = gAlice->GetModule("FRAME");
438 AliFatal("The TRD needs the FRAME to be defined first");
441 fGeometry->CreateGeometry(fIdtmed->GetArray() - 1299);
445 //_____________________________________________________________________________
446 void AliTRD::CreateMaterials()
449 // Create the materials for the TRD
452 Int_t isxfld = gAlice->Field()->Integ();
453 Float_t sxmgmx = gAlice->Field()->Max();
455 // For polyethilene (CH2)
456 Float_t ape[2] = { 12.011 , 1.0079 };
457 Float_t zpe[2] = { 6.0 , 1.0 };
458 Float_t wpe[2] = { 1.0 , 2.0 };
462 Float_t aco[2] = { 12.011 , 15.9994 };
463 Float_t zco[2] = { 6.0 , 8.0 };
464 Float_t wco[2] = { 1.0 , 2.0 };
465 Float_t dco = 0.00186;
468 Float_t awa[2] = { 1.0079, 15.9994 };
469 Float_t zwa[2] = { 1.0 , 8.0 };
470 Float_t wwa[2] = { 2.0 , 1.0 };
473 // For isobutane (C4H10)
474 Float_t ais[2] = { 12.011 , 1.0079 };
475 Float_t zis[2] = { 6.0 , 1.0 };
476 Float_t wis[2] = { 4.0 , 10.0 };
477 Float_t dis = 0.00267;
479 // For plexiglas (C5H8O2)
480 Float_t apg[3] = { 12.011 , 1.0079, 15.9994 };
481 Float_t zpg[3] = { 6.0 , 1.0 , 8.0 };
482 Float_t wpg[3] = { 5.0 , 8.0 , 2.0 };
485 // For epoxy (C18H19O3)
486 Float_t aEpoxy[3] = { 15.9994, 1.0079, 12.011 };
487 Float_t zEpoxy[3] = { 8.0 , 1.0 , 6.0 };
488 Float_t wEpoxy[3] = { 3.0 , 19.0 , 18.0 };
489 Float_t dEpoxy = 1.8 ;
491 // For Araldite, low density epoxy (C18H19O3)
492 Float_t aAral[3] = { 15.9994, 1.0079, 12.011 };
493 Float_t zAral[3] = { 8.0 , 1.0 , 6.0 };
494 Float_t wAral[3] = { 3.0 , 19.0 , 18.0 };
495 Float_t dAral = 1.05;
498 Float_t aAir[4] = { 12.011 , 14.0 , 15.9994 , 36.0 };
499 Float_t zAir[4] = { 6.0 , 7.0 , 8.0 , 18.0 };
500 Float_t wAir[4] = { 0.000124, 0.755267, 0.231781, 0.012827 };
501 Float_t dAir = 1.20479e-03;
504 Float_t aG10[4] = { 1.0079 , 12.011 , 15.9994 , 28.086 };
505 Float_t zG10[4] = { 1.0 , 6.0 , 8.0 , 14.0 };
506 Float_t wG10[4] = { 0.15201 , 0.10641 , 0.49444 , 0.24714 };
509 // For Xe/CO2-gas-mixture
510 Float_t aXeCO2[3] = { 131.29 , 12.0107 , 15.9994 };
511 Float_t zXeCO2[3] = { 54.0 , 6.0 , 8.0 };
512 Float_t wXeCO2[3] = { 8.5 , 1.5 , 3.0 };
513 // Xe-content of the Xe/CO2-mixture (85% / 15%)
515 Float_t dxe = 0.00549;
516 Float_t dgm = fxc * dxe + (1.0 - fxc) * dco;
518 // General tracking parameter
519 Float_t tmaxfd = -10.0;
520 Float_t stemax = -1.0e10;
521 Float_t deemax = -0.1;
522 Float_t epsil = 1.0e-4;
523 Float_t stmin = -0.001;
525 //////////////////////////////////////////////////////////////////////////
527 //////////////////////////////////////////////////////////////////////////
529 AliMaterial( 1, "Al" , 26.98, 13.0, 2.7 , 8.9 , 37.2);
530 AliMaterial( 4, "Xe" , 131.29, 54.0, dxe , 1546.16, 0.0);
531 AliMaterial( 5, "Cu" , 63.54, 29.0, 8.96 , 1.43, 14.8);
532 AliMaterial( 6, "C" , 12.01, 6.0, 2.265 , 18.8 , 74.4);
533 AliMaterial(15, "Sn" , 118.71, 50.0, 7.31 , 1.21, 14.8);
534 AliMaterial(16, "Si" , 28.09, 14.0, 2.33 , 9.36, 37.2);
535 AliMaterial(18, "Fe" , 55.85, 26.0, 7.87 , 1.76, 14.8);
538 AliMixture(2, "Air" , aAir, zAir, dAir, 4, wAir );
539 AliMixture(3, "Polyethilene", ape, zpe, dpe, -2, wpe );
540 AliMixture(8, "CO2", aco, zco, dco, -2, wco );
541 AliMixture(9, "Isobutane", ais, zis, dis, -2, wis );
542 AliMixture(10,"Gas mixture", aXeCO2, zXeCO2, dgm, -3, wXeCO2);
543 AliMixture(12,"G10", aG10, zG10, dG10, 4, wG10 );
544 AliMixture(13,"Water", awa, zwa, dwa, -2, wwa );
545 AliMixture(14,"Plexiglas", apg, zpg, dpg, -3, wpg );
546 AliMixture(17,"Epoxy", aEpoxy, zEpoxy, dEpoxy, -3, wEpoxy);
547 AliMixture(19,"Araldite", aAral, zAral, dAral, -3, wAral );
549 //////////////////////////////////////////////////////////////////////////
550 // Tracking Media Parameters
551 //////////////////////////////////////////////////////////////////////////
554 AliMedium( 1,"Al Frame" , 1,0,isxfld,sxmgmx
555 ,tmaxfd,stemax,deemax,epsil,stmin);
557 AliMedium( 2,"Air" , 2,0,isxfld,sxmgmx
558 ,tmaxfd,stemax,deemax,epsil,stmin);
560 AliMedium( 3,"Wires" , 5,0,isxfld,sxmgmx
561 ,tmaxfd,stemax,deemax,epsil,stmin);
562 // All other ROB materials (caps, etc.)
563 AliMedium( 4,"ROB Other" , 5,0,isxfld,sxmgmx
564 ,tmaxfd,stemax,deemax,epsil,stmin);
566 AliMedium( 5,"Padplane" , 5,1,isxfld,sxmgmx
567 ,tmaxfd,stemax,deemax,epsil,stmin);
569 AliMedium( 6,"Readout" , 5,0,isxfld,sxmgmx
570 ,tmaxfd,stemax,deemax,epsil,stmin);
572 AliMedium( 7,"C Frame" , 6,0,isxfld,sxmgmx
573 ,tmaxfd,stemax,deemax,epsil,stmin);
574 // INOX of cooling bus bars
575 AliMedium( 8,"Cooling bus",18,0,isxfld,sxmgmx
576 ,tmaxfd,stemax,deemax,epsil,stmin);
577 // Gas-mixture (Xe/CO2)
578 AliMedium( 9,"Gas-mix" ,10,1,isxfld,sxmgmx
579 ,tmaxfd,stemax,deemax,epsil,stmin);
581 AliMedium(10,"Nomex" ,12,0,isxfld,sxmgmx
582 ,tmaxfd,stemax,deemax,epsil,stmin);
584 AliMedium(11,"Glue" ,19,0,isxfld,sxmgmx
585 ,tmaxfd,stemax,deemax,epsil,stmin);
587 AliMedium(13,"G10-plates" ,12,0,isxfld,sxmgmx
588 ,tmaxfd,stemax,deemax,epsil,stmin);
590 AliMedium(14,"Water" ,13,0,isxfld,sxmgmx
591 ,tmaxfd,stemax,deemax,epsil,stmin);
592 // Rohacell (plexiglas) for the radiator
593 AliMedium(15,"Rohacell" ,14,0,isxfld,sxmgmx
594 ,tmaxfd,stemax,deemax,epsil,stmin);
596 AliMedium(16,"MCM-Al" , 1,0,isxfld,sxmgmx
597 ,tmaxfd,stemax,deemax,epsil,stmin);
599 AliMedium(17,"MCM-Sn" ,15,0,isxfld,sxmgmx
600 ,tmaxfd,stemax,deemax,epsil,stmin);
602 AliMedium(18,"MCM-Cu" , 5,0,isxfld,sxmgmx
603 ,tmaxfd,stemax,deemax,epsil,stmin);
605 AliMedium(19,"MCM-G10" ,12,0,isxfld,sxmgmx
606 ,tmaxfd,stemax,deemax,epsil,stmin);
607 // Si in readout chips
608 AliMedium(20,"Chip-Si" ,16,0,isxfld,sxmgmx
609 ,tmaxfd,stemax,deemax,epsil,stmin);
610 // Epoxy in readout chips
611 AliMedium(21,"Chip-Ep" ,17,0,isxfld,sxmgmx
612 ,tmaxfd,stemax,deemax,epsil,stmin);
614 AliMedium(22,"Conn-PE" , 3,0,isxfld,sxmgmx
615 ,tmaxfd,stemax,deemax,epsil,stmin);
617 AliMedium(23,"Chip-Cu" , 5,0,isxfld,sxmgmx
618 ,tmaxfd,stemax,deemax,epsil,stmin);
619 // Al of cooling pipes
620 AliMedium(24,"Cooling" , 1,0,isxfld,sxmgmx
621 ,tmaxfd,stemax,deemax,epsil,stmin);
623 AliMedium(25,"Serv-Cu" , 5,0,isxfld,sxmgmx
624 ,tmaxfd,stemax,deemax,epsil,stmin);
626 // Save the density values for the TRD absorbtion
633 //_____________________________________________________________________________
634 void AliTRD::DrawModule() const
637 // Draw a shaded view of the Transition Radiation Detector version 0
640 // Set everything unseen
641 gMC->Gsatt("*" ,"SEEN",-1);
643 // Set ALIC mother transparent
644 gMC->Gsatt("ALIC","SEEN", 0);
646 // Set the volumes visible
647 if (fGeometry->IsVersion() == 0) {
648 gMC->Gsatt("B071","SEEN", 0);
649 gMC->Gsatt("B074","SEEN", 0);
650 gMC->Gsatt("B075","SEEN", 0);
651 gMC->Gsatt("B077","SEEN", 0);
652 gMC->Gsatt("BTR1","SEEN", 0);
653 gMC->Gsatt("BTR2","SEEN", 0);
654 gMC->Gsatt("BTR3","SEEN", 0);
655 gMC->Gsatt("UTR1","SEEN", 0);
656 gMC->Gsatt("UTR2","SEEN", 0);
657 gMC->Gsatt("UTR3","SEEN", 0);
660 gMC->Gsatt("B071","SEEN", 0);
661 gMC->Gsatt("B074","SEEN", 0);
662 gMC->Gsatt("B075","SEEN", 0);
663 gMC->Gsatt("B077","SEEN", 0);
664 gMC->Gsatt("BTR1","SEEN", 0);
665 gMC->Gsatt("BTR2","SEEN", 0);
666 gMC->Gsatt("BTR3","SEEN", 0);
667 gMC->Gsatt("UTR1","SEEN", 0);
670 gMC->Gdopt("hide", "on");
671 gMC->Gdopt("shad", "on");
672 gMC->Gsatt("*", "fill", 7);
673 gMC->SetClipBox(".");
674 gMC->SetClipBox("*", 0, 2000, -2000, 2000, -2000, 2000);
676 gMC->Gdraw("alic", 40, 30, 0, 12, 9.4, .021, .021);
677 gMC->Gdhead(1111, "Transition Radiation Detector");
678 gMC->Gdman(18, 4, "MAN");
682 //_____________________________________________________________________________
683 Int_t AliTRD::DistancetoPrimitive(Int_t , Int_t )
686 // Distance between the mouse and the TRD detector on the screen
694 //_____________________________________________________________________________
698 // Initialize the TRD detector after the geometry has been created
701 AliDebug(1,"++++++++++++++++++++++++++++++++++++++++++++++");
703 if (fGeometry->IsVersion() != 1) {
704 AliError("Not a valid geometry");
706 // Special tracking options for charged particles for XeCO2
707 gMC->Gstpar((* fIdtmed)[9],"DRAY",1.0);
708 gMC->Gstpar((* fIdtmed)[9],"STRA",1.0);
712 //_____________________________________________________________________________
713 void AliTRD::LoadPoints(Int_t )
716 // Store x, y, z of all hits in memory.
717 // Hit originating from TR photons are given a different color
724 Int_t nhits = fHits->GetEntriesFast();
729 Int_t tracks = gAlice->GetMCApp()->GetNtrack();
731 fPoints = new TObjArray(tracks);
736 Int_t *ntrkE = new Int_t[tracks];
737 Int_t *ntrkT = new Int_t[tracks];
738 Int_t *limiE = new Int_t[tracks];
739 Int_t *limiT = new Int_t[tracks];
740 Float_t **coorE = new Float_t*[tracks];
741 Float_t **coorT = new Float_t*[tracks];
742 for(Int_t i = 0; i < tracks; i++) {
751 AliTRDpoints *points = 0;
754 Int_t chunk = nhits / 4 + 1;
756 // Loop over all the hits and store their position
757 ahit = (AliTRDhit *) FirstHit(-1);
761 if (ahit->GetCharge() >= 0) {
763 trk = ahit->GetTrack();
764 if (ntrkE[trk] == limiE[trk]) {
765 // Initialise a new track
766 fp = new Float_t[3*(limiE[trk]+chunk)];
768 memcpy(fp,coorE[trk],sizeof(Float_t)*3*limiE[trk]);
769 delete [] coorE[trk];
777 fp[3*ntrkE[trk] ] = ahit->X();
778 fp[3*ntrkE[trk]+1] = ahit->Y();
779 fp[3*ntrkE[trk]+2] = ahit->Z();
784 else if ((ahit->GetCharge() < 0) &&
787 trk = ahit->GetTrack();
788 if (ntrkT[trk] == limiT[trk]) {
789 // Initialise a new track
790 fp = new Float_t[3*(limiT[trk]+chunk)];
792 memcpy(fp,coorT[trk],sizeof(Float_t)*3*limiT[trk]);
793 delete [] coorT[trk];
801 fp[3*ntrkT[trk] ] = ahit->X();
802 fp[3*ntrkT[trk]+1] = ahit->Y();
803 fp[3*ntrkT[trk]+2] = ahit->Z();
808 ahit = (AliTRDhit *) NextHit();
812 for (trk = 0; trk < tracks; ++trk) {
814 if (ntrkE[trk] || ntrkT[trk]) {
816 points = new AliTRDpoints();
817 points->SetDetector(this);
818 points->SetParticle(trk);
820 // Set the dEdx points
822 points->SetMarkerColor(kWhite); //PH This is the default color in TRD
823 points->SetMarkerSize(1); //PH Default size=1
824 points->SetPolyMarker(ntrkE[trk],coorE[trk],1); //PH Default style=1
825 delete [] coorE[trk];
829 // Set the TR photon points
831 points->SetTRpoints(ntrkT[trk],coorT[trk]);
832 delete [] coorT[trk];
836 fPoints->AddAt(points,trk);
851 //_____________________________________________________________________________
852 void AliTRD::MakeBranch(Option_t *option)
855 // Create Tree branches for the TRD digits.
858 Int_t buffersize = 4000;
859 Char_t branchname[15];
860 sprintf(branchname,"%s",GetName());
862 const Char_t *cD = strstr(option,"D");
864 AliDetector::MakeBranch(option);
869 MakeBranchInTree(gAlice->TreeD(),branchname,&fDigits,buffersize,0);
874 //_____________________________________________________________________________
875 void AliTRD::ResetDigits()
878 // Reset number of digits and the digits array for this detector
889 //_____________________________________________________________________________
890 void AliTRD::SetTreeAddress()
893 // Set the branch addresses for the trees.
896 if (fLoader->TreeH() &&
898 fHits = new TClonesArray("AliTRDhit",405);
900 AliDetector::SetTreeAddress();
904 //_____________________________________________________________________________
905 AliTRD &AliTRD::operator=(const AliTRD &trd)
908 // Assignment operator
912 ((AliTRD &) trd).Copy(*this);