]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSRecPoint.h
Unecessary copy of AliPHOSHit object has been removed from AddHit member function...
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRecPoint.h
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 //_________________________________________________________________________
6 //  Base Class for PHOS Reconstructed Points  
7 //  A recpoint being equivalent to a cluster in encal terminology                 
8 //*-- Author: Gines Martinez (SUBATECH)
9
10 #include <assert.h>
11
12 // --- ROOT system ---
13
14 #include "TMarker.h"
15 #include "TGraph.h"
16 #include "TPaveText.h"
17
18 // --- Standard library ---
19
20 // --- AliRoot header files ---
21
22 #include "AliRecPoint.h"
23 #include "AliPHOSDigit.h"
24
25 class AliPHOSRecPoint : public AliRecPoint {
26
27  public:
28   
29   typedef TObjArray RecPointsList ; 
30
31   AliPHOSRecPoint() ;                   // ctor         
32   AliPHOSRecPoint(const AliPHOSRecPoint & rp) {
33     // cpy ctor requested by Coding Convention 
34     // but not yet needed
35     assert(0==1) ; 
36   } 
37   
38   virtual ~AliPHOSRecPoint(){
39     // dtor
40   }
41   virtual  void   AddDigit(AliDigitNew &){
42     // do not use this definition but the one below
43     assert(0==1) ; 
44   }
45   virtual  void   AddDigit(AliPHOSDigit & digit, Float_t Energy) = 0 ; 
46   virtual Int_t   Compare(const TObject * obj) const = 0 ;   
47   virtual Int_t   DistancetoPrimitive(Int_t px, Int_t py);
48   virtual void    Draw(Option_t * option="") ;
49   virtual void    ExecuteEvent(Int_t event, Int_t px, Int_t py) ;
50   virtual void    EvalAll(Float_t logWeight,TClonesArray * digits) ;  
51   virtual void    EvalPHOSMod(AliPHOSDigit * digit) ;  
52   virtual void    EvalPrimaries(TClonesArray * digits) ;  
53   virtual Int_t   GetPHOSMod(void) const {return fPHOSMod ; }
54   virtual Int_t * GetPrimaries(Int_t & number) const {number = fMulTrack ; 
55                                                       return fTracksList ; }
56   virtual Bool_t  IsEmc(void)const { return kTRUE ;  } 
57   virtual Bool_t  IsSortable() const { 
58     // tells that this is a sortable object
59     return kTRUE ; 
60   }  
61   virtual void    Paint(Option_t * option="");
62   virtual void    Print(Option_t * opt = "void") const {
63     // Print prototype
64   } 
65
66   AliPHOSRecPoint & operator = (const AliPHOSRecPoint & )  {
67     // assignement operator requested by coding convention but not needed
68     assert(0==1) ;
69     return *this ; 
70   }
71
72 protected:
73   
74   Int_t fPHOSMod ;      // PHOS Module number in which the RecPoint is found
75   
76   ClassDef(AliPHOSRecPoint,1) // RecPoint for PHOS (Base Class)
77  
78 };
79
80 #endif // AliPHOSRECPOINT_H