55 if (pScene) currentSceneName = pScene -> GetName ();
56 return currentSceneName;
63 fpCommand =
new G4UIcommand (
"/vis/scene/activateModel",
this);
64 fpCommand -> SetGuidance
65 (
"Activate or de-activate model.");
66 fpCommand -> SetGuidance
67 (
"Attempts to match search string to name of model - use unique sub-string.");
68 fpCommand -> SetGuidance
69 (
"Use \"/vis/scene/list\" to see model names.");
70 fpCommand -> SetGuidance
71 (
"If name == \"all\" (default), all models are activated.");
73 parameter =
new G4UIparameter (
"search-string",
's', omitable =
true);
74 parameter -> SetDefaultValue (
"all");
75 fpCommand -> SetParameter (parameter);
76 parameter =
new G4UIparameter (
"activate",
'b', omitable =
true);
77 parameter -> SetDefaultValue (
true);
78 fpCommand -> SetParameter (parameter);
94 G4String searchString, activateString;
95 std::istringstream is (newValue);
100 auto lastQuotationMark = newValue.find_last_of(
'"');
101 if (lastQuotationMark != std::string::npos) {
102 auto firstQuotationMark = newValue.find_first_of(
'"');
103 if (lastQuotationMark != firstQuotationMark) {
105 searchString = newValue.substr
106 (firstQuotationMark + 1, lastQuotationMark - firstQuotationMark - 1);
107 activateString = newValue.substr(lastQuotationMark + 2);
110 for (
auto c : newValue) {
111 if (c ==
'"') nQuotes++;
115 ed <<
"More than 2 quotation marks in search string: " << searchString;
122 is >> searchString >> activateString;
129 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
135 if (!pSceneHandler) {
137 G4warn <<
"ERROR: No current sceneHandler. Please create one." <<
G4endl;
142 if (searchString ==
"all" && !activate) {
145 "WARNING: You are not allowed to de-activate all models."
146 "\n Command ignored."
154 std::vector<G4Scene::Model>& runDurationModelList =
156 for (
size_t i = 0; i < runDurationModelList.size(); i++) {
157 const G4String& modelName = runDurationModelList[i].fpModel->GetGlobalDescription();
158 if (searchString ==
"all" || modelName.find(searchString) != std::string::npos) {
160 runDurationModelList[i].fActive = activate;
162 G4warn <<
"Model \"" << modelName;
163 if (activate)
G4warn <<
"\" activated.";
164 else G4warn <<
"\" de-activated.";
170 std::vector<G4Scene::Model>& endOfEventModelList =
172 for (
size_t i = 0; i < endOfEventModelList.size(); i++) {
173 const G4String& modelName = endOfEventModelList[i].fpModel->GetGlobalDescription();
174 if (searchString ==
"all" || modelName.find(searchString) != std::string::npos) {
176 endOfEventModelList[i].fActive = activate;
178 G4warn <<
"Model \"" << modelName;
179 if (activate)
G4warn <<
"\" activated.";
180 else G4warn <<
"\" de-activated.";
186 std::vector<G4Scene::Model>& endOfRunModelList =
188 for (
size_t i = 0; i < endOfRunModelList.size(); i++) {
189 const G4String& modelName = endOfRunModelList[i].fpModel->GetGlobalDescription();
190 if (searchString ==
"all" || modelName.find(searchString) != std::string::npos) {
192 endOfRunModelList[i].fActive = activate;
194 G4warn <<
"Model \"" << modelName;
195 if (activate)
G4warn <<
"\" activated.";
196 else G4warn <<
"\" de-activated.";
217 fpCommand -> SetGuidance
218 (
"Creates an empty scene.");
219 fpCommand -> SetGuidance
220 (
"Invents a name if not supplied. This scene becomes current.");
221 fpCommand -> SetParameterName (
"scene-name", omitable =
true);
228G4String G4VisCommandSceneCreate::NextName () {
229 std::ostringstream oss;
230 oss <<
"scene-" << fId;
248 if (newName == nextName) fId++;
251 std::size_t iScene, nScenes = sceneList.size ();
252 for (iScene = 0; iScene < nScenes; ++iScene) {
253 if (sceneList [iScene] -> GetName () == newName)
break;
255 if (iScene < nScenes) {
257 G4warn <<
"WARNING: Scene \"" << newName <<
"\" already exists."
258 <<
"\n New scene not created."
265 sceneList.push_back (pScene);
269 G4cout <<
"New empty scene \"" << newName <<
"\" created." <<
G4endl;
278 fpCommand =
new G4UIcommand (
"/vis/scene/endOfEventAction",
this);
279 fpCommand -> SetGuidance
280 (
"Accumulate or refresh the viewer for each new event.");
281 fpCommand -> SetGuidance
282 (
"\"accumulate\": viewer accumulates hits, etc., event by event, or");
283 fpCommand -> SetGuidance
284 (
"\"refresh\": viewer shows them at end of event or, for direct-screen"
285 "\n viewers, refreshes the screen just before drawing the next event.");
287 parameter =
new G4UIparameter (
"action",
's', omitable =
true);
288 parameter -> SetParameterCandidates (
"accumulate refresh");
289 parameter -> SetDefaultValue (
"refresh");
290 fpCommand -> SetParameter (parameter);
291 parameter =
new G4UIparameter (
"maxNumber",
'i', omitable =
true);
292 parameter -> SetDefaultValue (100);
293 parameter -> SetGuidance
294 (
"Maximum number of events kept. Unlimited if negative.");
295 fpCommand -> SetParameter (parameter);
312 G4int maxNumberOfKeptEvents;
313 std::istringstream is (newValue);
314 is >> action >> maxNumberOfKeptEvents;
319 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
325 if (!pSceneHandler) {
327 G4warn <<
"ERROR: No current sceneHandler. Please create one." <<
G4endl;
332 if (action ==
"accumulate") {
336 else if (action ==
"refresh") {
340 "ERROR: Cannot refresh events unless runs refresh too."
341 "\n Use \"/vis/scene/endOfRun refresh\"."
353 "ERROR: unrecognised parameter \"" << action <<
"\"."
363 size_t nCurrentlyKept = 0;
370 const std::vector<const G4Event*>* events = currentRun->
GetEventVector();
372 nCurrentlyKept = events->size();
377 G4cout <<
"End of event action set to ";
380 G4cout <<
"\"accumulate\"."
381 "\n Maximum number of events to be kept: "
382 << maxNumberOfKeptEvents
383 <<
" (unlimited if negative)."
384 "\n This may be changed with, e.g., "
385 "\"/vis/scene/endOfEventAction accumulate 1000\".";
391 maxNumberOfKeptEvents != 0 &&
394 if (nCurrentlyKept) {
396 "\n There are currently " << nCurrentlyKept
397 <<
" events kept for refreshing and/or reviewing.";
399 G4warn <<
"The vis manager will keep ";
400 if (maxNumberOfKeptEvents < 0)
G4warn <<
"an unlimited number of";
401 else G4warn <<
"up to " << maxNumberOfKeptEvents;
403 if (maxNumberOfKeptEvents > 1 || maxNumberOfKeptEvents < 0)
405 "\n This may use a lot of memory."
406 "\n It may be changed with, e.g., "
407 "\"/vis/scene/endOfEventAction accumulate 10\".";
418 fpCommand -> SetGuidance
419 (
"Accumulate or refresh the viewer for each new run.");
420 fpCommand -> SetGuidance
421 (
"\"accumulate\": viewer accumulates hits, etc., run by run, or");
422 fpCommand -> SetGuidance
423 (
"\"refresh\": viewer shows them at end of run or, for direct-screen"
424 "\n viewers, refreshes the screen just before drawing the first"
425 "\n event of the next run.");
426 fpCommand -> SetGuidance (
"The detector remains or is redrawn.");
427 fpCommand -> SetParameterName (
"action", omitable =
true);
428 fpCommand -> SetCandidates (
"accumulate refresh");
429 fpCommand -> SetDefaultValue (
"refresh");
446 std::istringstream is (newValue);
452 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
458 if (!pSceneHandler) {
460 G4warn <<
"ERROR: No current sceneHandler. Please create one." <<
G4endl;
465 if (action ==
"accumulate") {
469 "ERROR: Cannot accumulate runs unless events accumulate too."
470 "\n Use \"/vis/scene/endOfEventAction accumulate\"."
478 else if (action ==
"refresh") {
485 "ERROR: unrecognised parameter \"" << action <<
"\"."
495 G4cout <<
"End of run action set to \"";
497 else G4cout <<
"accumulate";
506 fpCommand =
new G4UIcommand (
"/vis/scene/list",
this);
507 fpCommand -> SetGuidance (
"Lists scene(s).");
508 fpCommand -> SetGuidance
509 (
"\"help /vis/verbose\" for definition of verbosity.");
511 parameter =
new G4UIparameter (
"scene-name",
's', omitable =
true);
512 parameter -> SetDefaultValue (
"all");
513 fpCommand -> SetParameter (parameter);
514 parameter =
new G4UIparameter (
"verbosity",
's', omitable =
true);
515 parameter -> SetDefaultValue (
"warnings");
516 fpCommand -> SetParameter (parameter);
529 std::istringstream is (newValue);
530 is >> name >> verbosityString;
535 if (currentScene) currentName = currentScene->
GetName();
538 std::size_t iScene, nScenes = sceneList.size ();
540 for (iScene = 0; iScene < nScenes; ++iScene) {
541 G4Scene* pScene = sceneList [iScene];
542 const G4String& iName = pScene -> GetName ();
544 if (name != iName)
continue;
547 if (iName == currentName) {
553 G4cout <<
" scene \"" << iName <<
"\"";
556 G4cout <<
"\n Run-duration models:";
557 std::size_t nRunModels = pScene -> GetRunDurationModelList ().size ();
558 if (nRunModels == 0) {
561 for (i = 0; i < nRunModels; ++i) {
562 if (pScene -> GetRunDurationModelList()[i].fActive)
564 else G4cout <<
"\n Inactive: ";
565 G4VModel* pModel = pScene -> GetRunDurationModelList()[i].fpModel;
566 G4cout << pModel -> GetGlobalDescription ();
568 G4cout <<
"\n End-of-event models:";
569 std::size_t nEOEModels = pScene -> GetEndOfEventModelList ().size ();
570 if (nEOEModels == 0) {
573 for (i = 0; i < nEOEModels; ++i) {
574 if (pScene -> GetEndOfEventModelList()[i].fActive)
576 else G4cout <<
"\n Inactive: ";
577 G4VModel* pModel = pScene -> GetEndOfEventModelList()[i].fpModel;
578 G4cout << pModel -> GetGlobalDescription ();
580 G4cout <<
"\n End-of-run models:";
581 std::size_t nEORModels = pScene -> GetEndOfRunModelList ().size ();
582 if (nEORModels == 0) {
585 for (i = 0; i < nEORModels; ++i) {
586 if (pScene -> GetEndOfRunModelList()[i].fActive)
588 else G4cout <<
"\n Inactive: ";
589 G4VModel* pModel = pScene -> GetEndOfRunModelList()[i].fpModel;
590 G4cout << pModel -> GetGlobalDescription ();
594 G4cout <<
"\n " << *sceneList [iScene];
599 G4warn <<
"No scenes found";
601 G4warn <<
" of name \"" << name <<
"\"";
611 fpCommand =
new G4UIcommand (
"/vis/scene/notifyHandlers",
this);
612 fpCommand -> SetGuidance
613 (
"Notifies scene handlers and forces re-rendering.");
614 fpCommand -> SetGuidance
615 (
"Notifies the handler(s) of the specified scene and forces a"
616 "\nreconstruction of any graphical databases."
617 "\nClears and refreshes all viewers of current scene."
618 "\n The default action \"refresh\" does not issue \"update\" (see"
619 "\n /vis/viewer/update)."
620 "\nIf \"flush\" is specified, it issues an \"update\" as well as"
621 "\n \"refresh\" - \"update\" and initiates post-processing"
622 "\n for graphics systems which need it.");
623 fpCommand -> SetGuidance
624 (
"The default for <scene-name> is the current scene name.");
625 fpCommand -> SetGuidance
626 (
"This command does not change current scene, scene handler or viewer.");
630 parameter -> SetCurrentAsDefault(
true);
631 fpCommand -> SetParameter (parameter);
634 parameter -> SetDefaultValue(
"refresh");
635 parameter -> SetParameterCandidates(
"r refresh f flush");
636 fpCommand -> SetParameter (parameter);
653 std::istringstream is (newValue);
654 is >> sceneName >> refresh_flush;
656 if (refresh_flush[0] ==
'f') flush =
true;
663 const std::size_t nScenes = sceneList.size ();
665 for (iScene = 0; iScene < nScenes; ++iScene) {
666 G4Scene* scene = sceneList [iScene];
667 if (sceneName == scene -> GetName ())
break;
669 if (iScene >= nScenes ) {
671 G4warn <<
"WARNING: Scene \"" << sceneName <<
"\" not found."
672 "\n /vis/scene/list to see scenes."
681 if (!pCurrentSceneHandler) {
683 G4warn <<
"WARNING: No current scene handler."
689 if (!pCurrentViewer) {
691 G4warn <<
"WARNING: No current viewer."
697 if (!pCurrentScene) {
699 G4warn <<
"WARNING: No current scene."
713 const std::size_t nSceneHandlers = sceneHandlerList.size ();
714 for (std::size_t iSH = 0; iSH < nSceneHandlers; ++iSH) {
716 G4Scene* aScene = aSceneHandler -> GetScene ();
718 const G4String& aSceneName = aScene -> GetName ();
719 if (sceneName == aSceneName) {
721 G4ViewerList& viewerList = aSceneHandler -> SetViewerList ();
722 const std::size_t nViewers = viewerList.size ();
723 for (std::size_t iV = 0; iV < nViewers; ++iV) {
726 aViewer -> NeedKernelVisit();
728 aSceneHandler -> SetCurrentViewer (aViewer);
733 aViewer -> SetView ();
734 aViewer -> ClearView ();
735 aViewer -> DrawView ();
736 if (flush) aViewer -> ShowView ();
738 G4cout <<
"Viewer \"" << aViewer -> GetName ()
739 <<
"\" of scene handler \"" << aSceneHandler -> GetName ()
741 if (flush)
G4cout <<
"flushed";
742 else G4cout <<
"refreshed";
743 G4cout <<
" at request of scene \"" << sceneName
748 G4cout <<
"NOTE: The scene, \""
750 <<
"\", of viewer \""
751 << aViewer -> GetName ()
752 <<
"\"\n of scene handler \""
753 << aSceneHandler -> GetName ()
754 <<
"\" has changed. To see effect,"
755 <<
"\n \"/vis/viewer/select "
756 << aViewer -> GetShortName ()
757 <<
"\" and \"/vis/viewer/rebuild\"."
766 G4warn <<
"WARNING: G4VisCommandSceneNotifyHandlers: scene handler \""
768 <<
"\" has a null scene."
781 fpVisManager -> SetCurrentSceneHandler(pCurrentSceneHandler);
785 if (pCurrentSceneHandler) {
786 G4ViewerList& viewerList = pCurrentSceneHandler -> SetViewerList ();
787 const std::size_t nViewers = viewerList.size ();
789 pCurrentSceneHandler -> SetCurrentViewer (pCurrentViewer);
802 fpCommand =
new G4UIcommand (
"/vis/scene/removeModel",
this);
803 fpCommand -> SetGuidance(
"Remove model.");
804 fpCommand -> SetGuidance
805 (
"Attempts to match search string to name of model - use unique sub-string.");
806 fpCommand -> SetGuidance
807 (
"Use \"/vis/scene/list\" to see model names.");
809 parameter =
new G4UIparameter (
"search-string",
's', omitable =
false);
810 fpCommand -> SetParameter (parameter);
827 std::istringstream is (newValue);
833 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
839 if (!pSceneHandler) {
841 G4warn <<
"ERROR: No current sceneHandler. Please create one." <<
G4endl;
848 std::vector<G4Scene::Model>& runDurationModelList =
850 for (
size_t i = 0; i < runDurationModelList.size(); i++) {
852 runDurationModelList[i].fpModel->GetGlobalDescription();
853 if (modelName.find(searchString) != std::string::npos) {
854 runDurationModelList.erase(runDurationModelList.begin()+i);
857 G4warn <<
"Model \"" << modelName <<
"\" removed." <<
G4endl;
863 std::vector<G4Scene::Model>& endOfEventModelList =
865 for (
size_t i = 0; i < endOfEventModelList.size(); i++) {
867 endOfEventModelList[i].fpModel->GetGlobalDescription();
868 if (modelName.find(searchString) != std::string::npos) {
869 endOfEventModelList.erase(endOfEventModelList.begin()+i);
872 G4warn <<
"Model \"" << modelName <<
"\" removed." <<
G4endl;
878 std::vector<G4Scene::Model>& endOfRunModelList =
880 for (
size_t i = 0; i < endOfRunModelList.size(); i++) {
882 endOfRunModelList[i].fpModel->GetGlobalDescription();
883 if (modelName.find(searchString) != std::string::npos) {
884 endOfRunModelList.erase(endOfRunModelList.begin()+i);
887 G4warn <<
"Model \"" << modelName <<
"\" removed." <<
G4endl;
908 fpCommand -> SetGuidance (
"Selects a scene");
909 fpCommand -> SetGuidance
910 (
"Makes the scene current. \"/vis/scene/list\" to see"
911 "\n possible scene names.");
912 fpCommand -> SetParameterName (
"scene-name", omitable =
false);
929 std::size_t iScene, nScenes = sceneList.size ();
930 for (iScene = 0; iScene < nScenes; ++iScene) {
931 if (sceneList [iScene] -> GetName () == selectName)
break;
933 if (iScene >= nScenes) {
935 G4warn <<
"WARNING: Scene \"" << selectName
936 <<
"\" not found - \"/vis/scene/list\" to see possibilities."
943 G4cout <<
"Scene \"" << selectName
944 <<
"\" selected." <<
G4endl;
954 fpCommand -> SetGuidance (
"Prints and draws extents of models in a scene");
971 if (!pCurrentSceneHandler) {
973 G4warn <<
"WARNING: No current scene handler."
979 if (!pCurrentViewer) {
981 G4warn <<
"WARNING: No current viewer."
987 if (!pCurrentScene) {
989 G4warn <<
"WARNING: No current scene."
995 G4cout <<
"\n Run-duration models:";
996 std::size_t nRunModels = pCurrentScene -> GetRunDurationModelList ().size ();
997 if (nRunModels == 0) {
1000 for (std::size_t i = 0; i < nRunModels; ++i) {
1001 if (pCurrentScene -> GetRunDurationModelList()[i].fActive)
1003 else G4cout <<
"\n Inactive: ";
1004 G4VModel* pModel = pCurrentScene -> GetRunDurationModelList()[i].fpModel;
1005 const G4VisExtent& transformedExtent = pModel -> GetExtent();
1006 G4cout << pModel -> GetGlobalDescription ()
1007 <<
"\n" << transformedExtent;
1010 G4cout <<
"\n End-of-event models:";
1011 std::size_t nEOEModels = pCurrentScene -> GetEndOfEventModelList ().size ();
1012 if (nEOEModels == 0) {
1015 for (std::size_t i = 0; i < nEOEModels; ++i) {
1016 if (pCurrentScene -> GetEndOfEventModelList()[i].fActive)
1018 else G4cout <<
"\n Inactive: ";
1019 G4VModel* pModel = pCurrentScene -> GetEndOfEventModelList()[i].fpModel;
1020 const G4VisExtent& transformedExtent = pModel -> GetExtent();
1021 G4cout << pModel -> GetGlobalDescription ()
1022 <<
"\n" << transformedExtent;
1025 G4cout <<
"\n End-of-run models:";
1026 std::size_t nEORModels = pCurrentScene -> GetEndOfRunModelList ().size ();
1027 if (nEORModels == 0) {
1030 for (std::size_t i = 0; i < nEORModels; ++i) {
1031 if (pCurrentScene -> GetEndOfRunModelList()[i].fActive)
1033 else G4cout <<
"\n Inactive: ";
1034 G4VModel* pModel = pCurrentScene -> GetEndOfRunModelList()[i].fpModel;
1035 const G4VisExtent& transformedExtent = pModel -> GetExtent();
1036 G4cout << pModel -> GetGlobalDescription ()
1037 <<
"\n" << transformedExtent;
1040 G4cout <<
"\n Overall extent:\n";
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4GLOB_DLL std::ostream G4cout
static G4RunManager * GetMasterRunManager()
const G4Run * GetCurrentRun() const
std::vector< const G4Event * > * GetEventVector() const
std::vector< Model > & SetEndOfRunModelList()
G4bool GetRefreshAtEndOfEvent() const
void SetRefreshAtEndOfEvent(G4bool)
const G4VisExtent & GetExtent() const
const G4String & GetName() const
std::vector< Model > & SetRunDurationModelList()
std::vector< Model > & SetEndOfEventModelList()
void SetRefreshAtEndOfRun(G4bool)
void SetMaxNumberOfKeptEvents(G4int)
G4bool GetRefreshAtEndOfRun() const
static G4bool ConvertToBool(const char *st)
void SetMarkForClearingTransientStore(G4bool)
const G4String & GetName() const
const G4ViewParameters & GetViewParameters() const
G4String CurrentSceneName()
virtual ~G4VVisCommandScene()
void CheckSceneAndNotifyHandlers(G4Scene *=nullptr)
static G4VisManager * fpVisManager
void DrawExtent(const G4VisExtent &)
G4bool IsAutoRefresh() const
virtual ~G4VisCommandSceneActivateModel()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneActivateModel()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSceneCreate()
G4VisCommandSceneCreate()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneEndOfEventAction()
virtual ~G4VisCommandSceneEndOfEventAction()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSceneEndOfRunAction()
virtual ~G4VisCommandSceneEndOfRunAction()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandSceneList()
virtual ~G4VisCommandSceneNotifyHandlers()
G4VisCommandSceneNotifyHandlers()
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandSceneRemoveModel()
G4VisCommandSceneRemoveModel()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSceneSelect()
G4VisCommandSceneSelect()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandSceneShowExtents()
G4VisCommandSceneShowExtents()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)