]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSRecPoint.h
Duplication of target AliPHOSTick.cxx removed
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRecPoint.h
CommitLineData
d15a28e7 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 */
b2a60966 5//_________________________________________________________________________
6// Base Class for PHOS Reconstructed Points
2f04ed65 7// A recpoint being equivalent to a cluster in encal terminology
b2a60966 8//*-- Author: Gines Martinez (SUBATECH)
d15a28e7 9
ed4205d8 10#include <assert.h>
11
d15a28e7 12// --- ROOT system ---
13
9f616d61 14#include "TMarker.h"
15#include "TGraph.h"
16#include "TPaveText.h"
17
d15a28e7 18// --- Standard library ---
19
d15a28e7 20// --- AliRoot header files ---
21
22#include "AliRecPoint.h"
83974468 23#include "AliPHOSDigit.h"
24
d15a28e7 25class AliPHOSRecPoint : public AliRecPoint {
26
88714635 27 public:
7609878c 28
29 typedef TObjArray RecPointsList ;
d15a28e7 30
31 AliPHOSRecPoint() ; // ctor
6c370def 32 AliPHOSRecPoint(const AliPHOSRecPoint & rp) {
33 // cpy ctor requested by Coding Convention
34 // but not yet needed
35 assert(0==1) ;
36 }
37
88714635 38 virtual ~AliPHOSRecPoint(){
39 // dtor
40 }
0a6d52e3 41 virtual void AddDigit(AliDigitNew &){
42 // do not use this definition but the one below
43 assert(0==1) ;
44 }
83974468 45 virtual void AddDigit(AliPHOSDigit & digit, Float_t Energy) = 0 ;
2731cd1e 46 virtual Int_t Compare(const TObject * obj) const = 0 ;
cf239357 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) ;
2731cd1e 50 virtual void EvalAll(Float_t logWeight,TClonesArray * digits) ;
51 virtual void EvalPHOSMod(AliPHOSDigit * digit) ;
52 virtual void EvalPrimaries(TClonesArray * digits) ;
4b45b217 53 virtual void GetGlobalPosition(TVector3 & gpos, TMatrix & gmat) const ; // return global position in ALICE
ad8cfaf4 54 virtual Int_t GetPHOSMod(void) const {return fPHOSMod ; }
2731cd1e 55 virtual Int_t * GetPrimaries(Int_t & number) const {number = fMulTrack ;
56 return fTracksList ; }
ad8cfaf4 57 virtual Bool_t IsEmc(void)const { return kTRUE ; }
88714635 58 virtual Bool_t IsSortable() const {
59 // tells that this is a sortable object
60 return kTRUE ;
61 }
15605d3c 62 virtual void Paint(Option_t * option="");
baef0810 63 virtual void Print(Option_t * opt = "void") const {
88714635 64 // Print prototype
65 }
d15a28e7 66
2f04ed65 67 AliPHOSRecPoint & operator = (const AliPHOSRecPoint & ) {
baef0810 68 // assignement operator requested by coding convention but not needed
6c370def 69 assert(0==1) ;
70 return *this ;
71 }
72
ed4205d8 73protected:
9f616d61 74
83974468 75 Int_t fPHOSMod ; // PHOS Module number in which the RecPoint is found
ed4205d8 76
b2a60966 77 ClassDef(AliPHOSRecPoint,1) // RecPoint for PHOS (Base Class)
d15a28e7 78
79};
80
81#endif // AliPHOSRECPOINT_H