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

#include <G4VtkQt.hh>

+ Inheritance diagram for G4VtkQt:

Public Member Functions

 G4VtkQt ()
 
virtual ~G4VtkQt ()
 
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)
 

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 32 of file G4VtkQt.hh.

Constructor & Destructor Documentation

◆ G4VtkQt()

G4VtkQt::G4VtkQt ( )

Definition at line 34 of file G4VtkQt.cc.

◆ ~G4VtkQt()

G4VtkQt::~G4VtkQt ( )
virtual

Definition at line 38 of file G4VtkQt.cc.

38{}

Member Function Documentation

◆ CreateSceneHandler()

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

Implements G4VGraphicsSystem.

Definition at line 40 of file G4VtkQt.cc.

40 {
41 G4VSceneHandler* pScene = new G4VtkQtSceneHandler(*this, name);
42 return pScene;
43}

◆ CreateViewer()

G4VViewer * G4VtkQt::CreateViewer ( G4VSceneHandler scene,
const G4String name = "" 
)
virtual

Implements G4VGraphicsSystem.

Definition at line 45 of file G4VtkQt.cc.

46 {
47 G4VViewer* pView = new G4VtkQtViewer((G4VtkQtSceneHandler&) scene, name);
48 if (pView) {
49 if (pView->GetViewId() < 0) {
50 G4cerr << "G4VtkQt::CreateViewer: ERROR flagged by negative"
51 " view id in G4VtkViewer creation."
52 "\n Destroying view and returning null pointer."
53 << G4endl;
54 delete pView;
55 pView = nullptr;
56 }
57 }
58 else {
59 G4cerr << "G4Vtk::CreateViewer: ERROR: null pointer on new G4VtkViewer." << G4endl;
60 }
61 return pView;
62}
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition: G4ios.hh:57
G4int GetViewId() const

◆ IsUISessionCompatible()

G4bool G4VtkQt::IsUISessionCompatible ( ) const
virtual

Reimplemented from G4VGraphicsSystem.

Definition at line 64 of file G4VtkQt.cc.

65{
66 G4bool isCompatible = false;
69
70 // If session is a batch session, it may be:
71 // a) this is a batch job (the user has not instantiated any UI session);
72 // b) we are currently processing a UI command, in which case the UI
73 // manager creates a temporary batch session and to find out if there is
74 // a genuine UI session that the user has instantiated we must drill
75 // down through previous sessions to a possible non-batch session.
76 while (G4UIbatch* batch = dynamic_cast<G4UIbatch*>(session)) {
77 session = batch->GetPreviousSession();
78 }
79
80 // Qt windows are only appropriate in a Qt session.
81 if (session) {
82 // If non-zero, this is the originating non-batch session
83 // The user has instantiated a UI session...
84 if (dynamic_cast<G4UIQt*>(session)) {
85 // ...and it's a G4UIQt session, which is OK.
86 isCompatible = true;
87 }
88 }
89 return isCompatible;
90}
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: