2022-04-29 13:24:29 +08:00
|
|
|
|
#ifndef B1SteppingAction_h
|
|
|
|
|
#define B1SteppingAction_h 1
|
|
|
|
|
|
|
|
|
|
#include "G4UserSteppingAction.hh"
|
|
|
|
|
#include "globals.hh"
|
|
|
|
|
|
|
|
|
|
class G4LogicalVolume;
|
|
|
|
|
|
|
|
|
|
/// Stepping action class
|
|
|
|
|
|
|
|
|
|
namespace B1 {
|
|
|
|
|
|
|
|
|
|
class EventAction;
|
|
|
|
|
|
|
|
|
|
class SteppingAction : public G4UserSteppingAction {
|
|
|
|
|
public:
|
|
|
|
|
SteppingAction(EventAction* eventAction);
|
|
|
|
|
~SteppingAction() override;
|
|
|
|
|
|
2022-04-30 21:39:54 +08:00
|
|
|
|
// 每个 step 调用一次
|
2022-04-29 13:24:29 +08:00
|
|
|
|
void UserSteppingAction(const G4Step*) override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
EventAction* fEventAction = nullptr;
|
|
|
|
|
G4LogicalVolume* fScoringVolume = nullptr;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace B1
|
|
|
|
|
|
|
|
|
|
#endif
|