Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // 23 // >> 24 // $Id: G4VisManager.icc,v 1.11 2005/11/21 05:45:42 tinslay Exp $ >> 25 // GEANT4 tag $Name: geant4-08-00 $ 27 // 26 // 28 // 27 // 29 // GEANT4 Visualization Manager - John Allison 28 // GEANT4 Visualization Manager - John Allison 02/Jan/1996. 30 29 31 inline void G4VisManager::Initialize () { 30 inline void G4VisManager::Initialize () { 32 Initialise (); 31 Initialise (); 33 } 32 } 34 33 35 inline G4bool G4VisManager::IsEnabled () const << 34 inline G4VisExtent G4VisManager::GetUserActionExtent () const { 36 return GetConcreteInstance(); << 35 return fUserVisActionExtent; 37 } 36 } 38 37 39 inline const std::vector<G4VisManager::UserVis << 38 inline G4VUserVisAction* G4VisManager::GetUserAction () const { 40 G4VisManager::GetRunDurationUserVisActions () << 39 return fpUserVisAction; 41 return fRunDurationUserVisActions; << 42 } << 43 << 44 inline const std::vector<G4VisManager::UserVis << 45 G4VisManager::GetEndOfEventUserVisActions () c << 46 return fEndOfEventUserVisActions; << 47 } << 48 << 49 inline const std::vector<G4VisManager::UserVis << 50 G4VisManager::GetEndOfRunUserVisActions () con << 51 return fEndOfRunUserVisActions; << 52 } << 53 << 54 inline const std::map<G4VUserVisAction*,G4VisE << 55 G4VisManager::GetUserVisActionExtents () const << 56 return fUserVisActionExtents; << 57 } 40 } 58 41 59 inline G4VSceneHandler* G4VisManager::GetCurre 42 inline G4VSceneHandler* G4VisManager::GetCurrentSceneHandler () const { 60 return fpSceneHandler; 43 return fpSceneHandler; 61 } 44 } 62 45 63 inline G4VViewer* G4VisManager::GetCurrentView 46 inline G4VViewer* G4VisManager::GetCurrentViewer () const { 64 return fpViewer; 47 return fpViewer; 65 } 48 } 66 49 67 inline G4Scene* G4VisManager::GetCurrentScene 50 inline G4Scene* G4VisManager::GetCurrentScene () const { 68 return fpScene; 51 return fpScene; 69 } 52 } 70 53 71 inline const G4SceneHandlerList& 54 inline const G4SceneHandlerList& 72 G4VisManager::GetAvailableSceneHandlers () con 55 G4VisManager::GetAvailableSceneHandlers () const { 73 return fAvailableSceneHandlers; 56 return fAvailableSceneHandlers; 74 } 57 } 75 58 76 inline const G4SceneList& G4VisManager::GetSce 59 inline const G4SceneList& G4VisManager::GetSceneList () const { 77 return fSceneList; 60 return fSceneList; 78 } 61 } 79 62 80 inline G4VGraphicsSystem* 63 inline G4VGraphicsSystem* 81 G4VisManager::GetCurrentGraphicsSystem () cons 64 G4VisManager::GetCurrentGraphicsSystem () const { 82 return fpGraphicsSystem; 65 return fpGraphicsSystem; 83 } 66 } 84 67 85 inline G4bool G4VisManager::GetTransientsDrawn << 68 inline G4VisManager::Verbosity G4VisManager::GetVerbosity () const { 86 return fTransientsDrawnThisEvent; << 69 return fVerbosity; 87 } << 88 << 89 inline G4bool G4VisManager::GetTransientsDrawn << 90 return fTransientsDrawnThisRun; << 91 } << 92 << 93 inline G4bool G4VisManager::GetDrawEventOnlyIf << 94 return fDrawEventOnlyIfToBeKept; << 95 } << 96 << 97 inline const G4Event* G4VisManager::GetRequest << 98 return fpRequestedEvent; << 99 } << 100 << 101 inline G4int G4VisManager::GetNKeepForPostProc << 102 return fNKeepForPostProcessingRequests; << 103 } << 104 << 105 inline G4int G4VisManager::GetNKeepTheEventReq << 106 return fNKeepTheEventRequests; << 107 } 70 } 108 71 109 inline G4bool G4VisManager::GetReviewingKeptEv << 72 inline void G4VisManager::GetWindowSizeHint 110 return fReviewingKeptEvents; << 73 (G4int& xHint, G4int& yHint) const { >> 74 xHint = fWindowSizeHintX; yHint = fWindowSizeHintY; 111 } 75 } 112 76 113 inline G4bool G4VisManager::GetAbortReviewKept << 77 inline const G4String& G4VisManager::GetXGeometryString () const { 114 return fAbortReviewKeptEvents; << 78 return fXGeometryString; 115 } 79 } 116 80 117 inline G4bool G4VisManager::GetReviewingPlots( << 81 inline void G4VisManager::SetUserActionExtent (const G4VisExtent& extent) { 118 return fReviewingPlots; << 82 fUserVisActionExtent = extent; 119 } 83 } 120 84 121 inline G4bool G4VisManager::GetAbortReviewPlot << 85 inline void G4VisManager::SetCurrentScene (G4Scene* pScene) { 122 return fAbortReviewPlots; << 86 fpScene = pScene; 123 } << 124 << 125 inline const G4ViewParameters& G4VisManager::G << 126 return fDefaultViewParameters; << 127 } << 128 << 129 inline G4int G4VisManager::GetMaxEventQueueSiz << 130 return fMaxEventQueueSize; << 131 } << 132 << 133 inline G4bool G4VisManager::GetWaitOnEventQueu << 134 return fWaitOnEventQueueFull; << 135 } << 136 << 137 inline const G4String& G4VisManager::GetDefaul << 138 return fDefaultGraphicsSystemName; << 139 } << 140 << 141 inline const G4String& G4VisManager::GetDefaul << 142 return fDefaultXGeometryString; << 143 } << 144 << 145 inline const G4String& G4VisManager::GetDefaul << 146 return fDefaultGraphicsSystemBasis; << 147 } << 148 << 149 inline const G4String& G4VisManager::GetDefaul << 150 return fDefaultXGeometryStringBasis; << 151 } 87 } 152 88 153 inline G4SceneList& G4VisManager::SetSceneList 89 inline G4SceneList& G4VisManager::SetSceneList () { 154 return fSceneList; 90 return fSceneList; 155 } 91 } 156 92 157 inline G4SceneHandlerList& G4VisManager::SetAv 93 inline G4SceneHandlerList& G4VisManager::SetAvailableSceneHandlers () { 158 return fAvailableSceneHandlers; 94 return fAvailableSceneHandlers; 159 } 95 } 160 96 161 inline void G4VisManager::SetVerboseLevel (G4V 97 inline void G4VisManager::SetVerboseLevel (G4VisManager::Verbosity verbosity) { 162 fVerbosity = verbosity; 98 fVerbosity = verbosity; 163 } 99 } 164 100 165 inline void G4VisManager::SetEventRefreshing ( << 101 inline void G4VisManager::SetWindowSizeHint (G4int xHint, G4int yHint) { 166 fEventRefreshing = eventRefreshing; << 102 fWindowSizeHintX = xHint; fWindowSizeHintY = yHint; >> 103 } >> 104 >> 105 inline void G4VisManager::SetXGeometryString (const G4String& geomString) { >> 106 fXGeometryString = geomString; 167 } 107 } 168 108 169 inline void G4VisManager::RegisterMessenger(G4 109 inline void G4VisManager::RegisterMessenger(G4UImessenger* msgr) 170 { 110 { 171 fMessengerList.push_back(msgr); 111 fMessengerList.push_back(msgr); 172 } 112 } 173 113 174 inline void G4VisManager::SetTransientsDrawnTh << 175 fTransientsDrawnThisRun = b; << 176 } << 177 << 178 inline void G4VisManager::SetTransientsDrawnTh << 179 fTransientsDrawnThisEvent = b; << 180 } << 181 << 182 inline void G4VisManager::SetDrawEventOnlyIfTo << 183 fDrawEventOnlyIfToBeKept = b; << 184 } << 185 << 186 inline void G4VisManager::SetRequestedEvent (c << 187 fpRequestedEvent = event; << 188 } << 189 << 190 inline void G4VisManager::SetReviewingKeptEven << 191 fReviewingKeptEvents = reveiwing; << 192 } << 193 << 194 inline void G4VisManager::SetAbortReviewKeptEv << 195 fAbortReviewKeptEvents = abort; << 196 } << 197 << 198 inline void G4VisManager::SetReviewingPlots (G << 199 fReviewingPlots = reveiwing; << 200 } << 201 << 202 inline void G4VisManager::SetAbortReviewPlots << 203 fAbortReviewPlots = abort; << 204 } << 205 << 206 inline void G4VisManager::SetDefaultViewParame << 207 (const G4ViewParameters& vp) { << 208 fDefaultViewParameters = vp; << 209 } << 210 << 211 inline void G4VisManager::SetMaxEventQueueSize << 212 fMaxEventQueueSize = size; << 213 } << 214 << 215 inline void G4VisManager::SetWaitOnEventQueueF << 216 fWaitOnEventQueueFull = wait; << 217 } << 218 << 219 inline void G4VisManager::SetDefaultGraphicsSy << 220 fDefaultGraphicsSystemName = name; << 221 } << 222 << 223 inline void G4VisManager::SetDefaultXGeometryS << 224 fDefaultXGeometryString = string; << 225 } << 226 << 227 inline void G4VisManager::SetDefaultGraphicsSy << 228 fDefaultGraphicsSystemBasis = basis; << 229 } << 230 << 231 inline void G4VisManager::SetDefaultXGeometryS << 232 fDefaultXGeometryStringBasis = basis; << 233 } << 234 114