FACT++  1.0
double Time::SecondsOfDay ( ) const
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().

162 {
163  const time_duration tod = time_of_day();
164 
165  const double frac = double(tod.fractional_seconds())/time_duration::ticks_per_second();
166  const double sec = tod.total_seconds()+frac;
167 
168  return sec;
169 }

+ Here is the caller graph for this function: