]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCRecoParam.h
Use the doc file instead of the oofice (Marian)
[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 "AliDetectorRecoParam.h"
14
15 class AliTPCRecoParam : public AliDetectorRecoParam
16 {
17  public: 
18   AliTPCRecoParam();
19   virtual ~AliTPCRecoParam();
20   void     SetClusterSharing(Bool_t sharing){fBClusterSharing=sharing;}
21   Bool_t   GetClusterSharing() const {return fBClusterSharing;}
22   Double_t GetCtgRange() const     { return fCtgRange;}
23   Double_t GetMaxSnpTracker() const{ return fMaxSnpTracker;}
24   Double_t GetMaxSnpTrack() const  { return fMaxSnpTrack;}
25   //
26   Bool_t   DumpSignal()     const  { return fDumpSignal;}
27   Int_t    GetFirstBin() const     { return fFirstBin;}
28   Int_t    GetLastBin() const      { return fLastBin;}
29   void     SetTimeBinRange(Int_t first, Int_t last){ fFirstBin = first; fLastBin = last;}
30   Bool_t   GetCalcPedestal()       const  { return fBCalcPedestal;}
31   Bool_t   GetDoUnfold()           const  { return fBDoUnfold;}
32   void     SetDoUnfold(Bool_t unfold)     { fBDoUnfold = unfold;}
33   Float_t  GetDumpAmplitudeMin()   const  { return fDumpAmplitudeMin;}
34   Float_t  GetMaxNoise()           const  { return fMaxNoise;}  
35   Float_t  GetMinMaxCutAbs()       const  { return fMinMaxCutAbs; }
36   Float_t  GetMinLeftRightCutAbs() const  { return fMinLeftRightCutAbs;}  // minimal amplitude left right - PRF
37   Float_t  GetMinUpDownCutAbs()    const  { return fMinUpDownCutAbs;}  // minimal amplitude up-down - TRF 
38   Float_t  GetMinMaxCutSigma()       const  { return fMinMaxCutSigma; }
39   Float_t  GetMinLeftRightCutSigma() const  { return fMinLeftRightCutSigma;}  // minimal amplitude left right - PRF
40   Float_t  GetMinUpDownCutSigma()    const  { return fMinUpDownCutSigma;}  // minimal amplitude up-down - TRF 
41   Int_t    GetLastSeedRowSec()       const  { return fLastSeedRowSec;} 
42   //
43   void     SetDoKinks(Bool_t on)   { fBKinkFinder=on; }
44   Bool_t   GetDoKinks() const      { return fBKinkFinder;}
45   Float_t  GetMaxC()    const      { return fMaxC;}
46   Bool_t   GetSpecialSeeding() const { return fBSpecialSeeding;}
47   Bool_t   GetBYMirror() const { return fBYMirror;}
48   void     SetBYMirror(Bool_t mirror)  { fBYMirror = mirror;} //
49   static   AliTPCRecoParam *GetLowFluxParam();        // make reco parameters for low  flux env.
50   static   AliTPCRecoParam *GetHighFluxParam();       // make reco parameters for high flux env. 
51   static   AliTPCRecoParam *GetLaserTestParam(Bool_t bPedestal);  // special setting for laser 
52   static   AliTPCRecoParam *GetCosmicTestParam(Bool_t bPedestal); // special setting for cosmic  
53   //
54  protected:
55   Bool_t   fBClusterSharing; // allows or disable cluster sharing during tracking 
56   Double_t fCtgRange;        // +-fCtgRange is the ctg(Theta) window used for clusterization and tracking (MI) 
57   Double_t fMaxSnpTracker;   // max sin of local angle  - for TPC tracker
58   Double_t fMaxSnpTrack;     // max sin of local angle  - for track 
59   Bool_t   fBYMirror;        // mirror of the y - pad coordinate 
60   //
61   //   clusterer parameters
62   //
63   Bool_t   fDumpSignal;      // Dump Signal information flag
64   Int_t    fFirstBin;        // first time bin used by cluster finder
65   Int_t    fLastBin;         // last time bin  used by cluster finder 
66   Bool_t   fBCalcPedestal;   // calculate Pedestal
67   Bool_t   fBDoUnfold;       // do unfolding of clusters
68   Float_t  fDumpAmplitudeMin; // minimal amplitude of signal to be dumped 
69   Float_t  fMaxNoise;        // maximal noise sigma on pad to be used in cluster finder
70   Float_t  fMinMaxCutAbs;    // minimal amplitude at cluster maxima
71   Float_t  fMinLeftRightCutAbs;  // minimal amplitude left right - PRF
72   Float_t  fMinUpDownCutAbs;  // minimal amplitude up-down - TRF 
73   Float_t  fMinMaxCutSigma;    // minimal amplitude at cluster maxima
74   Float_t  fMinLeftRightCutSigma;  // minimal amplitude left right - PRF
75   Float_t  fMinUpDownCutSigma;  // minimal amplitude up-down - TRF 
76   //
77   //
78   Float_t  fMaxC;            // maximal curvature for tracking
79   Bool_t   fBSpecialSeeding; // special seeding with big inclination angles allowed (for Cosmic and laser)
80   Bool_t   fBKinkFinder;     // do kink finder reconstruction
81   Int_t    fLastSeedRowSec;     // Most Inner Row to make seeding for secondaries
82   ClassDef(AliTPCRecoParam, 2)
83 };
84
85
86 #endif