Commit in slic/src on MAIN
EventAction.cc+8-11.24 -> 1.25
RunAction.cc+5-11.15 -> 1.16
+13-2
2 modified files
Geant4 hooks to enable EventDebugger

slic/src
EventAction.cc 1.24 -> 1.25
diff -u -r1.24 -r1.25
--- EventAction.cc	20 Sep 2005 00:34:42 -0000	1.24
+++ EventAction.cc	22 Sep 2005 01:11:29 -0000	1.25
@@ -1,4 +1,4 @@
-// $Header: /cvs/lcd/slic/src/EventAction.cc,v 1.24 2005/09/20 00:34:42 jeremy Exp $
+// $Header: /cvs/lcd/slic/src/EventAction.cc,v 1.25 2005/09/22 01:11:29 jeremy Exp $
 #include "EventAction.hh"
 
 // SLIC
@@ -7,6 +7,7 @@
 #include "EventSourceManager.hh"
 #include "G4Application.hh"
 #include "EventMessenger.hh"
+#include "EventDebugger.hh"
 
 // G4
 #include "G4RunManager.hh"
@@ -33,6 +34,9 @@
     // check aborted
     if (!anEvent->IsAborted() ) {
 
+      // debugger
+      EventDebugger::instance()->beginEvent( anEvent );
+
       // trj mgr
       TrajectoryManager::instance()->beginEvent( anEvent );
 
@@ -59,6 +63,9 @@
     // event timer
     stopEventTimer();
 
+    // debugger
+    EventDebugger::instance()->endEvent( anEvent );
+
     // end event mesg
     printEndEventMessage(anEvent, std::cout);
   }

slic/src
RunAction.cc 1.15 -> 1.16
diff -u -r1.15 -r1.16
--- RunAction.cc	25 May 2005 00:59:14 -0000	1.15
+++ RunAction.cc	22 Sep 2005 01:11:29 -0000	1.16
@@ -1,8 +1,9 @@
-// $Header: /cvs/lcd/slic/src/RunAction.cc,v 1.15 2005/05/25 00:59:14 jeremy Exp $
+// $Header: /cvs/lcd/slic/src/RunAction.cc,v 1.16 2005/09/22 01:11:29 jeremy Exp $
 
 // SLIC
 #include "LcioManager.hh"
 #include "EventSourceManager.hh"
+#include "EventDebugger.hh"
 
 // LCDD
 #include "GeometryManager.hh"
@@ -36,6 +37,9 @@
 
     // GeometryManager's action
     GeometryManager::instance()->beginRun( aRun );
+
+    // EventDebugger
+    EventDebugger::instance()->beginRun( aRun );
   }
 
   void RunAction::EndOfRunAction (const G4Run *aRun)
CVSspam 0.2.8