The Gaudi Framework  v29r0 (ff2e7097)
TimerForSequencer.cpp
Go to the documentation of this file.
1 // local
2 #include "TimerForSequencer.h"
3 
4 //-----------------------------------------------------------------------------
5 // Implementation file for class : TimerForSequencer
6 //
7 // 2013-04-21 : Chris Jones
8 //-----------------------------------------------------------------------------
9 
11 {
14 
15  //== Update the counter
16  m_num += 1ULL;
17  m_sum += lastTime;
18  m_sum2 += lastTime * lastTime;
19  m_sumCpu += cpuTime;
20 
21  // Branchless update, only cast
22  bool numIsFirst = ( 1ULL == m_num );
23  m_min += lastTime * numIsFirst;
24  m_max += lastTime * numIsFirst;
25 
26  m_min = lastTime < m_min ? lastTime : m_min;
27  m_max = lastTime > m_max ? lastTime : m_max;
28 
31 
32  return lastTime;
33 }
34 
36 {
37  float ave = 0.f;
38  float cpu = 0.f;
39 
40  if ( 0ULL != m_num ) {
41  ave = m_sum / m_num;
42  cpu = m_sumCpu / m_num;
43  }
44 
45  ave *= m_factor;
46  cpu *= m_factor;
47  float min = m_min * m_factor;
48  float max = m_max * m_factor;
49  float sum = m_sum * m_factor;
50 
51  // Calculate the sigma with 2 momenta. ROOT histos call this quantity
52  // RMS but just to be consistent with paw.
53  // The division is by N-1 since one degree of freedom is used to calculate
54  // the average. See your favourite book for the proof!
55  float sigma = m_num <= 1ULL ? 0.f : m_factor * sqrt( ( m_sum2 - m_sum * m_sum / m_num ) / ( m_num - 1 ) );
56 
57  return s << m_name.substr( 0, m_size ) << format( "| %9.3f | %9.3f | %8.3f %9.1f %8.2f | %7d | %9.3f |", cpu, ave,
58  min, max, sigma, m_num, sum * 0.001f );
59 }
60 
61 std::string TimerForSequencer::header( std::string::size_type size )
62 {
63  return "Algorithm" + std::string( std::max( std::string::size_type( 21 ), size ) - 20, ' ' ) +
64  "(millisec) | <user> | <clock> |" + " min max sigma | entries | total (s) |";
65 }
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:24
MsgStream & fillStream(MsgStream &s) const
Write measured time into the message stream.
static std::string header(std::string::size_type size)
header matching the previous format
GAUDI_API std::string format(const char *,...)
MsgStream format utility "a la sprintf(...)".
Definition: MsgStream.cpp:120
double sum(double x, double y, double z)
uint64_t stop()
Stop time measurement and return the last elapsed time.
unsigned long long uint64_t
Definition: instrset.h:143
GAUDI_API longlong cpuTime(TimeType typ=milliSec, InfoType fetch=Times, long pid=-1)
Consumed CPU time of process in milliseconds.
Definition: Timing.cpp:196
STL class.
double lastTime() const
returns the last measured time
GAUDI_API longlong currentTime()
Retrieve absolute system time.
Definition: Timing.h:269
T max(T...args)
string s
Definition: gaudirun.py:253
T substr(T...args)