Skip to content
Snippets Groups Projects
Commit 5e8f56e4 authored by Yessica Dominguez's avatar Yessica Dominguez
Browse files

Upload New File

parent 40b0935a
No related branches found
No related tags found
No related merge requests found
#ifndef STEPPING_HH
#define STEPPING_HH
#include "G4UserSteppingAction.hh"
#include "G4ThreeVector.hh"
class MySteppingAction : public G4UserSteppingAction
{
public:
MySteppingAction();
virtual ~MySteppingAction();
virtual void UserSteppingAction(const G4Step* step);
void SetStartPosition(const G4ThreeVector& position);
private:
G4ThreeVector startPosition;
};
#endif // MYSTEPPINGACTION_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment