Skip to content
Snippets Groups Projects
Commit ff1846cb authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Minor change in stats report at the end of loop in EventLoopMgr.

parent af909a73
No related branches found
No related tags found
1 merge request!65GAUDI-978: merge hive branch into master
......@@ -5,6 +5,9 @@
# Commit Id: $Format:%H$
################################################################################
! 2015-02-27 - Marco Clemencic
- Minor change in stats report at the end of loop in EventLoopMgr.
============================= GaudiCoreSvc v3r3 ==============================
! 2015-02-06 - Marco Clemencic
- Added methods to IToolSvc to get all the tool instances.
......
......@@ -289,9 +289,9 @@ StatusCode EventLoopMgr::finalize() {
StatusCode EventLoopMgr::executeEvent(void* par) {
// DP Monitoring
// Fire BeginEvent "Incident"
m_incidentSvc->fireIncident(Incident(name(),IncidentType::BeginEvent));
// An incident may schedule a stop, in which case is better to exit before the actual execution.
......@@ -334,9 +334,9 @@ StatusCode EventLoopMgr::nextEvent(int maxevt) {
typedef std::chrono::high_resolution_clock Clock;
typedef Clock::time_point time_point;
const float oneOver1204 = 1.f/1024.f;
const float oneOver1024 = 1.f/1024.f;
static int total_nevt = 0;
DataObject* pObject = 0;
StatusCode sc(StatusCode::SUCCESS, true);
......@@ -350,10 +350,10 @@ StatusCode EventLoopMgr::nextEvent(int maxevt) {
start_time = Clock::now();
//always() << "Event Number = " << total_nevt
// << " WSS (MB) = " << System::mappedMemory(System::MemoryUnit::kByte)*oneOver1204
// << " WSS (MB) = " << System::mappedMemory(System::MemoryUnit::kByte)*oneOver1024
// << " Time (s) = " << secsFromStart(start_time) << endmsg;
// Check if there is a scheduled stop issued by some algorithm/service
if ( m_scheduledStop ) {
m_scheduledStop = false;
......@@ -412,10 +412,12 @@ StatusCode EventLoopMgr::nextEvent(int maxevt) {
}
time_point end_time = Clock::now();
info() << "---> Loop Finished (skipping 1st evt) - "
<< " WSS " << System::mappedMemory(System::MemoryUnit::kByte)*oneOver1204
<< " total time " << std::chrono::duration_cast < std::chrono::nanoseconds > (end_time - start_time).count() <<endmsg;
info() << "---> Loop Finished - "
<< " WSS " << System::mappedMemory(System::MemoryUnit::kByte)*oneOver1024
<< " | total time (skipping 1st evt) "
<< std::chrono::duration_cast < std::chrono::nanoseconds > (end_time - start_time).count()
<< " ns" << endmsg;
return StatusCode::SUCCESS;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment