38 lines
987 B
C++
38 lines
987 B
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: ExN05SteppingActionMessenger.hh,v 1.1.10.1 1999/12/07 20:47:35 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
|
|
#ifndef ExN05SteppingActionMessenger_h
|
|
#define ExN05SteppingActionMessenger_h 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4UImessenger.hh"
|
|
#include "G4UIcommand.hh"
|
|
|
|
class ExN05SteppingAction;
|
|
class G4UIdirectory;
|
|
class G4UIcmdWithABool;
|
|
|
|
|
|
class ExN05SteppingActionMessenger: public G4UImessenger
|
|
{
|
|
public:
|
|
ExN05SteppingActionMessenger(ExN05SteppingAction *SA);
|
|
void SetNewValue(G4UIcommand* command, G4String newValues);
|
|
private:
|
|
ExN05SteppingAction* SteppingAction;
|
|
G4UIdirectory* stepDirectory;
|
|
G4UIcmdWithABool* drawStepCmd;
|
|
G4UIcmdWithABool* verboseStepCmd;
|
|
};
|
|
|
|
#endif
|
|
|