FACT++  1.0
string StateMachineSmartFACT::EventHist::get ( ) const
inline

Definition at line 487 of file smartfact.cc.

References begin, and end.

Referenced by StateMachineSmartFACT::HandleControlMessageImp().

488  {
489  ostringstream out;
490 
491  string last = "";
492  for (auto it=begin(); it!=end(); it++)
493  {
494  const string tm = it->time.GetAsStr("%H:%M:%S ");
495  out << (tm!=last?tm:"--:--:-- ") << it->msg << "<br/>";
496  last = tm;
497  }
498 
499  return out.str();
500  }
double begin
double end

+ Here is the caller graph for this function: