]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
remove header with version number 4 ( 3 was skipped)
authoralla <alla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 17 Feb 2010 13:52:18 +0000 (13:52 +0000)
committeralla <alla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 17 Feb 2010 13:52:18 +0000 (13:52 +0000)
T0/AliT0RecoParam.h [deleted file]

diff --git a/T0/AliT0RecoParam.h b/T0/AliT0RecoParam.h
deleted file mode 100644 (file)
index 4a33483..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-#ifndef ALIT0RECOPARAM_H
-#define ALIT0RECOPARAM_H
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-///////////////////////////////////////////////////////////////////////////////
-//                                                                           //
-// Class with T0 reconstruction parameters                                  //
-//                                                                           //
-///////////////////////////////////////////////////////////////////////////////
-
-
-#include "AliDetectorRecoParam.h"
-
-class AliT0RecoParam : public AliDetectorRecoParam
-{
- public: 
-  AliT0RecoParam();
-  AliT0RecoParam(const AliT0RecoParam &p); //copy constructor
-  AliT0RecoParam& operator=(const AliT0RecoParam &p);
-  virtual ~AliT0RecoParam();
-   
- static   AliT0RecoParam *GetLowFluxParam();        // make reco parameters for low  flux env
-  static   AliT0RecoParam *GetHighFluxParam();       // make reco parameters for high flux env 
-  static   AliT0RecoParam *GetLaserTestParam();  // special setting for laser SetLaserTestParam 
-  //for monitoring
-  //  static   AliT0RecoParam *GetHistRange();  //  limit of monitoring histograms
-
-  Float_t GetRefAmp()  const  {return fRefAmp;}
-  void    SetRefAmp(Float_t amp)   { fRefAmp = amp;}
-  Int_t   GetRefPoint() const {return fRefPoint;}
-  void    SetRefPoint(Int_t ref) {fRefPoint = ref;}
-
-  Float_t   GetLow(Int_t numhist) const {return fLow[numhist];}
-  //  Float_t   GetLow() {return *fLow;}
-  void      SetLow(Int_t numhist, Float_t low) {fLow[numhist] = low;}
-
-  Float_t   GetHigh(Int_t numhist) const  {return fHigh[numhist];}
-  //  Float_t   GetHigh()  {return *fHigh;}
-  void      SetHigh(Int_t numhist, Float_t high) {fHigh[numhist] = high;}
-  
-  Float_t   GetLatencyL1() const {return fLatencyL1;}
-  void      SetLatencyL1(Float_t lat) {fLatencyL1 = lat;}
-  Float_t   GetLatencyHPTDC() const {return fLatencyHPTDC;}
-  void      SetLatencyHPTDC(Float_t lat) {fLatencyHPTDC = lat;}
-  Float_t   GetVertexShift() const {return fVertexShift;}
-  void      SetVertexShift(Float_t sh) {fVertexShift = sh;}
-
-  void PrintParameters() const;
-  
- protected:
-  Float_t   fRefAmp;            // for slewing correcton
-  Int_t     fRefPoint;          // #channel for RefPoint
-  Float_t   fLow[500];          //low limit of monitoring histograms
-  Float_t   fHigh[500];         //high limit of monitoring histograms
-  Float_t   fLatencyL1;         //Latency L1
-  Float_t   fLatencyHPTDC;      //Latency HPTDC
-  Float_t   fVertexShift;       // for slewing correcton
-
-  ClassDef(AliT0RecoParam, 4);
-
-};
-#endif