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

Last change on this file since 4983 was 4920, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 6.3 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 // I/O functions
118 istream &ReadBinary(istream &fin);
119
120 void AsciiRead(istream &fin);
121 Bool_t AsciiWrite(ostream &out) const;
122
123 // Conversion functions
124 operator double() const; //[s]
125 double operator()() const; //[s]
126
127 // Calculation functions
128 void AddMilliSeconds(UInt_t ms);
129 void Minus1ns();
130 void Plus1ns();
131 void SetMean(const MTime &t0, const MTime &t1);
132 void SetMean(Double_t t0, Double_t t1);
133 /*
134 MTime operator-(const MTime &tm1);
135 void operator-=(const MTime &t);
136 MTime operator+(const MTime &t1);
137 void operator+=(const MTime &t);
138 */
139
140 // Base comparison operators
141 bool operator<(const MTime &t) const;
142 bool operator>(const MTime &t) const;
143
144 // Derived comparison operators
145 bool operator<=(const MTime &t) const;
146 bool operator>=(const MTime &t) const;
147 bool operator==(const MTime &t) const;
148 bool operator!=(const MTime &t) const;
149 bool operator!() const;
150
151 ClassDef(MTime, 3) //A generalized MARS time stamp
152};
153
154inline ostream &operator<<(ostream &out, const MTime &t)
155{
156 out << t.GetString();
157 return out;
158}
159
160inline istream &operator>>(istream &in, MTime &t)
161{
162 TString date, time;
163 date.ReadToDelim(in, ' ');
164 time.ReadToDelim(in, ' ');
165 t.SetString(Form("%s %s", date.Data(), time.Data()));
166 return in;
167}
168
169inline MTime::operator double() const //[s]
170{
171 return ((Double_t)fMjd*kDay+(Long_t)fTime+fNanoSec/1e6)/1000;
172}
173
174inline double MTime::operator()() const //[s]
175{
176 return operator double();
177}
178
179inline bool MTime::operator<(const MTime &t) const
180{
181 if (fMjd<t.fMjd)
182 return true;
183 if (fMjd==t.fMjd && fTime<t.fTime)
184 return true;
185 if (fMjd==t.fMjd && fTime==t.fTime && fNanoSec<t.fNanoSec)
186 return true;
187 return false;
188}
189
190inline bool MTime::operator>(const MTime &t) const
191{
192 if (fMjd>t.fMjd)
193 return true;
194 if (fMjd==t.fMjd && fTime>t.fTime)
195 return true;
196 if (fMjd==t.fMjd && fTime==t.fTime && fNanoSec>t.fNanoSec)
197 return true;
198 return false;
199}
200
201inline bool MTime::operator<=(const MTime &t) const
202{
203 return !operator>(t);
204}
205
206inline bool MTime::operator>=(const MTime &t) const
207{
208 return !operator<(t);
209}
210
211inline bool MTime::operator==(const MTime &t) const
212{
213 return fNanoSec==t.fNanoSec && fTime==t.fTime && fMjd==t.fMjd;
214}
215
216inline bool MTime::operator!=(const MTime &t) const
217{
218 return fNanoSec!=t.fNanoSec || fTime!=t.fTime || fMjd!=t.fMjd;
219}
220
221inline bool MTime::operator!() const
222{
223 return fNanoSec==0 && (ULong_t)fTime==0 && fMjd==0;
224}
225
226#endif
Note: See TracBrowser for help on using the repository browser.