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

#include <G4VisCommandsScene.hh>

+ Inheritance diagram for G4VisCommandSceneNotifyHandlers:

Public Member Functions

 G4VisCommandSceneNotifyHandlers ()
 
virtual ~G4VisCommandSceneNotifyHandlers ()
 
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 115 of file G4VisCommandsScene.hh.

Constructor & Destructor Documentation

◆ G4VisCommandSceneNotifyHandlers()

G4VisCommandSceneNotifyHandlers::G4VisCommandSceneNotifyHandlers ( )

Definition at line 609 of file G4VisCommandsScene.cc.

609 {
610 G4bool omitable;
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.");
627 G4UIparameter* parameter;
628 parameter = new G4UIparameter ("scene-name", 's',
629 omitable = true);
630 parameter -> SetCurrentAsDefault(true);
631 fpCommand -> SetParameter (parameter);
632 parameter = new G4UIparameter ("refresh-flush", 's',
633 omitable = true);
634 parameter -> SetDefaultValue("refresh");
635 parameter -> SetParameterCandidates("r refresh f flush");
636 fpCommand -> SetParameter (parameter);
637}
bool G4bool
Definition G4Types.hh:86

◆ ~G4VisCommandSceneNotifyHandlers()

G4VisCommandSceneNotifyHandlers::~G4VisCommandSceneNotifyHandlers ( )
virtual

Definition at line 639 of file G4VisCommandsScene.cc.

639 {
640 delete fpCommand;
641}

Member Function Documentation

◆ GetCurrentValue()

G4String G4VisCommandSceneNotifyHandlers::GetCurrentValue ( G4UIcommand * command)
virtual

Reimplemented from G4UImessenger.

Definition at line 643 of file G4VisCommandsScene.cc.

643 {
644 return CurrentSceneName ();
645}

◆ SetNewValue()

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

Reimplemented from G4UImessenger.

Definition at line 647 of file G4VisCommandsScene.cc.

648 {
649
650 G4VisManager::Verbosity verbosity = fpVisManager->GetVerbosity();
651
652 G4String sceneName, refresh_flush;
653 std::istringstream is (newValue);
654 is >> sceneName >> refresh_flush;
655 G4bool flush = false;
656 if (refresh_flush[0] == 'f') flush = true;
657
658 const G4SceneList& sceneList = fpVisManager -> GetSceneList ();
659 G4SceneHandlerList& sceneHandlerList =
660 fpVisManager -> SetAvailableSceneHandlers ();
661
662 // Check scene name.
663 const std::size_t nScenes = sceneList.size ();
664 std::size_t iScene;
665 for (iScene = 0; iScene < nScenes; ++iScene) {
666 G4Scene* scene = sceneList [iScene];
667 if (sceneName == scene -> GetName ()) break;
668 }
669 if (iScene >= nScenes ) {
670 if (verbosity >= G4VisManager::warnings) {
671 G4warn << "WARNING: Scene \"" << sceneName << "\" not found."
672 "\n /vis/scene/list to see scenes."
673 << G4endl;
674 }
675 return;
676 }
677
678 // Store current context...
679 G4VSceneHandler* pCurrentSceneHandler =
680 fpVisManager -> GetCurrentSceneHandler();
681 if (!pCurrentSceneHandler) {
682 if (verbosity >= G4VisManager::warnings) {
683 G4warn << "WARNING: No current scene handler."
684 << G4endl;
685 }
686 return;
687 }
688 G4VViewer* pCurrentViewer = fpVisManager -> GetCurrentViewer();
689 if (!pCurrentViewer) {
690 if (verbosity >= G4VisManager::warnings) {
691 G4warn << "WARNING: No current viewer."
692 << G4endl;
693 }
694 return;
695 }
696 G4Scene* pCurrentScene = fpVisManager -> GetCurrentScene();
697 if (!pCurrentScene) {
698 if (verbosity >= G4VisManager::warnings) {
699 G4warn << "WARNING: No current scene."
700 << G4endl;
701 }
702 return;
703 }
704
705 G4VisManager::Verbosity currentVerbosity = fpVisManager -> GetVerbosity();
706
707 // Suppress messages during this process (only print errors)...
708 //fpVisManager -> SetVerboseLevel(G4VisManager::errors);
709
710 // For each scene handler, if it contains the scene, clear and
711 // rebuild the graphical database, then for each viewer set (make
712 // current), clear, (re)draw, and show.
713 const std::size_t nSceneHandlers = sceneHandlerList.size ();
714 for (std::size_t iSH = 0; iSH < nSceneHandlers; ++iSH) {
715 G4VSceneHandler* aSceneHandler = sceneHandlerList [iSH];
716 G4Scene* aScene = aSceneHandler -> GetScene ();
717 if (aScene) {
718 const G4String& aSceneName = aScene -> GetName ();
719 if (sceneName == aSceneName) {
720 aScene->CalculateExtent(); // Check and recalculate extent
721 G4ViewerList& viewerList = aSceneHandler -> SetViewerList ();
722 const std::size_t nViewers = viewerList.size ();
723 for (std::size_t iV = 0; iV < nViewers; ++iV) {
724 G4VViewer* aViewer = viewerList [iV];
725 // Force rebuild of graphical database, if any.
726 aViewer -> NeedKernelVisit();
727 if (aViewer->GetViewParameters().IsAutoRefresh()) {
728 aSceneHandler -> SetCurrentViewer (aViewer);
729 // Ensure consistency of vis manager...
730 fpVisManager -> SetCurrentViewer(aViewer);
731 fpVisManager -> SetCurrentSceneHandler(aSceneHandler);
732 fpVisManager -> SetCurrentScene(aScene);
733 aViewer -> SetView ();
734 aViewer -> ClearView ();
735 aViewer -> DrawView ();
736 if (flush) aViewer -> ShowView ();
737 if (verbosity >= G4VisManager::confirmations) {
738 G4cout << "Viewer \"" << aViewer -> GetName ()
739 << "\" of scene handler \"" << aSceneHandler -> GetName ()
740 << "\"\n ";
741 if (flush) G4cout << "flushed";
742 else G4cout << "refreshed";
743 G4cout << " at request of scene \"" << sceneName
744 << "\"." << G4endl;
745 }
746 } else {
747 if (verbosity >= G4VisManager::confirmations) {
748 G4cout << "NOTE: The scene, \""
749 << sceneName
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\"."
758 << G4endl;
759 }
760 }
761 }
762 }
763 }
764 else {
765 if (verbosity >= G4VisManager::warnings) {
766 G4warn << "WARNING: G4VisCommandSceneNotifyHandlers: scene handler \""
767 << aSceneHandler->GetName()
768 << "\" has a null scene."
769 << G4endl;
770 }
771 }
772 }
773
774 // Reclaim original context - but set viewer first, then scene
775 // handler, because the latter might have been created very recently
776 // and, not yet having a viewer, the current viewer will,
777 // temporarily, refer to another scene handler. SetCurrentViewer
778 // actually resets the scene handler, which is what we don't want,
779 // so we set it again on the next line...
780 fpVisManager -> SetCurrentViewer(pCurrentViewer);
781 fpVisManager -> SetCurrentSceneHandler(pCurrentSceneHandler);
782 fpVisManager -> SetCurrentScene(pCurrentScene);
783 fpVisManager -> SetVerboseLevel(currentVerbosity);
784 // Take care of special case of scene handler with no viewer yet.
785 if (pCurrentSceneHandler) {
786 G4ViewerList& viewerList = pCurrentSceneHandler -> SetViewerList ();
787 const std::size_t nViewers = viewerList.size ();
788 if (nViewers) {
789 pCurrentSceneHandler -> SetCurrentViewer (pCurrentViewer);
790 // JA: I don't think we need this. SetView will be called when needed.
791 // if (pCurrentViewer && pCurrentSceneHandler->GetScene()) {
792 // pCurrentViewer -> SetView ();
793 // }
794 }
795 }
796}
#define G4warn
Definition G4Scene.cc:41
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
void CalculateExtent()
Definition G4Scene.cc:64
const G4String & GetName() const
const G4ViewParameters & GetViewParameters() const
static G4VisManager * fpVisManager
G4bool IsAutoRefresh() const

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