]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDhit.h
Macro for Bari's 1D pattern recognition
[u/mrichter/AliRoot.git] / TRD / AliTRDhit.h
1 #ifndef ALITRDHIT_H
2 #define ALITRDHIT_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id: AliTRDhit.h,v */
7
8 ////////////////////////////////////////////////
9 //  Hit class for the TRD                     //
10 ////////////////////////////////////////////////
11
12 #include "AliHit.h"
13
14 //_____________________________________________________________________________
15 class AliTRDhit : public AliHit {
16  
17  public:
18
19   AliTRDhit();
20   AliTRDhit(Int_t shunt, Int_t track, Int_t *det, Float_t *hits);
21   virtual ~AliTRDhit();
22
23           Int_t   GetDetector() { return fDetector; };
24           Float_t GetCharge()   { return fQ;        };
25
26  protected:
27
28   Int_t        fDetector;   // TRD detector number
29   Float_t      fQ;          // Charge created by a hit (slow simulator only)
30  
31   ClassDef(AliTRDhit,2)     // Hit for the Transition Radiation Detector
32
33 };
34
35 #endif