]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSEmcRecPoint.h
TPrincipal for the pi0 identification
[u/mrichter/AliRoot.git] / PHOS / AliPHOSEmcRecPoint.h
1 #ifndef ALIPHOSEMCRECPOINT_H
2 #define ALIPHOSEMCRECPOINT_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 //_________________________________________________________________________
9 //  RecPoint implementation for PHOS-EMC 
10 //  An EmcRecPoint is a cluster of digits   
11 //           
12 //*-- Author: Dmitri Peressounko (RRC KI & SUBATECH)
13
14 // --- ROOT system ---
15
16 //#include "TObject.h"
17 #include "TArrayI.h"
18  
19 // --- Standard library ---
20
21 // --- AliRoot header files ---
22
23 #include "AliPHOSDigit.h"
24 #include "AliPHOSRecPoint.h"
25
26 class AliPHOSEmcRecPoint : public AliPHOSRecPoint  {
27
28 public:
29
30   AliPHOSEmcRecPoint() ;
31   AliPHOSEmcRecPoint(const char * opt) ;
32   AliPHOSEmcRecPoint(const AliPHOSEmcRecPoint & rp) {
33     // cpy ctor requested by Coding Convention 
34     // but not yet needed
35     assert(0==1) ; 
36   } 
37  
38   virtual ~AliPHOSEmcRecPoint() ;  
39
40   virtual void  AddDigit(AliPHOSDigit & digit, Float_t Energy) ;          // add a digit to the digits list  
41   Int_t       Compare(const TObject * obj) const;                         // method for sorting  
42
43   virtual void  EvalAll(Float_t logWeight,TClonesArray * digits) ;
44
45   virtual void  ExecuteEvent(Int_t event, Int_t px, Int_t py) const; 
46
47   Float_t         GetCoreEnergy()const {return fCoreEnergy ;}
48   virtual Float_t GetDispersion()const {return fDispersion ;}
49   virtual void    GetElipsAxis(Float_t * lambda)const { lambda[0] = fLambda[0] ;
50                                                         lambda[1] = fLambda[1] ; }
51   Float_t *   GetEnergiesList() const {return fEnergyList ;}       // gets the list of energies making this recpoint
52   Float_t     GetMaximalEnergy(void) const ;                       // get the highest energy in the cluster
53   Int_t       GetMaximumMultiplicity() const {return fMaxDigit ;}  // gets the maximum number of digits allowed
54   Int_t       GetMultiplicity(void) const { return fMulDigit ; }   // gets the number of digits making this recpoint
55   Int_t       GetMultiplicityAtLevel(const Float_t level) const ;  // computes multiplicity of digits with 
56                                                                    // energy above relative level
57   Short_t     GetNExMax(void){return fNExMax ;} //Number of maxima found in cluster in unfolding:
58                                                 //0 : was no unfolging
59                                                 //-1: unfolding failed
60   void        SetNExMax(Int_t nmax){fNExMax = static_cast<Short_t>(nmax) ;}
61   virtual Int_t GetNumberOfLocalMax(AliPHOSDigit **  maxAt, Float_t * maxAtEnergy,
62                                     Float_t locMaxCut,TClonesArray * digits ) const ; 
63                                                                    // searches for the local maxima 
64   //returns number of local maxima in parent cluster or -2 if unfolding failed
65   Float_t     GetTime(void) const{return  fTime ; } 
66   Bool_t      IsEmc(void) const { return kTRUE ; }                 // true if the recpoint is in EMC
67   Bool_t      IsSortable() const {return kTRUE ; }                 // says that emcrecpoints are sortable objects 
68   void        Print(Option_t * opt = "void")const ; 
69   void        Purify(Float_t threshold) ;                          //Removes digits below threshold
70
71   AliPHOSEmcRecPoint & operator = (const AliPHOSEmcRecPoint & rvalue)  {
72     // assignement operator requested by coding convention but not needed
73     assert(0==1) ;
74     return *this ; 
75   }
76
77  protected:
78           void  EvalCoreEnergy(Float_t logWeight,TClonesArray * digits) ;             
79   virtual void  EvalLocalPosition(Float_t logWeight,TClonesArray * digits) ;// computes the position in the PHOS module 
80   virtual void  EvalDispersion(Float_t logWeight,TClonesArray * digits) ;   // computes the dispersion of the shower
81   virtual void  EvalElipsAxis(Float_t logWeight, TClonesArray * digits );   // computes the axis of shower ellipsoide
82           void  EvalTime( TClonesArray * digits );
83   virtual Bool_t AreNeighbours(AliPHOSDigit * digit1, AliPHOSDigit * digit2 ) const ;
84
85   Float_t fCoreEnergy ;       // energy in a shower core 
86   Float_t fLambda[2] ;        // shower ellipse axes
87   Float_t fDispersion ;       // shower dispersion
88   Float_t *fEnergyList ;      //[fMulDigit] energy of digits
89   Float_t fTime ;             // Time of the digit with maximal energy deposition
90   Short_t fNExMax ;           //number of (Ex-)maxima before unfolding
91   
92   ClassDef(AliPHOSEmcRecPoint,1)  // EMC RecPoint (cluster)
93
94 };
95
96 #endif // AliPHOSEMCRECPOINT_H