Geant4-11
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes | Static Private Attributes
G4VtkMessenger Class Reference

#include <G4VtkMessenger.hh>

Inheritance diagram for G4VtkMessenger:
G4UImessenger

Public Member Functions

G4bool CommandsShouldBeInMaster () const
 
virtual G4String GetCurrentValue (G4UIcommand *command)
 
G4bool operator!= (const G4UImessenger &messenger) const
 
G4bool operator== (const G4UImessenger &messenger) const
 
virtual void SetNewValue (G4UIcommand *command, G4String newValue)
 
virtual ~G4VtkMessenger ()
 

Static Public Member Functions

static G4VtkMessengerGetInstance ()
 

Protected Member Functions

void AddUIcommand (G4UIcommand *newCommand)
 
G4String BtoS (G4bool b)
 
template<typename T >
T * CreateCommand (const G4String &cname, const G4String &dsc)
 
void CreateDirectory (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
G4String DtoS (G4double a)
 
G4String ItoS (G4int i)
 
G4bool StoB (G4String s)
 
G4double StoD (G4String s)
 
G4int StoI (G4String s)
 
G4long StoL (G4String s)
 

Protected Attributes

G4UIdirectorybaseDir = nullptr
 
G4String baseDirName = ""
 
G4bool commandsShouldBeInMaster = false
 

Private Member Functions

 G4VtkMessenger ()
 

Private Attributes

G4UIcommandfpCommandExport
 
G4UIcmdWithABoolfpCommandWarnings
 
G4UIdirectoryfpDirectory
 

Static Private Attributes

static G4VtkMessengerfpInstance = nullptr
 

Detailed Description

Definition at line 38 of file G4VtkMessenger.hh.

Constructor & Destructor Documentation

◆ ~G4VtkMessenger()

G4VtkMessenger::~G4VtkMessenger ( )
virtual

Definition at line 73 of file G4VtkMessenger.cc.

74{
75 delete fpDirectory;
76 delete fpCommandExport;
77 delete fpCommandWarnings;
78}
G4UIdirectory * fpDirectory
G4UIcmdWithABool * fpCommandWarnings
G4UIcommand * fpCommandExport

References fpCommandExport, fpCommandWarnings, and fpDirectory.

◆ G4VtkMessenger()

G4VtkMessenger::G4VtkMessenger ( )
private

Definition at line 48 of file G4VtkMessenger.cc.

48 {
49 G4bool omitable;
50
51 fpDirectory = new G4UIdirectory("/vis/vtk/");
52 fpDirectory->SetGuidance("G4VtkViewer commands.");
53
54 // Export command
55 fpCommandExport = new G4UIcommand("/vis/vtk/export", this);
56 fpCommandExport->SetGuidance ("Export a screenshot or OBJ file of current Vtk viewer");
57
58 // File type for export
59 auto parameterExport = new G4UIparameter ("name", 's', omitable = true);
60 fpCommandExport->SetGuidance ("File type (jpg,tiff,eps,ps,obj,vrml)");
61 fpCommandExport->SetParameter(parameterExport);
62
63 // File name for export
64 parameterExport = new G4UIparameter ("name", 's', omitable = true);
65 fpCommandExport->SetGuidance ("File name");
66 fpCommandExport->SetParameter(parameterExport);
67
68 // Vtk warnings output
69 fpCommandWarnings = new G4UIcmdWithABool("/vis/vtk/warnings", this);
70 fpCommandExport->SetGuidance ("Enable (True) or disable (False) VTK warnings");
71}
bool G4bool
Definition: G4Types.hh:86
void SetParameter(G4UIparameter *const newParameter)
Definition: G4UIcommand.hh:146
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:156

References fpCommandExport, fpCommandWarnings, fpDirectory, G4UIcommand::SetGuidance(), and G4UIcommand::SetParameter().

Referenced by GetInstance().

Member Function Documentation

◆ AddUIcommand()

void G4UImessenger::AddUIcommand ( G4UIcommand newCommand)
protectedinherited

Definition at line 149 of file G4UImessenger.cc.

150{
151 G4cerr << "Warning : Old style definition of G4UIcommand <"
152 << newCommand->GetCommandPath() << ">." << G4endl;
153}
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition: G4ios.hh:57
const G4String & GetCommandPath() const
Definition: G4UIcommand.hh:136

References G4cerr, G4endl, and G4UIcommand::GetCommandPath().

◆ BtoS()

G4String G4UImessenger::BtoS ( G4bool  b)
protectedinherited

Definition at line 98 of file G4UImessenger.cc.

99{
100 G4String vl = "0";
101 if(b)
102 vl = "true";
103 return vl;
104}

◆ CommandsShouldBeInMaster()

G4bool G4UImessenger::CommandsShouldBeInMaster ( ) const
inlineinherited

Definition at line 77 of file G4UImessenger.hh.

78 {
80 }
G4bool commandsShouldBeInMaster

References G4UImessenger::commandsShouldBeInMaster.

Referenced by G4UIcommand::G4UIcommandCommonConstructorCode().

◆ CreateCommand()

template<typename T >
T * G4UImessenger::CreateCommand ( const G4String cname,
const G4String dsc 
)
protectedinherited

Definition at line 110 of file G4UImessenger.hh.

111{
112 G4String path;
113 if(cname[0] != '/')
114 {
115 path = baseDirName + cname;
116 if(path[0] != '/')
117 path = "/" + path;
118 }
119
120 T* command = new T(path.c_str(), this);
121 command->SetGuidance(dsc.c_str());
122
123 return command;
124}
G4String baseDirName

References G4UImessenger::baseDirName.

◆ CreateDirectory()

void G4UImessenger::CreateDirectory ( const G4String path,
const G4String dsc,
G4bool  commandsToBeBroadcasted = true 
)
protectedinherited

Definition at line 156 of file G4UImessenger.cc.

158{
160
161 G4String fullpath = path;
162 if(fullpath.back() != '/')
163 fullpath.append("/");
164
165 G4UIcommandTree* tree = ui->GetTree()->FindCommandTree(fullpath.c_str());
166 if(tree != nullptr)
167 {
168 baseDirName = tree->GetPathName();
169 }
170 else
171 {
172 baseDir = new G4UIdirectory(fullpath.c_str(), commandsToBeBroadcasted);
173 baseDirName = fullpath;
174 baseDir->SetGuidance(dsc.c_str());
175 }
176}
const G4String & GetPathName() const
G4UIcommandTree * FindCommandTree(const char *commandPath)
G4UIcommandTree * GetTree() const
Definition: G4UImanager.hh:186
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:77
G4UIdirectory * baseDir

References G4UImessenger::baseDir, G4UImessenger::baseDirName, G4UIcommandTree::FindCommandTree(), G4UIcommandTree::GetPathName(), G4UImanager::GetTree(), G4UImanager::GetUIpointer(), and G4UIcommand::SetGuidance().

Referenced by G4MoleculeShootMessenger::G4MoleculeShootMessenger(), and G4UImessenger::G4UImessenger().

◆ DtoS()

G4String G4UImessenger::DtoS ( G4double  a)
protectedinherited

Definition at line 90 of file G4UImessenger.cc.

91{
92 std::ostringstream os;
93 os << a;
94 return G4String(os.str());
95}

Referenced by G4ScoreQuantityMessenger::FilterCommands(), and G4UIcontrolMessenger::SetNewValue().

◆ GetCurrentValue()

G4String G4VtkMessenger::GetCurrentValue ( G4UIcommand command)
virtual

Reimplemented from G4UImessenger.

Definition at line 79 of file G4VtkMessenger.cc.

79 {
80 return G4String();
81}

◆ GetInstance()

G4VtkMessenger * G4VtkMessenger::GetInstance ( )
static

Definition at line 42 of file G4VtkMessenger.cc.

43{
45 return fpInstance;
46}
static G4VtkMessenger * fpInstance

References fpInstance, and G4VtkMessenger().

Referenced by G4Vtk::G4Vtk().

◆ ItoS()

G4String G4UImessenger::ItoS ( G4int  i)
protectedinherited

Definition at line 82 of file G4UImessenger.cc.

83{
84 std::ostringstream os;
85 os << i;
86 return G4String(os.str());
87}

Referenced by G4GenericMessenger::DeclareMethod(), and G4ParticleGunMessenger::GetCurrentValue().

◆ operator!=()

G4bool G4UImessenger::operator!= ( const G4UImessenger messenger) const
inherited

Definition at line 76 of file G4UImessenger.cc.

77{
78 return this != &messenger;
79}

◆ operator==()

G4bool G4UImessenger::operator== ( const G4UImessenger messenger) const
inherited

Definition at line 70 of file G4UImessenger.cc.

71{
72 return this == &messenger;
73}

◆ SetNewValue()

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

Reimplemented from G4UImessenger.

Definition at line 83 of file G4VtkMessenger.cc.

84{
85
87
88 G4VViewer* pViewer = pVisManager->GetCurrentViewer();
89 if (!pViewer) {
90 G4cout << "G4VtkMessenger::SetNewValue: No current viewer.\n"
91 << "\"/vis/open\", or similar, to get one."
92 << G4endl;
93 return;
94 }
95
96 auto* pVtkViewer = dynamic_cast<G4VtkViewer*>(pViewer);
97 if (!pVtkViewer) {
98 G4cout << "G4OpenGLViewerMessenger::SetNewValue: Current viewer is not of type VTK. \n"
99 << "(It is \""
100 << pViewer->GetName()
101 << "\".)\n"
102 << "Use \"/vis/viewer/select\" or \"/vis/open\"."
103 << G4endl;
104 return;
105 }
106
107 if (command == fpCommandExport)
108 {
109 G4String format, name;
110
111 std::istringstream iss(newValue);
112 iss >> format >> name;
113
114 if(format == "jpg" || format == "tiff" ||
115 format == "png" || format == "bmp" ||
116 format == "pnm" || format == "ps")
117 pVtkViewer->ExportScreenShot(name, format);
118 else if(format == "obj")
119 pVtkViewer->ExportOBJScene(name);
120 else if(format == "vrml")
121 pVtkViewer->ExportVRMLScene(name);
122 else if(format == "vtp")
123 pVtkViewer->ExportVTPScene(name);
124 else
125 G4cout << "Unknown /vis/vtk/export file format" << G4endl;
126 }
127 else if (command == fpCommandWarnings)
128 {
129 vtkObject::GlobalWarningDisplayOff();
130 }
131}
G4GLOB_DLL std::ostream G4cout
const G4String & GetName() const
G4VViewer * GetCurrentViewer() const
static G4VisManager * GetInstance()
const char * name(G4int ptype)

References fpCommandExport, fpCommandWarnings, G4cout, G4endl, G4VisManager::GetCurrentViewer(), G4VisManager::GetInstance(), G4VViewer::GetName(), and G4InuclParticleNames::name().

◆ StoB()

G4bool G4UImessenger::StoB ( G4String  s)
protectedinherited

Definition at line 137 of file G4UImessenger.cc.

138{
140 G4bool vl = false;
141 if(v == "Y" || v == "YES" || v == "1" || v == "T" || v == "TRUE")
142 {
143 vl = true;
144 }
145 return vl;
146}
G4String to_upper_copy(G4String str)
Return uppercase copy of string.

References G4StrUtil::to_upper_copy().

Referenced by G4LocalThreadCoutMessenger::SetNewValue(), G4CascadeParamMessenger::SetNewValue(), G4ScoreQuantityMessenger::SetNewValue(), and G4ScoringMessenger::SetNewValue().

◆ StoD()

G4double G4UImessenger::StoD ( G4String  s)
protectedinherited

◆ StoI()

G4int G4UImessenger::StoI ( G4String  s)
protectedinherited

◆ StoL()

G4long G4UImessenger::StoL ( G4String  s)
protectedinherited

Definition at line 117 of file G4UImessenger.cc.

118{
119 G4long vl;
120 const char* t = str;
121 std::istringstream is(t);
122 is >> vl;
123 return vl;
124}
long G4long
Definition: G4Types.hh:87

Referenced by G4RunMessenger::SetNewValue().

Field Documentation

◆ baseDir

G4UIdirectory* G4UImessenger::baseDir = nullptr
protectedinherited

◆ baseDirName

G4String G4UImessenger::baseDirName = ""
protectedinherited

◆ commandsShouldBeInMaster

G4bool G4UImessenger::commandsShouldBeInMaster = false
protectedinherited

◆ fpCommandExport

G4UIcommand* G4VtkMessenger::fpCommandExport
private

Definition at line 52 of file G4VtkMessenger.hh.

Referenced by G4VtkMessenger(), SetNewValue(), and ~G4VtkMessenger().

◆ fpCommandWarnings

G4UIcmdWithABool* G4VtkMessenger::fpCommandWarnings
private

Definition at line 53 of file G4VtkMessenger.hh.

Referenced by G4VtkMessenger(), SetNewValue(), and ~G4VtkMessenger().

◆ fpDirectory

G4UIdirectory* G4VtkMessenger::fpDirectory
private

Definition at line 51 of file G4VtkMessenger.hh.

Referenced by G4VtkMessenger(), and ~G4VtkMessenger().

◆ fpInstance

G4VtkMessenger * G4VtkMessenger::fpInstance = nullptr
staticprivate

Definition at line 49 of file G4VtkMessenger.hh.

Referenced by GetInstance().


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