]> git.uio.no Git - u/mrichter/AliRoot.git/blob - CRT/AliCRThit.h
First version of CRT
[u/mrichter/AliRoot.git] / CRT / AliCRThit.h
1 ////////////////////////////////////////////////
2 //                                            //
3 //  Hit class for CRT                         //
4 //  Interface                                 //
5 //  Getters, Setters and member variables     //
6 //  declared here                             //
7 //                                            //
8 ////////////////////////////////////////////////
9
10 #ifndef ALICRTHIT_H
11 #define ALICRTHIT_H
12 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
13  * See cxx source for full Copyright notice                               */
14
15 /* $Id$ */
16
17 #include "AliHit.h"
18
19  
20 class AliCRThit : public AliHit {
21   
22 public:
23   AliCRThit() {}
24   AliCRThit(Int_t shunt, Int_t track, Int_t* vol, Float_t *hits);
25   AliCRThit(const AliCRThit & hit) ;
26   virtual ~AliCRThit() {}
27
28        // getters for AliCRThit object
29   Float_t   Getnmou() const {return fnmou;}
30   Float_t   Getmtyp()  const {return fmtyp;}
31   Float_t Getxpit()     const {return fxpit;}
32   Float_t Getypit()     const {return fypit;}
33   Float_t Getzpit()     const {return fzpit;}
34   Float_t Getpxug()     const {return fpxug;}
35   Float_t Getpyug()     const {return fpyug;}
36   Float_t Getpzug()     const {return fpzug;}
37   Float_t Getlay()     const {return flay;}
38   Float_t Getxver()     const {return fxver;}
39   Float_t Getyver()     const {return fyver;}
40   Float_t Getzver()     const {return fzver;}
41
42   Int_t fVolume;
43   Int_t fCopy;
44   Float_t      fnmou; 
45   Float_t      fmtyp;
46   Float_t    fxpit;      //
47   Float_t    fypit;    // 
48   Float_t    fzpit;    // 
49   Float_t    fpxug;     //
50   Float_t    fpyug;      //
51   Float_t    fpzug;      //
52   Float_t    flay;    //
53   Float_t    fxver;      //
54   Float_t    fyver;      //
55   Float_t    fzver;      //
56   
57 private:
58   
59   ClassDef(AliCRThit,1)  // Hit for CRT (ACORDE)
60
61 };
62
63 #endif /* ALICRTHIT_H */