]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Changed some Double_t to Double32_t
authorkleinb <kleinb@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 8 Jun 2007 10:56:49 +0000 (10:56 +0000)
committerkleinb <kleinb@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 8 Jun 2007 10:56:49 +0000 (10:56 +0000)
STEER/AliESDMuonTrack.h
STEER/AliESDPmdTrack.h
STEER/AliESDcascade.h
STEER/AliESDkink.h
STEER/AliESDtrack.h

index 3570f505b85cd7203e740d81b703e70a897c701f..9194591672d607103fe01847e93c0cabb4fc5465 100644 (file)
@@ -89,32 +89,33 @@ public:
   
 protected:
  // parameters at vertex
-  Double_t fInverseBendingMomentum; // Inverse bending momentum (GeV/c ** -1) times the charge 
-  Double_t fThetaX;                // Angle of track at vertex in X direction (rad)
-  Double_t fThetaY;                // Angle of track at vertex in Y direction (rad)
-  Double_t fZ;                     // Z coordinate (cm)
-  Double_t fBendingCoor;           // bending coordinate (cm)
-  Double_t fNonBendingCoor;        // non bending coordinate (cm)
+  Double32_t fInverseBendingMomentum; // Inverse bending momentum (GeV/c ** -1) times the charge 
+  Double32_t fThetaX;              // Angle of track at vertex in X direction (rad)
+  Double32_t fThetaY;              // Angle of track at vertex in Y direction (rad)
+  Double32_t fZ;                           // Z coordinate (cm)
+  Double32_t fBendingCoor;         // bending coordinate (cm)
+  Double32_t fNonBendingCoor;      // non bending coordinate (cm)
   
  // parameters at first tracking station
-  Double_t fInverseBendingMomentumUncorrected; // Inverse bending momentum (GeV/c ** -1) times the charge 
-  Double_t fThetaXUncorrected;                // Angle of track at vertex in X direction (rad)
-  Double_t fThetaYUncorrected;                // Angle of track at vertex in Y direction (rad)
-  Double_t fZUncorrected;                     // Z coordinate (cm)
-  Double_t fBendingCoorUncorrected;           // bending coordinate (cm)
-  Double_t fNonBendingCoorUncorrected;        // non bending coordinate (cm)
+  Double32_t fInverseBendingMomentumUncorrected; // Inverse bending momentum (GeV/c ** -1) times the charge 
+  Double32_t fThetaXUncorrected;                      // Angle of track at vertex in X direction (rad)
+  Double32_t fThetaYUncorrected;                      // Angle of track at vertex in Y direction (rad)
+  Double32_t fZUncorrected;                   // Z coordinate (cm)
+  Double32_t fBendingCoorUncorrected;         // bending coordinate (cm)
+  Double32_t fNonBendingCoorUncorrected;              // non bending coordinate (cm)
   
  // global tracking info
-  Double_t fChi2; // chi2 in the MUON track fit
+  Double32_t fChi2; // chi2 in the MUON track fit
   UInt_t   fNHit; // number of hit in the track
 
   Int_t fLocalTrigger;    ///< packed local trigger information
   
-  Double_t fChi2MatchTrigger; // chi2 of trigger/track matching
+  Double32_t fChi2MatchTrigger; // chi2 of trigger/track matching
   
   UShort_t fHitsPatternInTrigCh; ///< Word containing info on the hits left in trigger chambers
 
-  ClassDef(AliESDMuonTrack,4)  //MUON ESD track class 
+
+  ClassDef(AliESDMuonTrack,5)  //MUON ESD track class 
 };
 
 #endif 
index 442f3e7781a02afe05c255148df3f9fc0982de3a..a4c68f60dd2202be455c9f5a342890762a711ee1 100644 (file)
@@ -37,7 +37,7 @@ class AliESDPmdTrack : public TObject {
   Float_t GetClusterPID() const {return fCluPID;}
   
  protected:
-  Int_t fDet;      // Detector, 0:PRE, 1:CPV
+  Short_t fDet;      // Detector, 0:PRE, 1:CPV
   Float_t fX;      // Cluster X position
   Float_t fY;      // Cluster Y position
   Float_t fZ;      // Cluster Z position (vertex uncorrected)
@@ -45,7 +45,7 @@ class AliESDPmdTrack : public TObject {
   Float_t fNcell;  // Cluster cells
   Float_t fCluPID; // Cluster probability, 1: Photon, 0: Hadron
 
-  ClassDef(AliESDPmdTrack,2)  //PMD ESD track class 
+  ClassDef(AliESDPmdTrack,3)  //PMD ESD track class 
 };
 
 #endif 
index 95cc5feadb05fbe2e10ad0c2004cd9d3bb9eb76e..53d388c26e9dea9d10bc09a42eb87f76f8998e74 100644 (file)
@@ -54,20 +54,20 @@ public:
 
 protected: 
   Int_t    fPdgCode;        // reconstructed cascade type (PDG code)
-  Double_t fEffMass;        // reconstructed cascade effective mass
-  Double_t fChi2Xi;         // chi2 value
-  Double_t fDcaXiDaughters; // dca between Xi's daughters
-  Double_t fPosXi[3];       // cascade vertex position (global)
-  Double_t fPosCovXi[6];    // covariance matrix of the vertex position
+  Double32_t fEffMass;        // reconstructed cascade effective mass
+  Double32_t fChi2Xi;         // chi2 value
+  Double32_t fDcaXiDaughters; // dca between Xi's daughters
+  Double32_t fPosXi[3];       // cascade vertex position (global)
+  Double32_t fPosCovXi[6];    // covariance matrix of the vertex position
 
   Int_t    fBachIdx;        // label of the bachelor track
-  Double_t fBachMom[3];     // bachelor momentum (global)
-  Double_t fBachMomCov[6];  // covariance matrix of the bachelor momentum.
+  Double32_t fBachMom[3];     // bachelor momentum (global)
+  Double32_t fBachMomCov[6];  // covariance matrix of the bachelor momentum.
 
 private:
   AliESDcascade& operator=(const AliESDcascade&);
 
-  ClassDef(AliESDcascade,2) // reconstructed cascade vertex
+  ClassDef(AliESDcascade,3) // reconstructed cascade vertex
 };
 
 inline
index a06d1f222f075d23a581f37518cd2e7ba3908829..f0c5b87d8e6d7a25a8db3d4dc2577d63302a08bc 100644 (file)
@@ -60,15 +60,15 @@ public:
   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 
+  Double32_t       fPm[3];    //momentum at the vertex mother
+  Double32_t       fAngle[3]; //three angles
+  Double32_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
@@ -78,7 +78,7 @@ public:
   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
+  ClassDef(AliESDkink,3)      // ESD V0 vertex
 };
 
 #endif
index 2e0d2d6d113a3b9e6e00bb60d01142e25ab87836..1d664c307618d3d36f0c494e2e54216b3bb47eb4 100644 (file)
@@ -1,3 +1,4 @@
+
 #ifndef ALIESDTRACK_H
 #define ALIESDTRACK_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
@@ -41,6 +42,7 @@ public:
   const AliESDfriendTrack *GetFriendTrack() const {return fFriendTrack;}
   void SetFriendTrack(const AliESDfriendTrack *t) {
     delete fFriendTrack; fFriendTrack=new AliESDfriendTrack(*t);
+    // CKB
   }
   void AddCalibObject(TObject * object);     // add calib object to the list
   TObject *  GetCalibObject(Int_t index);    // return calib objct at given position
@@ -283,7 +285,7 @@ protected:
   Int_t   fStopVertex;  // Index of the stop vertex
 
   AliExternalTrackParam *fCp; // Track parameters constrained to the primary vertex
-  Double_t fCchi2; // chi2 at the primary vertex
+  Double32_t fCchi2; // chi2 at the primary vertex
 
 
   AliExternalTrackParam *fIp; // Track parameters at the first measured point (TPC)