]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFcluster.h
Removing useless flag
[u/mrichter/AliRoot.git] / TOF / AliTOFcluster.h
index 9b5bbc49f8c9ebd721b95cc023cd2a127bd62a47..36aa6f39afa0e5de7e8f6d15f4abf0ee22953f74 100644 (file)
@@ -26,6 +26,7 @@ class AliTOFcluster : public AliCluster3D {
                Int_t *lab, Int_t * const ind, Int_t *par, 
                Bool_t status, Int_t idx); // ctor
   AliTOFcluster(const AliTOFcluster & cluster); // copy ctor
+  AliTOFcluster& operator = (const AliTOFcluster& cls);
   virtual ~AliTOFcluster(); // dtor
 
   // Getters and Setters
@@ -54,7 +55,10 @@ class AliTOFcluster : public AliCluster3D {
   void  SetTDCRAW(Int_t Tdc) {fTdcRAW = Tdc;} // Cluster ToF-raw setter
   void SetDeltaBC(Int_t value) {fDeltaBC = value;}; // deltaBC
   void SetL0L1Latency(Int_t value) {fL0L1Latency = value;}; // L0-L1 latency
-
+  //
+  void  SetESDID(Int_t id) {fESDID = id;}
+  Int_t GetESDID()  const  {return fESDID;}  
+  //
  private:
 
   Int_t fIdx;         // index of the digit related to this cluster
@@ -76,8 +80,10 @@ class AliTOFcluster : public AliCluster3D {
   Bool_t fStatus;     // cluster online status 
   Int_t fDeltaBC; // deltaBC
   Int_t fL0L1Latency; // L0L1 latency
+  //
+  Int_t fESDID;      //! id in ESD clusters list (if stored)
 
-  ClassDef(AliTOFcluster, 7) // TOF cluster
+  ClassDef(AliTOFcluster, 8) // TOF cluster
 };
 
 #endif