00001 /* BDSIM code. Version 1.0 00002 Author: Grahame A. Blair, Royal Holloway, Univ. of London. 00003 Last modified 24.7.2002 00004 Copyright (c) 2002 by G.A.Blair. ALL RIGHTS RESERVED. 00005 */ 00006 00007 #ifndef BDSRunAction_h 00008 #define BDSRunAction_h 1 00009 00010 #include "G4UserRunAction.hh" 00011 #include "globals.hh" 00012 00013 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 00014 00015 class G4Run; 00016 00017 class BDSRunAction : public G4UserRunAction 00018 { 00019 public: 00020 BDSRunAction(); 00021 ~BDSRunAction(); 00022 00023 public: 00024 void BeginOfRunAction(const G4Run*); 00025 void EndOfRunAction(const G4Run*); 00026 00027 }; 00028 00029 #endif 00030