source: trunk/MagicSoft/Mars/mbase/MTime.h@ 8958

Last change on this file since 8958 was 8946, checked in by tbretz, 18 years ago
*** empty log message ***
File size: 8.0 KB
Line 
1#ifndef MARS_MTime
2#define MARS_MTime
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MTime //
7// //
8// A generalized MARS time stamp //
9// //
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef MARS_MParContainer
13#include "MParContainer.h"
14#endif
15
16#ifndef _CPP_IOSFWD
17#include <iosfwd>
18#endif
19
20#ifndef ROOT_TTime
21#include <TTime.h>
22#endif
23
24#include <TMath.h>
25
26struct timeval;
27
28class MTime : public MParContainer
29{
30public:
31 static const UInt_t kHour; // [ms] one hour
32 static const UInt_t kDay; // [ms] one day
33 static const UInt_t kDaySec; // [s] one day
34
35 enum {
36 kSunday, kMonday, kTuesday, kWednesday, kThursday, kFriday, kSaturday
37 };
38
39private:
40 UInt_t fMjd; // [d] Day in the century (Day of sun rise)
41 TTime fTime; // [ms] Time of Day (-11h<=x<13h)
42 UInt_t fNanoSec; // [ns] NanoSec part of TimeOfDay (<1000000)
43
44
45 ULong_t GetTime24() const
46 {
47 return (Long_t)fTime<0 ? (Long_t)fTime+kDay : (ULong_t)fTime;
48 }
49 void Init(const char *name, const char *title)
50 {
51 fName = name ? name : "MTime";
52 fTitle = title ? title : "Generalized time stamp";
53 }
54
55public:
56 MTime(const char *name=NULL, const char *title=NULL)
57 {
58 Init(name, title);
59 Clear();
60
61 SetSqlDateTime(name);
62 }
63 MTime(const struct timeval &tm)
64 {
65 Init(NULL, NULL);
66 Set(tm);
67 }
68 MTime(Double_t mjd);
69 MTime(UShort_t y, Byte_t m, Byte_t d, Byte_t h=13, Byte_t min=0, Byte_t s=0, UShort_t ms=0, UInt_t ns=0);
70 MTime(const MTime& t) : MParContainer(), fMjd(t.fMjd), fTime(t.fTime), fNanoSec(t.fNanoSec)
71 {
72 Init(NULL, NULL);
73 }
74
75 //static Int_t Hour() { return 3600; }
76 //static Int_t Day() { return 3600;*24 }
77
78 void operator=(const MTime &t)
79 {
80 fMjd = t.fMjd;
81 fTime = t.fTime;
82 fNanoSec = t.fNanoSec;
83 }
84
85 void Clear(const Option_t *o="") { fMjd=0; fTime=0; fNanoSec=0; }
86
87 void Print(Option_t *t=NULL) const;
88
89 void Now();
90
91 // Setter functions
92 Bool_t Set(UShort_t y, Byte_t m, Byte_t d, Byte_t h=13, Byte_t min=0, Byte_t s=0, UShort_t ms=0, UInt_t ns=0);
93 void Set(const struct timeval &tv);
94 Bool_t SetString(const char *str);
95 Bool_t SetSqlDateTime(const char *str);
96 Bool_t SetSqlTimeStamp(const char *str);
97 void SetCT1Time(UInt_t mjd, UInt_t t1, UInt_t t0);
98 void SetCorsikaTime(Float_t time);
99 Bool_t SetStringFmt(const char *time, const char *fmt, const char *loc=0);
100 Bool_t SetBinary(const UInt_t t[6]);
101 Bool_t UpdMagicTime(Byte_t h, Byte_t m, Byte_t s, UInt_t ns);
102 Bool_t SetMjd(UInt_t mjd, ULong_t ms, UInt_t ns=0);
103 void SetMjd(Double_t m);
104 void SetAxisTime(Double_t time);
105 void SetUnixTime(Long64_t sec, ULong64_t usec=0);
106 void SetEaster(Short_t year=0);
107
108 // Getter functions
109 Double_t GetJD() const { return GetMjd()+2400000.5; }
110 Double_t GetMjd() const;
111 Double_t GetGmst() const;
112 TString GetString() const;
113 TString GetStringFmt(const char *fmt=0, const char *loc=0) const;
114 TString GetSqlDateTime() const;
115 TString GetSqlTimeStamp() const;
116 TString GetFileName() const;
117 void GetDate(UShort_t &y, Byte_t &m, Byte_t &d) const;
118 void GetDateOfSunrise(UShort_t &y, Byte_t &m, Byte_t &d) const;
119 TTime GetRootTime() const;
120 TDatime GetRootDatime() const;
121 Double_t GetAxisTime() const;
122 Double_t GetMoonPhase() const;
123 Double_t GetMoonPeriod() const;
124 Int_t GetMagicPeriod() const;
125 Long_t GetTime() const { return (Long_t)fTime; } // [ms] Time of Day returned in the range [-11h, 13h)
126 void GetTime(Byte_t &h, Byte_t &m, Byte_t &s, UShort_t &ms) const;
127 void GetTime(Byte_t &h, Byte_t &m, Byte_t &s) const
128 {
129 UShort_t ms;
130 GetTime(h, m, s, ms);
131 }
132
133 UInt_t Year() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return y; }
134 UInt_t Month() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return m; }
135 UInt_t Day() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return d; }
136 Byte_t WeekDay() const; // { return TMath::FloorNint(GetMjd()+3)%7; } // Return Day of the week: Sun=0, Mon=1, ..., Sat=6
137 UInt_t Hour() const { Byte_t h, m, s; GetTime(h,m,s); return h; }
138 UInt_t Min() const { Byte_t h, m, s; GetTime(h,m,s); return m; }
139 UInt_t Sec() const { Byte_t h, m, s; GetTime(h,m,s); return s; }
140 UInt_t MilliSec() const { return (GetTime()+kDay)%1000; }
141 UInt_t MicroSec() const { return fNanoSec/1000+MilliSec()*1000; }
142 UInt_t NanoSec() const { return fNanoSec+MilliSec()*1000000; }
143 Int_t Week() const { Short_t y; return Week(y); }
144 Int_t Week(Short_t &year) const;
145 UInt_t DayOfYear() const;
146
147 Bool_t IsMidnight() const { return (Long_t)fTime==0 && fNanoSec==0; }
148 Bool_t IsLeapYear() const;
149
150 // I/O functions
151 istream &ReadBinary(istream &fin);
152
153 void AsciiRead(istream &fin);
154 Bool_t AsciiWrite(ostream &out) const;
155
156 // Conversion functions
157 operator double() const; //[s]
158 double operator()() const; //[s]
159
160 Double_t AsDouble() const { return GetMjd(); }
161 //const char *AsString() const { return GetString(); }
162 //const char *AsSQLString() const { return GetSqldateTime(); }
163
164 // Calculation functions
165 void AddMilliSeconds(UInt_t ms);
166 void Minus1ns();
167 void Plus1ns();
168 void SetMean(const MTime &t0, const MTime &t1);
169 void SetMean(Double_t t0, Double_t t1);
170 /*
171 MTime operator-(const MTime &tm1);
172 void operator-=(const MTime &t);
173 MTime operator+(const MTime &t1);
174 void operator+=(const MTime &t);
175 */
176
177 // Base comparison operators
178 bool operator<(const MTime &t) const;
179 bool operator>(const MTime &t) const;
180
181 // Derived comparison operators
182 bool operator<=(const MTime &t) const;
183 bool operator>=(const MTime &t) const;
184 bool operator==(const MTime &t) const;
185 bool operator!=(const MTime &t) const;
186 bool operator!() const;
187
188 static MTime GetEaster(Short_t year=-1);
189 static Int_t GetMjdWeek1(Short_t year);
190
191 ClassDef(MTime, 3) //A generalized MARS time stamp
192};
193
194inline ostream &operator<<(ostream &out, const MTime &t)
195{
196 out << t.GetString();
197 return out;
198}
199
200inline istream &operator>>(istream &in, MTime &t)
201{
202 TString date, time;
203 date.ReadToDelim(in, ' ');
204 time.ReadToDelim(in, ' ');
205 t.SetString(Form("%s %s", date.Data(), time.Data()));
206 return in;
207}
208
209inline MTime::operator double() const //[s]
210{
211 return ((Double_t)fMjd*kDay+(Long_t)fTime+fNanoSec/1e6)/1000;
212}
213
214inline double MTime::operator()() const //[s]
215{
216 return operator double();
217}
218
219inline bool MTime::operator<(const MTime &t) const
220{
221 if (fMjd<t.fMjd)
222 return true;
223 if (fMjd==t.fMjd && fTime<t.fTime)
224 return true;
225 if (fMjd==t.fMjd && fTime==t.fTime && fNanoSec<t.fNanoSec)
226 return true;
227 return false;
228}
229
230inline bool MTime::operator>(const MTime &t) const
231{
232 if (fMjd>t.fMjd)
233 return true;
234 if (fMjd==t.fMjd && fTime>t.fTime)
235 return true;
236 if (fMjd==t.fMjd && fTime==t.fTime && fNanoSec>t.fNanoSec)
237 return true;
238 return false;
239}
240
241inline bool MTime::operator<=(const MTime &t) const
242{
243 return !operator>(t);
244}
245
246inline bool MTime::operator>=(const MTime &t) const
247{
248 return !operator<(t);
249}
250
251inline bool MTime::operator==(const MTime &t) const
252{
253 return fNanoSec==t.fNanoSec && fTime==t.fTime && fMjd==t.fMjd;
254}
255
256inline bool MTime::operator!=(const MTime &t) const
257{
258 return fNanoSec!=t.fNanoSec || fTime!=t.fTime || fMjd!=t.fMjd;
259}
260
261inline bool MTime::operator!() const
262{
263 return fNanoSec==0 && (ULong_t)fTime==0 && fMjd==0;
264}
265
266#endif
Note: See TracBrowser for help on using the repository browser.