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

Last change on this file since 850 was 850, checked in by garnier, 16 years ago

geant4.8.2 beta

  • Property svn:mime-type set to text/cpp
File size: 4.3 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.20 2007/01/11 16:40:58 allison Exp $
28// GEANT4 tag $Name: HEAD $
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 () const {
72  return fVerbosity;
73}
74
75inline void G4VisManager::GetWindowSizeHint
76 (G4int& xHint, G4int& yHint) const {
77  xHint = fWindowSizeHintX; yHint = fWindowSizeHintY;
78}
79
80inline const G4String& G4VisManager::GetXGeometryString () const {
81  return fXGeometryString;
82}
83
84inline G4bool G4VisManager::GetTransientsDrawnThisEvent() const {
85  return fTransientsDrawnThisEvent;
86}
87
88inline G4bool G4VisManager::GetTransientsDrawnThisRun() const {
89  return fTransientsDrawnThisRun;
90}
91
92inline const G4Event* G4VisManager::GetRequestedEvent() const {
93  return fpRequestedEvent;
94}
95
96inline G4bool G4VisManager::GetAbortReviewKeptEvents() const {
97  return fAbortReviewKeptEvents;
98}
99
100inline void G4VisManager::SetUserActionExtent (const G4VisExtent& extent) {
101  fUserVisActionExtent = extent;
102}
103
104inline G4SceneList& G4VisManager::SetSceneList () {
105  return fSceneList;
106}
107
108inline G4SceneHandlerList& G4VisManager::SetAvailableSceneHandlers () {
109  return fAvailableSceneHandlers;
110}
111
112inline void G4VisManager::SetVerboseLevel (G4VisManager::Verbosity verbosity) {
113  fVerbosity = verbosity;
114}
115
116inline void G4VisManager::SetWindowSizeHint (G4int xHint, G4int yHint) {
117  fWindowSizeHintX = xHint; fWindowSizeHintY = yHint;
118}
119
120inline void G4VisManager::SetXGeometryString (const G4String& geomString) {
121  fXGeometryString = geomString;
122}
123
124inline void G4VisManager::SetEventRefreshing (G4bool eventRefreshing) {
125  fEventRefreshing = eventRefreshing;
126}
127
128inline void G4VisManager::RegisterMessenger(G4UImessenger* msgr)
129{
130  fMessengerList.push_back(msgr);
131}
132
133inline void G4VisManager::SetRequestedEvent (const G4Event* event) {
134  fpRequestedEvent = event;
135}
136
137inline void G4VisManager::SetAbortReviewKeptEvents (G4bool abort) {
138  fAbortReviewKeptEvents = abort;
139}
Note: See TracBrowser for help on using the repository browser.