Import Geant4 11.2.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2023-06-30 09:09:57 +02:00
parent aef78ca386
commit dd1f179cda
3780 changed files with 212808 additions and 142780 deletions
+10 -12
View File
@@ -41,23 +41,21 @@
class G4Step;
class G4SteppingManager;
class G4UserSteppingAction
class G4UserSteppingAction
{
public:
public:
// Constructor and destructor
// Constructor and destructor
G4UserSteppingAction();
virtual ~G4UserSteppingAction() = default;
G4UserSteppingAction();
virtual ~G4UserSteppingAction();
// Member functions
// Member functions
virtual void SetSteppingManagerPointer(G4SteppingManager* pValue);
virtual void UserSteppingAction(const G4Step*) {}
virtual void SetSteppingManagerPointer(G4SteppingManager* pValue);
virtual void UserSteppingAction(const G4Step*){}
protected:
G4SteppingManager* fpSteppingManager = nullptr;
protected:
G4SteppingManager* fpSteppingManager = nullptr;
};
#endif