]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSHit.h
Modification needed to include PHOS in the global trigger framework
[u/mrichter/AliRoot.git] / PHOS / AliPHOSHit.h
index 397584c0c30d48b05bf43ac8e8e3c5bf987013bd..2dc855cdc8c8e7d44a1f3c3dd8b73a7983a918ce 100644 (file)
@@ -3,42 +3,67 @@
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
-////////////////////////////////////////////////
-//  Hits class for PHOS                     //
-//  Version SUBATECH                          //
-//  Author M. Volkov, RRC KI                  //
-//  october 1999:                             // 
-//            Modified by Y. Schutz SUBATECH  //
-////////////////////////////////////////////////
+/* $Id$ */
+
+//_________________________________________________________________________
+//  Hits class for PHOS     
+//  A hit in PHOS is the sum of all hits in a single crystal
+//               
+//*-- Author: Maxime Volkov (RRC KI) & Yves Schutz (SUBATECH)
 
 // --- ROOT system ---
 
 // --- AliRoot header files ---
 #include "AliHit.h"
-#include <iostream.h>
 
-class AliPHOSHit : public AliHit {
+// --- Standard library ---
 
-protected:
 
-  Int_t     fId ;        // Absolute Id number of PHOS Xtal or PPSD pad
-  Float_t   fELOS ;      // Energy deposited
-  
-public:
+class AliPHOSHit : public AliHit {
 
-  AliPHOSHit() {}
-  AliPHOSHit(Int_t shunt, Int_t track, Int_t id, Float_t *hits) ;
-  virtual ~AliPHOSHit(void) {}
+//   friend ostream& operator << (ostream&, const AliPHOSHit&) ;
+  
+ public:
   
-  Float_t GetEnergy(void)   const { return fELOS ; }
-  Int_t   GetId(void)       const { return fId ; }
+  AliPHOSHit() {
+    // default ctor 
+  }
+  AliPHOSHit(const AliPHOSHit & hit) ; 
+  AliPHOSHit(Int_t shunt, Int_t tracknumber, Int_t id, Float_t *hits);
+  virtual ~AliPHOSHit(void) {
+    // dtor 
+  }  
   
+  Float_t GetEnergy(void)   const { 
+    // returns the energy loss for this hit 
+    return fELOS ; 
+  }
+  Int_t   GetId(void)       const { 
+    // return the identificator of this his
+    return fId ; 
+  }
+  Int_t   GetPrimary(void)  const { 
+    // returns the primary particle id at the origine of this hit 
+    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:
 
-  friend ostream& operator << (ostream&, const AliPHOSHit&) ;
+  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)  // Hits object for PHOS
+  ClassDef(AliPHOSHit,1)  // Hit for PHOS
 
 } ;