- Returns
- the seconds of the day including the fractional seconds.
Definition at line 161 of file Time.cc.
Referenced by Mjd(), RootTime(), UnixDate(), and UnixTime().
163 const time_duration tod = time_of_day();
165 const double frac = double(tod.fractional_seconds())/time_duration::ticks_per_second();
166 const double sec = tod.total_seconds()+frac;