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

Last change on this file since 8945 was 8907, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 7.9 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 UpdMagicTime(Byte_t h, Byte_t m, Byte_t s, UInt_t ns);
101 Bool_t SetMjd(UInt_t mjd, ULong_t ms, UInt_t ns=0);
102 void SetMjd(Double_t m);
103 void SetAxisTime(Double_t time);
104 void SetUnixTime(Long64_t sec, ULong64_t usec=0);
105 void SetEaster(Short_t year=0);
106
107 // Getter functions
108 Double_t GetJD() const { return GetMjd()+2400000.5; }
109 Double_t GetMjd() const;
110 Double_t GetGmst() const;
111 TString GetString() const;
112 TString GetStringFmt(const char *fmt=0, const char *loc=0) const;
113 TString GetSqlDateTime() const;
114 TString GetSqlTimeStamp() const;
115 TString GetFileName() const;
116 void GetDate(UShort_t &y, Byte_t &m, Byte_t &d) const;
117 void GetDateOfSunrise(UShort_t &y, Byte_t &m, Byte_t &d) const;
118 TTime GetRootTime() const;
119 TDatime GetRootDatime() const;
120 Double_t GetAxisTime() const;
121 Double_t GetMoonPhase() const;
122 Double_t GetMoonPeriod() const;
123 Int_t GetMagicPeriod() const;
124 Long_t GetTime() const { return (Long_t)fTime; } // [ms] Time of Day returned in the range [-11h, 13h)
125 void GetTime(Byte_t &h, Byte_t &m, Byte_t &s, UShort_t &ms) const;
126 void GetTime(Byte_t &h, Byte_t &m, Byte_t &s) const
127 {
128 UShort_t ms;
129 GetTime(h, m, s, ms);
130 }
131
132 UInt_t Year() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return y; }
133 UInt_t Month() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return m; }
134 UInt_t Day() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return d; }
135 Byte_t WeekDay() const; // { return TMath::FloorNint(GetMjd()+3)%7; } // Return Day of the week: Sun=0, Mon=1, ..., Sat=6
136 UInt_t Hour() const { Byte_t h, m, s; GetTime(h,m,s); return h; }
137 UInt_t Min() const { Byte_t h, m, s; GetTime(h,m,s); return m; }
138 UInt_t Sec() const { Byte_t h, m, s; GetTime(h,m,s); return s; }
139 UInt_t MilliSec() const { return (GetTime()+kDay)%1000; }
140 UInt_t MicroSec() const { return fNanoSec/1000+MilliSec()*1000; }
141 UInt_t NanoSec() const { return fNanoSec+MilliSec()*1000000; }
142 Int_t Week() const { Short_t y; return Week(y); }
143 Int_t Week(Short_t &year) const;
144 UInt_t DayOfYear() const;
145
146 Bool_t IsMidnight() const { return (Long_t)fTime==0 && fNanoSec==0; }
147 Bool_t IsLeapYear() const;
148
149 // I/O functions
150 istream &ReadBinary(istream &fin);
151
152 void AsciiRead(istream &fin);
153 Bool_t AsciiWrite(ostream &out) const;
154
155 // Conversion functions
156 operator double() const; //[s]
157 double operator()() const; //[s]
158
159 Double_t AsDouble() const { return GetMjd(); }
160 //const char *AsString() const { return GetString(); }
161 //const char *AsSQLString() const { return GetSqldateTime(); }
162
163 // Calculation functions
164 void AddMilliSeconds(UInt_t ms);
165 void Minus1ns();
166 void Plus1ns();
167 void SetMean(const MTime &t0, const MTime &t1);
168 void SetMean(Double_t t0, Double_t t1);
169 /*
170 MTime operator-(const MTime &tm1);
171 void operator-=(const MTime &t);
172 MTime operator+(const MTime &t1);
173 void operator+=(const MTime &t);
174 */
175
176 // Base comparison operators
177 bool operator<(const MTime &t) const;
178 bool operator>(const MTime &t) const;
179
180 // Derived comparison operators
181 bool operator<=(const MTime &t) const;
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;
186
187 static MTime GetEaster(Short_t year=-1);
188 static Int_t GetMjdWeek1(Short_t year);
189
190 ClassDef(MTime, 3) //A generalized MARS time stamp
191};
192
193inline ostream &operator<<(ostream &out, const MTime &t)
194{
195 out << t.GetString();
196 return out;
197}
198
199inline istream &operator>>(istream &in, MTime &t)
200{
201 TString date, time;
202 date.ReadToDelim(in, ' ');
203 time.ReadToDelim(in, ' ');
204 t.SetString(Form("%s %s", date.Data(), time.Data()));
205 return in;
206}
207
208inline MTime::operator double() const //[s]
209{
210 return ((Double_t)fMjd*kDay+(Long_t)fTime+fNanoSec/1e6)/1000;
211}
212
213inline double MTime::operator()() const //[s]
214{
215 return operator double();
216}
217
218inline bool MTime::operator<(const MTime &t) const
219{
220 if (fMjd<t.fMjd)
221 return true;
222 if (fMjd==t.fMjd && fTime<t.fTime)
223 return true;
224 if (fMjd==t.fMjd && fTime==t.fTime && fNanoSec<t.fNanoSec)
225 return true;
226 return false;
227}
228
229inline bool MTime::operator>(const MTime &t) const
230{
231 if (fMjd>t.fMjd)
232 return true;
233 if (fMjd==t.fMjd && fTime>t.fTime)
234 return true;
235 if (fMjd==t.fMjd && fTime==t.fTime && fNanoSec>t.fNanoSec)
236 return true;
237 return false;
238}
239
240inline bool MTime::operator<=(const MTime &t) const
241{
242 return !operator>(t);
243}
244
245inline bool MTime::operator>=(const MTime &t) const
246{
247 return !operator<(t);
248}
249
250inline bool MTime::operator==(const MTime &t) const
251{
252 return fNanoSec==t.fNanoSec && fTime==t.fTime && fMjd==t.fMjd;
253}
254
255inline bool MTime::operator!=(const MTime &t) const
256{
257 return fNanoSec!=t.fNanoSec || fTime!=t.fTime || fMjd!=t.fMjd;
258}
259
260inline bool MTime::operator!() const
261{
262 return fNanoSec==0 && (ULong_t)fTime==0 && fMjd==0;
263}
264
265#endif
Note: See TracBrowser for help on using the repository browser.