All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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 
13 
14  //== Update the counter
15  m_num += 1ULL;
16  m_sum += lastTime;
17  m_sum2 += lastTime*lastTime;
18  m_sumCpu += cpuTime;
19 
20  // Branchless update, only cast
21  bool numIsFirst= (1ULL == m_num) ;
22  m_min += lastTime * numIsFirst;
23  m_max += lastTime * numIsFirst;
24 
25  m_min = lastTime < m_min ? lastTime : m_min;
26  m_max = lastTime > m_max ? lastTime : m_max;
27 
30 
31  return lastTime;
32 }
33 
35 {
36  float ave = 0.f;
37  float cpu = 0.f;
38 
39  if ( 0ULL != m_num ) {
40  ave = m_sum / m_num;
41  cpu = m_sumCpu / m_num;
42  }
43 
44  ave *= m_factor;
45  cpu *= m_factor;
46  float min = m_min * m_factor;
47  float max = m_max * m_factor;
48  float sum = m_sum * m_factor;
49 
50  // Calculate the sigma with 2 momenta. ROOT histos call this quantity
51  // RMS but just to be consistent with paw.
52  // The division is by N-1 since one degree of freedom is used to calculate
53  // the average. See your favourite book for the proof!
54  float sigma = m_num <= 1ULL
55  ? 0.f
56  : m_factor * sqrt( (m_sum2 - m_sum*m_sum/m_num)/(m_num-1) );
57 
58  return s << m_name.substr(0, m_size)
59  << format( "| %9.3f | %9.3f | %8.3f %9.1f %8.2f | %7d | %9.3f |",
60  cpu, ave, min, max, sigma, m_num, sum * 0.001f );
61  }
62 
63 std::string TimerForSequencer::header( std::string::size_type size )
64 {
65  return "Algorithm" + std::string( std::max(std::string::size_type(21),size) - 20, ' ' )
66  + "(millisec) | <user> | <clock> |"
67  + " min max sigma | entries | total (s) |";
68 }
69 
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:119
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:144
GAUDI_API longlong cpuTime(TimeType typ=milliSec, InfoType fetch=Times, long pid=-1)
Consumed CPU time of process in milliseconds.
Definition: Timing.cpp:167
STL class.
double lastTime() const
returns the last measured time
GAUDI_API longlong currentTime()
Retrieve absolute system time.
Definition: Timing.h:245
T max(T...args)
string s
Definition: gaudirun.py:245
T substr(T...args)