90 fpCommand =
new G4UIcommand(
"/vis/scene/add/arrow",
this);
91 fpCommand -> SetGuidance (
"Adds arrow to current scene.");
95 fpCommand -> SetParameter (parameter);
97 fpCommand -> SetParameter (parameter);
99 fpCommand -> SetParameter (parameter);
101 fpCommand -> SetParameter (parameter);
103 fpCommand -> SetParameter (parameter);
105 fpCommand -> SetParameter (parameter);
106 parameter =
new G4UIparameter (
"unit",
's', omitable =
true);
108 fpCommand->SetParameter (parameter);
127 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
134 std::istringstream is(newValue);
135 is >> x1 >> y1 >> z1 >> x2 >> y2 >> z2 >> unitString;
137 x1 *= unit; y1 *= unit; z1 *= unit;
138 x2 *= unit; y2 *= unit; z2 *= unit;
146 (x1, y1, z1, x2, y2, z2,
150 const G4String& currentSceneName = pScene -> GetName ();
151 G4bool successful = pScene -> AddRunDurationModel (model, warn);
154 G4cout <<
"Arrow has been added to scene \""
155 << currentSceneName <<
"\"."
167 fpCommand =
new G4UIcommand(
"/vis/scene/add/arrow2D",
this);
168 fpCommand -> SetGuidance (
"Adds 2D arrow to current scene.");
169 fpCommand -> SetGuidance (
"x,y in range [-1,1]");
173 fpCommand -> SetParameter (parameter);
175 fpCommand -> SetParameter (parameter);
177 fpCommand -> SetParameter (parameter);
179 fpCommand -> SetParameter (parameter);
198 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
204 std::istringstream is(newValue);
205 is >> x1 >> y1 >> x2 >> y2;
207 Arrow2D* arrow2D =
new Arrow2D
214 const G4String& currentSceneName = pScene -> GetName ();
215 G4bool successful = pScene -> AddRunDurationModel (model, warn);
218 G4cout <<
"A 2D arrow has been added to scene \""
219 << currentSceneName <<
"\"."
228G4VisCommandSceneAddArrow2D::Arrow2D::Arrow2D
232 fWidth(width), fColour(colour)
234 fShaftPolyline.push_back(
G4Point3D(x1,y1,0));
235 fShaftPolyline.push_back(
G4Point3D(x2,y2,0));
237 G4Vector3D arrowPointLeftDirection(arrowDirection);
238 arrowPointLeftDirection.rotateZ(150.*deg);
239 G4Vector3D arrowPointRightDirection(arrowDirection);
240 arrowPointRightDirection.rotateZ(-150.*deg);
241 fHeadPolyline.push_back(
G4Point3D(x2,y2,0)+0.04*arrowPointLeftDirection);
242 fHeadPolyline.push_back(
G4Point3D(x2,y2,0));
243 fHeadPolyline.push_back(
G4Point3D(x2,y2,0)+0.04*arrowPointRightDirection);
247 fShaftPolyline.SetVisAttributes(va);
248 fHeadPolyline.SetVisAttributes(va);
251void G4VisCommandSceneAddArrow2D::Arrow2D::operator()
254 sceneHandler.BeginPrimitives2D();
255 sceneHandler.AddPrimitive(fShaftPolyline);
256 sceneHandler.AddPrimitive(fHeadPolyline);
257 sceneHandler.EndPrimitives2D();
264 fpCommand =
new G4UIcommand (
"/vis/scene/add/axes",
this);
265 fpCommand -> SetGuidance (
"Add axes.");
266 fpCommand -> SetGuidance
267 (
"Draws axes at (x0, y0, z0) of given length and colour.");
268 fpCommand -> SetGuidance
269 (
"If \"colour-string\" is \"auto\", x, y and z will be red, green and blue"
270 "\n respectively. Otherwise it can be one of the pre-defined text-specified"
271 "\n colours - see information printed by the vis manager at start-up or"
272 "\n use \"/vis/list\".");
273 fpCommand -> SetGuidance
274 (
"If \"length\" is negative, it is set to about 25% of scene extent.");
275 fpCommand -> SetGuidance
276 (
"If \"showtext\" is false, annotations are suppressed.");
280 fpCommand->SetParameter (parameter);
283 fpCommand->SetParameter (parameter);
286 fpCommand->SetParameter (parameter);
287 parameter =
new G4UIparameter (
"length",
'd', omitable =
true);
289 fpCommand->SetParameter (parameter);
290 parameter =
new G4UIparameter (
"unit",
's', omitable =
true);
292 fpCommand->SetParameter (parameter);
293 parameter =
new G4UIparameter (
"colour-string",
's', omitable =
true);
295 fpCommand->SetParameter (parameter);
296 parameter =
new G4UIparameter (
"showtext",
'b', omitable =
true);
298 fpCommand->SetParameter (parameter);
317 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
324 <<
"ERROR: Scene has no extent. Add volumes or use \"/vis/scene/add/extent\"."
331 G4String unitString, colourString, showTextString;
333 std::istringstream is (newValue);
334 is >> x0 >> y0 >> z0 >> length >> unitString
335 >> colourString >> showTextString;
340 x0 *= unit; y0 *= unit; z0 *= unit;
344 const G4double intLog10Length = std::floor(std::log10(lengthMax));
345 length = std::pow(10,intLog10Length);
346 if (5.*length < lengthMax) length *= 5.;
347 else if (2.*length < lengthMax) length *= 2.;
356 if (arrowWidth > length/30.) arrowWidth = length/30.;
359 (x0, y0, z0, length, arrowWidth, colourString, newValue,
362 G4bool successful = pScene -> AddRunDurationModel (model, warn);
363 const G4String& currentSceneName = pScene -> GetName ();
367 <<
"have been added to scene \"" << currentSceneName <<
"\"."
380 fpCommand =
new G4UIcommand (
"/vis/scene/add/date",
this);
381 fpCommand -> SetGuidance (
"Adds date to current scene.");
382 fpCommand -> SetGuidance
383 (
"If \"date\"is omitted, the current date and time is drawn."
384 "\nOtherwise, the string, including the rest of the line, is drawn.");
386 parameter =
new G4UIparameter (
"size",
'i', omitable =
true);
387 parameter -> SetGuidance (
"Screen size of text in pixels.");
388 parameter -> SetDefaultValue (18);
389 fpCommand -> SetParameter (parameter);
390 parameter =
new G4UIparameter (
"x-position",
'd', omitable =
true);
391 parameter -> SetGuidance (
"x screen position in range -1 < x < 1.");
392 parameter -> SetDefaultValue (0.95);
393 fpCommand -> SetParameter (parameter);
394 parameter =
new G4UIparameter (
"y-position",
'd', omitable =
true);
395 parameter -> SetGuidance (
"y screen position in range -1 < y < 1.");
396 parameter -> SetDefaultValue (0.9);
397 fpCommand -> SetParameter (parameter);
398 parameter =
new G4UIparameter (
"layout",
's', omitable =
true);
399 parameter -> SetGuidance (
"Layout, i.e., adjustment: left|centre|right.");
400 parameter -> SetDefaultValue (
"right");
401 fpCommand -> SetParameter (parameter);
402 parameter =
new G4UIparameter (
"date",
's', omitable =
true);
403 parameter -> SetDefaultValue (
"-");
404 fpCommand -> SetParameter (parameter);
423 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
431 std::istringstream is(newValue);
432 is >> size >> x >> y >> layoutString >> dateString;
434 const size_t NREMAINDER = 100;
435 char remainder[NREMAINDER];
437 is.getline(remainder, NREMAINDER);
438 dateString += remainder;
444 Date* date =
new Date(
fpVisManager, size, x, y, layout, dateString);
450 const G4String& currentSceneName = pScene -> GetName ();
451 G4bool successful = pScene -> AddEndOfEventModel(model, warn);
454 G4cout <<
"Date has been added to scene \""
455 << currentSceneName <<
"\"."
464void G4VisCommandSceneAddDate::Date::operator()
469 time = fTimer.GetClockTime();
474 std::string::size_type i = time.rfind(
'\n');
475 if (i != std::string::npos) time.erase(i);
477 text.SetScreenSize(fSize);
478 text.SetLayout(fLayout);
480 text.SetVisAttributes(textAtts);
481 sceneHandler.BeginPrimitives2D();
482 sceneHandler.AddPrimitive(text);
483 sceneHandler.EndPrimitives2D();
490 fpCommand -> SetGuidance (
"Adds digis to current scene.");
491 fpCommand -> SetGuidance
492 (
"Digis are drawn at end of event when the scene in which"
493 "\nthey are added is current.");
512 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
518 const G4String& currentSceneName = pScene -> GetName ();
519 G4bool successful = pScene -> AddEndOfEventModel (model, warn);
522 G4cout <<
"Digis, if any, will be drawn at end of run in scene \""
523 << currentSceneName <<
"\"."
536 fpCommand =
new G4UIcommand (
"/vis/scene/add/electricField",
this);
537 fpCommand -> SetGuidance
538 (
"Adds electric field representation to current scene.");
539 fpCommand -> SetGuidance
540 (
"The first parameter is no. of data points per half extent. So, possibly, at"
541 "\nmaximum, the number of data points sampled is (2*n+1)^3, which can grow"
542 "\nlarge--be warned!"
543 "\nThe default value is 10, i.e., a 21x21x21 array, i.e., 9,261 sampling points."
544 "\nThat may swamp your view, but usually, a field is limited to a small part of"
545 "\nthe extent, so it's not a problem. But if it is, here are some of the things"
547 "\n- reduce the number of data points per half extent (first parameter);"
548 "\n- specify \"lightArrow\" (second parameter);"
549 "\n- restrict the region sampled with \"/vis/set/extentForField\";"
550 "\n- restrict the drawing to a specific volume with"
551 "\n \"/vis/set/volumeForField\" or \"/vis/touchable/volumeForField\"."
552 "\nNote: you might have to deactivate existing field models with"
553 "\n \"/vis/scene/activateModel Field false\" and re-issue"
554 "\n \"/vis/scene/add/...Field\" command again.");
555 fpCommand -> SetGuidance
556 (
"In the arrow representation, the length of the arrow is proportional"
557 "\nto the magnitude of the field and the colour is mapped onto the range"
558 "\nas a fraction of the maximum magnitude: 0->0.5->1 is red->green->blue.");
560 parameter =
new G4UIparameter (
"nDataPointsPerHalfExtent",
'i', omitable =
true);
561 parameter -> SetDefaultValue (10);
562 fpCommand -> SetParameter (parameter);
563 parameter =
new G4UIparameter (
"representation",
's', omitable =
true);
564 parameter -> SetParameterCandidates(
"fullArrow lightArrow");
565 parameter -> SetDefaultValue (
"fullArrow");
566 fpCommand -> SetParameter (parameter);
586 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
591 G4int nDataPointsPerHalfExtent;
593 std::istringstream iss(newValue);
594 iss >> nDataPointsPerHalfExtent >> representation;
597 if (representation ==
"lightArrow") {
602 (nDataPointsPerHalfExtent,modelRepresentation,
606 const G4String& currentSceneName = pScene -> GetName ();
607 G4bool successful = pScene -> AddRunDurationModel (model, warn);
611 <<
"Electric field, if any, will be drawn in scene \""
614 << nDataPointsPerHalfExtent
615 <<
" data points per half extent and with representation \""
630 fpCommand =
new G4UIcommand (
"/vis/scene/add/eventID",
this);
631 fpCommand -> SetGuidance (
"Adds eventID to current scene.");
632 fpCommand -> SetGuidance
633 (
"Run and event numbers are drawn at end of event or run when"
634 "\n the scene in which they are added is current.");
636 parameter =
new G4UIparameter (
"size",
'i', omitable =
true);
637 parameter -> SetGuidance (
"Screen size of text in pixels.");
638 parameter -> SetDefaultValue (18);
639 fpCommand -> SetParameter (parameter);
640 parameter =
new G4UIparameter (
"x-position",
'd', omitable =
true);
641 parameter -> SetGuidance (
"x screen position in range -1 < x < 1.");
642 parameter -> SetDefaultValue (-0.95);
643 fpCommand -> SetParameter (parameter);
644 parameter =
new G4UIparameter (
"y-position",
'd', omitable =
true);
645 parameter -> SetGuidance (
"y screen position in range -1 < y < 1.");
646 parameter -> SetDefaultValue (0.9);
647 fpCommand -> SetParameter (parameter);
648 parameter =
new G4UIparameter (
"layout",
's', omitable =
true);
649 parameter -> SetGuidance (
"Layout, i.e., adjustment: left|centre|right.");
650 parameter -> SetDefaultValue (
"left");
651 fpCommand -> SetParameter (parameter);
670 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
678 std::istringstream is(newValue);
679 is >> size >> x >> y >> layoutString;
688 =
new EventID(forEndOfEvent,
fpVisManager, size, x, y, layout);
691 eoeModel->
SetType(
"EoEEventID");
694 G4bool successfulEoE = pScene -> AddEndOfEventModel (eoeModel, warn);
698 =
new EventID(forEndOfRun,
fpVisManager, size, x, y, layout);
701 eorModel->
SetType(
"EoREventID");
704 G4bool successfulEoR = pScene -> AddEndOfRunModel (eorModel, warn);
706 if (successfulEoE && successfulEoR) {
708 const G4String& currentSceneName = pScene -> GetName ();
709 G4cout <<
"EventID has been added to scene \""
710 << currentSceneName <<
"\"."
719void G4VisCommandSceneAddEventID::EventID::operator()
727 if (!currentRun)
return;
731 std::ostringstream oss;
736 if (!fpVisManager->GetReviewingKeptEvents())
return;
737 const G4Event* currentEvent = mp->GetEvent();
738 if (!currentEvent)
return;
740 oss <<
"Run " << currentRunID <<
" Event " << eventID;
746 if (fpVisManager->GetReviewingKeptEvents())
return;
749 oss <<
"Run " << currentRunID <<
" (" << nEvents <<
" event";
750 if (nEvents != 1) oss <<
's';
751 oss <<
", " << nKeptEvents <<
" kept)";
759 text.SetScreenSize(fSize);
760 text.SetLayout(fLayout);
762 text.SetVisAttributes(textAtts);
763 sceneHandler.BeginPrimitives2D();
764 sceneHandler.AddPrimitive(text);
765 sceneHandler.EndPrimitives2D();
771 fpCommand =
new G4UIcommand(
"/vis/scene/add/extent",
this);
772 fpCommand -> SetGuidance
773 (
"Adds a dummy model with given extent to the current scene."
774 "\nRequires the limits: xmin, xmax, ymin, ymax, zmin, zmax unit."
775 "\nThis can be used to provide an extent to the scene even if"
776 "\nno other models with extent are available. For example,"
777 "\neven if there is no geometry. In that case, for example:"
779 "\n /vis/scene/create"
780 "\n /vis/scene/add/extent -300 300 -300 300 -300 300 cm"
781 "\n /vis/sceneHandler/attach");
784 parameter =
new G4UIparameter (
"xmin",
'd', omitable =
true);
785 parameter -> SetDefaultValue (0.);
786 fpCommand -> SetParameter (parameter);
787 parameter =
new G4UIparameter (
"xmax",
'd', omitable =
true);
788 parameter -> SetDefaultValue (0.);
789 fpCommand -> SetParameter (parameter);
790 parameter =
new G4UIparameter (
"ymin",
'd', omitable =
true);
791 parameter -> SetDefaultValue (0.);
792 fpCommand -> SetParameter (parameter);
793 parameter =
new G4UIparameter (
"ymax",
'd', omitable =
true);
794 parameter -> SetDefaultValue (0.);
795 fpCommand -> SetParameter (parameter);
796 parameter =
new G4UIparameter (
"zmin",
'd', omitable =
true);
797 parameter -> SetDefaultValue (0.);
798 fpCommand -> SetParameter (parameter);
799 parameter =
new G4UIparameter (
"zmax",
'd', omitable =
true);
800 parameter -> SetDefaultValue (0.);
801 fpCommand -> SetParameter (parameter);
802 parameter =
new G4UIparameter (
"unit",
's', omitable =
true);
803 parameter -> SetDefaultValue (
"m");
804 fpCommand -> SetParameter (parameter);
823 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
828 G4double xmin, xmax, ymin, ymax, zmin, zmax;
830 std::istringstream is(newValue);
831 is >> xmin >> xmax >> ymin >> ymax >> zmin >> zmax >> unitString;
833 xmin *= unit; xmax *= unit;
834 ymin *= unit; ymax *= unit;
835 zmin *= unit; zmax *= unit;
837 G4VisExtent visExtent(xmin, xmax, ymin, ymax, zmin, zmax);
838 Extent* extent =
new Extent(xmin, xmax, ymin, ymax, zmin, zmax);
845 const G4String& currentSceneName = pScene -> GetName ();
846 G4bool successful = pScene -> AddRunDurationModel (model, warn);
849 G4cout <<
"A benign model with extent "
851 <<
" has been added to scene \""
852 << currentSceneName <<
"\"."
861G4VisCommandSceneAddExtent::Extent::Extent
865fExtent(xmin,xmax,ymin,ymax,zmin,zmax)
868void G4VisCommandSceneAddExtent::Extent::operator()
875 fpCommand =
new G4UIcommand(
"/vis/scene/add/frame",
this);
876 fpCommand -> SetGuidance (
"Add frame to current scene.");
879 parameter =
new G4UIparameter (
"size",
'd', omitable =
true);
880 parameter -> SetGuidance (
"Size of frame. 1 = full window.");
881 parameter -> SetParameterRange (
"size > 0 && size <=1");
882 parameter -> SetDefaultValue (0.97);
883 fpCommand -> SetParameter (parameter);
902 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
908 std::istringstream is(newValue);
917 const G4String& currentSceneName = pScene -> GetName ();
918 G4bool successful = pScene -> AddRunDurationModel (model, warn);
921 G4cout <<
"Frame has been added to scene \""
922 << currentSceneName <<
"\"."
931void G4VisCommandSceneAddFrame::Frame::operator()
935 frame.push_back(
G4Point3D( fSize, fSize, 0.));
936 frame.push_back(
G4Point3D(-fSize, fSize, 0.));
937 frame.push_back(
G4Point3D(-fSize, -fSize, 0.));
938 frame.push_back(
G4Point3D( fSize, -fSize, 0.));
939 frame.push_back(
G4Point3D( fSize, fSize, 0.));
944 sceneHandler.BeginPrimitives2D();
945 sceneHandler.AddPrimitive(frame);
946 sceneHandler.EndPrimitives2D();
954 fpCommand =
new G4UIcommand (
"/vis/scene/add/gps",
this);
955 fpCommand -> SetGuidance
956 (
"A representation of the source(s) of the General Particle Source"
957 "\nwill be added to current scene and drawn, if applicable.");
959 fpCommand->SetGuidance(
"Default: red and transparent.");
960 parameter =
new G4UIparameter(
"red_or_string",
's', omitable =
true);
961 parameter -> SetDefaultValue (
"1.");
962 fpCommand -> SetParameter (parameter);
963 parameter =
new G4UIparameter(
"green",
'd', omitable =
true);
964 parameter -> SetDefaultValue (0.);
965 fpCommand -> SetParameter (parameter);
966 parameter =
new G4UIparameter (
"blue",
'd', omitable =
true);
967 parameter -> SetDefaultValue (0.);
968 fpCommand -> SetParameter (parameter);
969 parameter =
new G4UIparameter (
"opacity",
'd', omitable =
true);
970 parameter -> SetDefaultValue (0.3);
971 fpCommand -> SetParameter (parameter);
990 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
997 std::istringstream iss(newValue);
998 iss >> redOrString >> green >> blue >> opacity;
1003 const G4String& currentSceneName = pScene -> GetName ();
1004 G4bool successful = pScene -> AddRunDurationModel (model, warn);
1008 "A representation of the source(s) of the General Particle Source will be drawn"
1009 "\n in colour " << colour <<
" for scene \""
1010 << currentSceneName <<
"\" if applicable."
1023 fpCommand -> SetGuidance (
"Adds hits to current scene.");
1024 fpCommand -> SetGuidance
1025 (
"Hits are drawn at end of event when the scene in which"
1026 "\nthey are added is current.");
1045 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
1051 const G4String& currentSceneName = pScene -> GetName ();
1052 G4bool successful = pScene -> AddEndOfEventModel (model, warn);
1055 G4cout <<
"Hits, if any, will be drawn at end of run in scene \""
1056 << currentSceneName <<
"\"."
1068 fpCommand =
new G4UIcommand(
"/vis/scene/add/line",
this);
1069 fpCommand -> SetGuidance (
"Adds line to current scene.");
1072 parameter =
new G4UIparameter (
"x1",
'd', omitable =
false);
1073 fpCommand -> SetParameter (parameter);
1074 parameter =
new G4UIparameter (
"y1",
'd', omitable =
false);
1075 fpCommand -> SetParameter (parameter);
1076 parameter =
new G4UIparameter (
"z1",
'd', omitable =
false);
1077 fpCommand -> SetParameter (parameter);
1078 parameter =
new G4UIparameter (
"x2",
'd', omitable =
false);
1079 fpCommand -> SetParameter (parameter);
1080 parameter =
new G4UIparameter (
"y2",
'd', omitable =
false);
1081 fpCommand -> SetParameter (parameter);
1082 parameter =
new G4UIparameter (
"z2",
'd', omitable =
false);
1083 fpCommand -> SetParameter (parameter);
1084 parameter =
new G4UIparameter (
"unit",
's', omitable =
true);
1086 fpCommand->SetParameter (parameter);
1105 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
1112 std::istringstream is(newValue);
1113 is >> x1 >> y1 >> z1 >> x2 >> y2 >> z2 >> unitString;
1115 x1 *= unit; y1 *= unit; z1 *= unit;
1116 x2 *= unit; y2 *= unit; z2 *= unit;
1118 Line* line =
new Line(x1, y1, z1, x2, y2, z2,
1125 const G4String& currentSceneName = pScene -> GetName ();
1126 G4bool successful = pScene -> AddRunDurationModel (model, warn);
1129 G4cout <<
"Line has been added to scene \""
1130 << currentSceneName <<
"\"."
1139G4VisCommandSceneAddLine::Line::Line
1143 fWidth(width), fColour(colour)
1145 fPolyline.push_back(
G4Point3D(x1,y1,z1));
1146 fPolyline.push_back(
G4Point3D(x2,y2,z2));
1150 fPolyline.SetVisAttributes(va);
1153void G4VisCommandSceneAddLine::Line::operator()
1156 sceneHandler.BeginPrimitives();
1157 sceneHandler.AddPrimitive(fPolyline);
1158 sceneHandler.EndPrimitives();
1164 fpCommand =
new G4UIcommand(
"/vis/scene/add/line2D",
this);
1165 fpCommand -> SetGuidance (
"Adds 2D line to current scene.");
1166 fpCommand -> SetGuidance (
"x,y in range [-1,1]");
1169 parameter =
new G4UIparameter (
"x1",
'd', omitable =
false);
1170 fpCommand -> SetParameter (parameter);
1171 parameter =
new G4UIparameter (
"y1",
'd', omitable =
false);
1172 fpCommand -> SetParameter (parameter);
1173 parameter =
new G4UIparameter (
"x2",
'd', omitable =
false);
1174 fpCommand -> SetParameter (parameter);
1175 parameter =
new G4UIparameter (
"y2",
'd', omitable =
false);
1176 fpCommand -> SetParameter (parameter);
1195 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
1201 std::istringstream is(newValue);
1202 is >> x1 >> y1 >> x2 >> y2;
1204 Line2D* line2D =
new Line2D
1211 const G4String& currentSceneName = pScene -> GetName ();
1212 G4bool successful = pScene -> AddRunDurationModel (model, warn);
1215 G4cout <<
"A 2D line has been added to scene \""
1216 << currentSceneName <<
"\"."
1225G4VisCommandSceneAddLine2D::Line2D::Line2D
1229 fWidth(width), fColour(colour)
1231 fPolyline.push_back(
G4Point3D(x1,y1,0));
1232 fPolyline.push_back(
G4Point3D(x2,y2,0));
1236 fPolyline.SetVisAttributes(va);
1239void G4VisCommandSceneAddLine2D::Line2D::operator()
1242 sceneHandler.BeginPrimitives2D();
1243 sceneHandler.AddPrimitive(fPolyline);
1244 sceneHandler.EndPrimitives2D();
1251 fpCommand =
new G4UIcommand (
"/vis/scene/add/localAxes",
this);
1252 fpCommand -> SetGuidance
1253 (
"Adds local axes to physical volume(s).");
1255 parameter =
new G4UIparameter (
"physical-volume-name",
's', omitable =
false);
1256 fpCommand -> SetParameter (parameter);
1257 parameter =
new G4UIparameter (
"copy-no",
'i', omitable =
true);
1258 parameter -> SetGuidance (
"If negative, matches any copy no.");
1259 parameter -> SetDefaultValue (-1);
1260 fpCommand -> SetParameter (parameter);
1268 return "world 0 -1";
1280 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
1287 std::istringstream is (newValue);
1288 is >> name >> copyNo;
1290 std::vector<G4PhysicalVolumesSearchScene::Findings> findingsVector;
1295 std::vector<G4VPhysicalVolume*>::iterator iterWorld =
1297 size_t nWorlds = transportationManager->
GetNoWorlds();
1298 for (
size_t i = 0; i < nWorlds; ++i, ++iterWorld) {
1307 (&searchModel, name, copyNo);
1309 for (
const auto& findings: searchScene.
GetFindings()) {
1310 findingsVector.push_back(findings);
1315 for (
const auto& findings: findingsVector) {
1318 const auto& extent = findings.fpFoundPV->GetLogicalVolume()->GetSolid()->GetExtent();
1319 const auto& transform = findings.fFoundObjectTransformation;
1321 const G4double lengthMax = extent.GetExtentRadius()/2.;
1322 const G4double intLog10LengthMax = std::floor(std::log10(lengthMax));
1323 G4double length = std::pow(10,intLog10LengthMax);
1324 if (5.*length < lengthMax) length *= 5.;
1325 else if (2.*length < lengthMax) length *= 2.;
1327 const auto& axesModel =
new G4AxesModel(0.,0.,0.,length,transform);
1328 axesModel->SetGlobalTag(
"LocalAxesModel");
1329 std::ostringstream oss; oss
1330 <<
"Local Axes for " << findings.fpFoundPV->GetName()
1331 <<
':' << findings.fFoundPVCopyNo <<
':' <<
id++;
1332 axesModel->SetGlobalDescription(oss.str());
1337 G4cout <<
"\"" << findings.fpFoundPV->GetName()
1338 <<
"\", copy no. " << findings.fFoundPVCopyNo
1339 <<
",\n found in searched volume \""
1340 << findings.fpSearchPV->GetName()
1341 <<
"\" at depth " << findings.fFoundDepth
1342 <<
",\n base path: \"" << findings.fFoundBasePVPath
1343 <<
"\".\n Local axes have been added to scene \""
1344 << pScene->
GetName() <<
"\".";
1346 G4cout <<
" With extent " << extent
1347 <<
"\n at " << transform.getRotation()
1348 <<
" " << transform.getTranslation();
1357 if (findingsVector.empty()) {
1359 G4warn <<
"ERROR: Volume \"" << name <<
"\"";
1361 G4warn <<
", copy no. " << copyNo <<
",";
1376 fpCommand =
new G4UIcommand (
"/vis/scene/add/logicalVolume",
this);
1377 fpCommand -> SetGuidance (
"Adds a logical volume to the current scene,");
1378 fpCommand -> SetGuidance
1379 (
"Shows boolean components (if any), voxels (if any), readout geometry"
1380 "\n (if any), local axes and overlaps (if any), under control of the"
1381 "\n appropriate flag."
1382 "\n Note: voxels are not constructed until start of run -"
1383 "\n \"/run/beamOn\". (For voxels without a run, \"/run/beamOn 0\".)");
1385 parameter =
new G4UIparameter (
"logical-volume-name",
's', omitable =
false);
1386 fpCommand -> SetParameter (parameter);
1387 parameter =
new G4UIparameter (
"depth-of-descent",
'i', omitable =
true);
1388 parameter -> SetGuidance (
"Depth of descent of geometry hierarchy.");
1389 parameter -> SetDefaultValue (1);
1390 fpCommand -> SetParameter (parameter);
1391 parameter =
new G4UIparameter (
"booleans-flag",
'b', omitable =
true);
1392 parameter -> SetDefaultValue (
true);
1393 fpCommand -> SetParameter (parameter);
1394 parameter =
new G4UIparameter (
"voxels-flag",
'b', omitable =
true);
1395 parameter -> SetDefaultValue (
true);
1396 fpCommand -> SetParameter (parameter);
1397 parameter =
new G4UIparameter (
"readout-flag",
'b', omitable =
true);
1398 parameter -> SetDefaultValue (
true);
1399 fpCommand -> SetParameter (parameter);
1400 parameter =
new G4UIparameter (
"axes-flag",
'b', omitable =
true);
1401 parameter -> SetDefaultValue (
true);
1402 parameter -> SetGuidance (
"Set \"false\" to suppress axes.");
1403 fpCommand -> SetParameter (parameter);
1404 parameter =
new G4UIparameter(
"check-overlap-flag",
'b', omitable =
true);
1406 parameter -> SetGuidance (
"Set \"false\" to suppress overlap check.");
1407 fpCommand->SetParameter(parameter);
1427 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
1433 G4int requestedDepthOfDescent;
1434 G4String booleansString, voxelsString, readoutString, axesString;
1436 std::istringstream is (newValue);
1437 is >> name >> requestedDepthOfDescent
1438 >> booleansString >> voxelsString >> readoutString >> axesString
1449 if (pLV ==
nullptr)
return;
1451 const std::vector<G4Scene::Model>& rdModelList =
1452 pScene -> GetRunDurationModelList();
1453 std::vector<G4Scene::Model>::const_iterator i;
1454 for (i = rdModelList.begin(); i != rdModelList.end(); ++i) {
1455 if (i->fpModel->GetGlobalDescription().find(
"Volume") != std::string::npos)
break;
1457 if (i != rdModelList.end()) {
1459 G4warn <<
"There is already a volume, \""
1460 << i->fpModel->GetGlobalDescription()
1461 <<
"\",\n in the run-duration model list of scene \""
1462 << pScene -> GetName()
1463 <<
"\".\n Your logical volume must be the only volume in the scene."
1464 <<
"\n Create a new scene and try again:"
1465 <<
"\n /vis/specify " << name
1467 <<
"\n /vis/scene/create"
1468 <<
"\n /vis/scene/add/logicalVolume " << name
1469 <<
"\n /vis/sceneHandler/attach"
1470 <<
"\n (and also, if necessary, /vis/viewer/flush)"
1477 (pLV, requestedDepthOfDescent, booleans, voxels, readout, checkOverlaps);
1478 const G4String& currentSceneName = pScene -> GetName ();
1479 G4bool successful = pScene -> AddRunDurationModel (model, warn);
1483 G4bool axesSuccessful =
false;
1486 const G4double axisLengthMax = radius / 2.;
1487 const G4double intLog10Length = std::floor(std::log10(axisLengthMax));
1488 G4double axisLength = std::pow(10,intLog10Length);
1489 if (5.*axisLength < axisLengthMax) axisLength *= 5.;
1490 else if (2.*axisLength < axisLengthMax) axisLength *= 2.;
1491 const G4double axisWidth = axisLength / 20.;
1493 axesSuccessful = pScene -> AddRunDurationModel (axesModel, warn);
1504 G4cout <<
"Logical volume \"" << pLV -> GetName ()
1505 <<
"\" with requested depth of descent "
1506 << requestedDepthOfDescent
1508 if (!booleans)
G4cout <<
"out";
1509 G4cout <<
" boolean components, with";
1510 if (!voxels)
G4cout <<
"out";
1511 G4cout <<
" voxels,\n with";
1512 if (!readout)
G4cout <<
"out";
1513 G4cout <<
" readout geometry and with";
1514 if (!checkOverlaps)
G4cout <<
"out";
1515 G4cout <<
" overlap checking"
1516 <<
"\n has been added to scene \"" << currentSceneName <<
"\".";
1518 if (axesSuccessful) {
1520 "\n Axes have also been added at the origin of local cooordinates.";
1523 "\n Axes have not been added for some reason possibly stated above.";
1542 fpCommand =
new G4UIcommand (
"/vis/scene/add/logo",
this);
1543 fpCommand -> SetGuidance (
"Adds a G4 logo to the current scene.");
1544 fpCommand -> SetGuidance
1545 (
"If \"unit\" is \"auto\", height is roughly one tenth of scene extent.");
1546 fpCommand -> SetGuidance
1547 (
"\"direction\" is that of outward-facing normal to front face of logo."
1548 "\nIf \"direction\" is \"auto\", logo faces the user in the current viewer.");
1549 fpCommand -> SetGuidance
1550 (
"\nIf \"placement\" is \"auto\", logo is placed at bottom right of screen"
1551 "\n when viewed from logo direction.");
1553 parameter =
new G4UIparameter (
"height",
'd', omitable =
true);
1555 fpCommand->SetParameter (parameter);
1556 parameter =
new G4UIparameter (
"unit",
's', omitable =
true);
1558 fpCommand->SetParameter (parameter);
1559 parameter =
new G4UIparameter (
"direction",
's', omitable =
true);
1562 fpCommand->SetParameter (parameter);
1563 parameter =
new G4UIparameter (
"red",
'd', omitable =
true);
1565 fpCommand->SetParameter (parameter);
1566 parameter =
new G4UIparameter (
"green",
'd', omitable =
true);
1568 fpCommand->SetParameter (parameter);
1569 parameter =
new G4UIparameter (
"blue",
'd', omitable =
true);
1571 fpCommand->SetParameter (parameter);
1572 parameter =
new G4UIparameter (
"placement",
's', omitable =
true);
1573 parameter -> SetParameterCandidates(
"auto manual");
1575 fpCommand->SetParameter (parameter);
1576 parameter =
new G4UIparameter (
"xmid",
'd', omitable =
true);
1578 fpCommand->SetParameter (parameter);
1579 parameter =
new G4UIparameter (
"ymid",
'd', omitable =
true);
1581 fpCommand->SetParameter (parameter);
1582 parameter =
new G4UIparameter (
"zmid",
'd', omitable =
true);
1584 fpCommand->SetParameter (parameter);
1585 parameter =
new G4UIparameter (
"unit",
's', omitable =
true);
1587 fpCommand->SetParameter (parameter);
1606 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
1613 <<
"ERROR: Scene has no extent. Add volumes or use \"/vis/scene/add/extent\"."
1624 "ERROR: G4VisCommandSceneAddLogo::SetNewValue: no viewer."
1625 "\n Auto direction needs a viewer."
1631 G4double userHeight, red, green, blue, xmid, ymid, zmid;
1632 G4String userHeightUnit, direction, placement, positionUnit;
1633 std::istringstream is (newValue);
1634 is >> userHeight >> userHeightUnit >> direction
1635 >> red >> green >> blue
1637 >> xmid >> ymid >> zmid >> positionUnit;
1641 if (userHeightUnit ==
"auto") {
1648 xmid *= unit; ymid *= unit; zmid *= unit;
1650 Direction logoDirection = X;
1651 if (direction ==
"auto") {
1655 if (vp.
x() > vp.
y() && vp.
x() > vp.
z()) logoDirection = X;
1656 else if (vp.
x() < vp.
y() && vp.
x() < vp.
z()) logoDirection = minusX;
1657 else if (vp.
y() > vp.
x() && vp.
y() > vp.
z()) logoDirection = Y;
1658 else if (vp.
y() < vp.
x() && vp.
y() < vp.
z()) logoDirection = minusY;
1659 else if (vp.
z() > vp.
x() && vp.
z() > vp.
y()) logoDirection = Z;
1660 else if (vp.
z() < vp.
x() && vp.
z() < vp.
y()) logoDirection = minusZ;
1662 else if (direction[0] ==
'x') logoDirection = X;
1663 else if (direction[0] ==
'y') logoDirection = Y;
1664 else if (direction[0] ==
'z') logoDirection = Z;
1665 else if (direction[0] ==
'-') {
1666 if (direction[1] ==
'x') logoDirection = minusX;
1667 else if (direction[1] ==
'y') logoDirection = minusY;
1668 else if (direction[1] ==
'z') logoDirection = minusZ;
1671 G4warn <<
"ERROR: Unrecogniseed direction: \""
1672 << direction <<
"\"." <<
G4endl;
1677 G4bool autoPlacing =
false;
if (placement ==
"auto") autoPlacing =
true;
1694 "WARNING: Existing scene does not yet have any extent."
1695 "\n Maybe you have not yet added any geometrical object."
1701 const G4double halfHeight(height / 2.);
1703 const G4double freeHeightFraction (1. + 2. * comfort);
1707 switch (logoDirection) {
1710 if (freeHeightFraction * (xmax - xmin) < height) room =
false;
1714 if (freeHeightFraction * (ymax - ymin) < height) room =
false;
1718 if (freeHeightFraction * (zmax - zmin) < height) room =
false;
1725 "WARNING: Not enough room in existing scene. Maybe logo is too large."
1732 "WARNING: The logo you have asked for is bigger than the existing"
1733 "\n scene. Maybe you have added it too soon. It is recommended that"
1734 "\n you add the logo last so that it can be correctly auto-positioned"
1735 "\n so as not to be obscured by any existing object and so that the"
1736 "\n view parameters can be correctly recalculated."
1741 G4double sxmid(xmid), symid(ymid), szmid(zmid);
1745 const G4double xComfort = comfort * (xmax - xmin);
1746 const G4double yComfort = comfort * (ymax - ymin);
1747 const G4double zComfort = comfort * (zmax - zmin);
1748 switch (logoDirection) {
1750 sxmid = xmax + halfHeight + xComfort;
1751 symid = ymin - yComfort;
1752 szmid = zmin - zComfort;
1755 sxmid = xmin - halfHeight - xComfort;
1756 symid = ymin - yComfort;
1757 szmid = zmax + zComfort;
1760 sxmid = xmin - xComfort;
1761 symid = ymax + halfHeight + yComfort;
1762 szmid = zmin - zComfort;
1765 sxmid = xmax + xComfort;
1766 symid = ymin - halfHeight - yComfort;
1767 szmid = zmin - zComfort;
1770 sxmid = xmax + xComfort;
1771 symid = ymin - yComfort;
1772 szmid = zmax + halfHeight + zComfort;
1775 sxmid = xmin - xComfort;
1776 symid = ymin - yComfort;
1777 szmid = zmin - halfHeight - zComfort;
1783 switch (logoDirection) {
1808 G4Logo* logo =
new G4Logo(height,visAtts,transform);
1820 const G4String& currentSceneName = pScene -> GetName ();
1821 G4bool successful = pScene -> AddRunDurationModel (model, warn);
1824 G4cout <<
"G4 Logo of height " << userHeight <<
' ' << userHeightUnit
1825 <<
", " << direction <<
"-direction, added to scene \""
1826 << currentSceneName <<
"\"";
1828 G4cout <<
"\n with extent " << extent
1840G4VisCommandSceneAddLogo::G4Logo::G4Logo
1855 const G4double xb = -h2, yb = f2 + w;
1856 const G4double dx = xt - xb, dy = yt - yb;
1857 const G4double angle = std::atan2(dy,dx);
1860 const G4double d = std::sqrt(dx * dx + dy * dy);
1863 const G4double x8 = ((-ss * d - dx * (yt - y8)) / dy) + xt;
1865 G4double x9 = ((-(ss - w) * d - dx * (yt - y8)) / dy) + xt;
1867 const G4double xtr = ss - f1, ytr = -ss - f2 -w;
1868 x9 += xtr; y9 += ytr;
1882 G4Tubs tG(
"tG",ri,ro,d2,0.15*pi,1.85*pi);
1883 G4Box bG(
"bG",w2,ro2,d2);
1888 fpG = logoG.CreatePolyhedron();
1895 G4Box b1(
"b1",h2,h2,d2);
1896 G4Box bS(
"bS",ss,ss,d2+e);
1897 G4Box bS2(
"bS2",ss,ss,d2+2.*e);
1906 fp4 = logo4.CreatePolyhedron();
1920G4VisCommandSceneAddLogo::G4Logo::~G4Logo() {
1925void G4VisCommandSceneAddLogo::G4Logo::operator()
1926 (G4VGraphicsScene& sceneHandler,
const G4ModelingParameters*) {
1927 sceneHandler.BeginPrimitives();
1928 sceneHandler.AddPrimitive(*fpG);
1929 sceneHandler.AddPrimitive(*fp4);
1930 sceneHandler.EndPrimitives();
1937 fpCommand =
new G4UIcommand (
"/vis/scene/add/logo2D",
this);
1938 fpCommand -> SetGuidance (
"Adds 2D logo to current scene.");
1940 parameter =
new G4UIparameter (
"size",
'i', omitable =
true);
1941 parameter -> SetGuidance (
"Screen size of text in pixels.");
1942 parameter -> SetDefaultValue (48);
1943 fpCommand -> SetParameter (parameter);
1944 parameter =
new G4UIparameter (
"x-position",
'd', omitable =
true);
1945 parameter -> SetGuidance (
"x screen position in range -1 < x < 1.");
1946 parameter -> SetDefaultValue (-0.9);
1947 fpCommand -> SetParameter (parameter);
1948 parameter =
new G4UIparameter (
"y-position",
'd', omitable =
true);
1949 parameter -> SetGuidance (
"y screen position in range -1 < y < 1.");
1950 parameter -> SetDefaultValue (-0.9);
1951 fpCommand -> SetParameter (parameter);
1952 parameter =
new G4UIparameter (
"layout",
's', omitable =
true);
1953 parameter -> SetGuidance (
"Layout, i.e., adjustment: left|centre|right.");
1954 parameter -> SetDefaultValue (
"left");
1955 fpCommand -> SetParameter (parameter);
1974 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
1982 std::istringstream is(newValue);
1983 is >> size >> x >> y >> layoutString;
1989 Logo2D* logo2D =
new Logo2D(
fpVisManager, size, x, y, layout);
1995 const G4String& currentSceneName = pScene -> GetName ();
1996 G4bool successful = pScene -> AddRunDurationModel (model, warn);
1999 G4cout <<
"2D logo has been added to scene \""
2000 << currentSceneName <<
"\"."
2009void G4VisCommandSceneAddLogo2D::Logo2D::operator()
2013 text.SetScreenSize(fSize);
2014 text.SetLayout(fLayout);
2016 text.SetVisAttributes(textAtts);
2017 sceneHandler.BeginPrimitives2D();
2018 sceneHandler.AddPrimitive(text);
2019 sceneHandler.EndPrimitives2D();
2025 fpCommand =
new G4UIcommand (
"/vis/scene/add/magneticField",
this);
2026 fpCommand -> SetGuidance
2027 (
"Adds magnetic field representation to current scene.");
2053 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
2058 G4int nDataPointsPerHalfScene;
2060 std::istringstream iss(newValue);
2061 iss >> nDataPointsPerHalfScene >> representation;
2064 if (representation ==
"lightArrow") {
2069 (nDataPointsPerHalfScene,modelRepresentation,
2073 const G4String& currentSceneName = pScene -> GetName ();
2074 G4bool successful = pScene -> AddRunDurationModel (model, warn);
2078 <<
"Magnetic field, if any, will be drawn in scene \""
2081 << nDataPointsPerHalfScene
2082 <<
" data points per half extent and with representation \""
2098 fpCommand -> SetGuidance
2099 (
"Adds Primitive Scorer Hits (PSHits) to current scene.");
2100 fpCommand -> SetGuidance
2101 (
"PSHits are drawn at end of run when the scene in which"
2102 "\nthey are added is current.");
2103 fpCommand -> SetGuidance
2104 (
"Optional parameter specifies name of scoring map. By default all"
2105 "\nscoring maps registered with the G4ScoringManager are drawn.");
2106 fpCommand -> SetParameterName (
"mapname", omitable =
true);
2107 fpCommand -> SetDefaultValue (
"all");
2127 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
2133 const G4String& currentSceneName = pScene -> GetName ();
2134 G4bool successful = pScene -> AddEndOfRunModel (model, warn);
2137 if (newValue ==
"all") {
2138 G4cout <<
"All Primitive Scorer hits";
2140 G4cout <<
"Hits of Primitive Scorer \"" << newValue <<
'"';
2142 G4cout <<
" will be drawn at end of run in scene \""
2143 << currentSceneName <<
"\"."
2156 fpCommand =
new G4UIcommand (
"/vis/scene/add/scale",
this);
2157 fpCommand -> SetGuidance
2158 (
"Adds an annotated scale line to the current scene.");
2159 fpCommand -> SetGuidance
2160 (
"If \"unit\" is \"auto\", length is roughly one tenth of the scene extent.");
2161 fpCommand -> SetGuidance
2162 (
"If \"direction\" is \"auto\", scale is roughly in the plane of the current view.");
2163 fpCommand -> SetGuidance
2164 (
"If \"placement\" is \"auto\", scale is placed at bottom left of current view."
2165 "\n Otherwise placed at (xmid,ymid,zmid).");
2166 fpCommand -> SetGuidance
2167 (
"An annotated line in the specified direction with tick marks at the"
2168 "\nend. If autoPlacing is true it is required to be centred at the"
2169 "\nfront, right, bottom corner of the world space, comfortably outside"
2170 "\nthe existing bounding box/sphere so that existing objects do not"
2171 "\nobscure it. Otherwise it is required to be drawn with mid-point at"
2172 "\n(xmid, ymid, zmid)."
2174 "\nThe auto placing algorithm is (approx):"
2175 "\n x = xmin + (1 + comfort) * (xmax - xmin);"
2176 "\n y = ymin - comfort * (ymax - ymin);"
2177 "\n z = zmin + (1 + comfort) * (zmax - zmin);"
2178 "\n if direction == x then (x - length,y,z) to (x,y,z);"
2179 "\n if direction == y then (x,y,z) to (x,y + length,z);"
2180 "\n if direction == z then (x,y,z - length) to (x,y,z);"
2183 parameter =
new G4UIparameter (
"length",
'd', omitable =
true);
2185 fpCommand->SetParameter (parameter);
2186 parameter =
new G4UIparameter (
"unit",
's', omitable =
true);
2188 fpCommand->SetParameter (parameter);
2189 parameter =
new G4UIparameter (
"direction",
's', omitable =
true);
2192 fpCommand->SetParameter (parameter);
2193 parameter =
new G4UIparameter (
"red",
'd', omitable =
true);
2195 fpCommand->SetParameter (parameter);
2196 parameter =
new G4UIparameter (
"green",
'd', omitable =
true);
2198 fpCommand->SetParameter (parameter);
2199 parameter =
new G4UIparameter (
"blue",
'd', omitable =
true);
2201 fpCommand->SetParameter (parameter);
2202 parameter =
new G4UIparameter (
"placement",
's', omitable =
true);
2203 parameter -> SetParameterCandidates(
"auto manual");
2205 fpCommand->SetParameter (parameter);
2206 parameter =
new G4UIparameter (
"xmid",
'd', omitable =
true);
2208 fpCommand->SetParameter (parameter);
2209 parameter =
new G4UIparameter (
"ymid",
'd', omitable =
true);
2211 fpCommand->SetParameter (parameter);
2212 parameter =
new G4UIparameter (
"zmid",
'd', omitable =
true);
2214 fpCommand->SetParameter (parameter);
2215 parameter =
new G4UIparameter (
"unit",
's', omitable =
true);
2217 fpCommand->SetParameter (parameter);
2236 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
2243 <<
"ERROR: Scene has no extent. Add volumes or use \"/vis/scene/add/extent\"."
2250 G4double userLength, red, green, blue, xmid, ymid, zmid;
2251 G4String userLengthUnit, direction, placement, positionUnit;
2252 std::istringstream is (newValue);
2253 is >> userLength >> userLengthUnit >> direction
2254 >> red >> green >> blue
2256 >> xmid >> ymid >> zmid >> positionUnit;
2260 if (userLengthUnit ==
"auto") {
2262 const G4double intLog10Length = std::floor(std::log10(lengthMax));
2263 length = std::pow(10,intLog10Length);
2264 if (5.*length < lengthMax) length *= 5.;
2265 else if (2.*length < lengthMax) length *= 2.;
2272 xmid *= unit; ymid *= unit; zmid *= unit;
2274 Scale::Direction scaleDirection (Scale::x);
2275 if (direction[0] ==
'y') scaleDirection = Scale::y;
2276 if (direction[0] ==
'z') scaleDirection = Scale::z;
2282 "ERROR: G4VisCommandSceneAddScale::SetNewValue: no viewer."
2283 "\n Auto direction needs a viewer."
2294 if (direction ==
"auto") {
2295 if (std::abs(vp.
x()) > std::abs(vp.
y()) &&
2296 std::abs(vp.
x()) > std::abs(vp.
z())) {
2297 if (std::abs(up.
y()) > std::abs(up.
z())) scaleDirection = Scale::z;
2298 else scaleDirection = Scale::y;
2300 else if (std::abs(vp.
y()) > std::abs(vp.
x()) &&
2301 std::abs(vp.
y()) > std::abs(vp.
z())) {
2302 if (std::abs(up.
x()) > std::abs(up.
z())) scaleDirection = Scale::z;
2303 else scaleDirection = Scale::x;
2305 else if (std::abs(vp.
z()) > std::abs(vp.
x()) &&
2306 std::abs(vp.
z()) > std::abs(vp.
y())) {
2307 if (std::abs(up.
y()) > std::abs(up.
x())) scaleDirection = Scale::x;
2308 else scaleDirection = Scale::y;
2312 G4bool autoPlacing =
false;
if (placement ==
"auto") autoPlacing =
true;
2316 const G4double halfLength(length / 2.);
2318 const G4double freeLengthFraction (1. + 2. * comfort);
2333 "WARNING: Existing scene does not yet have any extent."
2334 "\n Maybe you have not yet added any geometrical object."
2341 switch (scaleDirection) {
2343 if (freeLengthFraction * (xmax - xmin) < length) room =
false;
2346 if (freeLengthFraction * (ymax - ymin) < length) room =
false;
2349 if (freeLengthFraction * (zmax - zmin) < length) room =
false;
2356 "WARNING: Not enough room in existing scene. Maybe scale is too long."
2363 "WARNING: The scale you have asked for is bigger than the existing"
2364 "\n scene. Maybe you have added it too soon. It is recommended that"
2365 "\n you add the scale last so that it can be correctly auto-positioned"
2366 "\n so as not to be obscured by any existing object and so that the"
2367 "\n view parameters can be correctly recalculated."
2395 G4double sxmid(xmid), symid(ymid), szmid(zmid);
2399 const G4double xComfort = comfort * (xmax - xmin);
2400 const G4double yComfort = comfort * (ymax - ymin);
2401 const G4double zComfort = comfort * (zmax - zmin);
2402 switch (scaleDirection) {
2405 sxmid = xmax + xComfort;
2406 symid = ymin - yComfort;
2407 szmid = zmin - zComfort;
2409 sxmid = xmin - xComfort;
2410 symid = ymin - yComfort;
2411 szmid = zmax + zComfort;
2416 sxmid = xmin - xComfort;
2417 symid = ymax + yComfort;
2418 szmid = zmin - zComfort;
2420 sxmid = xmax + xComfort;
2421 symid = ymin - yComfort;
2422 szmid = zmin - zComfort;
2427 sxmid = xmax + xComfort;
2428 symid = ymin - yComfort;
2429 szmid = zmax + zComfort;
2431 sxmid = xmin - xComfort;
2432 symid = ymin - yComfort;
2433 szmid = zmax + zComfort;
2443 switch (scaleDirection) {
2454 scaleExtent = scaleExtent.
Transform(transform);
2457 if (direction ==
"auto") {
2458 switch (scaleDirection) {
2472 Scale* scale =
new Scale
2473 (visAttr, length, transform,
2481 const G4String& currentSceneName = pScene -> GetName ();
2482 G4bool successful = pScene -> AddRunDurationModel (model, warn);
2485 G4cout <<
"Scale of " << annotation
2486 <<
" added to scene \"" << currentSceneName <<
"\".";
2488 G4cout <<
"\n with extent " << scaleExtent
2500G4VisCommandSceneAddScale::Scale::Scale
2508 const G4double halfLength(length / 2.);
2509 const G4double tickLength(length / 20.);
2513 fScaleLine.SetVisAttributes(&fVisAtts);
2514 fTick11.SetVisAttributes(&fVisAtts);
2515 fTick12.SetVisAttributes(&fVisAtts);
2516 fTick21.SetVisAttributes(&fVisAtts);
2517 fTick22.SetVisAttributes(&fVisAtts);
2523 fScaleLine.push_back(r1);
2524 fScaleLine.push_back(r2);
2527 fTick11.push_back(r1 + ticky);
2528 fTick11.push_back(r1 - ticky);
2529 fTick12.push_back(r1 + tickz);
2530 fTick12.push_back(r1 - tickz);
2531 fTick21.push_back(r2 + ticky);
2532 fTick21.push_back(r2 - ticky);
2533 fTick22.push_back(r2 + tickz);
2534 fTick22.push_back(r2 - tickz);
2536 fScaleLine.transform(transform);
2537 fTick11.transform(transform);
2538 fTick12.transform(transform);
2539 fTick21.transform(transform);
2540 fTick22.transform(transform);
2542 G4Point3D textPosition(0., tickLength, 0.);
2543 textPosition.transform(transform);
2544 fText =
G4Text(annotation,textPosition);
2545 fText.SetVisAttributes(annotationColour);
2546 fText.SetScreenSize(annotationSize);
2549void G4VisCommandSceneAddScale::Scale::operator()
2553 sceneHandler.BeginPrimitives();
2554 sceneHandler.AddPrimitive(fScaleLine);
2555 sceneHandler.AddPrimitive(fTick11);
2556 sceneHandler.AddPrimitive(fTick12);
2557 sceneHandler.AddPrimitive(fTick21);
2558 sceneHandler.AddPrimitive(fTick22);
2559 sceneHandler.AddPrimitive(fText);
2560 sceneHandler.EndPrimitives();
2567 fpCommand =
new G4UIcommand (
"/vis/scene/add/text",
this);
2568 fpCommand -> SetGuidance (
"Adds text to current scene.");
2569 fpCommand -> SetGuidance
2570 (
"Use \"/vis/set/textColour\" to set colour.");
2571 fpCommand -> SetGuidance
2572 (
"Use \"/vis/set/textLayout\" to set layout:");
2576 fpCommand->SetParameter (parameter);
2579 fpCommand->SetParameter (parameter);
2582 fpCommand->SetParameter (parameter);
2583 parameter =
new G4UIparameter (
"unit",
's', omitable =
true);
2585 fpCommand->SetParameter (parameter);
2586 parameter =
new G4UIparameter (
"font_size",
'd', omitable =
true);
2589 fpCommand->SetParameter (parameter);
2590 parameter =
new G4UIparameter (
"x_offset",
'd', omitable =
true);
2593 fpCommand->SetParameter (parameter);
2594 parameter =
new G4UIparameter (
"y_offset",
'd', omitable =
true);
2597 fpCommand->SetParameter (parameter);
2598 parameter =
new G4UIparameter (
"text",
's', omitable =
true);
2599 parameter->
SetGuidance (
"The rest of the line is text.");
2601 fpCommand->SetParameter (parameter);
2620 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
2636 x *= unit; y *= unit; z *= unit;
2645 const G4String& currentSceneName = pScene -> GetName ();
2646 G4bool successful = pScene -> AddRunDurationModel (model, warn);
2649 G4cout <<
"Text '" << text
2650 <<
"' has been added to scene \"" << currentSceneName <<
"\"."
2664 fpCommand =
new G4UIcommand (
"/vis/scene/add/text2D",
this);
2665 fpCommand -> SetGuidance (
"Adds 2D text to current scene.");
2666 fpCommand -> SetGuidance (
"x,y in range [-1,1]");
2667 fpCommand -> SetGuidance
2668 (
"Use \"/vis/set/textColour\" to set colour.");
2669 fpCommand -> SetGuidance
2670 (
"Use \"/vis/set/textLayout\" to set layout:");
2674 fpCommand->SetParameter (parameter);
2677 fpCommand->SetParameter (parameter);
2678 parameter =
new G4UIparameter (
"font_size",
'd', omitable =
true);
2681 fpCommand->SetParameter (parameter);
2682 parameter =
new G4UIparameter (
"x_offset",
'd', omitable =
true);
2685 fpCommand->SetParameter (parameter);
2686 parameter =
new G4UIparameter (
"y_offset",
'd', omitable =
true);
2689 fpCommand->SetParameter (parameter);
2690 parameter =
new G4UIparameter (
"text",
's', omitable =
true);
2691 parameter->
SetGuidance (
"The rest of the line is text.");
2693 fpCommand->SetParameter (parameter);
2712 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
2731 G4Text2D* g4text2D =
new G4Text2D(g4text);
2736 std::ostringstream oss;
2737 oss <<
"Text2D: '" << g4text.
GetText()
2742 const G4String& currentSceneName = pScene -> GetName ();
2743 G4bool successful = pScene -> AddRunDurationModel (model, warn);
2746 G4cout <<
"2D text '" << text
2747 <<
"' has been added to scene \"" << currentSceneName <<
"\"."
2756G4VisCommandSceneAddText2D::G4Text2D::G4Text2D(
const G4Text& text):
2760void G4VisCommandSceneAddText2D::G4Text2D::operator()
2762 sceneHandler.BeginPrimitives2D();
2763 sceneHandler.AddPrimitive(fText);
2764 sceneHandler.EndPrimitives2D();
2773 (
"/vis/scene/add/trajectories",
this);
2774 fpCommand -> SetGuidance
2775 (
"Adds trajectories to current scene.");
2776 fpCommand -> SetGuidance
2777 (
"Causes trajectories, if any, to be drawn at the end of processing an"
2778 "\nevent. Switches on trajectory storing and sets the"
2779 "\ndefault trajectory type.");
2780 fpCommand -> SetGuidance
2781 (
"The command line parameter list determines the default trajectory type."
2782 "\nIf it contains the string \"smooth\", auxiliary inter-step points will"
2783 "\nbe inserted to improve the smoothness of the drawing of a curved"
2785 "\nIf it contains the string \"rich\", significant extra information will"
2786 "\nbe stored in the trajectory (G4RichTrajectory) amenable to modeling"
2787 "\nand filtering with \"/vis/modeling/trajectories/create/drawByAttribute\""
2788 "\nand \"/vis/filtering/trajectories/create/attributeFilter\" commands."
2789 "\nIt may contain both strings in any order.");
2790 fpCommand -> SetGuidance
2791 (
"\nTo switch off trajectory storing: \"/tracking/storeTrajectory 0\"."
2792 "\nSee also \"/vis/scene/endOfEventAction\".");
2793 fpCommand -> SetGuidance
2794 (
"Note: This only sets the default. Independently of the result of this"
2795 "\ncommand, a user may instantiate a trajectory that overrides this default"
2796 "\nin PreUserTrackingAction.");
2797 fpCommand -> SetParameterName (
"default-trajectory-type", omitable =
true);
2798 fpCommand -> SetDefaultValue (
"");
2818 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
2822 const G4String& currentSceneName = pScene -> GetName ();
2826 if (newValue.find(
"smooth") != std::string::npos) smooth =
true;
2827 if (newValue.find(
"rich") != std::string::npos) rich =
true;
2828 if (newValue.size() && !(rich || smooth)) {
2830 G4warn <<
"ERROR: Unrecognised parameter \"" << newValue <<
"\""
2831 "\n No action taken."
2839 if (smooth && rich) {
2840 UImanager->
ApplyCommand(
"/tracking/storeTrajectory 4");
2841 defaultTrajectoryType =
"G4RichTrajectory configured for smooth steps";
2842 }
else if (smooth) {
2843 UImanager->
ApplyCommand(
"/tracking/storeTrajectory 2");
2844 defaultTrajectoryType =
"G4SmoothTrajectory";
2846 UImanager->
ApplyCommand(
"/tracking/storeTrajectory 3");
2847 defaultTrajectoryType =
"G4RichTrajectory";
2849 UImanager->
ApplyCommand(
"/tracking/storeTrajectory 1");
2850 defaultTrajectoryType =
"G4Trajectory";
2855 "Attributes available for modeling and filtering with"
2856 "\n \"/vis/modeling/trajectories/create/drawByAttribute\" and"
2857 "\n \"/vis/filtering/trajectories/create/attributeFilter\" commands:"
2863 }
else if (smooth) {
2873 auto eoeModel = eoeList.begin();
2874 for (; eoeModel != eoeList.end(); ++eoeModel) {
2875 const auto* actualModel = eoeModel->fpModel;
2878 if (eoeModel == eoeList.end()) {
2881 pScene -> AddEndOfEventModel (model, warn);
2887 G4cout <<
"Default trajectory type " << defaultTrajectoryType
2888 <<
"\n will be used to store trajectories for scene \""
2889 << currentSceneName <<
"\"."
2895 "WARNING: Trajectory storing has been requested. This action may be"
2896 "\n reversed with \"/tracking/storeTrajectory 0\"."
2908 fpCommand -> SetGuidance
2909 (
"Add named Vis User Action to current scene.");
2910 fpCommand -> SetGuidance
2911 (
"Attempts to match search string to name of action - use unique sub-string.");
2912 fpCommand -> SetGuidance
2913 (
"(Use /vis/list to see names of registered actions.)");
2914 fpCommand -> SetGuidance
2915 (
"If name == \"all\" (default), all actions are added.");
2916 fpCommand -> SetParameterName(
"action-name", omitable =
true);
2917 fpCommand -> SetDefaultValue(
"all");
2936 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
2943 const std::vector<G4VisManager::UserVisAction>& runDurationUserVisActions =
2945 for (
size_t i = 0; i < runDurationUserVisActions.size(); i++) {
2946 const G4String& name = runDurationUserVisActions[i].fName;
2947 G4VUserVisAction* visAction = runDurationUserVisActions[i].fpUserVisAction;
2948 if (newValue ==
"all" || name.find(newValue) != std::string::npos) {
2950 AddVisAction(name,visAction,pScene,runDuration,verbosity);
2954 const std::vector<G4VisManager::UserVisAction>& endOfEventUserVisActions =
2956 for (
size_t i = 0; i < endOfEventUserVisActions.size(); i++) {
2957 const G4String& name = endOfEventUserVisActions[i].fName;
2959 if (newValue ==
"all" || name.find(newValue) != std::string::npos) {
2961 AddVisAction(name,visAction,pScene,endOfEvent,verbosity);
2965 const std::vector<G4VisManager::UserVisAction>& endOfRunUserVisActions =
2967 for (
size_t i = 0; i < endOfRunUserVisActions.size(); i++) {
2968 const G4String& name = endOfRunUserVisActions[i].fName;
2970 if (newValue ==
"all" || name.find(newValue) != std::string::npos) {
2972 AddVisAction(name,visAction,pScene,endOfRun,verbosity);
2978 G4warn <<
"WARNING: No User Vis Action registered." <<
G4endl;
2986void G4VisCommandSceneAddUserAction::AddVisAction
2990 G4VisCommandSceneAddUserAction::ActionType type,
2995 const std::map<G4VUserVisAction*,G4VisExtent>& visExtentMap =
2998 std::map<G4VUserVisAction*,G4VisExtent>::const_iterator i =
2999 visExtentMap.find(visAction);
3000 if (i != visExtentMap.end()) extent = i->second;
3004 <<
"WARNING: User Vis Action \"" << name <<
"\" extent is null."
3009 G4VModel* model =
new G4CallbackModel<G4VUserVisAction>(visAction);
3010 model->
SetType(
"User Vis Action");
3014 G4bool successful =
false;;
3017 successful = pScene -> AddRunDurationModel (model, warn);
3020 successful = pScene -> AddEndOfEventModel (model, warn);
3023 successful = pScene -> AddEndOfRunModel (model, warn);
3028 const G4String& currentSceneName = pScene -> GetName ();
3029 G4cout <<
"User Vis Action added to scene \""
3030 << currentSceneName <<
"\"";
3032 G4cout <<
"\n with extent " << extent;
3044 fpCommand =
new G4UIcommand (
"/vis/scene/add/volume",
this);
3045 fpCommand -> SetGuidance
3046 (
"Adds a physical volume to current scene, with optional clipping volume.");
3047 fpCommand -> SetGuidance
3048 (
"If physical-volume-name is \"world\" (the default), the top of the"
3049 "\nmain geometry tree (material world) is added. If \"worlds\", the"
3050 "\ntops of all worlds - material world and parallel worlds, if any - are"
3051 "\nadded. Otherwise a search of all worlds is made.");
3052 fpCommand -> SetGuidance
3053 (
"In the last case the names of all volumes in all worlds are matched"
3054 "\nagainst physical-volume-name. If this is of the form \"/regexp/\","
3055 "\nwhere regexp is a regular expression (see C++ regex), the match uses"
3056 "\nthe usual rules of regular expression matching. Otherwise an exact"
3057 "\nmatch is required."
3058 "\nFor example, \"/Shap/\" adds \"Shape1\" and \"Shape2\".");
3059 fpCommand -> SetGuidance
3060 (
"It may help to see a textual representation of the geometry hierarchy of"
3061 "\nthe worlds. Try \"/vis/drawTree [worlds]\" or one of the driver/browser"
3062 "\ncombinations that have the required functionality, e.g., HepRepFile.");
3063 fpCommand -> SetGuidance
3064 (
"If clip-volume-type is specified, the subsequent parameters are used to"
3065 "\nto define a clipping volume. For example,"
3066 "\n\"/vis/scene/add/volume ! ! ! -box km 0 1 0 1 0 1\" will draw the world"
3067 "\nwith the positive octant cut away. (If the Boolean Processor issues"
3068 "\nwarnings try replacing 0 by 0.000000001 or something.)");
3069 fpCommand -> SetGuidance
3070 (
"If clip-volume-type is prepended with '-', the clip-volume is subtracted"
3071 "\n(cutaway). (This is the default if there is no prepended character.)"
3072 "\nIf '*' is prepended, the intersection of the physical-volume and the"
3073 "\nclip-volume is made. (You can make a section through the detector with"
3074 "\na thin box, for example).");
3075 fpCommand -> SetGuidance
3076 (
"For \"box\", the parameters are xmin,xmax,ymin,ymax,zmin,zmax."
3077 "\nOnly \"box\" is programmed at present.");
3079 parameter =
new G4UIparameter (
"physical-volume-name",
's', omitable =
true);
3080 parameter -> SetDefaultValue (
"world");
3081 fpCommand -> SetParameter (parameter);
3082 parameter =
new G4UIparameter (
"copy-no",
'i', omitable =
true);
3083 parameter -> SetGuidance (
"If negative, matches any copy no.");
3084 parameter -> SetDefaultValue (-1);
3085 fpCommand -> SetParameter (parameter);
3086 parameter =
new G4UIparameter (
"depth-of-descent",
'i', omitable =
true);
3087 parameter -> SetGuidance
3088 (
"Depth of descent of geometry hierarchy. Default = unlimited depth.");
3090 fpCommand -> SetParameter (parameter);
3091 parameter =
new G4UIparameter (
"clip-volume-type",
's', omitable =
true);
3092 parameter -> SetParameterCandidates(
"none box -box *box");
3093 parameter -> SetDefaultValue (
"none");
3094 parameter -> SetGuidance(
"[-|*]type. See general guidance.");
3095 fpCommand -> SetParameter (parameter);
3096 parameter =
new G4UIparameter (
"parameter-unit",
's', omitable =
true);
3097 parameter -> SetDefaultValue (
"m");
3098 fpCommand -> SetParameter (parameter);
3099 parameter =
new G4UIparameter (
"parameter-1",
'd', omitable =
true);
3100 parameter -> SetDefaultValue (0.);
3101 fpCommand -> SetParameter (parameter);
3102 parameter =
new G4UIparameter (
"parameter-2",
'd', omitable =
true);
3103 parameter -> SetDefaultValue (0.);
3104 fpCommand -> SetParameter (parameter);
3105 parameter =
new G4UIparameter (
"parameter-3",
'd', omitable =
true);
3106 parameter -> SetDefaultValue (0.);
3107 fpCommand -> SetParameter (parameter);
3108 parameter =
new G4UIparameter (
"parameter-4",
'd', omitable =
true);
3109 parameter -> SetDefaultValue (0.);
3110 fpCommand -> SetParameter (parameter);
3111 parameter =
new G4UIparameter (
"parameter-5",
'd', omitable =
true);
3112 parameter -> SetDefaultValue (0.);
3113 fpCommand -> SetParameter (parameter);
3114 parameter =
new G4UIparameter (
"parameter-6",
'd', omitable =
true);
3115 parameter -> SetDefaultValue (0.);
3116 fpCommand -> SetParameter (parameter);
3124 return "world 0 -1";
3136 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
3141 G4String name, clipVolumeType, parameterUnit;
3142 G4int copyNo, requestedDepthOfDescent;
3143 G4double param1, param2, param3, param4, param5, param6;
3144 std::istringstream is (newValue);
3145 is >> name >> copyNo >> requestedDepthOfDescent
3146 >> clipVolumeType >> parameterUnit
3147 >> param1 >> param2 >> param3 >> param4 >> param5 >> param6;
3150 if (clipVolumeType[
size_t(0)] ==
'-') {
3151 clipVolumeType = clipVolumeType.substr(1);
3152 }
else if (clipVolumeType[
size_t(0)] ==
'*') {
3154 clipVolumeType = clipVolumeType.substr(1);
3157 param1 *= unit; param2 *= unit; param3 *= unit;
3158 param4 *= unit; param5 *= unit; param6 *= unit;
3161 if (clipVolumeType ==
"box") {
3162 const G4double dX = (param2 - param1) / 2.;
3163 const G4double dY = (param4 - param3) / 2.;
3164 const G4double dZ = (param6 - param5) / 2.;
3165 const G4double x0 = (param2 + param1) / 2.;
3166 const G4double y0 = (param4 + param3) / 2.;
3167 const G4double z0 = (param6 + param5) / 2.;
3169 (
"_displaced_clipping_box",
3170 new G4Box(
"_clipping_box",dX,dY,dZ),
3177 size_t nWorlds = transportationManager->
GetNoWorlds();
3180 static G4bool warned =
false;
3181 if (!warned && name !=
"worlds") {
3183 "WARNING: Parallel worlds in operation. To visualise, specify"
3184 "\n \"worlds\" or the parallel world volume or sub-volume name"
3185 "\n and control visibility with /vis/geometry."
3187 std::vector<G4VPhysicalVolume*>::iterator iterWorld =
3189 for (
size_t i = 0; i < nWorlds; ++i, ++iterWorld) {
3190 G4warn <<
" World " << i <<
": " << (*iterWorld)->GetName()
3204 "ERROR: G4VisCommandSceneAddVolume::SetNewValue:"
3205 "\n No world. Maybe the geometry has not yet been defined."
3206 "\n Try \"/run/initialize\""
3212 std::vector<G4PhysicalVolumesSearchScene::Findings> findingsVector;
3224 G4bool useFullExtent =
false;
3232 if (name ==
"world") {
3234 findingsVector.push_back
3237 }
else if (name ==
"worlds") {
3242 "WARNING: G4VisCommandSceneAddVolume::SetNewValue:"
3243 "\n Parallel worlds requested but none exist."
3244 "\n Just adding material world."
3248 std::vector<G4VPhysicalVolume*>::iterator iterWorld =
3250 for (
size_t i = 0; i < nWorlds; ++i, ++iterWorld) {
3251 findingsVector.push_back
3253 (*iterWorld,*iterWorld));
3263 useFullExtent =
true;
3265 std::vector<G4VPhysicalVolume*>::iterator iterWorld =
3267 for (
size_t i = 0; i < nWorlds; ++i, ++iterWorld) {
3271 requestedDepthOfDescent,
3277 for (
const auto& findings: searchScene.
GetFindings()) {
3278 findingsVector.push_back(findings);
3283 for (
const auto& findings: findingsVector) {
3285 findings.fpFoundPV->SetCopyNo(findings.fFoundPVCopyNo);
3287 (findings.fpFoundPV,
3288 requestedDepthOfDescent,
3289 findings.fFoundObjectTransformation,
3292 findings.fFoundBasePVPath);
3293 if (clippingSolid) {
3297 if (!foundPVModel->
Validate(warn))
return;
3302 G4cout <<
"\"" << findings.fpFoundPV->GetName()
3303 <<
"\", copy no. " << findings.fFoundPVCopyNo
3304 <<
",\n found in searched volume \""
3305 << findings.fpSearchPV->GetName()
3306 <<
"\" at depth " << findings.fFoundDepth
3307 <<
",\n base path: \"" << findings.fFoundBasePVPath
3308 <<
"\",\n with a requested depth of further descent of ";
3309 if (requestedDepthOfDescent < 0) {
3310 G4cout <<
"<0 (unlimited)";
3313 G4cout << requestedDepthOfDescent;
3315 G4cout <<
",\n has been added to scene \"" << pScene->
GetName() <<
"\"."
3323 if (findingsVector.empty()) {
3325 G4warn <<
"ERROR: Volume \"" << name <<
"\"";
3327 G4warn <<
", copy no. " << copyNo <<
",";
3342 fpCommand =
new G4UIcommand(
"/vis/scene/add/plotter",
this);
3343 fpCommand -> SetGuidance (
"Add a plotter to current scene.");
3347 fpCommand->SetParameter(parameter);
3362 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
3370 const G4String& currentSceneName = pScene -> GetName ();
3371 G4bool successful = pScene -> AddEndOfRunModel(model, warn);
3376 <<
"\" has been added to scene \"" << currentSceneName <<
"\"."
HepGeom::Point3D< G4double > G4Point3D
CLHEP::HepRotation G4RotationMatrix
CLHEP::Hep3Vector G4ThreeVector
HepGeom::Vector3D< G4double > G4Vector3D
G4GLOB_DLL std::ostream G4cout
HepRotation & rotateZ(double delta)
G4LogicalVolume * GetVolume(const G4String &name, G4bool verbose=true, G4bool reverseSearch=false) const
static G4LogicalVolumeStore * GetInstance()
void SetClippingSolid(G4VSolid *pClippingSolid)
G4bool Validate(G4bool warn)
void SetClippingMode(ClippingMode mode)
void DescribeYourselfTo(G4VGraphicsScene &)
const std::vector< Findings > & GetFindings() const
G4Plotter & GetPlotter(const G4String &a_name)
static G4PlotterManager & GetInstance()
const std::map< G4String, G4AttDef > * GetAttDefs() const override
const std::map< G4String, G4AttDef > * GetAttDefs() const override
static G4RunManager * GetMasterRunManager()
const G4Run * GetCurrentRun() const
G4int GetNumberOfEventToBeProcessed() const
G4int GetNumberOfKeptEvents() const
G4bool AddRunDurationModel(G4VModel *, G4bool warn=false)
const G4VisExtent & GetExtent() const
const G4String & GetName() const
const std::vector< Model > & GetEndOfEventModelList() const
const std::map< G4String, G4AttDef > * GetAttDefs() const override
const std::map< G4String, G4AttDef > * GetAttDefs() const override
G4double GetYOffset() const
G4double GetXOffset() const
void SetOffset(double dx, double dy)
const std::map< G4String, G4AttDef > * GetAttDefs() const
const std::map< G4String, G4AttDef > * GetAttDefs() const override
const std::map< G4String, G4AttDef > * GetAttDefs() const override
static G4TransportationManager * GetTransportationManager()
std::vector< G4VPhysicalVolume * >::iterator GetWorldsIterator()
std::size_t GetNoWorlds() const
G4UIcommand * FindPath(const char *commandPath) const
static G4double ValueOf(const char *unitName)
static G4bool ConvertToBool(const char *st)
G4UIcommandTree * GetTree() const
G4int ApplyCommand(const char *aCommand)
static G4UImanager * GetUIpointer()
G4double StoD(const G4String &s)
void SetDefaultValue(const char *theDefaultValue)
void SetGuidance(const char *theGuidance)
G4double GetScreenSize() const
void SetScreenSize(G4double)
G4Point3D GetPosition() const
void SetType(const G4String &)
void SetGlobalDescription(const G4String &)
virtual G4String GetCurrentDescription() const
void SetGlobalTag(const G4String &)
void SetExtent(const G4VisExtent &)
const G4VisExtent & GetExtent() const
const G4ViewParameters & GetViewParameters() const
static G4double fCurrentTextSize
void G4VisCommandsSceneAddUnsuccessful(G4VisManager::Verbosity verbosity)
static G4Colour fCurrentTextColour
void CheckSceneAndNotifyHandlers(G4Scene *=nullptr)
static std::vector< G4PhysicalVolumesSearchScene::Findings > fCurrrentPVFindingsForField
void ConvertToColour(G4Colour &colour, const G4String &redOrString, G4double green, G4double blue, G4double opacity)
static G4VisManager * fpVisManager
static G4VisExtent fCurrentExtentForField
const G4String & ConvertToColourGuidance()
void CopyParametersFrom(const G4UIcommand *fromCmd, G4UIcommand *toCmd)
static G4int fCurrentArrow3DLineSegmentsPerCircle
static G4Text::Layout fCurrentTextLayout
static G4double fCurrentLineWidth
static G4Colour fCurrentColour
void CopyGuidanceFrom(const G4UIcommand *fromCmd, G4UIcommand *toCmd, G4int startLine=0)
G4int GetNoOfSides() const
const G4Vector3D & GetViewpointDirection() const
const G4Vector3D & GetUpVector() const
void SetColour(const G4Colour &)
void SetLineWidth(G4double)
void SetForceSolid(G4bool=true)
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSceneAddArrow2D()
G4VisCommandSceneAddArrow2D()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddArrow()
virtual ~G4VisCommandSceneAddArrow()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
G4VisCommandSceneAddAxes()
virtual ~G4VisCommandSceneAddAxes()
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandSceneAddDate()
G4VisCommandSceneAddDate()
G4VisCommandSceneAddDigis()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandSceneAddDigis()
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandSceneAddElectricField()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4VisCommandSceneAddElectricField()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddEventID()
virtual ~G4VisCommandSceneAddEventID()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSceneAddExtent()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddExtent()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4VisCommandSceneAddFrame()
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandSceneAddFrame()
virtual ~G4VisCommandSceneAddGPS()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddGPS()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSceneAddHits()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddHits()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
G4VisCommandSceneAddLine2D()
virtual ~G4VisCommandSceneAddLine2D()
G4VisCommandSceneAddLine()
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandSceneAddLine()
void SetNewValue(G4UIcommand *command, G4String newValue)
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSceneAddLocalAxes()
G4VisCommandSceneAddLocalAxes()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddLogicalVolume()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSceneAddLogicalVolume()
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
G4VisCommandSceneAddLogo2D()
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandSceneAddLogo2D()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddLogo()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSceneAddLogo()
virtual ~G4VisCommandSceneAddMagneticField()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddMagneticField()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSceneAddPSHits()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddPSHits()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSceneAddPlotter()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddPlotter()
virtual ~G4VisCommandSceneAddScale()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4VisCommandSceneAddScale()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddText2D()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandSceneAddText2D()
virtual ~G4VisCommandSceneAddText()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddText()
G4VisCommandSceneAddTrajectories()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSceneAddTrajectories()
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandSceneAddUserAction()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4VisCommandSceneAddUserAction()
G4String GetCurrentValue(G4UIcommand *command)
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneAddVolume()
virtual ~G4VisCommandSceneAddVolume()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4double GetExtentRadius() const
G4VisExtent & Transform(const G4Transform3D &)
const std::map< G4VUserVisAction *, G4VisExtent > & GetUserVisActionExtents() const
G4VViewer * GetCurrentViewer() const
void SetVisAttributes(const G4VisAttributes *)
BasicVector3D< T > unit() const
static void SetNumberOfRotationSteps(G4int n)
HepPolyhedron & Transform(const G4Transform3D &t)
static void ResetNumberOfRotationSteps()