// 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.1.4.1 1999/12/07 20:46:57 gunter Exp $ // GEANT4 tag $Name: geant4-01-00 $ // // //....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; G4UIcmdWithAString* SaveCmd; G4UIdirectory* RndmDir; G4UIcmdWithAnInteger* RndmSaveCmd; G4UIcmdWithAString* RndmReadCmd; }; #endif