Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4VisCommandSceneHandlerCreate Class Reference

#include <G4VisCommandsSceneHandler.hh>

+ Inheritance diagram for G4VisCommandSceneHandlerCreate:

Public Member Functions

 G4VisCommandSceneHandlerCreate ()
 
 ~G4VisCommandSceneHandlerCreate ()
 
G4String GetCurrentValue (G4UIcommand *command)
 
void SetNewValue (G4UIcommand *command, G4String newValue)
 
- Public Member Functions inherited from G4VVisCommand
 G4VVisCommand ()
 
virtual ~G4VVisCommand ()
 
- Public Member Functions inherited from G4UImessenger
 G4UImessenger ()=default
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
G4bool CommandsShouldBeInMaster () const
 

Additional Inherited Members

- Static Public Member Functions inherited from G4VVisCommand
static G4VisManagerGetVisManager ()
 
static void SetVisManager (G4VisManager *pVisManager)
 
static const G4ColourGetCurrentTextColour ()
 
- Protected Member Functions inherited from G4VVisCommand
void SetViewParameters (G4VViewer *viewer, const G4ViewParameters &viewParams)
 
void RefreshIfRequired (G4VViewer *viewer)
 
void InterpolateViews (G4VViewer *currentViewer, const std::vector< G4ViewParameters > &viewVector, const G4int nInterpolationPoints=50, const G4int waitTimePerPointmilliseconds=20, const G4String &exportString="")
 
void InterpolateToNewView (G4VViewer *currentViewer, const G4ViewParameters &oldVP, const G4ViewParameters &newVP, const G4int nInterpolationPoints=50, const G4int waitTimePerPointmilliseconds=20, const G4String &exportString="")
 
void Twinkle (G4VViewer *currentViewer, const G4ViewParameters &baseVP, const std::vector< std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > > &paths)
 
const G4StringConvertToColourGuidance ()
 
void ConvertToColour (G4Colour &colour, const G4String &redOrString, G4double green, G4double blue, G4double opacity)
 
G4bool ProvideValueOfUnit (const G4String &where, const G4String &unit, const G4String &category, G4double &value)
 
void CopyCameraParameters (G4ViewParameters &target, const G4ViewParameters &from)
 
void CheckSceneAndNotifyHandlers (G4Scene *=nullptr)
 
G4bool CheckView ()
 
void G4VisCommandsSceneAddUnsuccessful (G4VisManager::Verbosity verbosity)
 
void CopyGuidanceFrom (const G4UIcommand *fromCmd, G4UIcommand *toCmd, G4int startLine=0)
 
void CopyParametersFrom (const G4UIcommand *fromCmd, G4UIcommand *toCmd)
 
void DrawExtent (const G4VisExtent &)
 
- Protected Member Functions inherited from G4UImessenger
G4String ItoS (G4int i)
 
G4String LtoS (G4long l)
 
G4String DtoS (G4double a)
 
G4String BtoS (G4bool b)
 
G4int StoI (const G4String &s)
 
G4long StoL (const G4String &s)
 
G4double StoD (const G4String &s)
 
G4bool StoB (const G4String &s)
 
void AddUIcommand (G4UIcommand *newCommand)
 
void CreateDirectory (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
template<typename T>
T * CreateCommand (const G4String &cname, const G4String &dsc)
 
- Static Protected Member Functions inherited from G4VVisCommand
static G4String ConvertToString (G4double x, G4double y, const char *unitName)
 
static G4bool ConvertToDoublePair (const G4String &paramString, G4double &xval, G4double &yval)
 
- Protected Attributes inherited from G4UImessenger
G4UIdirectorybaseDir = nullptr
 
G4String baseDirName = ""
 
G4bool commandsShouldBeInMaster = false
 
- Static Protected Attributes inherited from G4VVisCommand
static G4VisManagerfpVisManager = nullptr
 
static G4int fCurrentArrow3DLineSegmentsPerCircle = 6
 
static G4Colour fCurrentColour = G4Colour::White()
 
static G4double fCurrentLineWidth = 1.
 
static G4Colour fCurrentTextColour = G4Colour::Blue()
 
static G4Text::Layout fCurrentTextLayout = G4Text::left
 
static G4double fCurrentTextSize = 12.
 
static G4PhysicalVolumeModel::TouchableProperties fCurrentTouchableProperties
 
static G4VisExtent fCurrentExtentForField
 
static std::vector< G4PhysicalVolumesSearchScene::FindingsfCurrrentPVFindingsForField
 
static G4bool fThereWasAViewer = false
 
static G4ViewParameters fExistingVP
 
static G4SceneTreeItem fExistingSceneTree
 

Detailed Description

Definition at line 49 of file G4VisCommandsSceneHandler.hh.

Constructor & Destructor Documentation

◆ G4VisCommandSceneHandlerCreate()

G4VisCommandSceneHandlerCreate::G4VisCommandSceneHandlerCreate ( )

Definition at line 139 of file G4VisCommandsSceneHandler.cc.

139 : fId (0) {
140 G4bool omitable;
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.");
148 G4UIparameter* parameter;
149 parameter = new G4UIparameter ("graphics-system-name", 's', omitable = true);
150 parameter -> SetCurrentAsDefault(true);
151 const G4GraphicsSystemList& gslist =
152 fpVisManager -> GetAvailableGraphicsSystems ();
153 G4String candidates = "NO_UI_SESSION "; // A dummy candidate to catch issue
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 + ' ';
160 }
161 }
162 G4StrUtil::strip(candidates);
163 parameter -> SetParameterCandidates(candidates);
164 fpCommand -> SetParameter (parameter);
165 parameter = new G4UIparameter
166 ("scene-handler-name", 's', omitable = true);
167 parameter -> SetCurrentAsDefault (true);
168 fpCommand -> SetParameter (parameter);
169}
bool G4bool
Definition G4Types.hh:86
static G4VisManager * fpVisManager
const char * name(G4int ptype)

◆ ~G4VisCommandSceneHandlerCreate()

G4VisCommandSceneHandlerCreate::~G4VisCommandSceneHandlerCreate ( )

Definition at line 171 of file G4VisCommandsSceneHandler.cc.

171 {
172 delete fpCommand;
173}

Member Function Documentation

◆ GetCurrentValue()

G4String G4VisCommandSceneHandlerCreate::GetCurrentValue ( G4UIcommand * command)
virtual

Reimplemented from G4UImessenger.

Definition at line 181 of file G4VisCommandsSceneHandler.cc.

181 {
182
183 G4String graphicsSystemName;
184 const G4VGraphicsSystem* graphicsSystem =
185 fpVisManager -> GetCurrentGraphicsSystem ();
186 if (graphicsSystem) {
187 graphicsSystemName = graphicsSystem -> GetName ();
188 }
189 else {
190 graphicsSystemName = fpVisManager->GetDefaultGraphicsSystemName();
191 }
192
193 return graphicsSystemName + " " + NextName ();
194}

◆ SetNewValue()

void G4VisCommandSceneHandlerCreate::SetNewValue ( G4UIcommand * command,
G4String newValue )
virtual

Reimplemented from G4UImessenger.

Definition at line 196 of file G4VisCommandsSceneHandler.cc.

197 {
198
199 G4VisManager::Verbosity verbosity = fpVisManager->GetVerbosity();
200
201 G4String graphicsSystem, newName;
202 std::istringstream is (newValue);
203 is >> graphicsSystem >> newName;
204
205 const G4GraphicsSystemList& gsl =
206 fpVisManager -> GetAvailableGraphicsSystems ();
207 std::size_t nSystems = gsl.size ();
208 if (nSystems <= 0) {
210 ed <<
211 "ERROR: G4VisCommandSceneHandlerCreate::SetNewValue:"
212 " no graphics systems available."
213 "\n Did you instantiate any in"
214 " YourVisManager::RegisterGraphicsSystems()?";
215 command->CommandFailed(ed);
216 return;
217 }
218 std::size_t iGS; // Selector index.
219 G4bool found = false;
220 for (iGS = 0; iGS < nSystems; ++iGS) {
221 const auto& gs = gsl[iGS];
222 if (G4StrUtil::icompare(graphicsSystem, gs->GetName()) == 0) {
223 found = true;
224 break; // Match found
225 } else {
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) {
230 found = true;
231 break; // Match found
232 }
233 }
234 if (found) {
235 break; // Match found
236 }
237 }
238 }
239 if (!found) {
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.");
255 return;
256 }
257 // Shouldn't happen, since graphicsSystem should be a candidate
259 ed <<
260 "ERROR: G4VisCommandSceneHandlerCreate::SetNewValue:"
261 "\n Invalid graphics system \""
262 << graphicsSystem
263 << "\" requested."
264 << "\n Candidates are:";
265 fpVisManager->PrintAvailableGraphicsSystems(verbosity,ed);
266 command->CommandFailed(ed);
267 return;
268 }
269
270 // Check UI session compatibility.
271 G4bool fallback = false;
272 G4int loopCounter = 0;
273 while (!gsl[iGS]->IsUISessionCompatible()) {
274 std::size_t iGSBeingTested = iGS;
275 // Not compatible, search for a fallback
276 fallback = false;
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) {
283 fallback = true;
284 break; // Match found
285 }
286 }
287 if (fallback) {
288 break; // Match found
289 }
290 }
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",
298 "visman1002", JustWarning, ed);
299 return;
300 }
301 // A fallback system found...but go back and check this too.
302 ++loopCounter;
303 }
304
305 // A graphics system has been found
306 G4VGraphicsSystem* pSystem = gsl [iGS];
307
308 if (fallback && verbosity >= G4VisManager::warnings) {
309 G4warn << "WARNING: G4VisCommandSceneHandlerCreate::SetNewValue:"
310 "\n Using fallback graphics system: "
311 << pSystem -> GetName ()
312 << " ("
313 << pSystem -> GetNickname ()
314 << ')'
315 << G4endl;
316 }
317
318 // Now deal with name of scene handler.
319 G4String nextName = NextName ();
320 if (newName == "") {
321 newName = nextName;
322 }
323 if (newName == nextName) fId++;
324
325 const G4SceneHandlerList& list = fpVisManager -> GetAvailableSceneHandlers ();
326 std::size_t iScene;
327 for (iScene = 0; iScene < list.size (); ++iScene) {
328 G4VSceneHandler* sceneHandler = list [iScene];
329 if (sceneHandler -> GetName () == newName) {
331 ed <<
332 "ERROR: Scene handler \"" << newName
333 << "\" already exists.";
334 command->CommandFailed(ed);
335 return;
336 }
337 }
338
339 // If there is an existing viewer, store its view parameters and scene tree
340 if (fpVisManager->GetCurrentViewer()) {
341 fThereWasAViewer = true;
342 auto viewer = fpVisManager->GetCurrentViewer();
343 fExistingVP = viewer->GetViewParameters();
344 fExistingSceneTree = viewer->AccessSceneTree();
345 }
346
347 // Set current graphics system in preparation for
348 // creating scene handler.
349 fpVisManager -> SetCurrentGraphicsSystem (pSystem);
350 if (verbosity >= G4VisManager::confirmations) {
351 G4cout << "Graphics system set to "
352 << pSystem -> GetName ()
353 << " ("
354 << pSystem -> GetNickname ()
355 << ')'
356 << G4endl;
357 }
358
359 //Create scene handler.
360 fpVisManager -> CreateSceneHandler (newName);
361 if (fpVisManager -> GetCurrentSceneHandler () -> GetName () != newName) {
363 ed <<
364 "ERROR: G4VisCommandSceneHandlerCreate::SetNewValue:"
365 " Curious name mismatch."
366 "\n Current name \""
367 << fpVisManager -> GetCurrentSceneHandler () -> GetName ()
368 << "\" is not the new name \""
369 << newName
370 << "\".\n Please report to vis coordinator.";
371 command->CommandFailed(ed);
372 return;
373 }
374
375 if (verbosity >= G4VisManager::confirmations)
376 G4cout << "New scene handler \"" << newName << "\" created." << G4endl;
377
378 if (fpVisManager -> GetCurrentScene ()) {
379 auto errorCode = G4UImanager::GetUIpointer () -> ApplyCommand ("/vis/sceneHandler/attach");
380 if (errorCode) {
382 ed << "sub-command \"/vis/sceneHandler/attach\" failed.";
383 command->CommandFailed(errorCode,ed);
384 return;
385 }
386 }
387}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
#define G4warn
Definition G4Scene.cc:41
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
void CommandFailed(G4int errCode, G4ExceptionDescription &ed)
static G4UImanager * GetUIpointer()
static G4ViewParameters fExistingVP
static G4SceneTreeItem fExistingSceneTree
static G4bool fThereWasAViewer

The documentation for this class was generated from the following files: