X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TPC%2FAliTPCRecoParam.h;h=6e88d77e01032617e1c0dba732447ac3f7743bff;hb=9eeae5d5fe3da70c2cd59d3b416df275b4d6dab0;hp=4faa776cfe59fc1bb842ad948091b789a57c5fe3;hpb=b9cc16e42d0b2fe938218659592bd09cc4756e81;p=u%2Fmrichter%2FAliRoot.git diff --git a/TPC/AliTPCRecoParam.h b/TPC/AliTPCRecoParam.h index 4faa776cfe5..6e88d77e010 100644 --- a/TPC/AliTPCRecoParam.h +++ b/TPC/AliTPCRecoParam.h @@ -10,52 +10,152 @@ /////////////////////////////////////////////////////////////////////////////// -#include "TObject.h" +#include "AliDetectorRecoParam.h" -class AliTPCRecoParam : public TObject +class AliTPCRecoParam : public AliDetectorRecoParam { public: AliTPCRecoParam(); virtual ~AliTPCRecoParam(); + void SetClusterSharing(Bool_t sharing){fBClusterSharing=sharing;} + Bool_t GetClusterSharing() const {return fBClusterSharing;} Double_t GetCtgRange() const { return fCtgRange;} Double_t GetMaxSnpTracker() const{ return fMaxSnpTracker;} Double_t GetMaxSnpTrack() const { return fMaxSnpTrack;} + Double_t GetCutSharedClusters(Int_t index)const { return fCutSharedClusters[index];} + void SetCutSharedClusters(Int_t index, Float_t value){ fCutSharedClusters[index]=value;} + Int_t GetClusterMaxRange(Int_t index)const { return fClusterMaxRange[index];} + void SetClusterMaxRange(Int_t index, Int_t value){ fClusterMaxRange[index]=value;} // + Bool_t DumpSignal() const { return fDumpSignal;} + void SetTimeInterval(Int_t first, Int_t last) { fFirstBin=first, fLastBin =last;} Int_t GetFirstBin() const { return fFirstBin;} Int_t GetLastBin() const { return fLastBin;} void SetTimeBinRange(Int_t first, Int_t last){ fFirstBin = first; fLastBin = last;} - Bool_t GetCalcPedestal() const { return fBCalcPedestal;} - Bool_t GetDoUnfold() const { return fBDoUnfold;} - Float_t GetDumpAmplitudeMin() const { return fDumpAmplitudeMin;} - Float_t GetMaxNoise() const { return fMaxNoise;} + Bool_t GetCalcPedestal() const { return fBCalcPedestal;} + Bool_t GetDoUnfold() const { return fBDoUnfold;} + void SetDoUnfold(Bool_t unfold) { fBDoUnfold = unfold;} + Float_t GetDumpAmplitudeMin() const { return fDumpAmplitudeMin;} + Float_t GetMaxNoise() const { return fMaxNoise;} // + Float_t GetMinMaxCutAbs() const { return fMinMaxCutAbs; } + Float_t GetMinLeftRightCutAbs() const { return fMinLeftRightCutAbs;} // minimal amplitude left right - PRF + Float_t GetMinUpDownCutAbs() const { return fMinUpDownCutAbs;} // minimal amplitude up-down - TRF + Float_t GetMinMaxCutSigma() const { return fMinMaxCutSigma; } + Float_t GetMinLeftRightCutSigma() const { return fMinLeftRightCutSigma;} // minimal amplitude left right - PRF + Float_t GetMinUpDownCutSigma() const { return fMinUpDownCutSigma;} // minimal amplitude up-down - TRF + // + void SetMinMaxCutAbs(Float_t th) { fMinMaxCutAbs=th; } + void SetMinLeftRightCutAbs(Float_t th) { fMinLeftRightCutAbs=th;} // minimal amplitude left right - PRF + void SetMinUpDownCutAbs(Float_t th) { fMinUpDownCutAbs=th;} // minimal amplitude up-down - TRF + void SetMinMaxCutSigma(Float_t th) { fMinMaxCutSigma=th; } + void SetMinLeftRightCutSigma(Float_t th) { fMinLeftRightCutSigma=th;} // minimal amplitude left right - PRF + void SetMinUpDownCutSigma(Float_t th) { fMinUpDownCutSigma=th;} // minimal amplitude up-down - TRF + // + Int_t GetLastSeedRowSec() const { return fLastSeedRowSec;} + void SetDoKinks(Bool_t on) { fBKinkFinder=on; } Bool_t GetDoKinks() const { return fBKinkFinder;} Float_t GetMaxC() const { return fMaxC;} Bool_t GetSpecialSeeding() const { return fBSpecialSeeding;} + // + // + + // + // Correction setup + // + void SetUseFieldCorrection(Int_t flag){fUseFieldCorrection=flag;} + void SetUseRPHICorrection(Int_t flag){fUseRPHICorrection=flag;} + void SetUseRadialCorrection(Int_t flag){fUseRadialCorrection=flag;} + void SetUseQuadrantAlignment(Int_t flag){fUseQuadrantAlignment=flag;} + void SetUseSectorAlignment(Int_t flag){fUseSectorAlignment=flag;} + void SetUseDriftCorrectionTime(Int_t flag){fUseDriftCorrectionTime=flag;} + void SetUseDriftCorrectionGY(Int_t flag){fUseDriftCorrectionGY=flag;} + void SetUseGainCorrectionTime(Int_t flag){fUseGainCorrectionTime=flag;} + void SetUseExBCorrection(Int_t flag){fUseExBCorrection=flag;} + void SetUseTOFCorrection(Bool_t flag) {fUseTOFCorrection = flag;} + // + Int_t GetUseFieldCorrection() const {return fUseFieldCorrection;} + Int_t GetUseRPHICorrection() const {return fUseRPHICorrection;} + Int_t GetUseRadialCorrection() const {return fUseRadialCorrection;} + Int_t GetUseQuadrantAlignment() const {return fUseQuadrantAlignment;} + Int_t GetUseSectorAlignment() const {return fUseSectorAlignment;} + Int_t GetUseDriftCorrectionTime() const {return fUseDriftCorrectionTime;} + Int_t GetUseDriftCorrectionGY() const {return fUseDriftCorrectionGY;} + Int_t GetUseGainCorrectionTime() const {return fUseGainCorrectionTime;} + Int_t GetUseExBCorrection() const {return fUseExBCorrection;} + // + Bool_t GetUseTotCharge() const {return fUseTotCharge;} // switch use total or max charge + Float_t GetMinFraction() const {return fMinFraction;} // truncated mean - lower threshold + Float_t GetMaxFraction() const {return fMaxFaction;} // truncated mean - upper threshold + + Bool_t GetUseTOFCorrection() {return fUseTOFCorrection;} + + // + void SetSystematicError(Double_t *systematic){ for (Int_t i=0; i<5;i++) fSystematicErrors[i]=systematic[i];} + const Double_t * GetSystematicError() const { return fSystematicErrors;} + static AliTPCRecoParam *GetLowFluxParam(); // make reco parameters for low flux env. static AliTPCRecoParam *GetHighFluxParam(); // make reco parameters for high flux env. + static AliTPCRecoParam *GetHLTParam(); // special setting for HLT static AliTPCRecoParam *GetLaserTestParam(Bool_t bPedestal); // special setting for laser static AliTPCRecoParam *GetCosmicTestParam(Bool_t bPedestal); // special setting for cosmic // protected: + Bool_t fBClusterSharing; // allows or disable cluster sharing during tracking Double_t fCtgRange; // +-fCtgRange is the ctg(Theta) window used for clusterization and tracking (MI) Double_t fMaxSnpTracker; // max sin of local angle - for TPC tracker Double_t fMaxSnpTrack; // max sin of local angle - for track // + // + Double_t fCutSharedClusters[2]; // cut value - maximal amount of shared clusters + Int_t fClusterMaxRange[2]; // neighborhood - to define local maxima for cluster + // // clusterer parameters // + Bool_t fDumpSignal; // Dump Signal information flag Int_t fFirstBin; // first time bin used by cluster finder Int_t fLastBin; // last time bin used by cluster finder Bool_t fBCalcPedestal; // calculate Pedestal Bool_t fBDoUnfold; // do unfolding of clusters Float_t fDumpAmplitudeMin; // minimal amplitude of signal to be dumped Float_t fMaxNoise; // maximal noise sigma on pad to be used in cluster finder + Float_t fMinMaxCutAbs; // minimal amplitude at cluster maxima + Float_t fMinLeftRightCutAbs; // minimal amplitude left right - PRF + Float_t fMinUpDownCutAbs; // minimal amplitude up-down - TRF + Float_t fMinMaxCutSigma; // minimal amplitude at cluster maxima + Float_t fMinLeftRightCutSigma; // minimal amplitude left right - PRF + Float_t fMinUpDownCutSigma; // minimal amplitude up-down - TRF // // Float_t fMaxC; // maximal curvature for tracking Bool_t fBSpecialSeeding; // special seeding with big inclination angles allowed (for Cosmic and laser) Bool_t fBKinkFinder; // do kink finder reconstruction - ClassDef(AliTPCRecoParam, 1) + Int_t fLastSeedRowSec; // Most Inner Row to make seeding for secondaries + // + // Correction switches + // + Int_t fUseFieldCorrection; // use field correction + Int_t fUseRPHICorrection; // use rphi correction + Int_t fUseRadialCorrection; // use radial correction + Int_t fUseQuadrantAlignment; // use quadrant alignment + Int_t fUseSectorAlignment; // use sector alignment + Int_t fUseDriftCorrectionTime; // use drift correction time + Int_t fUseDriftCorrectionGY; // use drif correction global y + Int_t fUseGainCorrectionTime; // use gain correction time + Int_t fUseExBCorrection; // use ExB correction + // + // dEdx switches + // + Bool_t fUseTotCharge; // switch use total or max charge + Float_t fMinFraction; // truncated mean - lower threshold + Float_t fMaxFaction; // truncated mean - upper threshold + + Bool_t fUseTOFCorrection; // switch - kTRUE use TOF correction kFALSE - do not use + // + // misscalibration + // + Double_t fSystematicErrors[5]; //systematic errors in the track parameters - to be added to TPC covariance matrix + ClassDef(AliTPCRecoParam, 7) };