]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Float_t replaced by Double_t
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 22 May 2003 12:44:48 +0000 (12:44 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 22 May 2003 12:44:48 +0000 (12:44 +0000)
STEER/AliBarrelTrack.cxx
STEER/AliBarrelTrack.h
STEER/AliKalmanTrack.h

index f83c2e5c049943cf8da89b5f9a637e7b991a39ad..50133439610341dcccb19bc753e66a8670b16bd2 100644 (file)
@@ -83,7 +83,7 @@ void AliBarrelTrack::SetNClusters(Int_t nClusters, Double_t chi2) {
 
 ////////////////////////////////////////////////////////////////////////////////
 
-void AliBarrelTrack::SetTime(Float_t time[5], Double_t length) {
+void AliBarrelTrack::SetTime(Double_t time[5], Double_t length) {
 
   for(Int_t i=0; i<5; i++)
     fTimeHypothesis[i] = time[i];
index 67257d1ed3ecbba6273d6e8d246af859832089e1..b4d8acd8e718152732f5afee3df5dfd89ba39a7b 100644 (file)
@@ -57,7 +57,7 @@ class AliBarrelTrack : public TObject {
   void SetX(Double_t x, Double_t alpha);
   void SetRefPlane(Int_t nRefPlane, Int_t isIn);
   void SetNClusters(Int_t nClusters, Double_t chi2);
-  void SetTime(Float_t time[5], Double_t length);
+  void SetTime(Double_t time[5], Double_t length);
   void SetStateVector(Double_t vec[5]);             // external parameters
   void SetCovarianceMatrix(Double_t vec[15]);       // external parameters
  
index 842e38c558bb8c03ad7b9f584549573f8663e6da..9bb3d110679e393aeb90db95a30c27fc641933f5 100644 (file)
@@ -121,8 +121,8 @@ protected:
   // variables for time integration (S.Radomski@gsi.de)
   static const Int_t fgkTypes = 5;  // Number of track types (e,mu,pi,k,p)
   Bool_t  fStartTimeIntegral;       // indicator wether integrate time
-  Float_t fIntegratedTime[5];       // integrated time
-  Float_t fIntegratedLength;        // integrated length
+  Double_t fIntegratedTime[5];       // integrated time
+  Double_t fIntegratedLength;        // integrated length
   
   ClassDef(AliKalmanTrack,2)    // Reconstructed track
 };