]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - BCM/AliBCMHit.h
added slewing correction by data
[u/mrichter/AliRoot.git] / BCM / AliBCMHit.h
index b7b88c190ed1c3571309fce518d5f9d9d1613eb7..39141baf69d150ea8f4d8d3f46b8066c99f16df2 100644 (file)
@@ -13,12 +13,14 @@ class AliBCMHit : public AliHit
 {
  public:
     AliBCMHit();
-    AliBCMHit(Int_t shunt, Int_t track, Double_t x[3], Int_t isens, Float_t edep);
-    Int_t Id() { return fId; }
-    
+    AliBCMHit(Int_t shunt, Int_t track, Double_t x[4], Int_t isens, Float_t edep);
+    Int_t    Id()   const { return fId;   }
+    Float_t  Edep() const { return fEdep; }
+    Float_t  Time() const { return fTime; }
  private:
     Int_t fId;      // ID of the sensor (11, 12, 13, 14) for z > 0 and (21, 22, 23, 24) for z < 0
     Float_t fEdep;  // Deposited energy [GeV]
+    Float_t fTime;  // Time of hit
     
     ClassDef(AliBCMHit, 1) // BCM hit class 
 };