]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDtrackGTU.h
Ensure that the ADC array is only called for valid entries (AliTRDmcmSim) and bug...
[u/mrichter/AliRoot.git] / TRD / AliTRDtrackGTU.h
1 #ifndef ALITRDTRACKGTU_H
2 #define ALITRDTRACKGTU_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id: AliTRDtrackGTU.h 27496 2008-07-22 08:35:45Z cblume $ */
7
8 //---------------------------------------------------------------
9 //
10 // TRD track as calculated in the GTU (for L1 contribution)
11 //
12 //---------------------------------------------------------------
13
14 #include "TClonesArray.h"
15
16 #include "AliTRDtrackletGTU.h"
17 #include "AliESDTrdTrack.h"
18
19 class AliTRDtrackGTU : public TObject {
20  public:
21   AliTRDtrackGTU();
22   ~AliTRDtrackGTU();
23
24 // ----- Track properties
25   Int_t    GetPtInt() const { return fPt; }
26   Float_t  GetPt() const { return (Float_t) fPt / 128.; }
27   Int_t    GetPID() const { return fPID; }
28   Int_t    GetSector() const { return fSector; }
29   Int_t    GetStack() const { return fStack; }
30
31   AliESDTrdTrack* CreateTrdTrack() const;
32
33 // ----- compositing tracklets
34   Int_t    GetNTracklets() const;
35   Int_t    GetTrackletMask() const { return fTrackletMask; }
36   Bool_t   IsTrackletInLayer(Int_t layer) const;
37   Int_t    GetTrackletIndex(Int_t layer) { return IsTrackletInLayer(layer) ? ((AliTRDtrackletGTU*) (*fTracklets)[layer])->GetIndex() : -1; } 
38   AliTRDtrackletGTU* GetTracklet(Int_t layer);
39
40 // ----- Quantities used internally for the calculation
41   Float_t GetA() const { return fA; }
42   Float_t GetB() const { return fB; }
43   Float_t GetC() const { return fC; }
44   Int_t GetZChannel() const { return fZChannel; }
45   Int_t GetZSubChannel();
46   Int_t GetRefLayerIdx() const { return fRefLayerIdx; }
47   Int_t GetYapprox();
48
49
50   void AddTracklet(AliTRDtrackletGTU *tracklet, Int_t layer);
51
52   void SetStack(Int_t stack) { fStack = stack; }
53   void SetSector(Int_t sector) { fSector = sector; }
54   void SetPtInt(Int_t pt) { fPt = pt; }
55   void SetPID(Int_t pid) { fPID = pid; }
56
57   void SetZChannel(Int_t zch) { fZChannel = zch; }
58   void SetRefLayerIdx(Int_t reflayer) { fRefLayerIdx = reflayer; }
59 //  void SetInnerIntPoint(Float_t *x);
60 //  void SetOuterIntPoint(Float_t *x);
61   void SetFitParams(Float_t a, Float_t b, Float_t c);
62
63   Bool_t CookLabel();
64
65  protected:
66
67   Int_t fStack; // TRD stack to which this track belongs
68   Int_t fSector; // sector in which the track was found
69
70   Int_t fPt; // pt in integer representation
71   Int_t fPID; // PID calculated from tracklet PID
72
73   TClonesArray *fTracklets; // array holding the tracklets composing this track
74   Int_t fTrackletMask; // mask in which layers tracklets have been assigned
75   Int_t fNTracklets; // number of tracklets in this track
76
77   Int_t fRefLayerIdx; // index of the reference layer in which this track was found
78   Int_t fZChannel; // z-channel unit in which this track was found
79   Int_t fZSubChannel; // z-subchannel of the assigned tracklets
80
81   Float_t fA; // fit parameter of y' = a + b*x + c*z
82   Float_t fB; // fit parameter of y' = a + b*x + c*z
83   Float_t fC; // fit parameter of y' = a + b*x + c*z
84
85   Int_t fLabel; // MC label
86
87  private:
88   AliTRDtrackGTU(const AliTRDtrackGTU &rhs); // not implemented
89   AliTRDtrackGTU& operator=(const AliTRDtrackGTU &rhs); // not implemented
90
91   ClassDef(AliTRDtrackGTU, 1);
92 };
93
94 #endif