]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFcluster.h
CRT becomes ACORDE
[u/mrichter/AliRoot.git] / TOF / AliTOFcluster.h
index 0de5bc677acdb434a6d5e46a1c36e596985abadd..9b79884af75485862b8d312720538951d8aa083b 100644 (file)
@@ -1,19 +1,25 @@
 #ifndef ALITOFCLUSTER_H
 #define ALITOFCLUSTER_H
+
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
-// AliTOFcluster Class
 
-/* $Id $ */
+/* $Id$ */
 
-#include "TMath.h"
+//////////////////////////////////////////////
+//                                          //
+//     Class for TOF cluster definition     //
+//                                          //
+//////////////////////////////////////////////
 
+#include "TMath.h"
 #include "TObject.h"
 
 class AliTOFcluster : public TObject {
  public:
   AliTOFcluster(); // default ctor
-  AliTOFcluster(Double_t *h, Int_t *l, Int_t *ind, Int_t idx); // ctor
+  AliTOFcluster(Double_t *h, Int_t *l, Int_t *ind, Int_t idx, Float_t ToT, Double_t TdcND, Bool_t status); // ctor
+  AliTOFcluster(Double_t *h, Int_t *l, Int_t *ind, Int_t idx, Float_t ToT, Double_t TdcND); // ctor
   AliTOFcluster(Double_t *h, Int_t *ind); // new ctor
   AliTOFcluster(const AliTOFcluster & cluster); // copy ctor
   virtual ~AliTOFcluster(); // dtor
@@ -22,7 +28,9 @@ class AliTOFcluster : public TObject {
   Double_t GetPhi() const {return fPhi;} // Cluster Phi
   Double_t GetZ()   const {return fZ;}   // Cluster Z
   Double_t GetTDC() const {return fTDC;} // Cluster ToF
+  Double_t GetTDCND() const {return fTdcND;} // Cluster ToF
   Double_t GetADC() const {return TMath::Abs(fADC);}  // Cluster Charge
+  Double_t GetToT() const {return fToT;}  // Cluster Charge
   Int_t    IsUsed() const {return (fADC<0) ? 1 : 0;}  // Flagging
   Int_t    GetLabel(Int_t n) const  {return fLab[n];} // Labels of tracks in Cluster
   Int_t    GetDetInd(Int_t n) const {return fdetIndex[n];} // Cluster Detector Indeces
@@ -30,6 +38,11 @@ class AliTOFcluster : public TObject {
   void     Use() {fADC=-fADC;}
   Double_t GetQuality() const {return fQuality;}
   void     SetQuality(Double_t quality) {fQuality = quality;}
+  Bool_t   GetStatus() const {return fStatus;}
+  void     SetStatus(Bool_t status) {fStatus = status;}
+  void     SetToT(Float_t ToT) {fToT = ToT;}
+  void     SetTDC(Float_t Tdc) {fTDC = Tdc;}
+  void     SetTDCND(Float_t Tdc) {fTdcND = Tdc;}
  private:
 
   Int_t fLab[3];      // track labels
@@ -41,7 +54,11 @@ class AliTOFcluster : public TObject {
   Double_t fTDC;      // TDC count
   Double_t fADC;      // ADC count
   Double_t fQuality;  // quality of the best track 
-  ClassDef(AliTOFcluster, 1) // TOF cluster
+  Float_t  fToT;       // ToT
+  Double_t fTdcND;      // TDC count
+  Bool_t   fStatus;      // cluster online status 
+
+  ClassDef(AliTOFcluster, 3) // TOF cluster
 };
 
 #endif