G4-ExampleB0/src/SteppingAction.cpp

16 lines
378 B
C++
Raw Normal View History

2022-10-16 17:13:21 +08:00
#include "SteppingAction.h"
#include "DetectorConstruction.h"
#include "EventAction.h"
#include "G4Event.hh"
#include "G4LogicalVolume.hh"
#include "G4RunManager.hh"
#include "G4Step.hh"
SteppingAction::SteppingAction(EventAction* e) : fEventAction(e) {}
SteppingAction::~SteppingAction() {}
void SteppingAction::UserSteppingAction(const G4Step* step) {
}