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

#include <G4ToolsSGX11ZB.hh>

+ Inheritance diagram for G4ToolsSGX11ZB:

Public Member Functions

 G4ToolsSGX11ZB ()
 
virtual ~G4ToolsSGX11ZB ()
 
G4VSceneHandlerCreateSceneHandler (const G4String &name="")
 
G4VViewerCreateViewer (G4VSceneHandler &, const G4String &name="")
 
- 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 ()
 
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

 G4ToolsSGX11ZB (const G4ToolsSGX11ZB &a_from)
 
G4ToolsSGX11ZBoperator= (const G4ToolsSGX11ZB &)
 
void Initialise ()
 

Protected Attributes

toolx::X11::base_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 G4ToolsSGX11ZB.hh.

Constructor & Destructor Documentation

◆ G4ToolsSGX11ZB() [1/2]

G4ToolsSGX11ZB::G4ToolsSGX11ZB ( )

Definition at line 34 of file G4ToolsSGX11ZB.cc.

34 :
35parent
36("TOOLSSG_X11_ZB",
37 "TSG_X11_ZB",
38 "TOOLSSG_X11_ZB is a graphics driver based on the g4tools tools/sg scene graph logic where\n\
39 the rendering is done with the g4tools zbuffer and the windowing is done with X11.",
41,fSGSession(nullptr)
42{}
toolx::X11::base_session * fSGSession

◆ ~G4ToolsSGX11ZB()

G4ToolsSGX11ZB::~G4ToolsSGX11ZB ( )
virtual

Definition at line 44 of file G4ToolsSGX11ZB.cc.

44 {
45 delete fSGSession;
46}

◆ G4ToolsSGX11ZB() [2/2]

G4ToolsSGX11ZB::G4ToolsSGX11ZB ( const G4ToolsSGX11ZB & a_from)
inlineprotected

Definition at line 41 of file G4ToolsSGX11ZB.hh.

41:parent(a_from){}

Member Function Documentation

◆ CreateSceneHandler()

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

Implements G4VGraphicsSystem.

Definition at line 59 of file G4ToolsSGX11ZB.cc.

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

◆ CreateViewer()

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

Implements G4VGraphicsSystem.

Definition at line 64 of file G4ToolsSGX11ZB.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 "G4ToolsSGX11ZB::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 "G4ToolsSGX11ZB::CreateViewer: ERROR: null pointer on new G4ToolsSGViewer."
84 << G4endl;
85 }
86 return pView;
87}
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition G4ios.hh:67
G4int GetViewId() const

◆ Initialise()

void G4ToolsSGX11ZB::Initialise ( )
protected

Definition at line 48 of file G4ToolsSGX11ZB.cc.

48 {
49 if(fSGSession) return; //done.
50 fSGSession = new toolx::X11::base_session(G4cout);
51 if(!fSGSession->is_valid()) {
52 G4cerr << "G4ToolsSGX11ZB::Initialise : base_session::is_valid() failed." << G4endl;
53 delete fSGSession;
54 fSGSession = nullptr;
55 return;
56 }
57}
G4GLOB_DLL std::ostream G4cout

Referenced by CreateViewer().

◆ operator=()

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

Definition at line 42 of file G4ToolsSGX11ZB.hh.

42{return *this;}

Member Data Documentation

◆ fSGSession

toolx::X11::base_session* G4ToolsSGX11ZB::fSGSession
protected

Definition at line 49 of file G4ToolsSGX11ZB.hh.

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


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