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

#include <G4ToolsSGXtGLES.hh>

+ Inheritance diagram for G4ToolsSGXtGLES:

Public Member Functions

 G4ToolsSGXtGLES ()
 
virtual ~G4ToolsSGXtGLES ()
 
G4VSceneHandlerCreateSceneHandler (const G4String &name="")
 
G4VViewerCreateViewer (G4VSceneHandler &, const G4String &name="")
 
G4bool IsUISessionCompatible () const
 
- Public Member Functions inherited from G4VGraphicsSystem
 G4VGraphicsSystem (const G4String &name, Functionality f)
 
 G4VGraphicsSystem (const G4String &name, const G4String &nickname, Functionality f)
 
 G4VGraphicsSystem (const G4String &name, const G4String &nickname, const G4String &description, Functionality f)
 
virtual ~G4VGraphicsSystem ()
 
virtual G4VSceneHandlerCreateSceneHandler (const G4String &name)=0
 
virtual G4VViewerCreateViewer (G4VSceneHandler &, const G4String &name)=0
 
const G4StringGetName () const
 
const G4StringGetNickname () const
 
const std::vector< G4String > & GetNicknames () const
 
const G4StringGetDescription () const
 
Functionality GetFunctionality () const
 
virtual G4bool IsUISessionCompatible () const
 
void AddNickname (const G4String &nickname)
 

Protected Member Functions

 G4ToolsSGXtGLES (const G4ToolsSGXtGLES &a_from)
 
G4ToolsSGXtGLESoperator= (const G4ToolsSGXtGLES &)
 
void Initialise ()
 

Protected Attributes

toolx::Xt::session * fSGSession
 
- Protected Attributes inherited from G4VGraphicsSystem
G4String fName
 
std::vector< G4StringfNicknames
 
G4String fDescription
 
Functionality fFunctionality
 

Additional Inherited Members

- Public Types inherited from G4VGraphicsSystem
enum  Functionality {
  noFunctionality , nonEuclidian , twoD , twoDStore ,
  threeD , threeDInteractive , virtualReality , fileWriter
}
 

Detailed Description

Definition at line 35 of file G4ToolsSGXtGLES.hh.

Constructor & Destructor Documentation

◆ G4ToolsSGXtGLES() [1/2]

G4ToolsSGXtGLES::G4ToolsSGXtGLES ( )

Definition at line 54 of file G4ToolsSGXtGLES.cc.

54 :
55parent
56("TOOLSSG_XT_GLES",
57 "TSG_XT_GLES",
58 "TOOLSSG_XT_GLES is a graphics driver based on the g4tools tools/sg scene graph logic where\n\
59 the rendering is done with GLES and the windowing is done with the Xt toolkit.",
61,fSGSession(nullptr)
62{}
toolx::Xt::session * fSGSession

◆ ~G4ToolsSGXtGLES()

G4ToolsSGXtGLES::~G4ToolsSGXtGLES ( )
virtual

Definition at line 64 of file G4ToolsSGXtGLES.cc.

64 {
65 delete fSGSession;
66}

◆ G4ToolsSGXtGLES() [2/2]

G4ToolsSGXtGLES::G4ToolsSGXtGLES ( const G4ToolsSGXtGLES a_from)
inlineprotected

Definition at line 41 of file G4ToolsSGXtGLES.hh.

41:parent(a_from){}

Member Function Documentation

◆ CreateSceneHandler()

G4VSceneHandler * G4ToolsSGXtGLES::CreateSceneHandler ( const G4String name = "")
virtual

Implements G4VGraphicsSystem.

Definition at line 82 of file G4ToolsSGXtGLES.cc.

82 {
83 G4VSceneHandler* pScene = new G4ToolsSGSceneHandler(*this, a_name);
84 return pScene;
85}

◆ CreateViewer()

G4VViewer * G4ToolsSGXtGLES::CreateViewer ( G4VSceneHandler a_scene,
const G4String name = "" 
)
virtual

Implements G4VGraphicsSystem.

Definition at line 87 of file G4ToolsSGXtGLES.cc.

87 {
89 if(!fSGSession) return nullptr;
90 G4VViewer* pView =
92 if (pView) {
93 if (pView->GetViewId() < 0) {
94 G4cerr <<
95 "G4ToolsSGXtGLES::CreateViewer: ERROR flagged by negative"
96 " view id in G4ToolsSGViewer creation."
97 "\n Destroying view and returning null pointer."
98 << G4endl;
99 delete pView;
100 pView = nullptr;
101 }
102 }
103 if (!pView) {
104 G4cerr <<
105 "G4ToolsSGXtGLES::CreateViewer: ERROR: null pointer on new G4ToolsSGViewer."
106 << G4endl;
107 }
108 return pView;
109}
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition: G4ios.hh:57
G4int GetViewId() const

◆ Initialise()

void G4ToolsSGXtGLES::Initialise ( )
protected

Definition at line 68 of file G4ToolsSGXtGLES.cc.

68 {
69 if(fSGSession) return; //done.
70 int* argc = new int;
71 char** argv = nullptr;
72 tools::new_argcv(std::vector<std::string>(),*argc,argv);
73 fSGSession = new session(G4cout,*argc,argv);
74 if(!fSGSession->is_valid()) {
75 G4cerr << "G4ToolsSGXtGLES::Initialise : session::is_valid() failed." << G4endl;
76 delete fSGSession;
77 fSGSession = nullptr;
78 return;
79 }
80}
G4GLOB_DLL std::ostream G4cout

Referenced by CreateViewer().

◆ IsUISessionCompatible()

G4bool G4ToolsSGXtGLES::IsUISessionCompatible ( ) const
virtual

Reimplemented from G4VGraphicsSystem.

Definition at line 111 of file G4ToolsSGXtGLES.cc.

112{
113 G4bool isCompatible = false;
114// G4UImanager* ui = G4UImanager::GetUIpointer();
115// G4UIsession* session = ui->GetSession();
116//
117// // If session is a batch session, it may be:
118// // a) this is a batch job (the user has not instantiated any UI session);
119// // b) we are currently processing a UI command, in which case the UI
120// // manager creates a temporary batch session and to find out if there is
121// // a genuine UI session that the user has instantiated we must drill
122// // down through previous sessions to a possible non-batch session.
123// while (G4UIbatch* batch = dynamic_cast<G4UIbatch*>(session)) {
124// session = batch->GetPreviousSession();
125// }
126//
127// // Qt windows are only appropriate in a Qt session.
128// if (session) {
129// // If non-zero, this is the originating non-batch session
130// // The user has instantiated a UI session...
131// if (dynamic_cast<G4UIQt*>(session)) {
132// // ...and it's a G4UIQt session, which is OK.
133 isCompatible = true;
134// }
135// }
136 return isCompatible;
137}
bool G4bool
Definition: G4Types.hh:86

◆ operator=()

G4ToolsSGXtGLES & G4ToolsSGXtGLES::operator= ( const G4ToolsSGXtGLES )
inlineprotected

Definition at line 42 of file G4ToolsSGXtGLES.hh.

42{return *this;}

Member Data Documentation

◆ fSGSession

toolx::Xt::session* G4ToolsSGXtGLES::fSGSession
protected

Definition at line 50 of file G4ToolsSGXtGLES.hh.

Referenced by CreateViewer(), Initialise(), and ~G4ToolsSGXtGLES().


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