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

#include <G4VisCommandsScene.hh>

+ Inheritance diagram for G4VisCommandSceneEndOfEventAction:

Public Member Functions

 G4VisCommandSceneEndOfEventAction ()
 
virtual ~G4VisCommandSceneEndOfEventAction ()
 
G4String GetCurrentValue (G4UIcommand *command)
 
void SetNewValue (G4UIcommand *command, G4String newValue)
 
- Public Member Functions inherited from G4VVisCommandScene
 G4VVisCommandScene ()
 
virtual ~G4VVisCommandScene ()
 
- 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 G4VVisCommandScene
G4String CurrentSceneName ()
 
- 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 77 of file G4VisCommandsScene.hh.

Constructor & Destructor Documentation

◆ G4VisCommandSceneEndOfEventAction()

G4VisCommandSceneEndOfEventAction::G4VisCommandSceneEndOfEventAction ( )

Definition at line 276 of file G4VisCommandsScene.cc.

276 {
277 G4bool omitable;
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.");
286 G4UIparameter* parameter;
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);
296}
bool G4bool
Definition G4Types.hh:86

◆ ~G4VisCommandSceneEndOfEventAction()

G4VisCommandSceneEndOfEventAction::~G4VisCommandSceneEndOfEventAction ( )
virtual

Definition at line 298 of file G4VisCommandsScene.cc.

298 {
299 delete fpCommand;
300}

Member Function Documentation

◆ GetCurrentValue()

G4String G4VisCommandSceneEndOfEventAction::GetCurrentValue ( G4UIcommand * command)
virtual

Reimplemented from G4UImessenger.

Definition at line 302 of file G4VisCommandsScene.cc.

302 {
303 return "";
304}

◆ SetNewValue()

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

Reimplemented from G4UImessenger.

Definition at line 306 of file G4VisCommandsScene.cc.

307 {
308
309 G4VisManager::Verbosity verbosity = fpVisManager->GetVerbosity();
310
311 G4String action;
312 G4int maxNumberOfKeptEvents;
313 std::istringstream is (newValue);
314 is >> action >> maxNumberOfKeptEvents;
315
316 G4Scene* pScene = fpVisManager->GetCurrentScene();
317 if (!pScene) {
318 if (verbosity >= G4VisManager::errors) {
319 G4warn << "ERROR: No current scene. Please create one." << G4endl;
320 }
321 return;
322 }
323
324 G4VSceneHandler* pSceneHandler = fpVisManager->GetCurrentSceneHandler();
325 if (!pSceneHandler) {
326 if (verbosity >= G4VisManager::errors) {
327 G4warn << "ERROR: No current sceneHandler. Please create one." << G4endl;
328 }
329 return;
330 }
331
332 if (action == "accumulate") {
333 pScene->SetRefreshAtEndOfEvent(false);
334 pScene->SetMaxNumberOfKeptEvents(maxNumberOfKeptEvents);
335 }
336 else if (action == "refresh") {
337 if (!pScene->GetRefreshAtEndOfRun()) {
338 if (verbosity >= G4VisManager::errors) {
339 G4warn <<
340 "ERROR: Cannot refresh events unless runs refresh too."
341 "\n Use \"/vis/scene/endOfRun refresh\"."
342 << G4endl;
343 }
344 } else {
345 pScene->SetRefreshAtEndOfEvent(true);
346 pScene->SetMaxNumberOfKeptEvents(maxNumberOfKeptEvents);
347 pSceneHandler->SetMarkForClearingTransientStore(true);
348 }
349 }
350 else {
351 if (verbosity >= G4VisManager::errors) {
352 G4warn <<
353 "ERROR: unrecognised parameter \"" << action << "\"."
354 << G4endl;
355 }
356 return;
357 }
358
359 // Change of transients behaviour, so...
360 fpVisManager->ResetTransientsDrawnFlags();
361
362 // Are there any events currently kept...
363 size_t nCurrentlyKept = 0;
364 G4RunManager* runManager = G4RunManagerFactory::GetMasterRunManager();
365 if(runManager)
366 {
367 const G4Run* currentRun = runManager->GetCurrentRun();
368 if(currentRun)
369 {
370 const std::vector<const G4Event*>* events = currentRun->GetEventVector();
371 if(events)
372 nCurrentlyKept = events->size();
373 }
374 }
375
376 if (verbosity >= G4VisManager::confirmations) {
377 G4cout << "End of event action set to ";
378 if (pScene->GetRefreshAtEndOfEvent()) G4cout << "\"refresh\".";
379 else {
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\".";
386 }
387 G4cout << G4endl;
388 }
389
390 if (!pScene->GetRefreshAtEndOfEvent() &&
391 maxNumberOfKeptEvents != 0 &&
392 verbosity >= G4VisManager::warnings) {
393 G4warn << "WARNING: ";
394 if (nCurrentlyKept) {
395 G4warn <<
396 "\n There are currently " << nCurrentlyKept
397 << " events kept for refreshing and/or reviewing.";
398 } else {
399 G4warn << "The vis manager will keep ";
400 if (maxNumberOfKeptEvents < 0) G4warn << "an unlimited number of";
401 else G4warn << "up to " << maxNumberOfKeptEvents;
402 G4warn << " events.";
403 if (maxNumberOfKeptEvents > 1 || maxNumberOfKeptEvents < 0)
404 G4warn <<
405 "\n This may use a lot of memory."
406 "\n It may be changed with, e.g., "
407 "\"/vis/scene/endOfEventAction accumulate 10\".";
408 }
409 G4warn << G4endl;
410 }
411}
#define G4warn
Definition G4Scene.cc:41
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
static G4RunManager * GetMasterRunManager()
const G4Run * GetCurrentRun() const
std::vector< const G4Event * > * GetEventVector() const
Definition G4Run.hh:100
G4bool GetRefreshAtEndOfEvent() const
void SetRefreshAtEndOfEvent(G4bool)
void SetMaxNumberOfKeptEvents(G4int)
G4bool GetRefreshAtEndOfRun() const
void SetMarkForClearingTransientStore(G4bool)
static G4VisManager * fpVisManager

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