00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef BDSDetectorMessenger_h
00022 #define BDSDetectorMessenger_h 1
00023
00024 #include "globals.hh"
00025 #include "G4UImessenger.hh"
00026
00027 class BDSDetectorConstruction;
00028 class G4UIdirectory;
00029 class G4UIcmdWithAString;
00030 class G4UIcmdWithAnInteger;
00031 class G4UIcmdWithADoubleAndUnit;
00032 class G4UIcmdWithoutParameter;
00033
00034
00035
00036 class BDSDetectorMessenger: public G4UImessenger
00037 {
00038 public:
00039 BDSDetectorMessenger(BDSDetectorConstruction* );
00040 ~BDSDetectorMessenger();
00041
00042 void SetNewValue(G4UIcommand*, G4String);
00043
00044 private:
00045 BDSDetectorConstruction* BDSDetector;
00046
00047 G4UIdirectory* BDSdetDir;
00048
00049
00050
00051
00052
00053
00054 G4UIcmdWithADoubleAndUnit* MagFieldCmd;
00055 G4UIcmdWithoutParameter* UpdateCmd;
00056 };
00057
00058 #endif
00059