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 */
6 ////////////////////////////////////////////////
7 // Base class for Reconstructed Points //
10 // Author Gines MARTINEZ SUBATECH //
13 ////////////////////////////////////////////////
15 // --- ROOT system ---
17 // --- Standard library ---
21 // --- AliRoot header files ---
23 #include "AliRecPoint.h"
26 class AliPHOSRecPoint : public AliRecPoint {
30 AliPHOSRecPoint() ; // ctor
31 virtual ~AliPHOSRecPoint() ; // dtor
32 virtual void AddDigit(AliDigitNew & digit, Float_t Energy) = 0 ;
33 virtual Int_t GetPHOSMod(void) ;
34 virtual Bool_t IsEmc(void){return kTRUE ;}
35 virtual void Print(Option_t * opt = "void") {}
37 virtual Int_t Compare(TObject * obj) { assert(0==1) ; }
38 virtual Bool_t IsSortable() const { return kTRUE ; }
46 ClassDef(AliPHOSRecPoint,1)
50 #endif // AliPHOSRECPOINT_H