]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCtrack.h
Fix in documentation
[u/mrichter/AliRoot.git] / TPC / AliTPCtrack.h
index ee7a85b3c0140d80aaa5d74f0aeee81c2e482f51..e618b0c5d4ee0aefe8cd1e88c0955f3975065f8a 100644 (file)
 #define ALITPCTRACK_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
-
 /* $Id$ */
 
 //-------------------------------------------------------
 //                    TPC Track Class
 //
 //   Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch 
+//
+// The track parameterization is fixed in the following way:                   
+//      param0:   local Y-coordinate of a track (cm)                
+//      param1:   local Z-coordinate of a track (cm)                
+//      param2:   local sine of the track momentum azimuth angle    
+//      param3:   tangent of the track momentum dip angle           
+//      param4:   1/pt (1/(GeV/c))                                  
+//
 //-------------------------------------------------------
 
-#include <TObject.h>
+#include <AliKalmanTrack.h>
 #include <TMath.h>
-#include <iostream.h>
 
-class AliTPCClustersArray;
-class AliTPCcluster;
+#include "AliTPCreco.h"
+#include "AliExternalTrackParam.h"
+class AliESDtrack;
+class AliESDVertex;
 
 //_____________________________________________________________________________
-class AliTPCtrack : public TObject {
+class AliTPCtrack : public AliKalmanTrack {
 public:
-   AliTPCtrack();
-   AliTPCtrack(UInt_t index, const Double_t xx[5], 
-               const Double_t cc[15], Double_t xr, Double_t alpha); 
-   AliTPCtrack(const AliTPCtrack& t);
-   Int_t Compare(TObject *o);
-   Int_t PropagateTo(Double_t xr,
-                     Double_t x0=28.94,Double_t rho=0.9e-3,Double_t pm=0.139);
-   void PropagateToVertex(
-                     Double_t x0=36.66,Double_t rho=1.2e-3,Double_t pm=0.139);
-   void Update(const AliTPCcluster* c, Double_t chi2, UInt_t i);
-   Int_t Rotate(Double_t angle);
-   void CookLabel(AliTPCClustersArray *carray);
-   void SetLabel(Int_t lab=0);
-   void SetdEdx(Float_t dedx);
-
-   Double_t GetPredictedChi2(const AliTPCcluster *cluster) const;
-   Bool_t IsSortable() const;
-   Int_t GetLabel() const;
-   void GetPxPyPz(Double_t &px, Double_t &py, Double_t &pz) const;
-   Float_t GetdEdx() const;
-   Double_t GetX() const;
-   Double_t GetY() const;
-   Double_t GetZ() const;
-   Double_t GetC() const;
-   Double_t GetEta() const;
-   Double_t GetTgl() const;
-   Double_t GetPt() const;
-   Double_t GetP() const;
-   void GetCovariance(Double_t cov[15]) const;
-   Double_t GetSigmaY2() const;
-   Double_t GetSigmaZ2() const;
-   Double_t GetSigmaC2() const;
-   Double_t GetSigmaTgl2() const;
-   Double_t GetAlpha() const;
-   Double_t GetChi2() const;
-   Int_t GetNumberOfClusters() const;
-   void GetCluster(Int_t i, Int_t &sec, Int_t &row, Int_t &ncl) const;
+  AliTPCtrack();
+  AliTPCtrack(Double_t x, Double_t alpha, const Double_t p[5], 
+              const Double_t cov[15], Int_t index); 
+  AliTPCtrack(const AliESDtrack& t);
+  AliTPCtrack(const AliTPCtrack& t);
+  AliTPCtrack& operator=(const AliTPCtrack& o);
+  virtual ~AliTPCtrack() {}
+
+  Int_t Compare(const TObject *o) const;
+
+  void SetdEdx(Double_t dedx) {fdEdx=dedx;}
+  Double_t GetdEdx()  const {return fdEdx;}
+  Double_t GetPIDsignal()  const {return GetdEdx();}
+
+  Int_t GetClusterIndex(Int_t i) const {return fIndex[i];}
+  void  SetClusterIndex(Int_t i, Int_t idx) {fIndex[i]=idx;}
+
+  Double_t GetC() const {return AliExternalTrackParam::GetC(GetBz());}
+
+  Double_t GetPredictedChi2(const AliCluster *cluster) const;
+  Bool_t PropagateTo(Double_t xr, Double_t rho=0.9e-3, Double_t x0=28.94);
+  Bool_t Update(const AliCluster *c, Double_t chi2, Int_t i);
+  Bool_t Rotate(Double_t alpha) {
+    return AliExternalTrackParam::Rotate(GetAlpha()+alpha);
+  }
+  
+  Bool_t PropagateToVertex(const AliESDVertex *v, 
+                           Double_t rho=1.2e-3, Double_t x0=36.66);
+  void ResetClusters() {SetNumberOfClusters(0); SetChi2(0.);}
+  void UpdatePoints();//update points 
+  Float_t* GetPoints() {return fPoints;}
+
+  Float_t Density(Int_t row0, Int_t row1); //calculate cluster density
+  Float_t Density2(Int_t row0, Int_t row1); //calculate cluster density
+  Double_t GetD(Double_t x=0, Double_t y=0) const {
+     return AliExternalTrackParam::GetD(x,y,GetBz());
+  }
+  AliExternalTrackParam & GetReference(){ return fReference;}
+  void UpdateReference(){ new (&fReference) AliExternalTrackParam(*this);}
+  Int_t   GetKinkIndex(Int_t i) const{ return fKinkIndexes[i];}
+  Int_t*  GetKinkIndexes() { return fKinkIndexes;}
+  Int_t   GetV0Index(Int_t i) const{ return fV0Indexes[i];}
+  Int_t*  GetV0Indexes() { return fV0Indexes;}
+
+  void SetFirstPoint(Int_t f) {fFirstPoint=f;}
+  void SetLastPoint(Int_t f) {fLastPoint=f;}
+  void SetRemoval(Int_t f) {fRemoval=f;}
+  void SetLab2(Int_t f) {fLab2=f;}
+  void SetKinkIndex(Int_t i, Int_t idx) {fKinkIndexes[i]=idx;}
+  void SetBConstrain(Bool_t b) {fBConstrain=b;}
+  void SetNFoundable(Int_t n) {fNFoundable=n;}
+  void SetNShared(Int_t s) {fNShared=s;}
+
+  Int_t GetFirstPoint() const {return fFirstPoint;}
+  Int_t GetLastPoint() const {return fLastPoint;}
+  Int_t GetRemoval() const {return fRemoval;}
+  Int_t GetLab2() const {return fLab2;}
+  Bool_t GetBConstrain() const {return fBConstrain;}
+  Int_t GetNShared() const {return fNShared;}
+  Int_t GetNFoundable() const {return fNFoundable;}
 
 protected: 
-   Short_t fN;               // number of clusters 
-private:
-   Int_t fLab;               // track label
-   Double_t fChi2;           // total chi2 value for this track
-   Float_t fdEdx;            // dE/dx 
-
-   Double_t fAlpha;          // rotation angle
-   Double_t fX;              // X-coordinate of this track (reference plane)
-
-   Double_t fY;              // Y-coordinate of the track
-   Double_t fZ;              // Z-coordinate of the track
-   Double_t fC;              // track curvature
-   Double_t fE;              // C*x0
-   Double_t fT;              // tangent of the track dip angle
-
-   Double_t fCyy;                         // covariance
-   Double_t fCzy, fCzz;                   // matrix
-   Double_t fCcy, fCcz, fCcc;             // of the
-   Double_t fCey, fCez, fCec, fCee;       // track
-   Double_t fCty, fCtz, fCtc, fCte, fCtt; // parameters
-
-   UInt_t fIndex[200];       // (((row<<8)+sec)<<16)+index
-
-   ClassDef(AliTPCtrack,1)   // Time Projection Chamber reconstructed tracks
+  Double_t GetBz() const;
+  Double_t fdEdx;           // dE/dx
+
+  Int_t fIndex[kMaxRow];       // indices of associated clusters 
+  Float_t fPoints[4];            //first, max dens row  end points of the track and max density
+  // MI addition
+  Float_t fSdEdx;           // sigma of dedx 
+  //
+  Int_t   fNFoundable;      //number of foundable clusters - dead zone taken to the account
+  Bool_t  fBConstrain;   // indicate seeding with vertex constrain
+  Int_t   fLastPoint;     // last  cluster position     
+  Int_t   fFirstPoint;    // first cluster position
+  Int_t fRemoval;         // removal factor
+  Int_t fTrackType;       // track type - 0 - normal - 1 - kink -  2 -V0  3- double found
+  Int_t fLab2;            // index of corresponding track (kink, V0, double)
+  Int_t   fNShared;       // number of shared points 
+  AliExternalTrackParam   fReference; // track parameters at the middle of the chamber
+  Float_t  fKinkPoint[12];      //radius, of kink,  dfi and dtheta
+  Int_t    fKinkIndexes[3];     // kink indexes - minus = mother + daughter
+  Int_t    fV0Indexes[3];     // kink indexes - minus = mother + daughter
+
+  ClassDef(AliTPCtrack,4)   // Time Projection Chamber reconstructed tracks
 };
 
-inline AliTPCtrack::AliTPCtrack() {
-  //default contructor
-  fN=0;
-}
-
-inline void AliTPCtrack::SetLabel(Int_t lab) {
-  //just to calm down our rule checker
-  fLab=lab;
-}
-
-inline void AliTPCtrack::SetdEdx(Float_t dedx) {
-  //just to calm down our rule checker
-  fdEdx=dedx;
-}
-
-inline Bool_t AliTPCtrack::IsSortable() const {
-  //just to calm down our rule checker
-  return kTRUE;
-}
-
-inline Int_t AliTPCtrack::GetLabel() const {
-  //just to calm down our rule checker
-  return fLab;
-}
-
-inline Float_t AliTPCtrack::GetdEdx() const {
-  //just to calm down our rule checker
-  return fdEdx;
-}
-
-inline Double_t AliTPCtrack::GetX() const {
-  //just to calm down our rule checker
-  return fX;
-}
-
-inline Double_t AliTPCtrack::GetY() const {
-  //just to calm down our rule checker
-  return fY;
-}
-
-inline Double_t AliTPCtrack::GetZ() const {
-  //just to calm down our rule checker
-  return fZ;
-}
-
-inline Double_t AliTPCtrack::GetC() const {
-  //just to calm down our rule checker
-  return fC;
-}
-
-inline Double_t AliTPCtrack::GetEta() const {
-  //just to calm down our rule checker
-  return fE;
-}
-
-inline Double_t AliTPCtrack::GetTgl() const {
-  //just to calm down our rule checker
-  return fT;
-}
-
-inline Double_t AliTPCtrack::GetPt() const {
-  //just to calm down our rule checker
-  return 0.299792458*0.2/GetC()/100;
-}
-
-inline Double_t AliTPCtrack::GetP() const {
-  //just to calm down our rule checker
-  return TMath::Abs(GetPt())*sqrt(1.+GetTgl()*GetTgl());
-}
-
-inline Double_t AliTPCtrack::GetSigmaY2() const {
-  //just to calm down our rule checker
-  return fCyy;
-}
-
-inline Double_t AliTPCtrack::GetSigmaZ2() const {
-  //just to calm down our rule checker
-  return fCzz;
-}
-
-inline Double_t AliTPCtrack::GetSigmaC2() const {
-  //just to calm down our rule checker
-  return fCcc;
-}
-
-inline Double_t AliTPCtrack::GetSigmaTgl2() const {
-  //just to calm down our rule checker
-  return fCtt;
-}
-
-inline Double_t AliTPCtrack::GetAlpha() const {
-  //just to calm down our rule checker
-  return fAlpha;
-}
-
-inline Double_t AliTPCtrack::GetChi2() const {
-  //just to calm down our rule checker
-  return fChi2;
-}
-
-inline Int_t AliTPCtrack::GetNumberOfClusters() const {
-  //just to calm down our rule checker
-  return fN;
-}
-
-inline 
-void AliTPCtrack::GetCluster(Int_t i,Int_t &sec,Int_t &row,Int_t &ncl) const {
-  //just to calm down our rule checker
-  Int_t index=fIndex[i];
-  sec=(index&0xff000000)>>24; 
-  row=(index&0x00ff0000)>>16; 
-  ncl=(index&0x0000ffff)>>00;
-}
-
 #endif
 
-