]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSHit.h
Comments are added
[u/mrichter/AliRoot.git] / PHOS / AliPHOSHit.h
index d653289e056370e8139f3db68889acfc9b750880..af937aac0d492d735e63e89b84fd733a8d4e3103 100644 (file)
 
 // --- Standard library ---
 
-#include <iostream.h>
 
 class AliPHOSHit : public AliHit {
 
-  friend ostream& operator << (ostream&, const AliPHOSHit&) ;
+//   friend ostream& operator << (ostream&, const AliPHOSHit&) ;
   
  public:
   
-  AliPHOSHit() {
+  AliPHOSHit() : fId(0),fELOS(0),fTime(0) {
     // default ctor 
   }
   AliPHOSHit(const AliPHOSHit & hit) ; 
-  AliPHOSHit(Int_t shunt, Int_t primary, Int_t tracknumber, Int_t id, Float_t *hits, Int_t pid) ;
+  AliPHOSHit(Int_t shunt, Int_t tracknumber, Int_t id, Float_t *hits);
   virtual ~AliPHOSHit(void) {
     // dtor 
   }  
@@ -45,19 +44,24 @@ class AliPHOSHit : public AliHit {
   }
   Int_t   GetPrimary(void)  const { 
     // returns the primary particle id at the origine of this hit 
-    return fPrimary ; 
+    return fTrack ; 
   }
 
+  Float_t GetTime(void)     const {
+    // returns the time of the first energy deposition
+    return fTime ;
+  }
+
+
   Bool_t operator == (AliPHOSHit const &rValue) const ;
-  AliPHOSHit operator + (const AliPHOSHit& rValue) const ;
+  AliPHOSHit operator + (const AliPHOSHit& rValue) ;
 
 
  private:
 
-  Int_t     fId ;        // Absolute Id number of PHOS Xtal or PPSD pad
-  Float_t   fELOS ;      // Energy deposited
-  Int_t     fPid ;       // type of the particle that initiates that hit 
-  Int_t     fPrimary ;   // Primary particles at the origine of the hit
+  Int_t          fId ;        // Absolute Id number of PHOS Xtal or PPSD pad
+  Float_t        fELOS ;      // Energy deposited
+  Float_t        fTime ;      // Time of the energy deposition
 
   ClassDef(AliPHOSHit,1)  // Hit for PHOS