d15a28e7 |
1 | #ifndef ALIPHOSRECPOINT_H |
2 | #define ALIPHOSRECPOINT_H |
3 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
4 | * See cxx source for full Copyright notice */ |
5 | |
b2a60966 |
6 | //_________________________________________________________________________ |
7 | // Base Class for PHOS Reconstructed Points |
8 | // |
9 | //*-- Author: Gines Martinez (SUBATECH) |
d15a28e7 |
10 | |
11 | // --- ROOT system --- |
12 | |
9f616d61 |
13 | #include "TMarker.h" |
14 | #include "TGraph.h" |
15 | #include "TPaveText.h" |
16 | |
d15a28e7 |
17 | // --- Standard library --- |
18 | |
d15a28e7 |
19 | // --- AliRoot header files --- |
20 | |
21 | #include "AliRecPoint.h" |
22 | |
d15a28e7 |
23 | class AliPHOSRecPoint : public AliRecPoint { |
24 | |
25 | public: |
26 | |
27 | AliPHOSRecPoint() ; // ctor |
b2a60966 |
28 | virtual ~AliPHOSRecPoint(){} // dtor |
9f616d61 |
29 | virtual void AddDigit(AliDigitNew & digit, Float_t Energy) = 0 ; |
cf239357 |
30 | virtual Int_t DistancetoPrimitive(Int_t px, Int_t py); |
31 | virtual void Draw(Option_t * option="") ; |
32 | virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py) ; |
33 | virtual Int_t GetPHOSMod(void) ; |
b2a60966 |
34 | virtual Int_t * GetPrimaries(Int_t & number) ; |
cf239357 |
35 | virtual Bool_t IsEmc(void){return kTRUE ;} |
15605d3c |
36 | virtual void Paint(Option_t * option=""); |
cf239357 |
37 | virtual void Print(Option_t * opt = "void") {} |
d15a28e7 |
38 | |
39 | virtual Int_t Compare(TObject * obj) { assert(0==1) ; } |
40 | virtual Bool_t IsSortable() const { return kTRUE ; } |
41 | |
42 | protected: |
9f616d61 |
43 | |
b2a60966 |
44 | Int_t fPHOSMod ; // PHOS Module number in which the RecPoint is found |
d15a28e7 |
45 | |
b2a60966 |
46 | ClassDef(AliPHOSRecPoint,1) // RecPoint for PHOS (Base Class) |
d15a28e7 |
47 | |
48 | }; |
49 | |
50 | #endif // AliPHOSRECPOINT_H |