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

Last change on this file since 7419 was 7384, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 6.5 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
24struct timeval;
25
26class MTime : public MParContainer
27{
28public:
29 static const UInt_t kHour; // [ms] one hour
30 static const UInt_t kDay; // [ms] one day
31
32private:
33 UInt_t fMjd; // [d] Day in the century (Day of sun rise)
34 TTime fTime; // [ms] Time of Day (-11h<=x<13h)
35 UInt_t fNanoSec; // [ns] NanoSec part of TimeOfDay (<1000000)
36
37
38 ULong_t GetTime24() const
39 {
40 return (Long_t)fTime<0 ? (Long_t)fTime+kDay : (ULong_t)fTime;
41 }
42 void Init(const char *name, const char *title)
43 {
44 fName = name ? name : "MTime";
45 fTitle = title ? title : "Generalized time stamp";
46 }
47
48public:
49 MTime(const char *name=NULL, const char *title=NULL)
50 {
51 Init(name, title);
52 Clear();
53 }
54 MTime(const struct timeval &tm)
55 {
56 Init(NULL, NULL);
57 Set(tm);
58 }
59 MTime(Double_t mjd);
60 MTime(const MTime& t) : fMjd(t.fMjd), fTime(t.fTime), fNanoSec(t.fNanoSec)
61 {
62 Init(NULL, NULL);
63 }
64
65 void operator=(const MTime &t)
66 {
67 fMjd = t.fMjd;
68 fTime = t.fTime;
69 fNanoSec = t.fNanoSec;
70 }
71
72 void Clear(const Option_t *o="") { fMjd=0; fTime=0; fNanoSec=0; }
73
74 void Print(Option_t *t=NULL) const;
75
76 void Now();
77
78 // Setter functions
79 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);
80 void Set(const struct timeval &tv);
81 Bool_t SetString(const char *str);
82 Bool_t SetSqlDateTime(const char *str);
83 Bool_t SetSqlTimeStamp(const char *str);
84 void SetCT1Time(UInt_t mjd, UInt_t t1, UInt_t t0);
85 Bool_t SetStringFmt(const char *time, const char *fmt);
86 Bool_t UpdMagicTime(Byte_t h, Byte_t m, Byte_t s, UInt_t ns);
87 Bool_t SetMjd(UInt_t mjd, ULong_t ms, UInt_t ns=0);
88 void SetMjd(Double_t m);
89 void SetAxisTime(Double_t time);
90
91 // Getter functions
92 Double_t GetMjd() const;
93 Double_t GetGmst() const;
94 TString GetString() const;
95 TString GetStringFmt(const char *fmt=0) const;
96 TString GetSqlDateTime() const;
97 TString GetSqlTimeStamp() const;
98 TString GetFileName() const;
99 void GetDate(UShort_t &y, Byte_t &m, Byte_t &d) const;
100 void GetDateOfSunrise(UShort_t &y, Byte_t &m, Byte_t &d) const;
101 TTime GetRootTime() const;
102 Double_t GetAxisTime() const;
103 Double_t GetMoonPhase() const;
104 Double_t GetMoonPeriod() const;
105 Int_t GetMagicPeriod() const;
106 Long_t GetTime() const { return (Long_t)fTime; } // [ms] Time of Day returned in the range [-11h, 13h)
107 void GetTime(Byte_t &h, Byte_t &m, Byte_t &s, UShort_t &ms) const;
108 void GetTime(Byte_t &h, Byte_t &m, Byte_t &s) const
109 {
110 UShort_t ms;
111 GetTime(h, m, s, ms);
112 }
113
114 UInt_t Year() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return y; }
115 UInt_t Month() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return m; }
116 UInt_t Day() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return d; }
117 UInt_t Hour() const { Byte_t h, m, s; GetTime(h,m,s); return h; }
118 UInt_t Min() const { Byte_t h, m, s; GetTime(h,m,s); return m; }
119 UInt_t Sec() const { Byte_t h, m, s; GetTime(h,m,s); return s; }
120
121 Bool_t IsMidnight() const { return (Long_t)fTime==0 && fNanoSec==0; }
122
123 // I/O functions
124 istream &ReadBinary(istream &fin);
125
126 void AsciiRead(istream &fin);
127 Bool_t AsciiWrite(ostream &out) const;
128
129 // Conversion functions
130 operator double() const; //[s]
131 double operator()() const; //[s]
132
133 // Calculation functions
134 void AddMilliSeconds(UInt_t ms);
135 void Minus1ns();
136 void Plus1ns();
137 void SetMean(const MTime &t0, const MTime &t1);
138 void SetMean(Double_t t0, Double_t t1);
139 /*
140 MTime operator-(const MTime &tm1);
141 void operator-=(const MTime &t);
142 MTime operator+(const MTime &t1);
143 void operator+=(const MTime &t);
144 */
145
146 // Base comparison operators
147 bool operator<(const MTime &t) const;
148 bool operator>(const MTime &t) const;
149
150 // Derived comparison operators
151 bool operator<=(const MTime &t) const;
152 bool operator>=(const MTime &t) const;
153 bool operator==(const MTime &t) const;
154 bool operator!=(const MTime &t) const;
155 bool operator!() const;
156
157 ClassDef(MTime, 3) //A generalized MARS time stamp
158};
159
160inline ostream &operator<<(ostream &out, const MTime &t)
161{
162 out << t.GetString();
163 return out;
164}
165
166inline istream &operator>>(istream &in, MTime &t)
167{
168 TString date, time;
169 date.ReadToDelim(in, ' ');
170 time.ReadToDelim(in, ' ');
171 t.SetString(Form("%s %s", date.Data(), time.Data()));
172 return in;
173}
174
175inline MTime::operator double() const //[s]
176{
177 return ((Double_t)fMjd*kDay+(Long_t)fTime+fNanoSec/1e6)/1000;
178}
179
180inline double MTime::operator()() const //[s]
181{
182 return operator double();
183}
184
185inline bool MTime::operator<(const MTime &t) const
186{
187 if (fMjd<t.fMjd)
188 return true;
189 if (fMjd==t.fMjd && fTime<t.fTime)
190 return true;
191 if (fMjd==t.fMjd && fTime==t.fTime && fNanoSec<t.fNanoSec)
192 return true;
193 return false;
194}
195
196inline bool MTime::operator>(const MTime &t) const
197{
198 if (fMjd>t.fMjd)
199 return true;
200 if (fMjd==t.fMjd && fTime>t.fTime)
201 return true;
202 if (fMjd==t.fMjd && fTime==t.fTime && fNanoSec>t.fNanoSec)
203 return true;
204 return false;
205}
206
207inline bool MTime::operator<=(const MTime &t) const
208{
209 return !operator>(t);
210}
211
212inline bool MTime::operator>=(const MTime &t) const
213{
214 return !operator<(t);
215}
216
217inline bool MTime::operator==(const MTime &t) const
218{
219 return fNanoSec==t.fNanoSec && fTime==t.fTime && fMjd==t.fMjd;
220}
221
222inline bool MTime::operator!=(const MTime &t) const
223{
224 return fNanoSec!=t.fNanoSec || fTime!=t.fTime || fMjd!=t.fMjd;
225}
226
227inline bool MTime::operator!() const
228{
229 return fNanoSec==0 && (ULong_t)fTime==0 && fMjd==0;
230}
231
232#endif
Note: See TracBrowser for help on using the repository browser.