]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - T0/AliT0CalibData.h
Correct the way to access PHOS Calo Clusters from ESD
[u/mrichter/AliRoot.git] / T0 / AliT0CalibData.h
index fc9ce80314feebb8f090823e6f9f7369e3a56125..937c55323618a89f1bfaabd6fd961099a2ade05b 100644 (file)
@@ -31,52 +31,55 @@ class AliT0CalibData: public TNamed {
   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  GetTimeDelayLED(Int_t channel) const {return fTimeDelayLED[channel];}
-  Float_t* GetTimeDelayLED()  const  {return(float*) fTimeDelayLED;}
+  Float_t  GetTimeDelayDA(Int_t channel) const {return fTimeDelayDA[channel];}
+  Float_t* GetTimeDelayDA()  const  {return(float*) fTimeDelayDA;}
 
   
   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);}
+  //   TGraph *  GetAmpLED(Int_t ipmt) const   {return (TGraph*)fAmpLED.At(ipmt);}
+  //  Float_t  GetAmpLEDVal(Int_t ipmt, Float_t mv)  const 
+  //  {return((TGraph*)fAmpLED.At(ipmt))->Eval(mv);}
+   TGraph *  GetAmpLEDRec(Int_t ipmt) const   {return (TGraph*)fAmpLEDRec.At(ipmt);}
+  Float_t  GetAmpLEDRecVal(Int_t ipmt, Float_t mv)  const 
+      {return((TGraph*)fAmpLEDRec.At(ipmt))->Eval(mv);}
 
-  void SetSlewingLED(Int_t ipmt) ;
-  void SetSlewingRec(Int_t ipmt) ;
+  //  void SetAmpLED(Int_t ipmt) ;
+  void     SetAmpLEDRec(Int_t ipmt) ;
 
   void     SetTimeDelayCFD(Float_t val, Int_t channel) {fTimeDelayCFD[channel]=val;}
   void     SetTimeDelayCFD(Float_t* TimeDelay);
-  void     SetTimeDelayLED(Float_t val, Int_t channel) {fTimeDelayLED[channel]=val;}
-  void     SetTimeDelayLED(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     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     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  fTimeDelayLED[24]; // Coeff. for time delay (24 different cables & CFD )
-  Float_t fTimeDelayTVD; //time delay for TVD (vertex trigger channel)
-  TObjArray fWalk;  //time - amp. walk
-  TObjArray fSlewingLED;  //time - amp.LED slew
-  TObjArray fSlewingRec;  //time - amp. LED slew for reconstruction
+  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 fAmpLEDRec;  //time - amp. LED-CFD for reconstruction
   TMap fLookup;           //lookup table
   Int_t fNumberOfTRMs;    // number of TRMs in setup
 
   //
-  ClassDef(AliT0CalibData,4)    // T0 Sensor Calibration data
+  ClassDef(AliT0CalibData,7)    // T0 Sensor Calibration data
 };
 
 typedef AliT0CalibData AliSTARTCalibData; // for backward compatibility