2 // ********************************************************************
3 // * License and Disclaimer *
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. *
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. *
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 // ********************************************************************
27 // $Id: G4VisManager.icc 66373 2012-12-18 09:41:34Z gcosmo $
30 // GEANT4 Visualization Manager - John Allison 02/Jan/1996.
32 inline void G4VisManager::Initialize () {
36 inline const std::vector<G4VisManager::UserVisAction>&
37 G4VisManager::GetRunDurationUserVisActions () const {
38 return fRunDurationUserVisActions;
41 inline const std::vector<G4VisManager::UserVisAction>&
42 G4VisManager::GetEndOfEventUserVisActions () const {
43 return fEndOfEventUserVisActions;
46 inline const std::vector<G4VisManager::UserVisAction>&
47 G4VisManager::GetEndOfRunUserVisActions () const {
48 return fEndOfRunUserVisActions;
51 inline const std::map<G4VUserVisAction*,G4VisExtent>&
52 G4VisManager::GetUserVisActionExtents () const {
53 return fUserVisActionExtents;
56 inline G4VSceneHandler* G4VisManager::GetCurrentSceneHandler () const {
57 return fpSceneHandler;
60 inline G4VViewer* G4VisManager::GetCurrentViewer () const {
64 inline G4Scene* G4VisManager::GetCurrentScene () const {
68 inline const G4SceneHandlerList&
69 G4VisManager::GetAvailableSceneHandlers () const {
70 return fAvailableSceneHandlers;
73 inline const G4SceneList& G4VisManager::GetSceneList () const {
77 inline G4VGraphicsSystem*
78 G4VisManager::GetCurrentGraphicsSystem () const {
79 return fpGraphicsSystem;
82 inline G4bool G4VisManager::GetTransientsDrawnThisEvent() const {
83 return fTransientsDrawnThisEvent;
86 inline G4bool G4VisManager::GetTransientsDrawnThisRun() const {
87 return fTransientsDrawnThisRun;
90 inline const G4Event* G4VisManager::GetRequestedEvent() const {
91 return fpRequestedEvent;
94 inline G4bool G4VisManager::GetAbortReviewKeptEvents() const {
95 return fAbortReviewKeptEvents;
98 inline const G4ViewParameters& G4VisManager::GetDefaultViewParameters() const {
99 return fDefaultViewParameters;
102 inline void G4VisManager::SetUserAction
103 (G4VUserVisAction* pVisAction,
104 const G4VisExtent& extent) {
105 RegisterRunDurationUserVisAction("SetUserAction",pVisAction,extent);
108 inline G4SceneList& G4VisManager::SetSceneList () {
112 inline G4SceneHandlerList& G4VisManager::SetAvailableSceneHandlers () {
113 return fAvailableSceneHandlers;
116 inline void G4VisManager::SetVerboseLevel (G4VisManager::Verbosity verbosity) {
117 fVerbosity = verbosity;
120 inline void G4VisManager::SetEventRefreshing (G4bool eventRefreshing) {
121 fEventRefreshing = eventRefreshing;
124 inline void G4VisManager::RegisterMessenger(G4UImessenger* msgr)
126 fMessengerList.push_back(msgr);
129 inline void G4VisManager::SetRequestedEvent (const G4Event* event) {
130 fpRequestedEvent = event;
133 inline void G4VisManager::SetAbortReviewKeptEvents (G4bool abort) {
134 fAbortReviewKeptEvents = abort;
137 inline void G4VisManager::SetDefaultViewParameters
138 (const G4ViewParameters& vp) {
139 fDefaultViewParameters = vp;