source: trunk/source/visualization/management/include/G4VisManager.icc@ 1331

Last change on this file since 1331 was 1288, checked in by garnier, 15 years ago

update from CVS

  • Property svn:mime-type set to text/cpp
File size: 3.9 KB
Line 
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// $Id: G4VisManager.icc,v 1.22 2010/06/01 16:08:15 allison Exp $
28// GEANT4 tag $Name: $
29//
30//
31// GEANT4 Visualization Manager - John Allison 02/Jan/1996.
32
33inline void G4VisManager::Initialize () {
34 Initialise ();
35}
36
37inline G4VisExtent G4VisManager::GetUserActionExtent () const {
38 return fUserVisActionExtent;
39}
40
41inline G4VUserVisAction* G4VisManager::GetUserAction () const {
42 return fpUserVisAction;
43}
44
45inline G4VSceneHandler* G4VisManager::GetCurrentSceneHandler () const {
46 return fpSceneHandler;
47}
48
49inline G4VViewer* G4VisManager::GetCurrentViewer () const {
50 return fpViewer;
51}
52
53inline G4Scene* G4VisManager::GetCurrentScene () const {
54 return fpScene;
55}
56
57inline const G4SceneHandlerList&
58G4VisManager::GetAvailableSceneHandlers () const {
59 return fAvailableSceneHandlers;
60}
61
62inline const G4SceneList& G4VisManager::GetSceneList () const {
63 return fSceneList;
64}
65
66inline G4VGraphicsSystem*
67G4VisManager::GetCurrentGraphicsSystem () const {
68 return fpGraphicsSystem;
69}
70
71inline G4VisManager::Verbosity G4VisManager::GetVerbosity () {
72 return fVerbosity;
73}
74
75inline G4bool G4VisManager::GetTransientsDrawnThisEvent() const {
76 return fTransientsDrawnThisEvent;
77}
78
79inline G4bool G4VisManager::GetTransientsDrawnThisRun() const {
80 return fTransientsDrawnThisRun;
81}
82
83inline const G4Event* G4VisManager::GetRequestedEvent() const {
84 return fpRequestedEvent;
85}
86
87inline G4bool G4VisManager::GetAbortReviewKeptEvents() const {
88 return fAbortReviewKeptEvents;
89}
90
91inline void G4VisManager::SetUserActionExtent (const G4VisExtent& extent) {
92 fUserVisActionExtent = extent;
93}
94
95inline G4SceneList& G4VisManager::SetSceneList () {
96 return fSceneList;
97}
98
99inline G4SceneHandlerList& G4VisManager::SetAvailableSceneHandlers () {
100 return fAvailableSceneHandlers;
101}
102
103inline void G4VisManager::SetVerboseLevel (G4VisManager::Verbosity verbosity) {
104 fVerbosity = verbosity;
105}
106
107inline void G4VisManager::SetEventRefreshing (G4bool eventRefreshing) {
108 fEventRefreshing = eventRefreshing;
109}
110
111inline void G4VisManager::RegisterMessenger(G4UImessenger* msgr)
112{
113 fMessengerList.push_back(msgr);
114}
115
116inline void G4VisManager::SetRequestedEvent (const G4Event* event) {
117 fpRequestedEvent = event;
118}
119
120inline void G4VisManager::SetAbortReviewKeptEvents (G4bool abort) {
121 fAbortReviewKeptEvents = abort;
122}
Note: See TracBrowser for help on using the repository browser.