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

#include <G4ToolsSGQtGLES.hh>

Inheritance diagram for G4ToolsSGQtGLES:
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="")
 
 G4ToolsSGQtGLES ()
 
const G4StringGetDescription () const
 
Functionality GetFunctionality () const
 
const G4StringGetName () const
 
const G4StringGetNickname () const
 
const std::vector< G4String > & GetNicknames () const
 
G4bool IsUISessionCompatible () const
 
virtual ~G4ToolsSGQtGLES ()
 

Protected Member Functions

 G4ToolsSGQtGLES (const G4ToolsSGQtGLES &a_from)
 
void Initialise ()
 
G4ToolsSGQtGLESoperator= (const G4ToolsSGQtGLES &)
 

Protected Attributes

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

Private Types

typedef G4VGraphicsSystem parent
 

Detailed Description

Definition at line 35 of file G4ToolsSGQtGLES.hh.

Member Typedef Documentation

◆ parent

Definition at line 36 of file G4ToolsSGQtGLES.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

◆ G4ToolsSGQtGLES() [1/2]

G4ToolsSGQtGLES::G4ToolsSGQtGLES ( )

Definition at line 42 of file G4ToolsSGQtGLES.cc.

42 :
44("TOOLSSG_QT_GLES",
45 "TSG_QT_GLES",
46 "TOOLSSG_QT_GLES is a graphics driver based on the g4tools tools/sg scene graph logic where\n\
47 the rendering is done with GLES and the windowing is done with Qt.",
49,fSGSession(nullptr)
50{}
tools::Qt::session * fSGSession
G4VGraphicsSystem parent

◆ ~G4ToolsSGQtGLES()

G4ToolsSGQtGLES::~G4ToolsSGQtGLES ( )
virtual

Definition at line 52 of file G4ToolsSGQtGLES.cc.

52 {
53 delete fSGSession;
54}

References fSGSession.

◆ G4ToolsSGQtGLES() [2/2]

G4ToolsSGQtGLES::G4ToolsSGQtGLES ( const G4ToolsSGQtGLES a_from)
inlineprotected

Definition at line 41 of file G4ToolsSGQtGLES.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 * G4ToolsSGQtGLES::CreateSceneHandler ( const G4String name = "")
virtual

Implements G4VGraphicsSystem.

Definition at line 71 of file G4ToolsSGQtGLES.cc.

71 {
72 G4VSceneHandler* pScene = new G4ToolsSGSceneHandler(*this, a_name);
73 return pScene;
74}

◆ CreateViewer()

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

Implements G4VGraphicsSystem.

Definition at line 76 of file G4ToolsSGQtGLES.cc.

76 {
78 if(!fSGSession) return nullptr;
79 G4VViewer* pView =
80#ifdef G4TOOLSSG_QT_VIEWER_IN_TAB
82#else
84#endif
85 if (pView) {
86 if (pView->GetViewId() < 0) {
87 G4cerr << "G4ToolsSGQtGLES::CreateViewer:"
88 << " ERROR flagged by negative view id in G4ToolsSGViewer creation."
89 << "\n Destroying view and returning null pointer." << G4endl;
90 delete pView;
91 pView = nullptr;
92 }
93 }
94 if (!pView) {
95 G4cerr << "G4ToolsSGQtGLES::CreateViewer: ERROR: null pointer on new G4ToolsSGViewer." << G4endl;
96 return nullptr;
97 }
98 return pView;
99}
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 G4ToolsSGQtGLES::Initialise ( )
protected

Definition at line 56 of file G4ToolsSGQtGLES.cc.

56 {
57 if(fSGSession) return; //done.
58 int* argc = new int;
59 char** argv = nullptr;
60 std::vector<std::string> args;args.push_back("");
61 tools::new_argcv(args,*argc,argv);
62 fSGSession = new tools::Qt::session(G4cout,*argc,argv);
63 if(!fSGSession->is_valid()) {
64 G4cerr << "G4ToolsSGQtGLES::Initialise : session::is_valid() failed." << G4endl;
65 delete fSGSession;
66 fSGSession = nullptr;
67 return;
68 }
69}
static char ** args
Definition: G4Xt.cc:51
G4GLOB_DLL std::ostream G4cout
static G4UIterminal * session

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

Referenced by CreateViewer().

◆ IsUISessionCompatible()

G4bool G4ToolsSGQtGLES::IsUISessionCompatible ( ) const
virtual

Reimplemented from G4VGraphicsSystem.

Definition at line 101 of file G4ToolsSGQtGLES.cc.

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

◆ operator=()

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

Definition at line 42 of file G4ToolsSGQtGLES.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::Qt::session* G4ToolsSGQtGLES::fSGSession
protected

Definition at line 50 of file G4ToolsSGQtGLES.hh.

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


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