X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TPC%2FAliTPCTracklet.h;h=d837727741af9bffef68913d137bb2112192434d;hb=0f2ff24c9b9a43074d0c46cc2b65fb861430cc02;hp=efaab0d32775de25a2d7f4e64c53a6fc6d1c9e59;hpb=9318a5b4979937177bcee3a3fcf98989c3683913;p=u%2Fmrichter%2FAliRoot.git diff --git a/TPC/AliTPCTracklet.h b/TPC/AliTPCTracklet.h index efaab0d3277..d837727741a 100755 --- a/TPC/AliTPCTracklet.h +++ b/TPC/AliTPCTracklet.h @@ -69,9 +69,13 @@ public: Double_t *x); static TEllipse ErrorEllipse(Double_t x,Double_t y, Double_t sx,Double_t sy,Double_t sxy); + static inline void SetEdgeCut(Float_t edgeX, Float_t edgeY); private: + static Bool_t RejectCluster(AliTPCclusterMI* cl,AliExternalTrackParam * param=0); static const Double_t kB2C; //! ugly to have the track parametrised in a way, that constand is allways needed static double GetBz(Double_t *xyz); + static Float_t fgEdgeCutY; //cut on the edge effect in local Y + static Float_t fgEdgeCutX; //cut on the edge effect in local X void FitLinear(const AliTPCseed *track,Int_t sector,TrackType type); void FitKalman(const AliTPCseed *track,Int_t sector); void FitRiemann(const AliTPCseed *track,Int_t sector); @@ -94,4 +98,12 @@ private: ClassDef(AliTPCTracklet,1) }; + +void AliTPCTracklet::SetEdgeCut(Float_t edgeX, Float_t edgeY){ + // + // + fgEdgeCutY=edgeY; + fgEdgeCutX=edgeX; +} + #endif