]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - T0/AliT0CalibData.h
Improvements in cmake functionality
[u/mrichter/AliRoot.git] / T0 / AliT0CalibData.h
index eac18a6b33a05958b73b6ab6e88b05a4266060cb..4ab4ef7b504924ebd9ec9473fd731e879c556e22 100644 (file)
@@ -9,14 +9,7 @@
 ////////////////////////////////////////////////
 
 #include "TNamed.h"
-#include "TF1.h"
-#include "AliT0CalibData.h"
 #include "TMap.h"
-#include "TGraph.h"
-#include "TString.h"
-#include "TObjArray.h"
-#include "AliT0.h"
-#include "AliT0LookUpValue.h"
 
 class AliT0CalibData: public TNamed {
 
@@ -26,61 +19,22 @@ class AliT0CalibData: public TNamed {
   AliT0CalibData(const AliT0CalibData &calibda);
   AliT0CalibData& operator= (const AliT0CalibData &calibda);
   virtual ~AliT0CalibData();
-  void Reset();
-  
-  virtual void  Print(Option_t* option= "") const; 
-  Float_t  GetTimeDelayCFD(Int_t channel) const {return fTimeDelayCFD[channel];}
-  Float_t* GetTimeDelayCFD()  const  {return(float*) fTimeDelayCFD;}
-  Float_t  GetTimeDelayDA(Int_t channel) const {return fTimeDelayDA[channel];}
-  Float_t* GetTimeDelayDA()  const  {return(float*) fTimeDelayDA;}
+  void     ReadAsciiLookup(const Char_t *filename);
+  Int_t    GetChannel(Int_t trm,  Int_t tdc, Int_t chain, Int_t channel);
+  void     PrintLookup(Option_t* option= "", Int_t iTRM=0, Int_t iTDC=0, Int_t iChannel=0) const;
+  TMap    *GetMapLookup(void) {return &fLookup;}
+  Int_t    GetNumberOfTRMs() const {return fNumberOfTRMs;}
+  void     SetNumberOfTRMs(Int_t ntrms=2) {fNumberOfTRMs = ntrms;}
 
-  
-  TGraph *GetWalk(Int_t ipmt )  const {return ((TGraph*)fWalk.At(ipmt));}
-  Float_t  GetWalkVal(Int_t ipmt, Float_t mv )  const {return ((TGraph*)fWalk.At(ipmt))->Eval(mv);}
-  void SetWalk(Int_t ipmt) ;
-
-   TGraph *  GetSlew(Int_t ipmt) const   {return (TGraph*)fSlewingLED.At(ipmt);}
-  Float_t  GetSlewingLED(Int_t ipmt, Float_t mv)  const 
-      {return((TGraph*)fSlewingLED.At(ipmt))->Eval(mv);}
-   TGraph *  GetSlewRec(Int_t ipmt) const   {return (TGraph*)fSlewingRec.At(ipmt);}
-  Float_t  GetSlewingRec(Int_t ipmt, Float_t mv)  const 
-      {return((TGraph*)fSlewingRec.At(ipmt))->Eval(mv);}
-
-  void SetSlewingLED(Int_t ipmt) ;
-  void SetSlewingRec(Int_t ipmt) ;
-
-  void     SetTimeDelayCFD(Float_t val, Int_t channel) {fTimeDelayCFD[channel]=val;}
-  void     SetTimeDelayCFD(Float_t* TimeDelay);
-  void     SetTimeDelayDA(Float_t val, Int_t channel) {fTimeDelayDA[channel]=val;}
-  void     SetTimeDelayDA(Float_t* TimeDelay);
-
-  void SetTimeDelayTVD(Int_t r=150)   { fTimeDelayTVD = r; };
-  Float_t GetTimeDelayTVD()   { return fTimeDelayTVD; }
-
-  void ReadAsciiLookup(const Char_t *filename);
-  Int_t GetChannel(Int_t trm,  Int_t tdc, Int_t chain, Int_t channel);
-  void PrintLookup(Option_t* option= "", Int_t iTRM=0, Int_t iTDC=0, Int_t iChannel=0) const;
-  TMap *GetMapLookup(void) {return &fLookup;}
-  Int_t GetNumberOfTRMs() const {return fNumberOfTRMs;}
-  void SetNumberOfTRMs(Int_t ntrms=2) {fNumberOfTRMs = ntrms;}
-
-  void SetMeanT0(Int_t mean=500) { fMeanT0 = mean; };
-  Int_t GetMeanT0 () {return fMeanT0;};
 
  protected:
 
-  Float_t  fTimeDelayCFD[24]; // Coeff. for time delay (24 different cables & CFD )
-  Float_t  fTimeDelayDA[24]; // number of channel with mean time+delay if vertex=0 )
-  Float_t fTimeDelayTVD; //time delay for TVD (vertex trigger channel)
-  Int_t fMeanT0; //mean of T0distribution with vertex=0;
-  TObjArray fWalk;  //time - amp. walk
-  TObjArray fSlewingLED;  //time - amp.LED slew
-  TObjArray fSlewingRec;  //time - amp. LED slew for reconstruction
   TMap fLookup;           //lookup table
   Int_t fNumberOfTRMs;    // number of TRMs in setup
 
   //
-  ClassDef(AliT0CalibData,5)    // T0 Sensor Calibration data
+  ClassDef(AliT0CalibData,8)    // T0 Sensor Calibration data
 };
 
 typedef AliT0CalibData AliSTARTCalibData; // for backward compatibility