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