]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSPpsdRecPoint.h
Access function to local momenta renamed.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSPpsdRecPoint.h
CommitLineData
d15a28e7 1#ifndef ALIPHOSPPSDRECPOINT_H
2#define ALIPHOSPPSDRECPOINT_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// A RecPoint (cluster) in the PPSD
10// A PPSD RecPoint ends up to be a single digit
2f04ed65 11// Oh yeah
b2a60966 12//*-- Yves Schutz (SUBATECH)
d15a28e7 13
14// --- ROOT system ---
15
16// --- Standard library ---
17
18// --- AliRoot header files ---
19
20#include "AliPHOSDigit.h"
21#include "AliPHOSRecPoint.h"
22
23class AliPHOSPpsdRecPoint : public AliPHOSRecPoint {
24
25public:
26
b2a60966 27 AliPHOSPpsdRecPoint() ; // ctor
88714635 28 virtual ~AliPHOSPpsdRecPoint(){
29 // dtor
30 }
83974468 31 virtual void AddDigit(AliPHOSDigit & digit, Float_t Energy) ;
2a941f4e 32 Int_t Compare(const TObject * obj) const; // method to sort clusters
ad8cfaf4 33 void EvalAll() ;
34 void EvalLocalPosition() ; // computes the position in the module of the cluster center
35 Float_t GetDelta(void) const {return fDelta ; } // returns the parameter used for sorting
36 Int_t GetMultiplicity(void) const { return fMulDigit ; } // returns the multiplicity of digits at
37 // the origin of this recpoint
38 Int_t GetMaximumMultiplicity() const { return fMaxDigit ; } // returns the maximum allowed digit multiplicity
39 Bool_t GetUp() const ; // true if cluster is in upper ppsd
40 Bool_t IsEmc(void) const {return kFALSE ; } // tells that this is not a EMC
41 Bool_t IsSortable() const { return kTRUE ; } // tells that this is a sortable object
9f616d61 42 virtual void Paint(Option_t * option="");
6ad0bfa0 43 void Print(Option_t * opt = "void") ;
d15a28e7 44
d15a28e7 45private:
46
47 Float_t fDelta ; // parameter used for sorting
d15a28e7 48
b2a60966 49 ClassDef(AliPHOSPpsdRecPoint,1) // PPSD RecPoint
d15a28e7 50
51};
52
53#endif // AliPHOSPPSDRECPOINT_H