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

#include <G4VisCommandsViewer.hh>

+ Inheritance diagram for G4VisCommandViewerRefresh:

Public Member Functions

 G4VisCommandViewerRefresh ()
 
virtual ~G4VisCommandViewerRefresh ()
 
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 ()
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
virtual G4String GetCurrentValue (G4UIcommand *command)
 
virtual void SetNewValue (G4UIcommand *command, G4String newValue)
 
G4bool operator== (const G4UImessenger &messenger) const
 
G4bool operator!= (const G4UImessenger &messenger) const
 
G4bool CommandsShouldBeInMaster () const
 

Additional Inherited Members

- Static Public Member Functions inherited from G4VVisCommand
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, 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="")
 
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 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 DtoS (G4double a)
 
G4String BtoS (G4bool b)
 
G4int StoI (G4String s)
 
G4long StoL (G4String s)
 
G4double StoD (G4String s)
 
G4bool StoB (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 = 0
 
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
 

Detailed Description

Definition at line 260 of file G4VisCommandsViewer.hh.

Constructor & Destructor Documentation

◆ G4VisCommandViewerRefresh()

G4VisCommandViewerRefresh::G4VisCommandViewerRefresh ( )

Definition at line 1717 of file G4VisCommandsViewer.cc.

1717 {
1718 G4bool omitable, currentAsDefault;
1719 fpCommand = new G4UIcmdWithAString ("/vis/viewer/refresh", this);
1720 fpCommand -> SetGuidance
1721 ("Refreshes viewer.");
1722 fpCommand -> SetGuidance
1723 ("By default, acts on current viewer. \"/vis/viewer/list\""
1724 "\nto see possible viewers. Viewer becomes current.");
1725 fpCommand -> SetParameterName ("viewer-name",
1726 omitable = true,
1727 currentAsDefault = true);
1728}
bool G4bool
Definition: G4Types.hh:86

◆ ~G4VisCommandViewerRefresh()

G4VisCommandViewerRefresh::~G4VisCommandViewerRefresh ( )
virtual

Definition at line 1730 of file G4VisCommandsViewer.cc.

1730 {
1731 delete fpCommand;
1732}

Member Function Documentation

◆ GetCurrentValue()

G4String G4VisCommandViewerRefresh::GetCurrentValue ( G4UIcommand command)
virtual

Reimplemented from G4UImessenger.

Definition at line 1734 of file G4VisCommandsViewer.cc.

1734 {
1735 G4VViewer* viewer = fpVisManager -> GetCurrentViewer ();
1736 return viewer ? viewer -> GetName () : G4String("none");
1737}
static G4VisManager * fpVisManager

◆ SetNewValue()

void G4VisCommandViewerRefresh::SetNewValue ( G4UIcommand command,
G4String  newValue 
)
virtual

Reimplemented from G4UImessenger.

Definition at line 1739 of file G4VisCommandsViewer.cc.

1739 {
1740
1742 G4bool warn(verbosity >= G4VisManager::warnings);
1743
1744 G4String& refreshName = newValue;
1745 G4VViewer* viewer = fpVisManager -> GetViewer (refreshName);
1746 if (!viewer) {
1747 if (verbosity >= G4VisManager::errors) {
1748 G4cerr << "ERROR: Viewer \"" << refreshName << "\"" <<
1749 " not found - \"/vis/viewer/list\"\n to see possibilities."
1750 << G4endl;
1751 }
1752 return;
1753 }
1754
1755 G4VSceneHandler* sceneHandler = viewer->GetSceneHandler();
1756 if (!sceneHandler) {
1757 if (verbosity >= G4VisManager::errors) {
1758 G4cerr << "ERROR: Viewer \"" << refreshName << "\"" <<
1759 " has no scene handler - report serious bug."
1760 << G4endl;
1761 }
1762 return;
1763 }
1764
1765 G4Scene* scene = sceneHandler->GetScene();
1766 if (!scene) {
1767 if (verbosity >= G4VisManager::confirmations) {
1768 G4cout << "NOTE: SceneHandler \"" << sceneHandler->GetName()
1769 << "\", to which viewer \"" << refreshName << "\"" <<
1770 "\n is attached, has no scene - \"/vis/scene/create\" and"
1771 " \"/vis/sceneHandler/attach\""
1772 "\n (or use compound command \"/vis/drawVolume\")."
1773 << G4endl;
1774 }
1775 return;
1776 }
1777 if (scene->GetRunDurationModelList().empty()) {
1778 G4bool successful = scene -> AddWorldIfEmpty (warn);
1779 if (!successful) {
1780 if (verbosity >= G4VisManager::warnings) {
1781 G4cout <<
1782 "WARNING: Scene is empty. Perhaps no geometry exists."
1783 "\n Try /run/initialize."
1784 << G4endl;
1785 }
1786 return;
1787 }
1788 // Scene has changed. CheckSceneAndNotifyHandlers issues
1789 // /vis/scene/notifyHandlers, which does a refresh anyway, so the
1790 // ordinary refresh becomes part of the else phrase...
1792 } else {
1793 if (verbosity >= G4VisManager::confirmations) {
1794 G4cout << "Refreshing viewer \"" << viewer -> GetName () << "\"..."
1795 << G4endl;
1796 }
1797 viewer -> SetView ();
1798 viewer -> ClearView ();
1799 viewer -> DrawView ();
1800 if (verbosity >= G4VisManager::confirmations) {
1801 G4cout << "Viewer \"" << viewer -> GetName () << "\"" << " refreshed."
1802 "\n (You might also need \"/vis/viewer/update\".)" << G4endl;
1803 }
1804 }
1805}
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
const std::vector< Model > & GetRunDurationModelList() const
G4Scene * GetScene() const
const G4String & GetName() const
G4VSceneHandler * GetSceneHandler() const
void CheckSceneAndNotifyHandlers(G4Scene *=nullptr)
static Verbosity GetVerbosity()

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