57 geodir->SetGuidance(
"Geometry control commands." );
63 navdir->SetGuidance(
"Geometry navigator control setup." );
66 resCmd->SetGuidance(
"Reset navigator and navigation history." );
67 resCmd->SetGuidance(
"NOTE: must be called only after kernel has been" );
68 resCmd->SetGuidance(
" initialized once through the run manager!" );
72 verbCmd->SetGuidance(
"Set run-time verbosity for the navigator." );
73 verbCmd->SetGuidance(
" 0 : Silent (default)");
74 verbCmd->SetGuidance(
" 1 : Display volume positioning and step lengths");
75 verbCmd->SetGuidance(
" 2 : Display step/safety info on point location");
76 verbCmd->SetGuidance(
" 3 : Display minimal state at -every- step");
77 verbCmd->SetGuidance(
" 4 : Maximum verbosity (very detailed!)");
78 verbCmd->SetGuidance(
"NOTE: this command has effect -only- if Geant4 has" );
79 verbCmd->SetGuidance(
" been installed with the G4VERBOSE flag set!" );
80 verbCmd->SetParameterName(
"level",
true);
81 verbCmd->SetDefaultValue(0);
82 verbCmd->SetRange(
"level >=0 && level <=4");
85 chkCmd->SetGuidance(
"Set navigator in -check_mode- state." );
86 chkCmd->SetGuidance(
"This will cause extra checks to be applied during" );
87 chkCmd->SetGuidance(
"navigation. More strict and less tolerant conditions" );
88 chkCmd->SetGuidance(
"are applied. A run-time performance penalty may be" );
89 chkCmd->SetGuidance(
"observed when the -check_mode- state is activated." );
90 chkCmd->SetGuidance(
"NOTE: this command has effect -only- if Geant4 has" );
91 chkCmd->SetGuidance(
" been installed with the G4VERBOSE flag set!" );
92 chkCmd->SetParameterName(
"checkFlag",
true);
93 chkCmd->SetDefaultValue(
false);
97 pchkCmd->SetGuidance(
"Set navigator verbosity push notifications." );
98 pchkCmd->SetGuidance(
"This allows one to disable/re-enable verbosity in" );
99 pchkCmd->SetGuidance(
"navigation, when tracks may get stuck and require" );
100 pchkCmd->SetGuidance(
"one artificial push along the direction by the" );
101 pchkCmd->SetGuidance(
"navigator. Notification is active by default." );
102 pchkCmd->SetGuidance(
"NOTE: this command has effect -only- if Geant4 has" );
103 pchkCmd->SetGuidance(
" been installed with the G4VERBOSE flag set!" );
104 pchkCmd->SetParameterName(
"pushFlag",
true);
105 pchkCmd->SetDefaultValue(
true);
112 testdir->SetGuidance(
"Geometry verification control setup." );
113 testdir->SetGuidance(
"Helps in detecting possible overlapping regions." );
116 tolCmd->SetGuidance(
"Define tolerance (in mm) by which overlaps reports" );
117 tolCmd->SetGuidance(
"should be reported. By default, all overlaps are" );
118 tolCmd->SetGuidance(
"reported, i.e. tolerance is set to: 0*mm." );
119 tolCmd->SetParameterName(
"Tolerance",
true,
true );
120 tolCmd->SetDefaultValue( 0 );
121 tolCmd->SetDefaultUnit(
"mm" );
122 tolCmd->SetUnitCategory(
"Length" );
125 verCmd->SetGuidance(
"Specify if running in verbosity mode or not." );
126 verCmd->SetGuidance(
"By default verbosity is set to ON (TRUE)." );
127 verCmd->SetParameterName(
"verbosity",
true);
128 verCmd->SetDefaultValue(
true);
132 rslCmd->SetGuidance(
"Set the number of points on surface to be generated for" );
133 rslCmd->SetGuidance(
"checking overlaps." );
134 rslCmd->SetParameterName(
"resolution",
true);
135 rslCmd->SetDefaultValue(10000);
138 rcsCmd->SetGuidance(
"Set the initial level in the geometry tree for recursion." );
139 rcsCmd->SetGuidance(
"recursive_test will then start from the specified level." );
140 rcsCmd->SetParameterName(
"initial_level",
true);
141 rcsCmd->SetDefaultValue(0);
144 rcdCmd->SetGuidance(
"Set the depth in the geometry tree for recursion." );
145 rcdCmd->SetGuidance(
"recursive_test will then stop after reached the specified depth." );
146 rcdCmd->SetGuidance(
"By default, recursion will proceed for the whole depth." );
147 rcdCmd->SetParameterName(
"recursion_depth",
true);
148 rcdCmd->SetDefaultValue(-1);
151 errCmd->SetGuidance(
"Set the maximum number of overlap errors to report" );
152 errCmd->SetGuidance(
"for each single volume being checked." );
153 errCmd->SetGuidance(
"Once reached the maximum number specified, overlaps" );
154 errCmd->SetGuidance(
"affecting that volume further than that are simply ignored." );
155 errCmd->SetParameterName(
"maximum_errors",
true);
156 errCmd->SetDefaultValue(1);
159 parCmd->SetGuidance(
"Check for overlaps in parallel worlds." );
160 parCmd->SetGuidance(
"By default, overlaps are only checked in the mass world (FALSE)." );
161 parCmd->SetParameterName(
"check_parallel",
true);
162 parCmd->SetDefaultValue(
true);
165 recCmd->SetGuidance(
"Start running the recursive overlap check." );
166 recCmd->SetGuidance(
"Volumes are recursively asked to verify for overlaps" );
167 recCmd->SetGuidance(
"for points generated on the surface against their" );
168 recCmd->SetGuidance(
"respective mother volume and sisters at the same" );
169 recCmd->SetGuidance(
"level, performing for all daughters and daughters of" );
170 recCmd->SetGuidance(
"daughters, etc." );
171 recCmd->SetGuidance(
"NOTE: it may take a very long time," );
172 recCmd->SetGuidance(
" depending on the geometry complexity !");
181 delete verCmd;
delete recCmd;
delete rslCmd;
182 delete resCmd;
delete rcsCmd;
delete rcdCmd;
183 delete errCmd;
delete parCmd;
delete tolCmd;
184 delete verbCmd;
delete pchkCmd;
delete chkCmd;
185 delete geodir;
delete navdir;
delete testdir;
186 for(
auto* tvolume: tvolumes) {
195G4GeometryMessenger::Init()
199 if (tvolumes.empty())
205 for(
size_t i=0;i<noWorlds;++i)
220 if (command == resCmd) {
223 else if (command == verbCmd) {
224 SetVerbosity( newValues );
226 else if (command == chkCmd) {
227 SetCheckMode( newValues );
229 else if (command == pchkCmd) {
230 SetPushFlag( newValues );
232 else if (command == tolCmd) {
234 tol = tolCmd->GetNewDoubleValue( newValues )
235 * tolCmd->GetNewUnitValue( newValues );
236 for(
auto* tvolume: tvolumes)
238 tvolume->SetTolerance(tol);
241 else if (command == verCmd) {
243 for(
auto* tvolume: tvolumes)
245 tvolume->SetVerbosity(verCmd->GetNewBoolValue( newValues ));
248 else if (command == rslCmd) {
250 for(
auto* tvolume: tvolumes)
252 tvolume->SetResolution(rslCmd->GetNewIntValue( newValues ));
255 else if (command == rcsCmd) {
256 recLevel = rcsCmd->GetNewIntValue( newValues );
258 else if (command == rcdCmd) {
259 recDepth = rcdCmd->GetNewIntValue( newValues );
261 else if (command == parCmd) {
262 checkParallelWorlds = parCmd->GetNewBoolValue( newValues );
264 else if (command == errCmd) {
266 for(
auto* tvolume: tvolumes)
268 tvolume->SetErrorsThreshold(errCmd->GetNewIntValue( newValues ));
271 else if (command == recCmd) {
273 G4cout <<
"Running geometry overlaps check..." <<
G4endl;
274 RecursiveOverlapTest();
275 G4cout <<
"Geometry overlaps check completed !" <<
G4endl;
286 if (command == tolCmd)
288 cv = tolCmd->ConvertToString( tol,
"mm" );
297G4GeometryMessenger::CheckGeometry()
313G4GeometryMessenger::ResetNavigator()
322 G4Navigator* navigator = tmanager->GetNavigatorForTracking();
330G4GeometryMessenger::SetVerbosity(
const G4String& input)
332 G4int level = verbCmd->GetNewIntValue(input);
333 G4Navigator* navigator = tmanager->GetNavigatorForTracking();
341G4GeometryMessenger::SetCheckMode(
const G4String& input)
343 G4bool mode = chkCmd->GetNewBoolValue(input);
344 G4Navigator* navigator = tmanager->GetNavigatorForTracking();
346 G4PropagatorInField* pField = tmanager->GetPropagatorInField();
347 if (pField !=
nullptr) { pField->
CheckMode(mode); }
354G4GeometryMessenger::SetPushFlag(
const G4String& input)
356 G4bool mode = pchkCmd->GetNewBoolValue(input);
357 G4Navigator* navigator = tmanager->GetNavigatorForTracking();
365G4GeometryMessenger::RecursiveOverlapTest()
373 if (checkParallelWorlds)
375 for(
auto* tvolume: tvolumes)
377 tvolume->TestRecursiveOverlap( recLevel, recDepth );
382 tvolumes.front()->TestRecursiveOverlap( recLevel, recDepth );
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
G4bool IsGeometryClosed()
static G4GeometryManager * GetInstance()
G4bool CloseGeometry(G4bool pOptimise=true, G4bool verbose=false, G4VPhysicalVolume *vol=nullptr)
void OpenGeometry(G4VPhysicalVolume *vol=nullptr)
G4GeometryMessenger(G4TransportationManager *tman)
void SetNewValue(G4UIcommand *command, G4String newValues) override
~G4GeometryMessenger() override
G4String GetCurrentValue(G4UIcommand *command) override
void SetVerboseLevel(G4int level)
void SetPushVerbosity(G4bool mode)
void CheckMode(G4bool mode)
virtual G4VPhysicalVolume * LocateGlobalPointAndSetup(const G4ThreeVector &point, const G4ThreeVector *direction=nullptr, const G4bool pRelativeSearch=true, const G4bool ignoreDirection=true)
void CheckMode(G4bool mode)
std::vector< G4VPhysicalVolume * >::iterator GetWorldsIterator()
std::size_t GetNoWorlds() const