File indexing completed on 2026-09-19 09:21:21
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035 #ifndef G4GeometryMessenger_hh
0036 #define G4GeometryMessenger_hh 1
0037
0038 #include "G4Types.hh"
0039 #include "G4UImessenger.hh"
0040 #include "G4ThreeVector.hh"
0041
0042 #include <vector>
0043
0044 class G4UIdirectory;
0045 class G4UIcommand;
0046 class G4UIcmdWithoutParameter;
0047 class G4UIcmdWithABool;
0048 class G4UIcmdWithAnInteger;
0049 class G4UIcmdWithADoubleAndUnit;
0050 class G4UIcmdWithAString;
0051 class G4TransportationManager;
0052 class G4GeomTestVolume;
0053
0054
0055
0056
0057
0058
0059 class G4GeometryMessenger : public G4UImessenger
0060 {
0061 public:
0062
0063
0064
0065
0066 G4GeometryMessenger(G4TransportationManager* tman);
0067 ~G4GeometryMessenger() override;
0068
0069
0070
0071
0072 void SetNewValue( G4UIcommand* command, G4String newValues ) override;
0073 G4String GetCurrentValue( G4UIcommand* command ) override;
0074
0075 private:
0076
0077 void Init();
0078 void CheckGeometry();
0079 void ResetNavigator();
0080 void SetVerbosity(const G4String& newValue);
0081 void SetCheckMode(const G4String& newValue);
0082 void SetPushFlag(const G4String& newValue);
0083 void RecursiveOverlapTest();
0084 void TreeOverlapTest();
0085
0086 struct OverlapMode
0087 {
0088 inline static const G4String placed = "placed";
0089 inline static const G4String logical = "logical";
0090 };
0091
0092 G4UIdirectory *geodir, *navdir, *testdir;
0093 G4UIcmdWithABool *chkCmd, *pchkCmd, *verCmd, *parCmd;
0094 G4UIcmdWithoutParameter *resCmd;
0095 G4UIcmdWithAString *recCmd;
0096 G4UIcmdWithADoubleAndUnit *tolCmd;
0097 G4UIcmdWithAnInteger *verbCmd, *rslCmd, *rcsCmd, *rcdCmd, *errCmd;
0098
0099 G4double tol = 0.0;
0100 G4int recLevel = 0, recDepth = -1;
0101 G4bool checkParallelWorlds = false;
0102
0103 G4TransportationManager* tmanager;
0104 std::vector<G4GeomTestVolume*> tvolumes;
0105 };
0106
0107 #endif