]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCRecoParam.h
AliTPCclusterInof is added to the cluster only as option
[u/mrichter/AliRoot.git] / TPC / AliTPCRecoParam.h
1 #ifndef ALITPCRECOPARAM_H
2 #define ALITPCRECOPARAM_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 ///////////////////////////////////////////////////////////////////////////////
7 //                                                                           //
8 // Class with TPC reconstruction parameters                                  //
9 //                                                                           //
10 ///////////////////////////////////////////////////////////////////////////////
11
12
13 #include "TObject.h"
14
15 class AliTPCRecoParam : public TObject
16 {
17  public: 
18   AliTPCRecoParam();
19   virtual ~AliTPCRecoParam();
20   Double_t GetCtgRange() const     { return fCtgRange;}
21   Double_t GetMaxSnpTracker() const{ return fMaxSnpTracker;}
22   Double_t GetMaxSnpTrack() const  { return fMaxSnpTrack;}
23   //
24   Bool_t   DumpSignal()     const  { return fDumpSignal;}
25   Int_t    GetFirstBin() const     { return fFirstBin;}
26   Int_t    GetLastBin() const      { return fLastBin;}
27   void     SetTimeBinRange(Int_t first, Int_t last){ fFirstBin = first; fLastBin = last;}
28   Bool_t   GetCalcPedestal()       const  { return fBCalcPedestal;}
29   Bool_t   GetDoUnfold()           const  { return fBDoUnfold;}
30   Float_t  GetDumpAmplitudeMin()   const  { return fDumpAmplitudeMin;}
31   Float_t  GetMaxNoise()           const  { return fMaxNoise;}  
32   Float_t  GetMinMaxCutAbs()       const  { return fMinMaxCutAbs; }
33   Float_t  GetMinLeftRightCutAbs() const  { return fMinLeftRightCutAbs;}  // minimal amplitude left right - PRF
34   Float_t  GetMinUpDownCutAbs()    const  { return fMinUpDownCutAbs;}  // minimal amplitude up-down - TRF 
35   Float_t  GetMinMaxCutSigma()       const  { return fMinMaxCutSigma; }
36   Float_t  GetMinLeftRightCutSigma() const  { return fMinLeftRightCutSigma;}  // minimal amplitude left right - PRF
37   Float_t  GetMinUpDownCutSigma()    const  { return fMinUpDownCutSigma;}  // minimal amplitude up-down - TRF 
38   Int_t    GetLastSeedRowSec()       const  { return fLastSeedRowSec;} 
39   //
40   Bool_t   GetDoKinks() const      { return fBKinkFinder;}
41   Float_t  GetMaxC()    const      { return fMaxC;}
42   Bool_t   GetSpecialSeeding() const { return fBSpecialSeeding;}
43   Bool_t   GetBYMirror() const { return fBYMirror;}
44   static   AliTPCRecoParam *GetLowFluxParam();        // make reco parameters for low  flux env.
45   static   AliTPCRecoParam *GetHighFluxParam();       // make reco parameters for high flux env. 
46   static   AliTPCRecoParam *GetLaserTestParam(Bool_t bPedestal);  // special setting for laser 
47   static   AliTPCRecoParam *GetCosmicTestParam(Bool_t bPedestal); // special setting for cosmic  
48   //
49  protected:
50   Double_t fCtgRange;        // +-fCtgRange is the ctg(Theta) window used for clusterization and tracking (MI) 
51   Double_t fMaxSnpTracker;   // max sin of local angle  - for TPC tracker
52   Double_t fMaxSnpTrack;     // max sin of local angle  - for track 
53   Bool_t   fBYMirror;        // mirror of the y - pad coordinate 
54   //
55   //   clusterer parameters
56   //
57   Bool_t   fDumpSignal;      // Dump Signal information flag
58   Int_t    fFirstBin;        // first time bin used by cluster finder
59   Int_t    fLastBin;         // last time bin  used by cluster finder 
60   Bool_t   fBCalcPedestal;   // calculate Pedestal
61   Bool_t   fBDoUnfold;       // do unfolding of clusters
62   Float_t  fDumpAmplitudeMin; // minimal amplitude of signal to be dumped 
63   Float_t  fMaxNoise;        // maximal noise sigma on pad to be used in cluster finder
64   Float_t  fMinMaxCutAbs;    // minimal amplitude at cluster maxima
65   Float_t  fMinLeftRightCutAbs;  // minimal amplitude left right - PRF
66   Float_t  fMinUpDownCutAbs;  // minimal amplitude up-down - TRF 
67   Float_t  fMinMaxCutSigma;    // minimal amplitude at cluster maxima
68   Float_t  fMinLeftRightCutSigma;  // minimal amplitude left right - PRF
69   Float_t  fMinUpDownCutSigma;  // minimal amplitude up-down - TRF 
70   //
71   //
72   Float_t  fMaxC;            // maximal curvature for tracking
73   Bool_t   fBSpecialSeeding; // special seeding with big inclination angles allowed (for Cosmic and laser)
74   Bool_t   fBKinkFinder;     // do kink finder reconstruction
75   Int_t    fLastSeedRowSec;     // Most Inner Row to make seeding for secondaries
76   ClassDef(AliTPCRecoParam, 2)
77 };
78
79
80 #endif