The Gaudi Framework  v32r2 (46d42edc)
ChronoStatSvc.cpp
Go to the documentation of this file.
1 #ifdef _WIN32
2 # pragma warning( disable : 4786 )
3 #endif
4 // ============================================================================
5 // STD & STL
6 // ============================================================================
7 #include <algorithm>
8 #include <fstream>
9 #include <functional>
10 #include <iomanip>
11 #include <iostream>
12 #include <string>
13 // ============================================================================
14 // GaudiKernel
15 // ============================================================================
20 #include "GaudiKernel/Kernel.h"
21 #include "GaudiKernel/MsgStream.h"
22 #include "GaudiKernel/Stat.h"
23 #include "GaudiKernel/StatEntity.h"
24 #include "GaudiKernel/StatusCode.h"
25 // ============================================================================
27 // ============================================================================
28 #include "ChronoStatSvc.h"
29 // ============================================================================
32 // ============================================================================
34 // ============================================================================
41 // ============================================================================
42 // ============================================================================
43 // comparison functor
44 // ============================================================================
45 constexpr struct CompareFirstOfPointerPair_t {
46  template <typename S, typename T>
47  inline bool operator()( const std::pair<S*, T*>& p1, const std::pair<S*, T*>& p2 ) const {
48  auto e1 = p1.first;
49  auto e2 = p2.first;
50  return ( !e1 || !e2 ) || *e1 < *e2;
51  }
53 // ============================================================================
54 // Compound assignment operator.
55 // ============================================================================
56 void ChronoStatSvc::merge( const ChronoStatSvc& css ) {
57 
58  // Add the content of the maps, leave the rest unchanged
59 
60  lock_t lock( m_mutex );
61  lock_t otherLock( css.m_mutex );
62 
63  // Merge Chronomaps
64  for ( auto& item : css.m_chronoEntities ) {
65  const IChronoStatSvc::ChronoTag& key = item.first;
66  const ChronoEntity& val = item.second;
67  if ( m_chronoEntities.count( key ) )
68  m_chronoEntities[key] += val;
69  else
71  }
72 
73  // Merge StatMaps
74  for ( auto& item : css.m_statEntities ) {
75  const IChronoStatSvc::StatTag& key = item.first;
76  const StatEntity& val = item.second;
77  if ( m_statEntities.count( key ) )
78  m_statEntities[key] += val;
79  else
80  m_statEntities.emplace( key, val );
81  }
82 }
83 // ============================================================================
84 // Implementation of IService::initialize()
85 // ============================================================================
88  if ( sc.isFailure() ) return sc;
90  // Set my own properties
91  sc = setProperties();
92 
93  if ( sc.isFailure() ) {
94  error() << "setting my properties" << endmsg;
95  return StatusCode::FAILURE;
96  }
97 
98  // only add an EndEvent listener if per-event output requested
99  if ( !m_perEventFile.empty() ) {
101  if ( !m_ofd.is_open() ) {
102  error() << "unable to open per-event output file \"" << m_perEventFile << "\"" << endmsg;
103  return StatusCode::FAILURE;
104  } else {
105  auto ii = serviceLocator()->service<IIncidentSvc>( "IncidentSvc" );
106  if ( !ii ) {
107  error() << "Unable to find IncidentSvc" << endmsg;
108  return StatusCode::FAILURE;
109  }
110  ii->addListener( this, IncidentType::EndEvent );
111  }
112  }
113 
119  chronoStart( name() );
121  return StatusCode::SUCCESS;
122 }
123 // ============================================================================
124 // Implementation of IService::finalize()
125 // ============================================================================
127  std::string local = name() + ".finalize()";
129  MsgStream main_log( msgSvc(), local );
132  chronoStop( name() );
133 
134  if ( m_ofd.is_open() ) {
135  debug() << "writing per-event timing data to '" << m_perEventFile << "'" << endmsg;
136  for ( const auto& itr : m_perEvtTime ) {
137  m_ofd << itr.first.substr( 0, itr.first.length() - 8 ) << " ";
138  for ( const auto& itt : itr.second ) { m_ofd << " " << (long int)( itt ); }
139  m_ofd << std::endl;
140  }
141 
142  m_ofd.close();
143  }
144 
149  MsgStream log( msgSvc(), "*****Chrono*****" );
150  const std::string stars( ( m_chronoCoutFlag ) ? 126 : 100, '*' );
151  if ( m_chronoCoutFlag ) {
152  std::cout << stars << std::endl;
153  if ( isMT() ) { std::cout << "WARNING: MT job; statistics are unreliable" << std::endl; }
154  std::cout << local << " The Final CPU consumption (Chrono) Table "
155  << ( m_chronoOrderFlag ? "(ordered)" : "(not ordered)" ) << std::endl;
156  std::cout << stars << std::endl;
157  } else {
158  log << m_chronoPrintLevel << stars << endmsg;
159  if ( isMT() ) { log << m_chronoPrintLevel << "WARNING: MT job; statistics are unreliable" << endmsg; }
160  log << m_chronoPrintLevel << " The Final CPU consumption ( Chrono ) Table "
161  << ( m_chronoOrderFlag ? "(ordered)" : "(not ordered)" ) << endmsg;
162  log << m_chronoPrintLevel << stars << endmsg;
163  }
165  { // prepare container for printing
167  tmpCont.reserve( m_chronoEntities.size() );
168  for ( auto& it : m_chronoEntities ) { tmpCont.emplace_back( &it.second, &it.first ); }
169  // sort it
170  if ( m_chronoOrderFlag ) std::sort( tmpCont.begin(), tmpCont.end(), CompareFirstOfPointerPair );
171  // print User Time statistics
172  if ( m_printUserTime ) {
173  for ( auto iter = tmpCont.begin(); tmpCont.end() != iter; ++iter ) {
174  //
175  ChronoEntity* entity = iter->first;
176  if ( !entity ) { continue; }
177  const ChronoTag* tag = iter->second;
178  if ( !tag ) { continue; }
179  entity->stop();
181  if ( m_chronoCoutFlag )
183  {
184  std::cout << *tag << "\t" << entity->outputUserTime() << std::endl;
185  } else
186  {
187  MsgStream( msgSvc(), *tag ) << m_chronoPrintLevel << entity->outputUserTime() << endmsg;
188  }
189  //
190  }
191  }
193  if ( m_printSystemTime ) {
197  std::cout << stars << std::endl;
198  } else if ( m_printUserTime && !m_chronoCoutFlag ) {
199  log << m_chronoPrintLevel << stars << endmsg;
200  }
202  for ( auto iter = tmpCont.begin(); tmpCont.end() != iter; ++iter ) {
204  ChronoEntity* entity = iter->first;
205  if ( !entity ) { continue; }
206  const ChronoTag* tag = iter->second;
207  if ( !tag ) { continue; }
208  entity->stop();
210  if ( m_chronoCoutFlag )
212  {
213  std::cout << *tag << "\t" << entity->outputSystemTime() << std::endl;
214  } else
215  {
216  MsgStream( msgSvc(), *tag ) << m_chronoPrintLevel << entity->outputSystemTime() << endmsg;
217  }
218  //
219  }
220  }
222  if ( m_printEllapsedTime ) {
226  std::cout << stars << std::endl;
227  } else if ( ( m_printUserTime || m_printSystemTime ) && !m_chronoCoutFlag ) {
228  log << m_chronoPrintLevel << stars << endmsg;
229  }
231  for ( const auto& i : tmpCont ) {
233  ChronoEntity* entity = i.first;
234  if ( !entity ) { continue; }
235  const ChronoTag* tag = i.second;
236  if ( !tag ) { continue; }
237  entity->stop();
239  if ( m_chronoCoutFlag )
241  {
242  std::cout << *tag << "\t" << entity->outputElapsedTime() << std::endl;
243  } else
244  {
245  MsgStream( msgSvc(), *tag ) << m_chronoPrintLevel << entity->outputElapsedTime() << endmsg;
246  }
247  //
248  }
249  }
251  tmpCont.clear();
252  }
254  if ( m_chronoCoutFlag ) {
255  std::cout << stars << std::endl;
256  } else {
257  log << m_chronoPrintLevel << stars << endmsg;
258  }
259  }
260 
262 
264  if ( m_statTableFlag ) { printStats(); }
265 
266  if ( !m_statsOutFileName.value().empty() ) { saveStats(); }
267 
268  // clear the maps.
272 
273  main_log << MSG::INFO << " Service finalized successfully " << endmsg;
274 
275  return Service::finalize();
276 }
277 // ============================================================================
278 // Implementation of IChronoStatSvc::chronoStart
279 // ============================================================================
280 ChronoEntity* ChronoStatSvc::chronoStart( const ChronoTag& chronoTag ) {
281  ChronoEntity& entity = getEntity( chronoTag );
282  entity.start();
283  return &entity;
284 }
285 // ============================================================================
286 // Implementation of IChronoStatSvc::chronoStop
287 // ============================================================================
288 const ChronoEntity* ChronoStatSvc::chronoStop( const IChronoStatSvc::ChronoTag& chronoTag ) {
289  ChronoEntity& entity = getEntity( chronoTag );
290  entity.stop();
291  return &entity;
292 }
293 // ============================================================================
294 // Implementation of IChronoStatSvc::chronoDelta
295 // ============================================================================
296 IChronoStatSvc::ChronoTime ChronoStatSvc::chronoDelta( const IChronoStatSvc::ChronoTag& chronoTag,
297  IChronoStatSvc::ChronoType theType ) {
298  return getEntity( chronoTag ).delta( theType );
299 }
300 // ============================================================================
301 // Implementation of IChronoStatSvc::chronoPrint
302 // ============================================================================
303 void ChronoStatSvc::chronoPrint( const IChronoStatSvc::ChronoTag& chronoTag ) {
304  MsgStream log( msgSvc(), chronoTag );
305  if ( m_printUserTime ) { log << m_chronoPrintLevel << getEntity( chronoTag ).outputUserTime() << endmsg; }
306  if ( m_printSystemTime ) { log << m_chronoPrintLevel << getEntity( chronoTag ).outputSystemTime() << endmsg; }
307 }
308 // ============================================================================
309 // Implementation of IChronoSvc::chronoStatus
310 // ============================================================================
311 IChronoStatSvc::ChronoStatus ChronoStatSvc::chronoStatus( const IChronoStatSvc::ChronoTag& chronoTag ) {
312  return getEntity( chronoTag ).status();
313 }
314 // ============================================================================
315 // Implementation of IChronoStatSvc::stat
316 // ============================================================================
317 void ChronoStatSvc::stat( const IChronoStatSvc::StatTag& statTag, const IChronoStatSvc::StatFlag& statFlag ) {
318  auto theIter = m_statEntities.find( statTag );
319 
320  StatEntity* theStat = nullptr;
321  // if new entity, specify the number of events to be skipped
322  if ( theIter == m_statEntities.end() ) {
323  // new stat entity
324  StatEntity& theSe = m_statEntities[statTag];
325  theStat = &theSe;
326  } else {
327  // existing stat entity
328  theStat = &theIter->second;
329  }
330 
331  theStat->addFlag( statFlag );
332 }
333 // ============================================================================
334 // Implementation of IChronoStatSvc::statPrint
335 // ============================================================================
336 void ChronoStatSvc::statPrint( const IChronoStatSvc::StatTag& statTag ) {
337  MsgStream log( msgSvc(), statTag );
338  log << m_statPrintLevel << m_statEntities[statTag] << endmsg;
339 }
340 // ============================================================================
341 /* extract the chrono entity for the given tag (name)
342  * @see IChronoStatSvc
343  * @param t chrono tag(name)
344  * @return pointer to chrono entity
345  */
346 // ============================================================================
347 const ChronoEntity* ChronoStatSvc::chrono( const IChronoStatSvc::ChronoTag& t ) const {
348  lock_t lock( m_mutex );
349  auto it = m_chronoEntities.find( t );
350  return m_chronoEntities.end() != it ? &( it->second ) : nullptr;
351 }
352 // ============================================================================
353 /* extract the stat entity for the given tag (name)
354  * @see IChronoStatSvc
355  * @param t stat tag(name)
356  * @return pointer to stat entity
357  */
358 // ============================================================================
359 StatEntity* ChronoStatSvc::stat( const IChronoStatSvc::StatTag& t ) {
360  auto it = m_statEntities.find( t );
361  return m_statEntities.end() != it ? &( it->second ) : nullptr;
362 }
363 // ============================================================================
364 // dump all the statistics into an ASCII file
365 // ============================================================================
367  std::ofstream out( m_statsOutFileName.value(), std::ios_base::out | std::ios_base::trunc );
368  if ( !out.good() ) {
369  info() << "Could not open the output file for writing chrono statistics [" << m_statsOutFileName.value() << "]"
370  << endmsg;
371  return;
372  } else {
373  // format it our way
374  out << std::scientific << std::setprecision( 8 );
375  }
376 
377  // ChronoEntity
379  {
380  lock_t lock( m_mutex );
381  chronos.reserve( m_chronoEntities.size() );
383  []( ChronoMap::const_reference i ) { return std::make_pair( &i.second, &i.first ); } );
384  }
385 
386  // sort it
387  std::sort( std::begin( chronos ), std::end( chronos ), CompareFirstOfPointerPair );
388 
389  // print User Time statistics
390  for ( const auto& iter : chronos ) {
391  //
392  const ChronoEntity* entity = iter.first;
393  if ( !entity ) { continue; }
394 
395  const ChronoTag* tag = iter.second;
396  if ( !tag ) { continue; }
397 
398  // create an entry in the .INI-like table
399  out << "\n[" << *tag << "]\n";
400 
401  // user
402  out << "cpu_user_total = " << entity->uTotalTime() << "\n";
403  out << "cpu_user_min = " << entity->uMinimalTime() << "\n";
404  out << "cpu_user_mean = " << entity->uMeanTime() << "\n";
405  out << "cpu_user_RMS = " << entity->uRMSTime() << "\n";
406  out << "cpu_user_max = " << entity->uMaximalTime() << "\n";
407  out << "cpu_user_nbr = " << entity->nOfMeasurements() << "\n";
408 
409  // system
410  out << "\n"; // just for clarity
411  out << "cpu_system_total = " << entity->kTotalTime() << "\n";
412  out << "cpu_system_min = " << entity->kMinimalTime() << "\n";
413  out << "cpu_system_mean = " << entity->kMeanTime() << "\n";
414  out << "cpu_system_RMS = " << entity->kRMSTime() << "\n";
415  out << "cpu_system_max = " << entity->kMaximalTime() << "\n";
416  out << "cpu_system_nbr = " << entity->nOfMeasurements() << "\n";
417 
418  // real
419  out << "\n"; // just for clarity
420  out << "cpu_real_total = " << entity->eTotalTime() << "\n";
421  out << "cpu_real_min = " << entity->eMinimalTime() << "\n";
422  out << "cpu_real_mean = " << entity->eMeanTime() << "\n";
423  out << "cpu_real_RMS = " << entity->eRMSTime() << "\n";
424  out << "cpu_real_max = " << entity->eMaximalTime() << "\n";
425  out << "cpu_real_nbr = " << entity->nOfMeasurements() << "\n";
426  }
427 
428  out << std::endl;
429 }
430 // ============================================================================
431 // Test if we're running in an MT job.
432 // ============================================================================
433 bool ChronoStatSvc::isMT() const {
434  bool isMT = false;
436  error() << "Cannot retrieve HiveWhiteBoardSvc";
437  } else {
438  // In non-MT mode, `EventDataSvc' does not have an IHiveWhiteBoard interface.
440  if ( wb && wb->getNumberOfStores() > 1 ) { isMT = true; }
441  }
442  return isMT;
443 }
444 // ============================================================================
445 // print the "Stat" part of the ChronoStatSvc
446 // ============================================================================
449  if ( m_statEntities.empty() ) { return; }
450 
451  MsgStream log( msgSvc(), "******Stat******" );
453  const std::string stars( ( m_statCoutFlag ) ? 126 : 100, '*' );
455  if ( m_statCoutFlag ) {
456  std::cout << stars << std::endl;
457  if ( isMT() ) { std::cout << "WARNING: MT job; statistics are unreliable" << std::endl; }
458  std::cout << " The Final stat Table " << ( m_statOrderFlag ? "(ordered)" : "(not ordered)" ) << std::endl;
459  std::cout << stars << std::endl;
460  } else {
461  log << m_statPrintLevel << stars << endmsg;
462  if ( isMT() ) { log << (MSG::Level)m_chronoPrintLevel << "WARNING: MT job; statistics are unreliable" << endmsg; }
463  log << m_statPrintLevel << " The Final stat Table " << ( m_statOrderFlag ? "(ordered)" : "(not ordered)" )
464  << endmsg;
465  log << m_statPrintLevel << stars << endmsg;
466  }
467 
468  {
469  // prepare container for printing
471  typedef std::vector<SPair> SCont;
472  SCont tmpCont;
474  []( StatMap::const_reference i ) { return std::make_pair( &i.second, &i.first ); } );
475  // sort it
476  if ( m_statOrderFlag ) std::sort( tmpCont.begin(), tmpCont.end(), CompareFirstOfPointerPair );
477  // print the table header
478  if ( m_statCoutFlag ) {
479  std::cout << m_header.value() << std::endl;
480  } else {
481  log << m_statPrintLevel << m_header.value() << endmsg;
482  }
483 
484  // loop over counters and print them:
485  for ( const auto& iter : tmpCont ) {
487  const StatEntity* entity = iter.first;
488  if ( !entity ) { continue; }
489  const StatTag* tag = iter.second;
490  if ( !tag ) { continue; }
491  if ( m_statCoutFlag ) {
493  entity->print( std::cout, true, *tag, m_useEffFormat, "%|-15.15s|%|17t|" );
494  } else {
495  std::ostringstream ost;
496  entity->print( ost, true, *tag, m_useEffFormat, "%|-15.15s|%|17t|" );
497  log << m_statPrintLevel << ost.str() << endmsg;
498  }
499  }
500  tmpCont.clear();
501  }
503  if ( m_statCoutFlag ) {
504  std::cout << stars << std::endl;
505  } else {
506  log << m_statPrintLevel << stars << endmsg;
507  }
508 }
509 
510 // ============================================================================
511 
512 void ChronoStatSvc::handle( const Incident& /* inc */ ) {
513 
514  if ( !m_ofd.is_open() ) return;
515 
516  lock_t lock( m_mutex );
517  for ( const auto& itr : m_chronoEntities ) {
518  if ( itr.first.find( ":Execute" ) == std::string::npos ) continue;
519 
520  auto itm = m_perEvtTime.find( itr.first );
521  if ( itm == m_perEvtTime.end() ) {
522  m_perEvtTime[itr.first] = {itr.second.delta( IChronoSvc::ELAPSED )};
523  } else {
524  itm->second.push_back( itr.second.delta( IChronoSvc::ELAPSED ) );
525  }
526  }
527 }
528 
529 // ============================================================================
530 // The END
531 // ============================================================================
ChronoEntity & getEntity(const ChronoTag &chronoTag)
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:24
StatusCode initialize() override
Definition: Service.cpp:60
SmartIF< ISvcLocator > & serviceLocator() const override
Retrieve pointer to service locator.
Definition: Service.cpp:277
T empty(T... args)
T open(T... args)
double eRMSTime() const
r.m.s Elapsed Time
Definition: ChronoEntity.h:245
const SmartIF< IMessageSvc > & msgSvc() const
The standard message service.
ChronoStatus chronoStatus(const IChronoStatSvc::ChronoTag &chronoTag) override
Implementation of IChronoStatSvc::chronoStatus.
Gaudi::Property< std::string > m_header
StatusCode finalize() override
Definition: Service.cpp:164
StatMap m_statEntities
stat part
a small helper class for implementation of ChronoStatSvc service, It also could be used as some local...
Definition: ChronoEntity.h:21
IChronoSvc::ChronoTime delta(IChronoSvc::ChronoType type) const
return the last delta-time of type "type"
Definition: ChronoEntity.h:261
Gaudi::Property< bool > m_statCoutFlag
IChronoStatSvc::ChronoTime chronoDelta(const IChronoStatSvc::ChronoTag &chronoTag, IChronoStatSvc::ChronoType theType) override
Implementation of IchronoStatSvc::chronoDelta.
T endl(T... args)
Gaudi::Property< bool > m_chronoOrderFlag
constexpr static const auto SUCCESS
Definition: StatusCode.h:85
Gaudi::Property< bool > m_printUserTime
std::mutex m_mutex
Mutex protecting m_chronoEntities.
void stat(const IChronoStatSvc::StatTag &statTag, const IChronoStatSvc::StatFlag &statFlag) override
Implementation of IChronoStatSvc::stat add statistical information to the entity ,...
double uMinimalTime() const
minimal measurement for user time
Definition: ChronoEntity.h:185
T end(T... args)
MsgStream & info() const
shortcut for the method msgStream(MSG::INFO)
void statPrint(const IChronoStatSvc::ChronoTag &statTag) override
prints (using message service) info about statistical entity, tagged by its name
IChronoSvc::ChronoStatus start()
start the current chrono
STL class.
#define DECLARE_COMPONENT(type)
double kRMSTime() const
r.m.s Kernel Time
Definition: ChronoEntity.h:237
StatusCode service(const Gaudi::Utils::TypeNameString &name, T *&svc, bool createIf=true)
Templated method to access a service by name.
Definition: ISvcLocator.h:76
const std::string & name() const override
Retrieve name of the service.
Definition: Service.cpp:274
STL class.
MsgStream & error() const
shortcut for the method msgStream(MSG::ERROR)
double eMaximalTime() const
maximal measurement for elapsed time
Definition: ChronoEntity.h:205
void merge(const ChronoStatSvc &css)
Compound assignment operator.
double uTotalTime() const
total user time
Definition: ChronoEntity.h:209
Gaudi::Property< bool > m_useEffFormat
void saveStats()
dump the statistics into an ASCII file for offline processing
constexpr struct CompareFirstOfPointerPair_t CompareFirstOfPointerPair
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
unsigned long nOfMeasurements() const
number of chrono measurements
Definition: ChronoEntity.h:181
double eMinimalTime() const
minimal measurement for elapsed time
Definition: ChronoEntity.h:193
void clear(STATE_TYPE _i=std::ios_base::failbit)
Definition: MsgStream.h:171
TimeMap m_perEvtTime
T close(T... args)
const ChronoEntity * chronoStop(const IChronoStatSvc::ChronoTag &chronoTag) override
Implementation of IChronoStatSvc::chronoStop.
StatusCode retrieve() const
Retrieve the Service.
Definition: ServiceHandle.h:70
double uMeanTime() const
average User Time
Definition: ChronoEntity.h:229
Gaudi::Property< bool > m_statOrderFlag
double kMeanTime() const
average Kernel Time
Definition: ChronoEntity.h:225
T str(T... args)
T make_pair(T... args)
MsgStream & debug() const
shortcut for the method msgStream(MSG::DEBUG)
Gaudi::Property< bool > m_chronoTableFlag
double eTotalTime() const
total Elapsed time
Definition: ChronoEntity.h:217
T clear(T... args)
ServiceHandle< IInterface > m_hiveWhiteBoardSvc
std::ofstream m_ofd
StatusCode setProperties()
Method for setting declared properties to the values specified for the job.
Definition: Service.cpp:280
T count(T... args)
T scientific(T... args)
MSG::Level m_chronoPrintLevel
level of info printing
StatusCode initialize() override
Implementation of IService::initialize()
Gaudi::Property< bool > m_printEllapsedTime
T * get() const
Release the Service.
Definition: ServiceHandle.h:81
T insert(T... args)
T find(T... args)
T size(T... args)
HepRndm::Engine< TripleRand > e2
STL class.
double kTotalTime() const
total Kernel time
Definition: ChronoEntity.h:213
T begin(T... args)
void handle(const Incident &incident) override
T back_inserter(T... args)
Gaudi::Property< bool > m_statTableFlag
Base class for all Incidents (computing events).
Definition: Incident.h:17
ChronoEntity * chronoStart(const IChronoStatSvc::ChronoTag &chronoTag) override
Implementation of IChronoStatSvc::chronoStart.
double uMaximalTime() const
maximal measurement for user time
Definition: ChronoEntity.h:197
double kMinimalTime() const
minimal measurement for kernel time
Definition: ChronoEntity.h:189
T emplace(T... args)
bool isMT() const
constexpr static const auto FAILURE
Definition: StatusCode.h:86
Gaudi::Property< std::string > m_statsOutFileName
MSG::Level m_statPrintLevel
level of info printing
Gaudi::Property< bool > m_chronoCoutFlag
T sort(T... args)
T transform(T... args)
bool isFailure() const
Definition: StatusCode.h:130
double eMeanTime() const
average Elapsed Time
Definition: ChronoEntity.h:233
bool operator()(const std::pair< S *, T * > &p1, const std::pair< S *, T * > &p2) const
T is_open(T... args)
IChronoSvc::ChronoStatus stop()
stop the chrono
T setprecision(T... args)
double kMaximalTime() const
maximal measurement for kernel time
Definition: ChronoEntity.h:201
IChronoSvc::ChronoStatus status() const
return the status of chrono
Definition: ChronoEntity.h:177
std::string outputElapsedTime() const
print the chrono ;
double uRMSTime() const
r.m.s User Time
Definition: ChronoEntity.h:241
void chronoPrint(const IChronoStatSvc::ChronoTag &chronoTag) override
Implementation of IChronoStatSvc::chronoPrint.
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192
The interface implemented by the IncidentSvc service.
Definition: IIncidentSvc.h:23
std::string outputUserTime() const
print the chrono ;
The Chrono & Stat Sservice: service implements the IChronoStatSvc interface and provides the basic ch...
Definition: ChronoStatSvc.h:36
std::string outputSystemTime() const
print the chrono ;
T reserve(T... args)
ChronoMap m_chronoEntities
chrono part
T emplace_back(T... args)
Gaudi::Property< bool > m_printSystemTime
StatusCode finalize() override
Implementation of IService::finalize()
Gaudi::Property< std::string > m_perEventFile
const ChronoEntity * chrono(const IChronoStatSvc::ChronoTag &t) const override
extract the chrono entity for the given tag (name)