HOPS
HOPS class reference
legacy_hops_date.hh
Go to the documentation of this file.
1 #ifndef LEGACY_HOPS_DATA_HH__
2 #define LEGACY_HOPS_DATA_HH__
3 
4 namespace hops
5 {
6 
15 //struct compatible with the legacy hops date format
17 {
18  short year;
19  short day;
20  short hour;
21  short minute;
22  double second; //in original struct, this is float
23 };
24 
25 } // namespace hops
26 
27 #endif
Definition: MHO_ChannelLabeler.hh:17
short hour
Definition: legacy_hops_date.hh:20
short minute
Definition: legacy_hops_date.hh:21
short day
Definition: legacy_hops_date.hh:19
double second
Definition: legacy_hops_date.hh:22
short year
Definition: legacy_hops_date.hh:18
A struct to avoid name collisions between the mk4utils 'data' struct and the 'date' header library.
Definition: legacy_hops_date.hh:17