]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFpidESD.h
Split DAQ DA into two tasks
[u/mrichter/AliRoot.git] / TOF / AliTOFpidESD.h
index 938b4e7491821e07463ae2b18b7f6a3151c611f0..281b365464bd410fda8627b9da4e26ab97614557 100644 (file)
@@ -1,83 +1,40 @@
 #ifndef ALITOFPIDESD_H
 #define ALITOFPIDESD_H
+
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
 //-------------------------------------------------------
 //                    TOF PID class
-// A very naive design... Should be made better by the detector experts...
 //   Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch 
 //-------------------------------------------------------
 
-#include <TObject.h>
-#include <TMath.h>
+#include "TObject.h"
+
+class AliESDEvent;
 
 class AliTOFGeometry;
-class AliESD;
-class TFile;
-class TTree;
 
 class AliTOFpidESD : public TObject {
 enum {kMaxCluster=77777}; //maximal number of the TOF clusters
 public:
-  AliTOFpidESD(){fR=376.; fDy=2.5; fDz=3.5; fN=0; fEventN=0;}
-  AliTOFpidESD(Double_t *param);
-  ~AliTOFpidESD(){UnloadClusters();}
-
-  Int_t MakePID(AliESD *event);
-  Int_t LoadClusters(TTree *f, AliTOFGeometry *geom);
-  void  UnloadClusters();
-  void SetEventNumber(Int_t n) {fEventN=n;}
+ AliTOFpidESD();
+ AliTOFpidESD(Double_t *param);
+ ~AliTOFpidESD(){}
 
+  Int_t MakePID(AliESDEvent *event);
+  Int_t MakePID(AliESDEvent *event, Double_t timeZero);
+  void  SetEventNumber(Int_t n) {fEventN=n;}
   Int_t GetEventNumber() const {return fEventN;}
 
-public:
-  class AliTOFcluster {
-  public:
-    AliTOFcluster(Double_t *h, Int_t *l,Int_t idx) {
-      fR=h[0]; fPhi=h[1]; fZ=h[2]; fTDC=h[3]; fADC=h[4];
-      fLab[0]=l[0]; fLab[1]=l[1]; fLab[2]=l[2];
-      fIdx=idx;
-    }
-    void Use() {fADC=-fADC;}
-
-    Double_t GetR() const {return fR;}
-    Double_t GetPhi() const {return fPhi;}
-    Double_t GetZ()   const {return fZ;}
-    Double_t GetTDC() const {return fTDC;}
-    Double_t GetADC() const {return TMath::Abs(fADC);}
-    Int_t IsUsed() const {return (fADC<0) ? 1 : 0;}
-    Int_t GetLabel(Int_t n) const {return fLab[n];}
-    Int_t GetIndex() const {return fIdx;}
-  private:
-    Int_t fLab[3]; //track labels
-    Double_t fR;   //r-coordinate
-    Double_t fPhi; //phi-coordinate
-    Double_t fZ;   //z-coordinate
-    Double_t fTDC; //TDC count
-    Double_t fADC; //ADC count
-    Int_t fIdx;    //index of this cluster
-  };
-
 private:
-  Int_t InsertCluster(AliTOFcluster *c);
-  Int_t FindClusterIndex(Double_t z) const;
-
-  Int_t fEventN;          //event number
-
-  Double_t fR;            // mean readius of the TOF barrel
-  Double_t fDy;           // size of the TOF cell in R*Phi
-  Double_t fDz;           // size of the TOF cell in Z
-
+  Int_t fN;               // number of the TOF clusters
+  Int_t fEventN;          // event number
   Double_t fSigma;        // intrinsic TOF resolution
   Double_t fRange;        // one particle type PID range (in sigmas)
 
-  Int_t fN;                  // number of the TOF clusters
-  AliTOFcluster *fClusters[kMaxCluster];  // pointers to the TOF clusters
-
   ClassDef(AliTOFpidESD,1)   // TOF PID class
 };
 
 #endif
-
-