2023-04-09 22:30:59 +08:00
|
|
|
#ifndef GeneRunAction_hh
|
|
|
|
#define GeneRunAction_hh 1
|
2023-02-13 14:50:36 +08:00
|
|
|
|
2023-04-09 22:30:59 +08:00
|
|
|
#include "G4UserRunAction.hh"
|
2023-05-08 11:10:33 +08:00
|
|
|
#include "globals.hh"
|
2023-02-13 14:50:36 +08:00
|
|
|
|
|
|
|
class G4String;
|
|
|
|
|
|
|
|
class GeneRunAction : public G4UserRunAction {
|
|
|
|
public:
|
|
|
|
GeneRunAction();
|
|
|
|
~GeneRunAction();
|
|
|
|
|
|
|
|
public:
|
|
|
|
void BeginOfRunAction(const G4Run*);
|
|
|
|
void EndOfRunAction(const G4Run*);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|