20 lines
321 B
C++
20 lines
321 B
C++
#ifndef GeneRunAction_hh
|
|
#define GeneRunAction_hh 1
|
|
|
|
#include "G4UserRunAction.hh"
|
|
#include "globals.hh"
|
|
|
|
class G4String;
|
|
|
|
class GeneRunAction : public G4UserRunAction {
|
|
public:
|
|
GeneRunAction();
|
|
~GeneRunAction();
|
|
|
|
public:
|
|
void BeginOfRunAction(const G4Run*);
|
|
void EndOfRunAction(const G4Run*);
|
|
};
|
|
|
|
#endif
|