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

Last change on this file since 5061 was 5061, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 6.4 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
90 // Getter functions
91 Double_t GetMjd() const;
92 Double_t GetGmst() const;
93 TString GetString() const;
94 TString GetStringFmt(const char *fmt=0) const;
95 TString GetSqlDateTime() const;
96 TString GetSqlTimeStamp() const;
97 TString GetFileName() const;
98 void GetDate(UShort_t &y, Byte_t &m, Byte_t &d) const;
99 void GetDateOfSunrise(UShort_t &y, Byte_t &m, Byte_t &d) const;
100 TTime GetRootTime() const;
101 Double_t GetAxisTime() const;
102 Long_t GetTime() const { return (Long_t)fTime; } // [ms] Time of Day returned in the range [-11h, 13h)
103 void GetTime(Byte_t &h, Byte_t &m, Byte_t &s, UShort_t &ms) const;
104 void GetTime(Byte_t &h, Byte_t &m, Byte_t &s) const
105 {
106 UShort_t ms;
107 GetTime(h, m, s, ms);
108 }
109
110 UInt_t Year() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return y; }
111 UInt_t Month() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return m; }
112 UInt_t Day() const { UShort_t y; Byte_t m, d; GetDate(y,m,d); return d; }
113 UInt_t Hour() const { Byte_t h, m, s; GetTime(h,m,s); return h; }
114 UInt_t Min() const { Byte_t h, m, s; GetTime(h,m,s); return m; }
115 UInt_t Sec() const { Byte_t h, m, s; GetTime(h,m,s); return s; }
116
117 Bool_t IsMidnight() const { return (Long_t)fTime==0 && fNanoSec==0; }
118
119 // I/O functions
120 istream &ReadBinary(istream &fin);
121
122 void AsciiRead(istream &fin);
123 Bool_t AsciiWrite(ostream &out) const;
124
125 // Conversion functions
126 operator double() const; //[s]
127 double operator()() const; //[s]
128
129 // Calculation functions
130 void AddMilliSeconds(UInt_t ms);
131 void Minus1ns();
132 void Plus1ns();
133 void SetMean(const MTime &t0, const MTime &t1);
134 void SetMean(Double_t t0, Double_t t1);
135 /*
136 MTime operator-(const MTime &tm1);
137 void operator-=(const MTime &t);
138 MTime operator+(const MTime &t1);
139 void operator+=(const MTime &t);
140 */
141
142 // Base comparison operators
143 bool operator<(const MTime &t) const;
144 bool operator>(const MTime &t) const;
145
146 // Derived comparison operators
147 bool operator<=(const MTime &t) const;
148 bool operator>=(const MTime &t) const;
149 bool operator==(const MTime &t) const;
150 bool operator!=(const MTime &t) const;
151 bool operator!() const;
152
153 ClassDef(MTime, 3) //A generalized MARS time stamp
154};
155
156inline ostream &operator<<(ostream &out, const MTime &t)
157{
158 out << t.GetString();
159 return out;
160}
161
162inline istream &operator>>(istream &in, MTime &t)
163{
164 TString date, time;
165 date.ReadToDelim(in, ' ');
166 time.ReadToDelim(in, ' ');
167 t.SetString(Form("%s %s", date.Data(), time.Data()));
168 return in;
169}
170
171inline MTime::operator double() const //[s]
172{
173 return ((Double_t)fMjd*kDay+(Long_t)fTime+fNanoSec/1e6)/1000;
174}
175
176inline double MTime::operator()() const //[s]
177{
178 return operator double();
179}
180
181inline bool MTime::operator<(const MTime &t) const
182{
183 if (fMjd<t.fMjd)
184 return true;
185 if (fMjd==t.fMjd && fTime<t.fTime)
186 return true;
187 if (fMjd==t.fMjd && fTime==t.fTime && fNanoSec<t.fNanoSec)
188 return true;
189 return false;
190}
191
192inline bool MTime::operator>(const MTime &t) const
193{
194 if (fMjd>t.fMjd)
195 return true;
196 if (fMjd==t.fMjd && fTime>t.fTime)
197 return true;
198 if (fMjd==t.fMjd && fTime==t.fTime && fNanoSec>t.fNanoSec)
199 return true;
200 return false;
201}
202
203inline bool MTime::operator<=(const MTime &t) const
204{
205 return !operator>(t);
206}
207
208inline bool MTime::operator>=(const MTime &t) const
209{
210 return !operator<(t);
211}
212
213inline bool MTime::operator==(const MTime &t) const
214{
215 return fNanoSec==t.fNanoSec && fTime==t.fTime && fMjd==t.fMjd;
216}
217
218inline bool MTime::operator!=(const MTime &t) const
219{
220 return fNanoSec!=t.fNanoSec || fTime!=t.fTime || fMjd!=t.fMjd;
221}
222
223inline bool MTime::operator!() const
224{
225 return fNanoSec==0 && (ULong_t)fTime==0 && fMjd==0;
226}
227
228#endif
Note: See TracBrowser for help on using the repository browser.