51 fpCommandCentreAndZoomInOn->SetGuidance (
"Centre and zoom in on the current touchable.");
52 fpCommandCentreAndZoomInOn->SetGuidance
53 (
"Use \"/vis/set/touchable\" to set current touchable.");
54 fpCommandCentreAndZoomInOn->SetGuidance
55 (
"You may also need \"/vis/touchable/findPath\".");
56 fpCommandCentreAndZoomInOn->SetGuidance
57 (
"Use \"/vis/touchable/set\" to set attributes.");
60 fpCommandCentreOn->SetGuidance (
"Centre the view on the current touchable.");
65 fpCommandDraw->SetGuidance(
"Draw touchable.");
66 fpCommandDraw->SetGuidance
67 (
"If parameter == true, also draw extent as a white wireframe box.");
70 fpCommandDraw->SetParameterName(
"extent", omitable =
true);
71 fpCommandDraw->SetDefaultValue(
false);
74 fpCommandDump->SetGuidance(
"Dump touchable attributes.");
78 fpCommandExtentForField =
new G4UIcmdWithABool(
"/vis/touchable/extentForField",
this);
79 fpCommandExtentForField->SetGuidance(
"Set extent for field.");
80 fpCommandExtentForField->SetGuidance(
"If parameter == true, also draw.");
83 fpCommandExtentForField->SetParameterName(
"draw", omitable =
true);
84 fpCommandExtentForField->SetDefaultValue(
false);
86 fpCommandFindPath =
new G4UIcommand(
"/vis/touchable/findPath",
this);
87 fpCommandFindPath->SetGuidance
88 (
"Prints the path to touchable and its logical volume mother"
89 "\ngiven a physical volume name and copy no.");
90 fpCommandFindPath -> SetGuidance
91 (
"A search of all worlds is made and all physical volume names are"
92 "\nmatched against the argument of this command. If this is of the"
93 "\nform \"/regexp/\", where regexp is a regular expression (see C++ regex),"
94 "\nthe physical volume name is matched against regexp by the usual rules"
95 "\nof regular expression matching. Otherwise an exact match is required."
96 "\nFor example, \"/Shap/\" matches \"Shape1\" and \"Shape2\".");
97 fpCommandFindPath -> SetGuidance
98 (
"It may help to see a textual representation of the geometry hierarchy of"
99 "\nthe worlds. Try \"/vis/drawTree [worlds]\" or one of the driver/browser"
100 "\ncombinations that have the required functionality, e.g., HepRep.");
102 parameter =
new G4UIparameter (
"physical-volume-name",
's', omitable =
true);
103 parameter -> SetDefaultValue (
"world");
104 fpCommandFindPath -> SetParameter (parameter);
105 parameter =
new G4UIparameter (
"copy-no",
'i', omitable =
true);
106 parameter -> SetGuidance (
"If negative, matches any copy no.");
107 parameter -> SetDefaultValue (-1);
108 fpCommandFindPath -> SetParameter (parameter);
111 fpCommandLocalAxes->SetGuidance(
"Draw local axes.");
115 fpCommandShowExtent =
new G4UIcmdWithABool(
"/vis/touchable/showExtent",
this);
116 fpCommandShowExtent->SetGuidance(
"Print extent of touchable.");
117 fpCommandShowExtent->SetGuidance(
"If parameter == true, also draw.");
120 fpCommandShowExtent->SetParameterName(
"draw", omitable =
true);
121 fpCommandShowExtent->SetDefaultValue(
false);
124 fpCommandTwinkle->SetGuidance(
"Cause touchable to twinkle.");
128 fpCommandVolumeForField =
new G4UIcmdWithABool(
"/vis/touchable/volumeForField",
this);
129 fpCommandVolumeForField->SetGuidance(
"Set volume for field.");
130 fpCommandVolumeForField->SetGuidance(
"If parameter == true, also draw.");
133 fpCommandVolumeForField->SetParameterName(
"draw", omitable =
true);
134 fpCommandVolumeForField->SetDefaultValue(
false);
165 size_t nWorlds = transportationManager->
GetNoWorlds();
171 "ERROR: G4VisCommandsTouchable::SetNewValue:"
172 "\n No world. Maybe the geometry has not yet been defined."
173 "\n Try \"/run/initialize\""
179 if (command == fpCommandDump) {
193 const std::map<G4String,G4AttDef>* attDefs = tempPVModel.
GetAttDefs();
200 polyhedron->SetVisAttributes(lv->GetVisAttributes());
201 G4cout <<
"\nLocal polyhedron coordinates:\n" << *polyhedron;
203 polyhedron->Transform(transform);
204 G4cout <<
"\nGlobal polyhedron coordinates:\n" << *polyhedron;
211 }
else if (command == fpCommandFindPath) {
215 std::istringstream iss(newValue);
216 iss >> pvName >> copyNo;
217 std::vector<G4PhysicalVolumesSearchScene::Findings> findingsVector;
218 std::vector<G4VPhysicalVolume*>::iterator iterWorld =
220 for (
size_t i = 0; i < nWorlds; ++i, ++iterWorld) {
227 for (
const auto& findings: searchScene.
GetFindings()) {
228 findingsVector.push_back(findings);
231 for (
const auto& findings: findingsVector) {
233 << findings.fFoundBasePVPath
234 <<
' ' << findings.fpFoundPV->GetName()
235 <<
' ' << findings.fFoundPVCopyNo
236 <<
" (mother logical volume: "
237 << findings.fpFoundPV->GetMotherLogical()->GetName()
241 if (findingsVector.size()) {
243 <<
"Use this to set a particular touchable with \"/vis/set/touchable <path>\""
244 <<
"\nor to see overlaps: \"/vis/drawLogicalVolume <mother-logical-volume-name>\""
248 if (copyNo >= 0)
G4warn <<
':' << copyNo;
255 if (!currentViewer) {
258 "ERROR: No current viewer - \"/vis/viewer/list\" to see possibilities."
268 "ERROR: No current scene - \"/vis/scene/list\" to see possibilities."
274 if (command == fpCommandCentreOn || command == fpCommandCentreAndZoomInOn) {
277 std::vector<std::vector<G4PhysicalVolumeModel::G4PhysicalVolumeNodeID>> touchables;
293 G4Scene tempScene(
"Centre Scene");
295 if (!successful)
return;
299 <<
",\n has been added to temporary scene \"" << tempScene.
GetName() <<
"\"."
307 if (command == fpCommandCentreAndZoomInOn) {
322 Twinkle(currentViewer,newVP,touchables);
327 <<
"Viewer \"" << currentViewer->
GetName()
329 if (fpCommandCentreAndZoomInOn) {
330 G4cout <<
"and zoomed in";
341 }
else if (command == fpCommandDraw) {
362 if (fpCommandDraw->GetNewBoolValue(newValue)) {
363 const auto& extent = pvModel->
GetExtent();
364 const G4double halfX = (extent.GetXmax()-extent.GetXmin())/2.;
365 const G4double halfY = (extent.GetYmax()-extent.GetYmin())/2.;
366 const G4double halfZ = (extent.GetZmax()-extent.GetZmin())/2.;
367 G4Box extentBox(
"extent",halfX,halfY,halfZ);
374 <<
"\", copy no. " << properties.
fCopyNo <<
" drawn";
375 if (fpCommandDraw->GetNewBoolValue(newValue)) {
376 G4cout <<
" with extent box";
388 }
else if (command == fpCommandExtentForField) {
399 G4cout <<
"Extent for field set to " << extent
400 <<
"\nVolume for field has been cleared."
403 if (fpCommandExtentForField->GetNewBoolValue(newValue)) {
411 }
else if (command == fpCommandLocalAxes) {
418 const G4double lengthMax = extent.GetExtentRadius()/2.;
419 const G4double intLog10LengthMax = std::floor(std::log10(lengthMax));
420 G4double length = std::pow(10,intLog10LengthMax);
421 if (5.*length < lengthMax) length *= 5.;
422 else if (2.*length < lengthMax) length *= 2.;
432 }
else if (command == fpCommandShowExtent) {
441 if (fpCommandShowExtent->GetNewBoolValue(newValue))
DrawExtent(extent);
447 }
else if (command == fpCommandTwinkle) {
452 std::vector<std::vector<G4PhysicalVolumeModel::G4PhysicalVolumeNodeID>> touchables;
465 }
else if (command == fpCommandVolumeForField) {
484 if (fpCommandVolumeForField->GetNewBoolValue(newValue)) {
496 "ERROR: G4VisCommandsTouchable::SetNewValue: unrecognised command."