]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
NvE Typo corrected in yesterday's mods of AliTimstamp.
authornick <nick@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 25 Mar 2007 10:35:44 +0000 (10:35 +0000)
committernick <nick@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 25 Mar 2007 10:35:44 +0000 (10:35 +0000)
RALICE/AliTimestamp.cxx

index eab54285af367bd54835e1e175df10494c91fbe8..dd1e0863ddb719438bf39e2018d422cb2d22d658 100644 (file)
@@ -1771,7 +1771,7 @@ Double_t AliTimestamp::GetGAST()
 
  Double_t gast=gmst+da;
 
- while (gast<-24.)
+ while (gast<0)
  {
   gast+=24.;
  }
@@ -1796,7 +1796,7 @@ Double_t AliTimestamp::GetLT(Double_t offset)
  
  h+=offset;
 
- while (h<-24)
+ while (h<0)
  {
   h+=24.;
  }
@@ -1824,7 +1824,7 @@ Double_t AliTimestamp::GetLMST(Double_t offset)
 
  h+=offset;
 
- while (h<-24)
+ while (h<0)
  {
   h+=24.;
  }
@@ -1852,7 +1852,7 @@ Double_t AliTimestamp::GetLAST(Double_t offset)
 
  h+=offset;
 
- while (h<-24)
+ while (h<0)
  {
   h+=24.;
  }