]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSRecPoint.h
Removed not used anymore ctor
[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 */
5
b2a60966 6//_________________________________________________________________________
7// Base Class for PHOS Reconstructed Points
8//
9//*-- Author: Gines Martinez (SUBATECH)
d15a28e7 10
11// --- ROOT system ---
12
9f616d61 13#include "TMarker.h"
14#include "TGraph.h"
15#include "TPaveText.h"
16
d15a28e7 17// --- Standard library ---
18
d15a28e7 19// --- AliRoot header files ---
20
21#include "AliRecPoint.h"
83974468 22#include "AliPHOSDigit.h"
23
d15a28e7 24class AliPHOSRecPoint : public AliRecPoint {
25
88714635 26 public:
d15a28e7 27
28 AliPHOSRecPoint() ; // ctor
6c370def 29 AliPHOSRecPoint(const AliPHOSRecPoint & rp) {
30 // cpy ctor requested by Coding Convention
31 // but not yet needed
32 assert(0==1) ;
33 }
34
88714635 35 virtual ~AliPHOSRecPoint(){
36 // dtor
37 }
83974468 38 virtual void AddDigit(AliPHOSDigit & digit, Float_t Energy) = 0 ;
88714635 39 virtual Int_t Compare(TObject * obj) {
40 // check why this is done
41 assert(0==1) ; return 1 ;
42 }
cf239357 43 virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
44 virtual void Draw(Option_t * option="") ;
45 virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py) ;
46 virtual Int_t GetPHOSMod(void) ;
b2a60966 47 virtual Int_t * GetPrimaries(Int_t & number) ;
88714635 48 virtual Bool_t IsEmc(void){
49 // says that this is a EMC
50 return kTRUE ;
51 }
52 virtual Bool_t IsSortable() const {
53 // tells that this is a sortable object
54 return kTRUE ;
55 }
15605d3c 56 virtual void Paint(Option_t * option="");
88714635 57 virtual void Print(Option_t * opt = "void") {
58 // Print prototype
59 }
d15a28e7 60
c0d5b57d 61 AliPHOSRecPoint & operator = (const AliPHOSRecPoint & rvalue) {
6c370def 62 // assignement operator requested by coding convention
63 // but not needed
64 assert(0==1) ;
65 return *this ;
66 }
67
88714635 68 protected:
9f616d61 69
83974468 70 Int_t fPHOSMod ; // PHOS Module number in which the RecPoint is found
d15a28e7 71
88714635 72 private:
73
74 typedef TObjArray RecPointsList ;
75
b2a60966 76 ClassDef(AliPHOSRecPoint,1) // RecPoint for PHOS (Base Class)
d15a28e7 77
78};
79
80#endif // AliPHOSRECPOINT_H