49 lines
1.1 KiB
C++
49 lines
1.1 KiB
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.
|
|
//
|
|
// Class Description:
|
|
// The stepping messenger is defined
|
|
// Class Description - end
|
|
//
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#ifndef Em6SteppingMessenger_h
|
|
#define Em6SteppingMessenger_h 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4UImessenger.hh"
|
|
#include "G4ios.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
class Em6SteppingAction;
|
|
class G4UIdirectory;
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
class Em6SteppingMessenger: public G4UImessenger
|
|
{
|
|
public: // Without description
|
|
|
|
Em6SteppingMessenger(Em6SteppingAction* );
|
|
~Em6SteppingMessenger();
|
|
|
|
void SetNewValue(G4UIcommand* ,G4String );
|
|
|
|
private:
|
|
|
|
Em6SteppingAction* steppingAction;
|
|
|
|
G4UIdirectory* steppingDir;
|
|
|
|
};
|
|
|
|
#endif
|
|
|