]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSLink.h
Logics of high gain adding to digits has changed
[u/mrichter/AliRoot.git] / PHOS / AliPHOSLink.h
index 4c99393d617490e17a9193850d21bc585aee94b7..da46593b7fdd2f5caf2670c3bc058e34813b12d3 100644 (file)
@@ -23,14 +23,16 @@ class AliPHOSLink : public  TObject{
   
 public:
   
-  AliPHOSLink( Float_t r, Int_t EMC, Int_t PPSD) ;  // ctor            
+  AliPHOSLink() ;  // ctor            
+  AliPHOSLink( Float_t r, Int_t emc, Int_t cpv, Int_t track) ;  // ctor            
   virtual ~AliPHOSLink(){
     // dtor
   }
   Int_t   Compare(const TObject * obj) const;
   Int_t   GetEmc(void) const { return fEmcN; }
-  Int_t   GetPpsd(void) const { return fPpsdN ; }
+  Int_t   GetCpv(void) const { return fCpvN ; }
   Float_t GetR(void) const { return fR ; } 
+  Int_t   GetTrack(void) const { return fTrack ; }
   Bool_t  IsSortable() const{ 
     // tells if this is a sortable object 
     return kTRUE ; 
@@ -39,10 +41,11 @@ public:
 private:
   
   Int_t fEmcN ;  // Emc index
-  Int_t fPpsdN ; // Ppsd index 
-  Float_t fR ;   // Distance between EMC and PPSD RecPoints in a track segment 
+  Int_t fCpvN ;  // Cpv index 
+  Float_t fR ;   // Distance between EMC and CPV RecPoints in a track segment
+  Int_t fTrack;  // Charged tracked within a minimum distance of the EMC
   
-  ClassDef(AliPHOSLink,1)  // Auxilliary algorithm class used by AliPHOSTrackSegmentMaker
+  ClassDef(AliPHOSLink,2)  // Auxilliary algorithm class used by AliPHOSTrackSegmentMaker
 
 };