]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSRecPoint.h
overlapp between PUCP and PTCB corrected
[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"
ed4205d8 24#include "AliPHOSGeometry.h"
83974468 25
d15a28e7 26class AliPHOSRecPoint : public AliRecPoint {
27
88714635 28 public:
7609878c 29
30 typedef TObjArray RecPointsList ;
d15a28e7 31
32 AliPHOSRecPoint() ; // ctor
6c370def 33 AliPHOSRecPoint(const AliPHOSRecPoint & rp) {
34 // cpy ctor requested by Coding Convention
35 // but not yet needed
36 assert(0==1) ;
37 }
38
88714635 39 virtual ~AliPHOSRecPoint(){
40 // dtor
41 }
0a6d52e3 42 virtual void AddDigit(AliDigitNew &){
43 // do not use this definition but the one below
44 assert(0==1) ;
45 }
83974468 46 virtual void AddDigit(AliPHOSDigit & digit, Float_t Energy) = 0 ;
2731cd1e 47 virtual Int_t Compare(const TObject * obj) const = 0 ;
cf239357 48 virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
49 virtual void Draw(Option_t * option="") ;
50 virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py) ;
2731cd1e 51 virtual void EvalAll(Float_t logWeight,TClonesArray * digits) ;
52 virtual void EvalPHOSMod(AliPHOSDigit * digit) ;
53 virtual void EvalPrimaries(TClonesArray * digits) ;
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="");
88714635 63 virtual void Print(Option_t * opt = "void") {
64 // Print prototype
65 }
d15a28e7 66
2f04ed65 67 AliPHOSRecPoint & operator = (const AliPHOSRecPoint & ) {
6c370def 68 // assignement operator requested by coding convention
69 // but not needed
70 assert(0==1) ;
71 return *this ;
72 }
73
ed4205d8 74protected:
9f616d61 75
83974468 76 Int_t fPHOSMod ; // PHOS Module number in which the RecPoint is found
ed4205d8 77
b2a60966 78 ClassDef(AliPHOSRecPoint,1) // RecPoint for PHOS (Base Class)
d15a28e7 79
80};
81
82#endif // AliPHOSRECPOINT_H