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

#include <G4OpenGLXm.hh>

+ Inheritance diagram for G4OpenGLXm:

Public Member Functions

 G4OpenGLXm (const G4String &name, const G4String &nickname, const G4String &description, Functionality f)
 
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)
 

Additional Inherited Members

- Public Types inherited from G4VGraphicsSystem
enum  Functionality {
  noFunctionality , nonEuclidian , twoD , twoDStore ,
  threeD , threeDInteractive , virtualReality , fileWriter
}
 
- Protected Attributes inherited from G4VGraphicsSystem
G4String fName
 
std::vector< G4StringfNicknames
 
G4String fDescription
 
Functionality fFunctionality
 

Detailed Description

Definition at line 36 of file G4OpenGLXm.hh.

Constructor & Destructor Documentation

◆ G4OpenGLXm()

G4OpenGLXm::G4OpenGLXm ( const G4String name,
const G4String nickname,
const G4String description,
Functionality  f 
)

Definition at line 36 of file G4OpenGLXm.cc.

39 :
41 nickname,
42 description,
43 f)
44{}

Member Function Documentation

◆ IsUISessionCompatible()

G4bool G4OpenGLXm::IsUISessionCompatible ( ) const
virtual

Reimplemented from G4VGraphicsSystem.

Definition at line 46 of file G4OpenGLXm.cc.

47{
48 G4bool isCompatible = false;
51
52 // If session is a batch session, it may be:
53 // a) this is a batch job (the user has not instantiated any UI session);
54 // b) we are currently processing a UI command, in which case the UI
55 // manager creates a temporary batch session and to find out if there is
56 // a genuine UI session that the user has instantiated we must drill
57 // down through previous sessions to a possible non-batch session.
58 while (G4UIbatch* batch = dynamic_cast<G4UIbatch*>(session)) {
59 session = batch->GetPreviousSession();
60 }
61
62 // Xm windows are not appropriate in a batch session.
63 if (session) {
64 // If non-zero, this is the originating non-batch session
65 // The user has instantiated a UI session...
66 isCompatible = true;
67 }
68
69 return isCompatible;
70}
bool G4bool
Definition: G4Types.hh:86
G4UIsession * GetSession() const
Definition: G4UImanager.hh:187
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:77

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