![]() |
Precalibrated Ion Beam Identification Detector Simulation 1.0
A pilot study detector simulation, written in C++ with Geant4.
|
00001 00012 #ifndef EventActionMessenger_h 00013 #define EventActionMessenger_h 1 //!<Inclusion guard. 00014 00015 #include "globals.hh" 00016 #include "G4UImessenger.hh" 00017 #include "EventAction.hh" 00018 #include "G4UIdirectory.hh" 00019 #include "G4UIcmdWithAnInteger.hh" 00020 #include "G4UIcmdWithAString.hh" 00021 #include "globals.hh" 00022 00023 00024 00025 00026 class EventAction; 00027 class G4UIdirectory; 00028 class G4UIcmdWithAnInteger; 00029 00033 class EventActionMessenger: public G4UImessenger 00034 { 00035 public: 00036 EventActionMessenger(EventAction* 00037 ); 00038 virtual ~EventActionMessenger(); 00039 00040 void SetNewValue(G4UIcommand* 00041 , G4String 00042 ); 00043 00044 private: 00045 EventAction* eventAction; 00046 G4UIdirectory* eventDir; 00047 G4UIcmdWithAnInteger* PrintCmd; 00048 }; 00049 00050 #endif