diff --git a/DDSim/DD4hepSimulation.py b/DDSim/DD4hepSimulation.py
index 877d7747cbc665a347bedc73cb035490de288c14..44c0b3745a088baae4e1074e73932b6667fd8592 100644
--- a/DDSim/DD4hepSimulation.py
+++ b/DDSim/DD4hepSimulation.py
@@ -492,12 +492,18 @@ class DD4hepSimulation(object):
 
     #DDG4.setPrintLevel(Output.DEBUG)
 
+    startUpTime, _sysTime, _cuTime, _csTime, _elapsedTime = os.times()
+
     kernel.run()
     kernel.terminate()
 
-    userTime, sysTime,_cuTime, _csTime, _elapsedTime = os.times()
+    totalTimeUser, totalTimeSys, _cuTime, _csTime, _elapsedTime = os.times()
     if self.printLevel <= 3:
-      print "DDSim            INFO  Execution Time: %3.2f s (User), %3.2f s (System)"% (userTime, sysTime)
+      eventTime = totalTimeUser - startUpTime
+      perEventTime =  eventTime / float(self.numberOfEvents)
+      print "DDSim            INFO  Total Time:   %3.2f s (User), %3.2f s (System)"% (totalTimeUser, totalTimeSys)
+      print "DDSim            INFO  StartUp Time: %3.2f s, Event Processing: %3.2f s (%3.2f s/Event) " \
+        % (startUpTime, eventTime, perEventTime)
 
 
   def __setMagneticFieldOptions(self, simple):