]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSEmcRecPoint.h
Pointer fMHits set to 0 in the default constructor
[u/mrichter/AliRoot.git] / PHOS / AliPHOSEmcRecPoint.h
CommitLineData
d15a28e7 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
6ad0bfa0 6/* $Id$ */
7
b2a60966 8//_________________________________________________________________________
9// RecPoint implementation for PHOS-EMC
10// An EmcRecPoint is a cluster of digits
11//
12//*-- Author: Dmitri Peressounko (RRC KI & SUBATECH)
d15a28e7 13
14// --- ROOT system ---
15
7932f811 16//#include "TObject.h"
31aa6d6c 17#include "TArrayI.h"
18
d15a28e7 19// --- Standard library ---
20
21// --- AliRoot header files ---
22
23#include "AliPHOSDigit.h"
24#include "AliPHOSRecPoint.h"
25
26class AliPHOSEmcRecPoint : public AliPHOSRecPoint {
27
28public:
29
7932f811 30 AliPHOSEmcRecPoint() ;
6c370def 31 AliPHOSEmcRecPoint(const AliPHOSEmcRecPoint & rp) {
32 // cpy ctor requested by Coding Convention
33 // but not yet needed
34 assert(0==1) ;
35 }
36
83974468 37 virtual ~AliPHOSEmcRecPoint() ;
b2a60966 38
7932f811 39 virtual void AddDigit(AliPHOSDigit & digit, Float_t Energy) ; // add a digit to the digits list
2a941f4e 40 Int_t Compare(const TObject * obj) const; // method for sorting
7932f811 41
42 virtual void EvalAll(Float_t logWeight,TClonesArray * digits) ;
9688c1dd 43
baef0810 44 virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py) const;
7932f811 45
46 Float_t GetCoreEnergy()const {return fCoreEnergy ;}
47 virtual Float_t GetDispersion()const {return fDispersion ;}
48 virtual void GetElipsAxis(Float_t * lambda)const { lambda[0] = fLambda[0] ;
49 lambda[1] = fLambda[1] ; }
50 Float_t * GetEnergiesList() const {return fEnergyList ;} // gets the list of energies making this recpoint
ad8cfaf4 51 Float_t GetMaximalEnergy(void) const ; // get the highest energy in the cluster
52 Int_t GetMaximumMultiplicity() const {return fMaxDigit ;} // gets the maximum number of digits allowed
53 Int_t GetMultiplicity(void) const { return fMulDigit ; } // gets the number of digits making this recpoint
54 Int_t GetMultiplicityAtLevel(const Float_t level) const ; // computes multiplicity of digits with
55 // energy above relative level
7932f811 56 virtual Int_t GetNumberOfLocalMax(Int_t * maxAt, Float_t * maxAtEnergy,
57 Float_t locMaxCut,TClonesArray * digits ) const ;
58 // searches for the local maxima
9688c1dd 59 Float_t GetTime(void) const{return fTime ; }
ad8cfaf4 60 Bool_t IsEmc(void) const { return kTRUE ; } // true if the recpoint is in EMC
61 Bool_t IsSortable() const {return kTRUE ; } // says that emcrecpoints are sortable objects
cf239357 62 void Print(Option_t * opt = "void") ;
d15a28e7 63
c6e196df 64 AliPHOSEmcRecPoint & operator = (const AliPHOSEmcRecPoint & rvalue) {
baef0810 65 // assignement operator requested by coding convention but not needed
6c370def 66 assert(0==1) ;
67 return *this ;
68 }
69
7932f811 70 protected:
9688c1dd 71 void EvalCoreEnergy(Float_t logWeight,TClonesArray * digits) ;
72 virtual void EvalLocalPosition(Float_t logWeight,TClonesArray * digits) ;// computes the position in the PHOS module
73 virtual void EvalDispersion(Float_t logWeight,TClonesArray * digits) ; // computes the dispersion of the shower
74 virtual void EvalElipsAxis(Float_t logWeight, TClonesArray * digits ); // computes the axis of shower ellipsoide
75 void EvalTime( TClonesArray * digits );
7932f811 76 virtual Bool_t AreNeighbours(AliPHOSDigit * digit1, AliPHOSDigit * digit2 ) const ;
d15a28e7 77
baef0810 78 Float_t fCoreEnergy ; // energy in a shower core
79 Float_t fLambda[2] ; // shower ellipse axes
80 Float_t fDispersion ; // shower dispersion
81 Float_t *fEnergyList ; //[fMulDigit] energy of digits
9688c1dd 82 Float_t fTime ; // Time of the digit with maximal energy deposition
83974468 83
b2a60966 84 ClassDef(AliPHOSEmcRecPoint,1) // EMC RecPoint (cluster)
d15a28e7 85
86};
87
88#endif // AliPHOSEMCRECPOINT_H