Files
geant4/examples/extended/electromagnetic/TestEm2/include/Em2RunActionMessenger.hh
T
2016-06-08 15:34:16 +02:00

45 lines
1.2 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.
//
// $Id: Em2RunActionMessenger.hh,v 1.3 2000/01/21 10:56:15 maire Exp $
// GEANT4 tag $Name: geant4-01-01 $
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
#ifndef Em2RunActionMessenger_h
#define Em2RunActionMessenger_h 1
#include "globals.hh"
#include "G4UImessenger.hh"
class Em2RunAction;
class G4UIdirectory;
class G4UIcmdWithAString;
class G4UIcmdWithAnInteger;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
class Em2RunActionMessenger: public G4UImessenger
{
public:
Em2RunActionMessenger(Em2RunAction*);
~Em2RunActionMessenger();
void SetNewValue(G4UIcommand*, G4String);
private:
Em2RunAction* Em2Run;
G4UIdirectory* RndmDir;
G4UIcmdWithAnInteger* RndmSaveCmd;
G4UIcmdWithAString* RndmReadCmd;
};
#endif