From: nick Date: Sun, 25 Mar 2007 10:35:44 +0000 (+0000) Subject: NvE Typo corrected in yesterday's mods of AliTimstamp. X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=000b4f1284773960436b7e1f879e901f0b0f3c52 NvE Typo corrected in yesterday's mods of AliTimstamp. --- diff --git a/RALICE/AliTimestamp.cxx b/RALICE/AliTimestamp.cxx index eab54285af3..dd1e0863ddb 100644 --- a/RALICE/AliTimestamp.cxx +++ b/RALICE/AliTimestamp.cxx @@ -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.; }