73 if (sceneName.length () == 0) {
76 "WARNING: No scene specified. Maybe there are no scenes available"
77 "\n yet. Please create one." <<
G4endl;
86 "ERROR: Current scene handler not defined. Please select or create one."
94 if (sceneList.empty ()) {
97 "ERROR: No valid scenes available yet. Please create one."
103 std::size_t iScene, nScenes = sceneList.size ();
104 for (iScene = 0; iScene < nScenes; ++iScene) {
105 if (sceneList [iScene] -> GetName () == sceneName)
break;
107 if (iScene < nScenes) {
108 G4Scene* pScene = sceneList [iScene];
109 pSceneHandler -> SetScene (pScene);
113 G4VViewer* pViewer = pSceneHandler -> GetCurrentViewer();
114 if (pViewer && pViewer -> GetViewParameters().IsAutoRefresh()) {
115 pViewer -> SetView ();
116 pViewer -> ClearView ();
117 pViewer -> DrawView ();
120 G4cout <<
"Scene \"" << sceneName
121 <<
"\" attached to scene handler \""
122 << pSceneHandler -> GetName () <<
123 ".\n (You may have to refresh with \"/vis/viewer/flush\" if view"
124 " is not \"auto-refresh\".)"
130 G4warn <<
"ERROR: Scene \"" << sceneName
131 <<
"\" not found. Use \"/vis/scene/list\" to see possibilities."
141 fpCommand =
new G4UIcommand (
"/vis/sceneHandler/create",
this);
142 fpCommand -> SetGuidance
143 (
"Creates an scene handler for a specific graphics system.");
144 fpCommand -> SetGuidance
145 (
"Attaches current scene, if any. (You can change attached scenes with"
146 "\n\"/vis/sceneHandler/attach\".) Invents a scene handler name if not"
147 "\nsupplied. This scene handler becomes current.");
149 parameter =
new G4UIparameter (
"graphics-system-name",
's', omitable =
true);
150 parameter -> SetCurrentAsDefault(
true);
153 G4String candidates =
"NO_UI_SESSION ";
154 for (
const auto gs: gslist) {
155 const G4String& name = gs -> GetName ();
156 candidates += name +
' ';
157 for (
const auto& nickname: gs -> GetNicknames ()) {
158 if (G4StrUtil::contains(nickname,
"FALLBACK"))
continue;
159 if (nickname != name) candidates += nickname +
' ';
162 G4StrUtil::strip(candidates);
163 parameter -> SetParameterCandidates(candidates);
164 fpCommand -> SetParameter (parameter);
166 (
"scene-handler-name",
's', omitable =
true);
167 parameter -> SetCurrentAsDefault (
true);
168 fpCommand -> SetParameter (parameter);
202 std::istringstream is (newValue);
203 is >> graphicsSystem >> newName;
207 std::size_t nSystems = gsl.size ();
211 "ERROR: G4VisCommandSceneHandlerCreate::SetNewValue:"
212 " no graphics systems available."
213 "\n Did you instantiate any in"
214 " YourVisManager::RegisterGraphicsSystems()?";
220 for (iGS = 0; iGS < nSystems; ++iGS) {
221 const auto& gs = gsl[iGS];
222 if (G4StrUtil::icompare(graphicsSystem, gs->GetName()) == 0) {
226 const auto& nicknames = gs->GetNicknames();
227 for (std::size_t i = 0; i < nicknames.size(); ++i) {
228 const auto& nickname = nicknames[i];
229 if (G4StrUtil::icompare(graphicsSystem, nickname) == 0) {
240 if (graphicsSystem ==
"NO_UI_SESSION") {
242 (
"G4VisCommandSceneHandlerCreate::SetNewValue",
"visman1001",
JustWarning,
243 "This looks like an attempt to use run-time vis driver selection."
244 "\nYou have issued \"/vis/open\" or \"/vis/sceneHandler/create\" without"
245 "\na parameter for the vis driver. This is allowed only if you instantiate"
246 "\na UI session, and only if it is instantiated *before* the first"
247 "\n\"/vis/open\" command. So:"
248 "\na) It is not allowed in batch mode. If you really want to create"
249 "\n some graphics with a file-writing driver in batch mode, you must"
250 "\n request a specific driver on the \"/vis/open\" command line, e.g.,"
251 "\n \"/vis/open TSG_OFFSCREEN\". See, examples/basic/B1/tsg_offscreen.mac."
252 "\nb) If you want to exploit this feature in interactive mode, simply move"
253 "\n the instantiation of the UI session earlier. In any case, this is good"
254 "\n practice in order to capture output in a GUI session.");
260 "ERROR: G4VisCommandSceneHandlerCreate::SetNewValue:"
261 "\n Invalid graphics system \""
264 <<
"\n Candidates are:";
265 fpVisManager->PrintAvailableGraphicsSystems(verbosity,ed);
272 G4int loopCounter = 0;
273 while (!gsl[iGS]->IsUISessionCompatible()) {
274 std::size_t iGSBeingTested = iGS;
277 G4String fallbackNickname = gsl[iGS]->GetNickname() +
"_FALLBACK";
278 for (iGS = 0; iGS < nSystems; iGS++) {
279 const auto& nicknames = gsl[iGS]->GetNicknames();
280 for (std::size_t i = 0; i < nicknames.size(); ++i) {
281 const auto& nickname = nicknames[i];
282 if (G4StrUtil::icompare(fallbackNickname, nickname) == 0) {
291 if (iGS >= nSystems || loopCounter >=3) {
293 ed <<
"\"" << gsl[iGSBeingTested]->GetNickname()
294 <<
"\" is not compatible with the session,"
295 "\nand no fallback system found. Make sure your session is"
296 "\ninstantiated _before_ you create a graphics system.";
297 G4Exception(
"G4VisCommandSceneHandlerCreate::SetNewValue",
309 G4warn <<
"WARNING: G4VisCommandSceneHandlerCreate::SetNewValue:"
310 "\n Using fallback graphics system: "
311 << pSystem -> GetName ()
313 << pSystem -> GetNickname ()
323 if (newName == nextName) fId++;
327 for (iScene = 0; iScene < list.size (); ++iScene) {
329 if (sceneHandler -> GetName () == newName) {
332 "ERROR: Scene handler \"" << newName
333 <<
"\" already exists.";
351 G4cout <<
"Graphics system set to "
352 << pSystem -> GetName ()
354 << pSystem -> GetNickname ()
361 if (
fpVisManager -> GetCurrentSceneHandler () -> GetName () != newName) {
364 "ERROR: G4VisCommandSceneHandlerCreate::SetNewValue:"
365 " Curious name mismatch."
367 <<
fpVisManager -> GetCurrentSceneHandler () -> GetName ()
368 <<
"\" is not the new name \""
370 <<
"\".\n Please report to vis coordinator.";
376 G4cout <<
"New scene handler \"" << newName <<
"\" created." <<
G4endl;
382 ed <<
"sub-command \"/vis/sceneHandler/attach\" failed.";
417 std::istringstream is (newValue);
418 is >> name >> verbosityString;
424 if (currentSceneHandler) currentName = currentSceneHandler->
GetName();
428 for (std::size_t iSH = 0; iSH < list.size (); ++iSH) {
429 const G4String& iName = list [iSH] -> GetName ();
431 if (name != iName)
continue;
434 if (iName == currentName) {
440 G4cout <<
" scene handler \"" << list [iSH] -> GetName () <<
"\""
441 <<
" (" << list [iSH] -> GetGraphicsSystem () -> GetName () <<
")";
443 G4cout <<
"\n " << *(list [iSH]);
448 G4cout <<
"No scene handlers found";
450 G4cout <<
" of name \"" << name <<
"\"";