#ifndef SolidEventMessenger_h #define SolidEventMessenger_h 1 #include "globals.hh" #include "G4UImessenger.hh" //#include "G4UIcmdWithAString.hh" //#include "G4UIcmdWithAnInteger.hh" #include "G4UIcmdWithABool.hh" class SolidEventAction; class G4UIdirectory; //class G4UIcmdWithAString; //class G4UIcmdWithAnInteger; //class G4UIcmdWithoutParameter; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... class SolidEventMessenger: public G4UImessenger { public: SolidEventMessenger(SolidEventAction* ); ~SolidEventMessenger(); void SetNewValue(G4UIcommand*, G4String); private: SolidEventAction* SolidEvAct; G4UIcmdWithABool* VerboseCmd; }; #endif