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

#include <G4VisCommandsViewer.hh>

+ Inheritance diagram for G4VisCommandViewerSave:

Public Member Functions

 G4VisCommandViewerSave ()
 
virtual ~G4VisCommandViewerSave ()
 
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 296 of file G4VisCommandsViewer.hh.

Constructor & Destructor Documentation

◆ G4VisCommandViewerSave()

G4VisCommandViewerSave::G4VisCommandViewerSave ( )

Definition at line 1906 of file G4VisCommandsViewer.cc.

1906 {
1907 G4bool omitable;
1908 fpCommand = new G4UIcmdWithAString ("/vis/viewer/save", this);
1909 fpCommand -> SetGuidance
1910 ("Write commands that define the current view to file.");
1911 fpCommand -> SetGuidance
1912 ("Read them back into the same or any viewer with \"/control/execute\".");
1913 fpCommand -> SetGuidance
1914 ("If the filename is omitted the view is saved to a file "
1915 "\"g4_nn.g4view\", where nn is a sequential two-digit number.");
1916 fpCommand -> SetGuidance
1917 ("If the filename is \"-\", the data are written to G4cout.");
1918 fpCommand -> SetGuidance
1919 ("If you are wanting to save views for future interpolation a recommended "
1920 "procedure is: save views to \"g4_nn.g4view\", as above, then move the files "
1921 "into a sub-directory, say, \"views\", then interpolate with"
1922 "\"/vis/viewer/interpolate views\"");
1923 fpCommand -> SetParameterName ("filename", omitable = true);
1924 fpCommand -> SetDefaultValue ("");
1925}
bool G4bool
Definition G4Types.hh:86

◆ ~G4VisCommandViewerSave()

G4VisCommandViewerSave::~G4VisCommandViewerSave ( )
virtual

Definition at line 1927 of file G4VisCommandsViewer.cc.

1927 {
1928 delete fpCommand;
1929}

Member Function Documentation

◆ GetCurrentValue()

G4String G4VisCommandViewerSave::GetCurrentValue ( G4UIcommand * command)
virtual

Reimplemented from G4UImessenger.

Definition at line 1931 of file G4VisCommandsViewer.cc.

1932 {
1933 return "";
1934}

◆ SetNewValue()

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

Reimplemented from G4UImessenger.

Definition at line 1952 of file G4VisCommandsViewer.cc.

1952 {
1953
1954 G4VisManager::Verbosity verbosity = fpVisManager->GetVerbosity();
1955
1956 const G4VViewer* currentViewer = fpVisManager->GetCurrentViewer();
1957 if (!currentViewer) {
1958 if (verbosity >= G4VisManager::errors) {
1959 G4warn <<
1960 "ERROR: G4VisCommandsViewerSave::SetNewValue: no current viewer."
1961 << G4endl;
1962 }
1963 return;
1964 }
1965
1966 const G4Scene* currentScene = currentViewer->GetSceneHandler()->GetScene();
1967 if (!currentScene) {
1968 if (verbosity >= G4VisManager::errors) {
1969 G4warn <<
1970 "ERROR: G4VisCommandsViewerSave::SetNewValue: no current scene."
1971 << G4endl;
1972 }
1973 return;
1974 }
1975
1976 // Get view parameters and ther relevant information.
1977 G4ViewParameters vp = currentViewer->GetViewParameters();
1978 // Concatenate any private vis attributes modifiers...
1979 const std::vector<G4ModelingParameters::VisAttributesModifier>*
1980 privateVAMs = currentViewer->GetPrivateVisAttributesModifiers();
1981 if (privateVAMs) {
1982 std::vector<G4ModelingParameters::VisAttributesModifier>::const_iterator i;
1983 for (i = privateVAMs->begin(); i != privateVAMs->end(); ++i) {
1985 }
1986 }
1987 const G4Point3D& stp = currentScene->GetStandardTargetPoint();
1988
1989 G4String filename = newValue;
1990
1991 if (newValue.length() == 0) {
1992 // Null filename - generate a filename
1993 const G4int maxNoOfFiles = 100;
1994 static G4int sequenceNumber = 0;
1995 if (sequenceNumber >= maxNoOfFiles) {
1996 if (verbosity >= G4VisManager::errors) {
1997 G4warn
1998 << "ERROR: G4VisCommandsViewerSave::SetNewValue: Maximum number, "
1999 << maxNoOfFiles
2000 << ", of files exceeded."
2001 << G4endl;
2002 }
2003 return;
2004 }
2005 std::ostringstream oss;
2006 oss << std::setw(2) << std::setfill('0') << sequenceNumber++;
2007 filename = "g4_" + oss.str() + ".g4view";
2008 }
2009
2010 if (filename == "-") {
2011 // Write to standard output
2012 WriteCommands(G4cout,vp,stp);
2013 } else {
2014 // Write to file - but add extension if not prescribed
2015 if (!G4StrUtil::contains(filename, '.')) {
2016 // No extension supplied - add .g4view
2017 filename += ".g4view";
2018 }
2019 std::ofstream ofs(filename);
2020 if (!ofs) {
2021 if (verbosity >= G4VisManager::errors) {
2022 G4warn <<
2023 "ERROR: G4VisCommandsViewerSave::SetNewValue: Trouble opening file \""
2024 << filename << "\"."
2025 << G4endl;
2026 }
2027 ofs.close();
2028 return;
2029 }
2030 WriteCommands(ofs,vp,stp);
2031 ofs.close();
2032 }
2033
2034 if (verbosity >= G4VisManager::warnings) {
2035 G4warn << "Viewer \"" << currentViewer -> GetName ()
2036 << "\"" << " saved to ";
2037 if (filename == "-") {
2038 G4warn << "G4cout.";
2039 } else {
2040 G4warn << "file \'" << filename << "\"." <<
2041 "\n Read the view back into this or any viewer with"
2042 "\n \"/control/execute " << filename << "\" or use"
2043 "\n \"/vis/viewer/interpolate\" if you have several saved files -"
2044 "\n see \"help /vis/viewer/interpolate\" for guidance.";
2045 }
2046 G4warn << G4endl;
2047 }
2048}
HepGeom::Point3D< G4double > G4Point3D
Definition G4Point3D.hh:34
#define G4warn
Definition G4Scene.cc:41
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
const G4Point3D & GetStandardTargetPoint() const
G4Scene * GetScene() const
const G4ViewParameters & GetViewParameters() const
virtual const std::vector< G4ModelingParameters::VisAttributesModifier > * GetPrivateVisAttributesModifiers() const
G4VSceneHandler * GetSceneHandler() const
static G4VisManager * fpVisManager
void AddVisAttributesModifier(const G4ModelingParameters::VisAttributesModifier &)

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