Geant4-11
Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | Private Types
G4ToolsSGX11GLES Class Reference

#include <G4ToolsSGX11GLES.hh>

Inheritance diagram for G4ToolsSGX11GLES:
G4VGraphicsSystem

Public Types

enum  Functionality {
  noFunctionality , nonEuclidian , twoD , twoDStore ,
  threeD , threeDInteractive , virtualReality , fileWriter
}
 

Public Member Functions

void AddNickname (const G4String &nickname)
 
G4VSceneHandlerCreateSceneHandler (const G4String &name="")
 
G4VViewerCreateViewer (G4VSceneHandler &, const G4String &name="")
 
 G4ToolsSGX11GLES ()
 
const G4StringGetDescription () const
 
Functionality GetFunctionality () const
 
const G4StringGetName () const
 
const G4StringGetNickname () const
 
const std::vector< G4String > & GetNicknames () const
 
G4bool IsUISessionCompatible () const
 
virtual ~G4ToolsSGX11GLES ()
 

Protected Member Functions

 G4ToolsSGX11GLES (const G4ToolsSGX11GLES &a_from)
 
void Initialise ()
 
G4ToolsSGX11GLESoperator= (const G4ToolsSGX11GLES &)
 

Protected Attributes

G4String fDescription
 
Functionality fFunctionality
 
G4String fName
 
std::vector< G4StringfNicknames
 
tools::X11::sessionfSGSession
 

Private Types

typedef G4VGraphicsSystem parent
 

Detailed Description

Definition at line 35 of file G4ToolsSGX11GLES.hh.

Member Typedef Documentation

◆ parent

Definition at line 36 of file G4ToolsSGX11GLES.hh.

Member Enumeration Documentation

◆ Functionality

Enumerator
noFunctionality 
nonEuclidian 
twoD 
twoDStore 
threeD 
threeDInteractive 
virtualReality 
fileWriter 

Definition at line 49 of file G4VGraphicsSystem.hh.

49 {
51 ,nonEuclidian // e.g., tree representation of geometry hierarchy.
52 ,twoD // Simple 2D, e.g., X (no stored structures).
53 ,twoDStore // 2D with stored structures.
54 ,threeD // Passive 3D (with stored structures).
55 ,threeDInteractive // 3D with "pick" functionality.
56 ,virtualReality // Virtual Reality functionality.
57 ,fileWriter // File writer
58 };

Constructor & Destructor Documentation

◆ G4ToolsSGX11GLES() [1/2]

G4ToolsSGX11GLES::G4ToolsSGX11GLES ( )

Definition at line 34 of file G4ToolsSGX11GLES.cc.

34 :
36("TOOLSSG_X11_GLES",
37 "TSG_X11_GLES",
38 "TOOLSSG_X11_GLES is a graphics driver based on the g4tools tools/sg scene graph logic where\n\
39 the rendering is done with GLES and the windowing is done with X11.",
41,fSGSession(nullptr)
42{}
tools::X11::session * fSGSession
G4VGraphicsSystem parent

◆ ~G4ToolsSGX11GLES()

G4ToolsSGX11GLES::~G4ToolsSGX11GLES ( )
virtual

Definition at line 44 of file G4ToolsSGX11GLES.cc.

44 {
45 delete fSGSession;
46}

References fSGSession.

◆ G4ToolsSGX11GLES() [2/2]

G4ToolsSGX11GLES::G4ToolsSGX11GLES ( const G4ToolsSGX11GLES a_from)
inlineprotected

Definition at line 41 of file G4ToolsSGX11GLES.hh.

41:parent(a_from){}

Member Function Documentation

◆ AddNickname()

void G4VGraphicsSystem::AddNickname ( const G4String nickname)
inlineinherited

Definition at line 85 of file G4VGraphicsSystem.hh.

85{fNicknames.push_back(nickname);}
std::vector< G4String > fNicknames

References G4VGraphicsSystem::fNicknames.

◆ CreateSceneHandler()

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

Implements G4VGraphicsSystem.

Definition at line 59 of file G4ToolsSGX11GLES.cc.

59 {
60 G4VSceneHandler* pScene = new G4ToolsSGSceneHandler(*this,a_name);
61 return pScene;
62}

◆ CreateViewer()

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

Implements G4VGraphicsSystem.

Definition at line 64 of file G4ToolsSGX11GLES.cc.

64 {
66 if(!fSGSession) return nullptr;
67 G4VViewer* pView =
69 (*fSGSession,(G4ToolsSGSceneHandler&)a_scene,a_name);
70 if (pView) {
71 if (pView->GetViewId() < 0) {
72 G4cerr <<
73 "G4ToolsSGX11GLES::CreateViewer: ERROR flagged by negative"
74 " view id in G4ToolsSGViewer creation."
75 "\n Destroying view and returning null pointer."
76 << G4endl;
77 delete pView;
78 pView = nullptr;
79 }
80 }
81 if (!pView) {
82 G4cerr <<
83 "G4ToolsSGX11GLES::CreateViewer: ERROR: null pointer on new G4ToolsSGViewer."
84 << G4endl;
85 }
86 return pView;
87}
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition: G4ios.hh:57
G4int GetViewId() const

References fSGSession, G4cerr, G4endl, G4VViewer::GetViewId(), and Initialise().

◆ GetDescription()

const G4String & G4VGraphicsSystem::GetDescription ( ) const
inlineinherited

Definition at line 82 of file G4VGraphicsSystem.hh.

82{return fDescription;}

References G4VGraphicsSystem::fDescription.

◆ GetFunctionality()

Functionality G4VGraphicsSystem::GetFunctionality ( ) const
inlineinherited

Definition at line 83 of file G4VGraphicsSystem.hh.

83{return fFunctionality;}
Functionality fFunctionality

References G4VGraphicsSystem::fFunctionality.

Referenced by G4VisManager::EndOfRun().

◆ GetName()

const G4String & G4VGraphicsSystem::GetName ( ) const
inlineinherited

Definition at line 79 of file G4VGraphicsSystem.hh.

79{return fName;}

References G4VGraphicsSystem::fName.

Referenced by G4VSceneHandler::AddPrimitive().

◆ GetNickname()

const G4String & G4VGraphicsSystem::GetNickname ( ) const
inlineinherited

Definition at line 80 of file G4VGraphicsSystem.hh.

80{return fNicknames[0];}

References G4VGraphicsSystem::fNicknames.

Referenced by G4VisCommandViewerList::SetNewValue().

◆ GetNicknames()

const std::vector< G4String > & G4VGraphicsSystem::GetNicknames ( ) const
inlineinherited

Definition at line 81 of file G4VGraphicsSystem.hh.

81{return fNicknames;}

References G4VGraphicsSystem::fNicknames.

◆ Initialise()

void G4ToolsSGX11GLES::Initialise ( )
protected

Definition at line 48 of file G4ToolsSGX11GLES.cc.

48 {
49 if(fSGSession) return; //done.
51 if(!fSGSession->is_valid()) {
52 G4cerr << "G4ToolsSGX11GLES::Initialise : session::is_valid() failed." << G4endl;
53 delete fSGSession;
54 fSGSession = nullptr;
55 return;
56 }
57}
G4GLOB_DLL std::ostream G4cout
static G4UIterminal * session

References fSGSession, G4cerr, G4cout, G4endl, and session.

Referenced by CreateViewer().

◆ IsUISessionCompatible()

G4bool G4ToolsSGX11GLES::IsUISessionCompatible ( ) const
virtual

Reimplemented from G4VGraphicsSystem.

Definition at line 89 of file G4ToolsSGX11GLES.cc.

90{
91 G4bool isCompatible = false;
92// G4UImanager* ui = G4UImanager::GetUIpointer();
93// G4UIsession* session = ui->GetSession();
94//
95// // If session is a batch session, it may be:
96// // a) this is a batch job (the user has not instantiated any UI session);
97// // b) we are currently processing a UI command, in which case the UI
98// // manager creates a temporary batch session and to find out if there is
99// // a genuine UI session that the user has instantiated we must drill
100// // down through previous sessions to a possible non-batch session.
101// while (G4UIbatch* batch = dynamic_cast<G4UIbatch*>(session)) {
102// session = batch->GetPreviousSession();
103// }
104//
105// // Qt windows are only appropriate in a Qt session.
106// if (session) {
107// // If non-zero, this is the originating non-batch session
108// // The user has instantiated a UI session...
109// if (dynamic_cast<G4UIQt*>(session)) {
110// // ...and it's a G4UIQt session, which is OK.
111 isCompatible = true;
112// }
113// }
114 return isCompatible;
115}
bool G4bool
Definition: G4Types.hh:86

◆ operator=()

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

Definition at line 42 of file G4ToolsSGX11GLES.hh.

42{return *this;}

Field Documentation

◆ fDescription

G4String G4VGraphicsSystem::fDescription
protectedinherited

Definition at line 90 of file G4VGraphicsSystem.hh.

Referenced by G4VGraphicsSystem::GetDescription().

◆ fFunctionality

Functionality G4VGraphicsSystem::fFunctionality
protectedinherited

Definition at line 91 of file G4VGraphicsSystem.hh.

Referenced by G4VGraphicsSystem::GetFunctionality().

◆ fName

G4String G4VGraphicsSystem::fName
protectedinherited

Definition at line 88 of file G4VGraphicsSystem.hh.

Referenced by G4VGraphicsSystem::GetName().

◆ fNicknames

std::vector<G4String> G4VGraphicsSystem::fNicknames
protectedinherited

◆ fSGSession

tools::X11::session* G4ToolsSGX11GLES::fSGSession
protected

Definition at line 50 of file G4ToolsSGX11GLES.hh.

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


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