]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSRecParticle.h
Added README to PHOS/macros/Trigger/OCDB, explaining the content.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRecParticle.h
index 39ef741c0b009d06143fbca1ffe01f6ca18bb6a8..337131432baff256d5477a6d4bbe09be1b67fb4b 100644 (file)
 
 // --- ROOT system ---
 
-#include "TParticle.h"
-#include "TVector3.h"
-
 // --- Standard library ---
 
 // --- AliRoot header files ---
 
 #include "AliPHOSFastRecParticle.h"
 
+class TParticle ;
+#include  "TVector3.h"  
+
 class AliPHOSRecParticle : public AliPHOSFastRecParticle {
 
-public:
+ public:
   
-  AliPHOSRecParticle() {  }
+  AliPHOSRecParticle() 
   AliPHOSRecParticle(const AliPHOSRecParticle & rp) ;  // ctor
-  virtual ~AliPHOSRecParticle(){
-    // dtor
-  }
-
-  Int_t                 GetPHOSTSIndex(){    return fPHOSTrackSegment ;  }
-
-  Int_t *               GetPrimaries(Int_t & number) ;
-  
-  void                  SetTraskSegment(Int_t index){fPHOSTrackSegment = index; }
+  virtual ~AliPHOSRecParticle(){  }
+
+  Int_t   GetPHOSTSIndex()const {    return fPHOSTrackSegment ;  }
+  virtual Int_t GetNPrimariesToRecParticles() const ;
+  virtual Int_t GetNPrimaries() const ;
+  TVector3 GetPos() const { return fPos ; } 
+  virtual const TParticle * GetPrimary(Int_t index) const ;
+  virtual const TParticle * GetPrimary() const ;
+  Int_t GetPrimaryIndex() const ;
+  const Float_t *GetPID() { return fPID ; }
+  void    SetDebug() { fDebug = kTRUE ; } 
+  void    SetPID(Int_t type, Float_t weight) ; 
+  void    SetPos(TVector3 pos) { fPos.SetXYZ( pos.X(), pos.Y(), pos.Z() ); } 
+  void    UnsetDebug() { fDebug = kFALSE ; }
+  void    SetTrackSegment(Int_t index){fPHOSTrackSegment = index; }
 
   typedef TClonesArray RecParticlesList ; 
   
- private:
+private:
+  AliPHOSRecParticle & operator = (const AliPHOSRecParticle & /*rp*/);
+
+private:
 
   Int_t fPHOSTrackSegment ; // pointer to the associated track segment in PHOS  
-  
-  ClassDef(AliPHOSRecParticle,1)  // Reconstructed Particle
+  Bool_t fDebug ; // to steer debug output
+  TVector3 fPos ; // position in the global alice coordinate system 
+
+  ClassDef(AliPHOSRecParticle,3)  // Reconstructed Particle
 };
 
 #endif // AliPHOSRECPARTICLE_H