Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Functions
G4VisFeaturesOfOpenGL.cc File Reference
#include "G4VisFeaturesOfOpenGL.hh"

Go to the source code of this file.

Functions

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

Function Documentation

G4String G4VisFeaturesOfOpenGLIQt ( )

Definition at line 93 of file G4VisFeaturesOfOpenGL.cc.

93  {
94  return
95  "\n It runs everywhere";
96 }
G4String G4VisFeaturesOfOpenGLIWin32 ( )

Definition at line 83 of file G4VisFeaturesOfOpenGL.cc.

83  {
84  return
85  "\n It runs on WindowsNT ";
86 }
G4String G4VisFeaturesOfOpenGLIWt ( )

Definition at line 103 of file G4VisFeaturesOfOpenGL.cc.

103  {
104  return
105  "\n It runs everywhere";
106 }
G4String G4VisFeaturesOfOpenGLIX ( )

Definition at line 33 of file G4VisFeaturesOfOpenGL.cc.

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

Definition at line 56 of file G4VisFeaturesOfOpenGL.cc.

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

Definition at line 98 of file G4VisFeaturesOfOpenGL.cc.

98  {
99  return
100  "\n It runs everywhere ";
101 }
G4String G4VisFeaturesOfOpenGLSWin32 ( )

Definition at line 88 of file G4VisFeaturesOfOpenGL.cc.

88  {
89  return
90  "\n It runs on WindowsNT ";
91 }
G4String G4VisFeaturesOfOpenGLSX ( )

Definition at line 42 of file G4VisFeaturesOfOpenGL.cc.

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

Definition at line 67 of file G4VisFeaturesOfOpenGL.cc.

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