Geant4  10.00.p01
G4VisManager.icc
Go to the documentation of this file.
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 66373 2012-12-18 09:41:34Z gcosmo $
28 //
29 //
30 // GEANT4 Visualization Manager - John Allison 02/Jan/1996.
31 
32 inline void G4VisManager::Initialize () {
33  Initialise ();
34 }
35 
36 inline const std::vector<G4VisManager::UserVisAction>&
37 G4VisManager::GetRunDurationUserVisActions () const {
38  return fRunDurationUserVisActions;
39 }
40 
41 inline const std::vector<G4VisManager::UserVisAction>&
42 G4VisManager::GetEndOfEventUserVisActions () const {
43  return fEndOfEventUserVisActions;
44 }
45 
46 inline const std::vector<G4VisManager::UserVisAction>&
47 G4VisManager::GetEndOfRunUserVisActions () const {
48  return fEndOfRunUserVisActions;
49 }
50 
51 inline const std::map<G4VUserVisAction*,G4VisExtent>&
52 G4VisManager::GetUserVisActionExtents () const {
53  return fUserVisActionExtents;
54 }
55 
56 inline G4VSceneHandler* G4VisManager::GetCurrentSceneHandler () const {
57  return fpSceneHandler;
58 }
59 
60 inline G4VViewer* G4VisManager::GetCurrentViewer () const {
61  return fpViewer;
62 }
63 
64 inline G4Scene* G4VisManager::GetCurrentScene () const {
65  return fpScene;
66 }
67 
68 inline const G4SceneHandlerList&
69 G4VisManager::GetAvailableSceneHandlers () const {
70  return fAvailableSceneHandlers;
71 }
72 
73 inline const G4SceneList& G4VisManager::GetSceneList () const {
74  return fSceneList;
75 }
76 
77 inline G4VGraphicsSystem*
78 G4VisManager::GetCurrentGraphicsSystem () const {
79  return fpGraphicsSystem;
80 }
81 
82 inline G4bool G4VisManager::GetTransientsDrawnThisEvent() const {
83  return fTransientsDrawnThisEvent;
84 }
85 
86 inline G4bool G4VisManager::GetTransientsDrawnThisRun() const {
87  return fTransientsDrawnThisRun;
88 }
89 
90 inline const G4Event* G4VisManager::GetRequestedEvent() const {
91  return fpRequestedEvent;
92 }
93 
94 inline G4bool G4VisManager::GetAbortReviewKeptEvents() const {
95  return fAbortReviewKeptEvents;
96 }
97 
98 inline const G4ViewParameters& G4VisManager::GetDefaultViewParameters() const {
99  return fDefaultViewParameters;
100 }
101 
102 inline void G4VisManager::SetUserAction
103 (G4VUserVisAction* pVisAction,
104  const G4VisExtent& extent) {
105  RegisterRunDurationUserVisAction("SetUserAction",pVisAction,extent);
106 }
107 
108 inline G4SceneList& G4VisManager::SetSceneList () {
109  return fSceneList;
110 }
111 
112 inline G4SceneHandlerList& G4VisManager::SetAvailableSceneHandlers () {
113  return fAvailableSceneHandlers;
114 }
115 
116 inline void G4VisManager::SetVerboseLevel (G4VisManager::Verbosity verbosity) {
117  fVerbosity = verbosity;
118 }
119 
120 inline void G4VisManager::SetEventRefreshing (G4bool eventRefreshing) {
121  fEventRefreshing = eventRefreshing;
122 }
123 
124 inline void G4VisManager::RegisterMessenger(G4UImessenger* msgr)
125 {
126  fMessengerList.push_back(msgr);
127 }
128 
129 inline void G4VisManager::SetRequestedEvent (const G4Event* event) {
130  fpRequestedEvent = event;
131 }
132 
133 inline void G4VisManager::SetAbortReviewKeptEvents (G4bool abort) {
134  fAbortReviewKeptEvents = abort;
135 }
136 
137 inline void G4VisManager::SetDefaultViewParameters
138 (const G4ViewParameters& vp) {
139  fDefaultViewParameters = vp;
140 }