ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
ECCE @ EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
analysis
coresoftware
Doxygen_Assist
ecce-detectors
fun4all_eicdetectors
geant4
tree
geant4-10.6-release
config
environments
examples
source
analysis
digits_hits
error_propagation
event
externals
g3tog4
geometry
global
graphics_reps
intercoms
interfaces
materials
parameterisations
particles
persistency
physics_lists
processes
readout
run
track
tracking
visualization
externals
FukuiRenderer
gMocren
HepRep
management
modeling
OpenGL
OpenInventor
RayTracer
Tree
VRML
XXX
include
src
G4XXX.cc
G4XXXFile.cc
G4XXXFileSceneHandler.cc
G4XXXFileViewer.cc
G4XXXSceneHandler.cc
G4XXXSG.cc
G4XXXSGSceneHandler.cc
G4XXXSGViewer.cc
G4XXXStored.cc
G4XXXStoredSceneHandler.cc
G4XXXStoredViewer.cc
G4XXXViewer.cc
macros
online_distribution
tutorials
doxygen_mainpage.h
File Members
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
G4XXXViewer.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4XXXViewer.cc
1
//
2
// ********************************************************************
3
// * License and Disclaimer *
4
// * *
5
// * The Geant4 software is copyright of the Copyright Holders of *
6
// * the Geant4 Collaboration. It is provided under the terms and *
7
// * conditions of the Geant4 Software License, included in the file *
8
// * LICENSE and available at http://cern.ch/geant4/license . These *
9
// * include a list of copyright holders. *
10
// * *
11
// * Neither the authors of this software system, nor their employing *
12
// * institutes,nor the agencies providing financial support for this *
13
// * work make any representation or warranty, express or implied, *
14
// * regarding this software system or assume any liability for its *
15
// * use. Please see the license in the file LICENSE and URL above *
16
// * for the full disclaimer and the limitation of liability. *
17
// * *
18
// * This code implementation is the result of the scientific and *
19
// * technical work of the GEANT4 collaboration. *
20
// * By using, copying, modifying or distributing the software (or *
21
// * any work based on the software) you agree to acknowledge its *
22
// * use in resulting scientific publications, and indicate your *
23
// * acceptance of all terms of the Geant4 Software license. *
24
// ********************************************************************
25
//
26
//
27
//
28
//
29
// John Allison 5th April 2001
30
// A template for a simplest possible graphics driver.
31
//?? Lines or sections marked like this require specialisation for your driver.
32
33
#include "
G4XXXViewer.hh
"
34
35
#include "
G4VSceneHandler.hh
"
36
#include "
G4XXXSceneHandler.hh
"
37
38
G4XXXViewer::G4XXXViewer
39
(
G4VSceneHandler
& sceneHandler,
const
G4String
&
name
):
40
G4VViewer
(sceneHandler, sceneHandler.
IncrementViewCount
(),
name
) {}
41
42
G4XXXViewer::~G4XXXViewer
() {}
43
44
void
G4XXXViewer::SetView
() {
45
#ifdef G4XXXDEBUG
46
G4cout
<<
"G4XXXViewer::SetView() called."
<<
G4endl
;
47
#endif
48
}
49
50
void
G4XXXViewer::ClearView
() {
51
#ifdef G4XXXDEBUG
52
G4cout
<<
"G4XXXViewer::ClearView() called."
<<
G4endl
;
53
#endif
54
}
55
56
void
G4XXXViewer::DrawView
() {
57
#ifdef G4XXXDEBUG
58
G4cout
<<
"G4XXXViewer::DrawView() called."
<<
G4endl
;
59
#endif
60
61
// First, a view should decide when to re-visit the G4 kernel.
62
// Sometimes it might not be necessary, e.g., if the scene is stored
63
// in a graphical database (e.g., OpenGL's display lists) and only
64
// the viewing angle has changed. But graphics systems without a
65
// graphical database will always need to visit the G4 kernel.
66
67
NeedKernelVisit
();
// Default is - always visit G4 kernel.
68
// Note: this routine sets the fNeedKernelVisit flag of *all* the
69
// views of the scene.
70
71
ProcessView
();
// The basic logic is here.
72
73
// Then a view may have more to do, e.g., display the graphical
74
// database. That code should come here...
75
76
// ...before finally...
77
FinishView
();
// Flush streams and/or swap buffers.
78
}
79
80
void
G4XXXViewer::ShowView
() {
81
#ifdef G4XXXDEBUG
82
G4cout
<<
"G4XXXViewer::ShowView() called."
<<
G4endl
;
83
static_cast<
G4XXXSceneHandler
&
>
(
fSceneHandler
).PrintStores();
84
#endif
85
}
geant4
tree
geant4-10.6-release
source
visualization
XXX
src
G4XXXViewer.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:58
using
1.8.2 with
ECCE GitHub integration