]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliESDkink.h
add aliroot macros to look at data from strip modules and from LED reference system
[u/mrichter/AliRoot.git] / STEER / AliESDkink.h
index a06d1f222f075d23a581f37518cd2e7ba3908829..300210ac31b13ba9a92b2e99d62908d3614a82c9 100644 (file)
@@ -21,18 +21,21 @@ class AliESDtrack;
 class AliESDkink : public TObject {
 public:
   AliESDkink();             //constructor
+  AliESDkink(const AliESDkink &source);             //constructor
+  AliESDkink& operator=(const AliESDkink &source);
+  virtual void Copy(TObject &obj) const;
   //
-  void SetID(Int_t id){fID=id;}
-  Int_t GetID(){return fID;}
+  void SetID(Short_t id){fID=id;}
+  Short_t GetID(){return fID;}
   void SetMother(const AliExternalTrackParam & pmother); 
   void SetDaughter(const AliExternalTrackParam & pdaughter);
-  Float_t GetTPCDensityFactor() const;
+  Double_t GetTPCDensityFactor() const;
   Float_t GetQt() const;    
   //
-  Float_t GetR() const {return fRr;}
-  Float_t GetDistance() const {return fDist2;}
-  Int_t   GetTPCRow0() const {return fRow0;}
-  Float_t GetAngle(Int_t i) const {return fAngle[i];}
+  Double_t GetR() const {return fRr;}
+  Double_t GetDistance() const {return fDist2;}
+  UChar_t   GetTPCRow0() const {return fRow0;}
+  Double_t GetAngle(Int_t i) const {return fAngle[i];}
   const Double_t *GetPosition() const   {return fXr;}
   const Double_t *GetMotherP()  const   {return fPm;}
   const Double_t *GetDaughterP()  const {return fPdr;}
@@ -41,44 +44,50 @@ public:
   void SetLabel(Int_t label, Int_t pos) {fLab[pos]=label;}
   Int_t GetIndex(Int_t i) const {return fIndex[i];}
   void SetIndex(Int_t index, Int_t pos){fIndex[pos]=index;}
-  void SetStatus(Int_t status, Int_t pos){fStatus[pos]=status;}
-  Int_t GetStatus(Int_t pos) const {return fStatus[pos];}
-  void SetTPCncls(Int_t ncls,Int_t pos) {fTPCncls[pos]=ncls;}
-  const Int_t *GetTPCncls() const {return fTPCncls;} 
+  void SetStatus(Char_t status, Int_t pos){fStatus[pos]=status;}
+  Char_t GetStatus(Int_t pos) const {return fStatus[pos];}
+  void SetTPCncls(UChar_t ncls,Int_t pos) {fTPCncls[pos]=ncls;}
+  const UChar_t *GetTPCncls() const {return fTPCncls;} 
   void  SetTPCDensity(Float_t dens, Int_t pos0,Int_t pos1){fTPCdensity[pos0][pos1]=dens;}
-  Float_t GetTPCDensity(Int_t pos0,Int_t pos1) const {return fTPCdensity[pos0][pos1];}
-  void    SetTPCDensity2(Float_t dens, Int_t pos0,Int_t pos1){fTPCdensity[pos0][pos1]=dens;}
-  Float_t GetTPCDensity2(Int_t pos0,Int_t pos1) const {return fTPCdensity[pos0][pos1];}
-  Float_t GetShapeFactor() const {return fShapeFactor;}
+  Double_t GetTPCDensity(Int_t pos0,Int_t pos1) const {return fTPCdensity[pos0][pos1];}
+  Double_t GetShapeFactor() const {return fShapeFactor;}
   void    SetShapeFactor(Float_t factor){fShapeFactor = factor;}
-  void  SetMultiple(Int_t mult,Int_t pos){fMultiple[pos]=mult;}
-  const Int_t * GetMultiple() const {return fMultiple;}
+  void  SetMultiple(UChar_t mult,Int_t pos){fMultiple[pos]=mult;}
+  const UChar_t * GetMultiple() const {return fMultiple;}
   //  
   const AliExternalTrackParam& RefParamDaughter() {return fParamDaughter;}
   const AliExternalTrackParam& RefParamMother()   {return fParamMother;}
  protected:
-  Int_t          fID;       // kink ID
+
   AliExternalTrackParam fParamDaughter;
   AliExternalTrackParam fParamMother;
-  Double_t       fDist1;    //info about closest distance according closest MC - linear DCA
-  Double_t       fDist2;    //info about closest distance parabolic DCA
+
+  Double32_t       fDist1;    //info about closest distance according closest MC - linear DCA
+  Double32_t       fDist2;    //info about closest distance parabolic DCA
   //
-  Double_t       fPdr[3];    //momentum at vertex daughter  - according approx at DCA
-  Double_t       fXr[3];     //rec. position according helix
+  Double32_t       fPdr[3];    //momentum at vertex daughter  - according approx at DCA
+  Double32_t       fXr[3];     //rec. position according helix
   //
-  Double_t       fPm[3];    //momentum at the vertex mother
-  Double_t       fAngle[3]; //three angles
-  Double_t       fRr;       // rec position of the vertex 
-  Int_t          fLab[2];   //MC label of the partecle
-  Int_t          fIndex[2]; //reconstructed labels of the tracks
-  Char_t         fStatus[12];       //status of kink - first 4 mother (ITS,TPC,TRD,TOF)  other daughter
-  Float_t        fTPCdensity[2][2];  //tpc cluster density before and after kink
-  Float_t        fTPCdensity2[2][2];  //tpc cluster density before and after kink - after second iteration
-  Float_t        fShapeFactor;       // tpc clusters shape factor
-  Int_t          fRow0;              // critical pad row number
-  Int_t          fMultiple[2];       //how many times the track's were used
-  Int_t          fTPCncls[2];     //number of clusters for mother particle
-  ClassDef(AliESDkink,2)      // ESD V0 vertex
+  Double32_t       fPm[3];    //momentum at the vertex mother
+  Double32_t       fRr;       // rec position of the vertex 
+
+  Double32_t       fShapeFactor;       // tpc clusters shape factor
+  Double32_t       fTPCdensity[2][2];  //[0,1,16]tpc cluster density before and after kink
+  Double32_t       fAngle[3]; //[-2*pi,2*pi,16]three angles
+
+  Int_t            fLab[2];   //MC label of the partecle
+  Int_t            fIndex[2]; //reconstructed labels of the tracks
+
+  Short_t          fID;       // kink ID
+
+  UChar_t          fRow0;              // critical pad row number
+  UChar_t          fMultiple[2];       //how many times the track's were used
+  UChar_t          fTPCncls[2];     //number of clusters for mother particle
+
+  Char_t           fStatus[12];       //status of kink - first 4 mother (ITS,TPC,TRD,TOF)  other daughter
+
+
+  ClassDef(AliESDkink,4)      // ESD V0 vertex
 };
 
 #endif