00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef BDSEventActionMessenger_h
00023 #define BDSEventActionMessenger_h 1
00024
00025 #include "globals.hh"
00026 #include "G4UImessenger.hh"
00027
00028 class BDSEventAction;
00029 class G4UIcmdWithAString;
00030 class G4UIcmdWithAnInteger;
00031
00032
00033
00034 class BDSEventActionMessenger: public G4UImessenger
00035 {
00036 public:
00037 BDSEventActionMessenger(BDSEventAction*);
00038 ~BDSEventActionMessenger();
00039
00040 void SetNewValue(G4UIcommand*, G4String);
00041
00042 private:
00043 BDSEventAction* eventAction;
00044 G4UIcmdWithAString* DrawCmd;
00045 G4UIcmdWithAnInteger* PrintCmd;
00046 };
00047
00048 #endif