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

Last change on this file since 893 was 893, checked in by garnier, 17 years ago

make 3.80 added because 3.81 is bad

  • Property svn:mime-type set to text/cpp
File size: 4.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.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 void G4VisManager::GetWindowLocationHint
81 (G4int& xHint, G4int& yHint) const {
82 xHint = fpViewer->GetViewParameters().GetWindowLocationHintX();
83 yHint = fpViewer->GetViewParameters().GetWindowLocationHintY();
84}
85
86inline const G4String& G4VisManager::GetXGeometryString () const {
87 return fXGeometryString;
88}
89
90inline G4bool G4VisManager::GetTransientsDrawnThisEvent() const {
91 return fTransientsDrawnThisEvent;
92}
93
94inline G4bool G4VisManager::GetTransientsDrawnThisRun() const {
95 return fTransientsDrawnThisRun;
96}
97
98inline const G4Event* G4VisManager::GetRequestedEvent() const {
99 return fpRequestedEvent;
100}
101
102inline G4bool G4VisManager::GetAbortReviewKeptEvents() const {
103 return fAbortReviewKeptEvents;
104}
105
106inline void G4VisManager::SetUserActionExtent (const G4VisExtent& extent) {
107 fUserVisActionExtent = extent;
108}
109
110inline G4SceneList& G4VisManager::SetSceneList () {
111 return fSceneList;
112}
113
114inline G4SceneHandlerList& G4VisManager::SetAvailableSceneHandlers () {
115 return fAvailableSceneHandlers;
116}
117
118inline void G4VisManager::SetVerboseLevel (G4VisManager::Verbosity verbosity) {
119 fVerbosity = verbosity;
120}
121
122inline void G4VisManager::SetWindowSizeHint (G4int xHint, G4int yHint) {
123 fWindowSizeHintX = xHint; fWindowSizeHintY = yHint;
124}
125
126inline void G4VisManager::SetWindowLocationHint (G4int xHint, G4int yHint) {
127#ifdef G4DEBUG
128 printf("G4VisManager::SetWindowLocationHint () :: %d %d\n",xHint,yHint);
129#endif
130 G4ViewParameters vp = fpViewer->GetViewParameters();
131 vp.SetWindowLocationHint(xHint,yHint);
132 fpViewer->SetViewParameters(vp);
133}
134
135inline void G4VisManager::SetXGeometryString (const G4String& geomString) {
136 fXGeometryString = geomString;
137}
138
139inline void G4VisManager::SetEventRefreshing (G4bool eventRefreshing) {
140 fEventRefreshing = eventRefreshing;
141}
142
143inline void G4VisManager::RegisterMessenger(G4UImessenger* msgr)
144{
145 fMessengerList.push_back(msgr);
146}
147
148inline void G4VisManager::SetRequestedEvent (const G4Event* event) {
149 fpRequestedEvent = event;
150}
151
152inline void G4VisManager::SetAbortReviewKeptEvents (G4bool abort) {
153 fAbortReviewKeptEvents = abort;
154}
Note: See TracBrowser for help on using the repository browser.