Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
G4VVisCommand.cc
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$
28
29// Base class for visualization commands - John Allison 9th August 1998
30// It is really a messenger - we have one command per messenger.
31
32#include "G4VVisCommand.hh"
33
34#include "G4UIcommand.hh"
35#include "G4UImanager.hh"
36#include "G4UnitsTable.hh"
37#include <sstream>
38
43// Not yet used: G4VisAttributes::LineStyle G4VVisCommand::fCurrentLineStyle = G4VisAttributes::unbroken;
44// Not yet used: G4VMarker::FillStyle G4VVisCommand::fCurrentFillStyle = G4VMarker::filled;
45// Not yet used: G4VMarker::SizeType G4VVisCommand::fCurrentSizeType = G4VMarker::screen;
47
49
51
53
55(G4double x, G4double y, const char * unitName)
56{
57 G4double uv = G4UIcommand::ValueOf(unitName);
58
59 std::ostringstream oss;
60 oss << x/uv << " " << y/uv << " " << unitName;
61 return oss.str();
62}
63
65 G4double& xval,
66 G4double& yval)
67{
68 G4double x, y;
69 char unts[30];
70
71 std::istringstream is(paramString);
72 is >> x >> y >> unts;
73 G4String unt = unts;
74
75 xval = x*G4UIcommand::ValueOf(unt);
76 yval = y*G4UIcommand::ValueOf(unt);
77
78 return;
79}
80
82(const G4String& sceneName) {
83
85
86 const G4SceneList& sceneList = fpVisManager -> GetSceneList ();
87
88 G4int iScene, nScenes = sceneList.size ();
89 for (iScene = 0; iScene < nScenes; iScene++) {
90 if (sceneList [iScene] -> GetName () == sceneName) break;
91 }
92
93 G4Scene* pScene = 0; // Zero unless scene has been found...
94 if (iScene < nScenes) {
95 pScene = sceneList [iScene];
96 }
97
98 if (!pScene) {
99 if (verbosity >= G4VisManager::warnings) {
100 G4cout << "WARNING: Scene \"" << sceneName << "\" not found."
101 << G4endl;
102 }
103 return;
104 }
105
106 fpVisManager -> SetCurrentScene (pScene);
107
108 // Scene has changed. Refresh viewers of all sceneHandlers using
109 // this scene...
110 G4VViewer* pViewer = fpVisManager -> GetCurrentViewer();
111 G4VSceneHandler* sceneHandler = fpVisManager -> GetCurrentSceneHandler();
112 if (sceneHandler && sceneHandler -> GetScene ()) {
113 if (pViewer) {
115 ApplyCommand ("/vis/scene/notifyHandlers");
116 }
117 }
118}
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
#define G4endl
Definition: G4ios.hh:52
G4DLLIMPORT std::ostream G4cout
static G4Colour White()
Definition: G4Colour.hh:142
static G4Colour Blue()
Definition: G4Colour.hh:149
std::vector< PVNameCopyNo > PVNameCopyNoPath
Layout
Definition: G4Text.hh:77
@ left
Definition: G4Text.hh:77
static G4double ValueOf(const char *unitName)
Definition: G4UIcommand.cc:288
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:51
static G4Colour fCurrentTextColour
static G4ModelingParameters::PVNameCopyNoPath fCurrentTouchablePath
static G4VisManager * fpVisManager
static void ConvertToDoublePair(const G4String &paramString, G4double &xval, G4double &yval)
static G4Text::Layout fCurrentTextLayout
virtual ~G4VVisCommand()
static G4double fCurrentLineWidth
static G4String ConvertToString(G4double x, G4double y, const char *unitName)
static G4Colour fCurrentColour
void UpdateVisManagerScene(const G4String &sceneName="")
static Verbosity GetVerbosity()