1 |
|
2 |
|
3 |
#ifndef SteppingActionMessenger_h |
4 |
#define SteppingActionMessenger_h 1 |
5 |
|
6 |
#include "globals.hh" |
7 |
#include "G4UImessenger.hh" |
8 |
#include "G4UIcommand.hh" |
9 |
|
10 |
class SteppingAction; |
11 |
class G4UIdirectory; |
12 |
class G4UIcmdWithABool; |
13 |
|
14 |
|
15 |
class SteppingActionMessenger: public G4UImessenger |
16 |
{ |
17 |
public: |
18 |
SteppingActionMessenger(SteppingAction *SA); |
19 |
void SetNewValue(G4UIcommand* command, G4String newValues); |
20 |
private: |
21 |
SteppingAction* SteppingAct; |
22 |
G4UIdirectory* stepDirectory; |
23 |
G4UIcmdWithABool* drawStepCmd; |
24 |
G4UIcmdWithABool* verboseStepCmd; |
25 |
}; |
26 |
|
27 |
#endif |
28 |
|
29 |
// 2005 by G.I.Vasilyev |