Geant4-11
Functions
G4VisFeaturesOfOpenGL.hh File Reference
#include "globals.hh"

Go to the source code of this file.

Functions

G4String G4VisFeaturesOfOpenGLIQt ()
 
G4String G4VisFeaturesOfOpenGLIWin32 ()
 
G4String G4VisFeaturesOfOpenGLIX ()
 
G4String G4VisFeaturesOfOpenGLIXm ()
 
G4String G4VisFeaturesOfOpenGLSQt ()
 
G4String G4VisFeaturesOfOpenGLSWin32 ()
 
G4String G4VisFeaturesOfOpenGLSX ()
 
G4String G4VisFeaturesOfOpenGLSXm ()
 

Function Documentation

◆ G4VisFeaturesOfOpenGLIQt()

G4String G4VisFeaturesOfOpenGLIQt ( )

Definition at line 92 of file G4VisFeaturesOfOpenGL.cc.

92 {
93 return
94 "\n It runs everywhere";
95}

◆ G4VisFeaturesOfOpenGLIWin32()

G4String G4VisFeaturesOfOpenGLIWin32 ( )

Definition at line 82 of file G4VisFeaturesOfOpenGL.cc.

82 {
83 return
84 "\n It runs on WindowsNT ";
85}

◆ G4VisFeaturesOfOpenGLIX()

G4String G4VisFeaturesOfOpenGLIX ( )

Definition at line 32 of file G4VisFeaturesOfOpenGL.cc.

32 {
33 return
34 " Dumb single buffered X Window, No Graphics Database."
35 "\n Advantages: does not gobble server memory."
36 "\n good for drawing steps and hits."
37 "\n Disadvantages: needs G4 kernel for re-Draw."
38 "\n cannot take advantage of graphics accelerators.";
39}

◆ G4VisFeaturesOfOpenGLIXm()

G4String G4VisFeaturesOfOpenGLIXm ( )

Definition at line 55 of file G4VisFeaturesOfOpenGL.cc.

55 {
56 return
57 " Smart single buffered X Window, No Graphics Database."
58 "\n Advantages: resizable, and has Motif-based view-control panel."
59 "\n does not gobble server memory."
60 "\n good for drawing steps and hits."
61 "\n Disadvantages: currently locks out GEANT4 commands, until \"exit\"."
62 "\n needs G4 kernel for re-Draw."
63 "\n cannot take advantage of graphics accelerators.";
64}

◆ G4VisFeaturesOfOpenGLSQt()

G4String G4VisFeaturesOfOpenGLSQt ( )

Definition at line 97 of file G4VisFeaturesOfOpenGL.cc.

97 {
98 return
99 "\n It runs everywhere ";
100}

◆ G4VisFeaturesOfOpenGLSWin32()

G4String G4VisFeaturesOfOpenGLSWin32 ( )

Definition at line 87 of file G4VisFeaturesOfOpenGL.cc.

87 {
88 return
89 "\n It runs on WindowsNT ";
90}

◆ G4VisFeaturesOfOpenGLSX()

G4String G4VisFeaturesOfOpenGLSX ( )

Definition at line 41 of file G4VisFeaturesOfOpenGL.cc.

41 {
42 return
43 " Dumb double buffered X Window with Graphics Database."
44 "\n Advantages: uses display lists as graphics database."
45 "\n fastest possible redraw, e.g., on simple change"
46 "\n of viewpoint."
47 "\n uses client-server model for remote viewing"
48 "\n (but only if you have a full client-server"
49 "\n implementation of OpenGL, i.e., not Mesa)."
50 "\n Disadvantages: not advised for viewing large numbers of steps"
51 "\n and/or hits, because it gobbles memory for"
52 " database.";
53}

◆ G4VisFeaturesOfOpenGLSXm()

G4String G4VisFeaturesOfOpenGLSXm ( )

Definition at line 66 of file G4VisFeaturesOfOpenGL.cc.

66 {
67 return
68 " Smart double buffered X Window with Graphics Database."
69 "\n Advantages: resizable, and has Motif-based view-control panel."
70 "\n uses display lists as graphics database."
71 "\n fastest possible redraw, e.g., on simple change"
72 "\n of viewpoint."
73 "\n uses client-server model for remote viewing"
74 "\n (but only if you have a full client-server"
75 "\n implementation of OpenGL, i.e., not Mesa)."
76 "\n Disadvantages: currently locks out GEANT4 commands, until \"exit\"."
77 "\n not advised for viewing large numbers of steps"
78 "\n and/or hits, because it gobbles memory for"
79 " database.";
80}