Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4VisCommandViewerChangeCutawayPlane Class Reference

#include <G4VisCommandsViewer.hh>

+ Inheritance diagram for G4VisCommandViewerChangeCutawayPlane:

Public Member Functions

 G4VisCommandViewerChangeCutawayPlane ()
 
virtual ~G4VisCommandViewerChangeCutawayPlane ()
 
G4String GetCurrentValue (G4UIcommand *command)
 
void SetNewValue (G4UIcommand *command, G4String newValue)
 
- Public Member Functions inherited from G4VVisCommandViewer
 G4VVisCommandViewer ()
 
virtual ~G4VVisCommandViewer ()
 
- Public Member Functions inherited from G4VVisCommand
 G4VVisCommand ()
 
virtual ~G4VVisCommand ()
 
- Public Member Functions inherited from G4UImessenger
 G4UImessenger ()
 
 G4UImessenger (const G4String &path, const G4String &dsc)
 
virtual ~G4UImessenger ()
 
virtual G4String GetCurrentValue (G4UIcommand *command)
 
virtual void SetNewValue (G4UIcommand *command, G4String newValue)
 
G4bool operator== (const G4UImessenger &messenger) const
 

Additional Inherited Members

- Static Public Member Functions inherited from G4VVisCommand
static void SetVisManager (G4VisManager *)
 
- Protected Member Functions inherited from G4VVisCommandViewer
void SetViewParameters (G4VViewer *, const G4ViewParameters &)
 
void RefreshIfRequired (G4VViewer *)
 
- Protected Member Functions inherited from G4VVisCommand
void UpdateVisManagerScene (const G4String &sceneName="")
 
- Protected Member Functions inherited from G4UImessenger
G4String ItoS (G4int i)
 
G4String DtoS (G4double a)
 
G4String BtoS (G4bool b)
 
G4int StoI (G4String s)
 
G4double StoD (G4String s)
 
G4bool StoB (G4String s)
 
void AddUIcommand (G4UIcommand *newCommand)
 
void CreateDirectory (const G4String &path, const G4String &dsc)
 
template<typename T >
T * CreateCommand (const G4String &cname, const G4String &dsc)
 
- Static Protected Member Functions inherited from G4VVisCommand
static G4String ConvertToString (G4double x, G4double y, const char *unitName)
 
static void ConvertToDoublePair (const G4String &paramString, G4double &xval, G4double &yval)
 
- Protected Attributes inherited from G4UImessenger
G4UIdirectorybaseDir
 
G4String baseDirName
 
- Static Protected Attributes inherited from G4VVisCommand
static G4VisManagerfpVisManager = 0
 
static G4Colour fCurrentColour = G4Colour::White()
 
static G4Colour fCurrentTextColour = G4Colour::Blue()
 
static G4Text::Layout fCurrentTextLayout = G4Text::left
 
static G4double fCurrentLineWidth = 1.
 
static G4ModelingParameters::PVNameCopyNoPath fCurrentTouchablePath
 

Detailed Description

Definition at line 69 of file G4VisCommandsViewer.hh.

Constructor & Destructor Documentation

◆ G4VisCommandViewerChangeCutawayPlane()

G4VisCommandViewerChangeCutawayPlane::G4VisCommandViewerChangeCutawayPlane ( )

Definition at line 158 of file G4VisCommandsViewer.cc.

158 {
159 G4bool omitable;
160 fpCommand = new G4UIcommand ("/vis/viewer/changeCutawayPlane", this);
161 fpCommand -> SetGuidance("Change cutaway plane.");
162 G4UIparameter* parameter;
163 parameter = new G4UIparameter("index",'i',omitable = false);
164 parameter -> SetGuidance ("Index of plane: 0, 1, 2.");
165 fpCommand->SetParameter(parameter);
166 parameter = new G4UIparameter("x",'d',omitable = true);
167 parameter -> SetDefaultValue (0);
168 parameter -> SetGuidance ("Coordinate of point on the plane.");
169 fpCommand->SetParameter(parameter);
170 parameter = new G4UIparameter("y",'d',omitable = true);
171 parameter -> SetDefaultValue (0);
172 parameter -> SetGuidance ("Coordinate of point on the plane.");
173 fpCommand->SetParameter(parameter);
174 parameter = new G4UIparameter("z",'d',omitable = true);
175 parameter -> SetDefaultValue (0);
176 parameter -> SetGuidance ("Coordinate of point on the plane.");
177 fpCommand->SetParameter(parameter);
178 parameter = new G4UIparameter("unit",'s',omitable = true);
179 parameter -> SetDefaultValue ("m");
180 parameter -> SetGuidance ("Unit of point on the plane.");
181 fpCommand->SetParameter(parameter);
182 parameter = new G4UIparameter("nx",'d',omitable = true);
183 parameter -> SetDefaultValue (1);
184 parameter -> SetGuidance ("Component of plane normal.");
185 fpCommand->SetParameter(parameter);
186 parameter = new G4UIparameter("ny",'d',omitable = true);
187 parameter -> SetDefaultValue (0);
188 parameter -> SetGuidance ("Component of plane normal.");
189 fpCommand->SetParameter(parameter);
190 parameter = new G4UIparameter("nz",'d',omitable = true);
191 parameter -> SetDefaultValue (0);
192 parameter -> SetGuidance ("Component of plane normal.");
193 fpCommand->SetParameter(parameter);
194}
bool G4bool
Definition: G4Types.hh:67
void SetParameter(G4UIparameter *const newParameter)
Definition: G4UIcommand.hh:147

◆ ~G4VisCommandViewerChangeCutawayPlane()

G4VisCommandViewerChangeCutawayPlane::~G4VisCommandViewerChangeCutawayPlane ( )
virtual

Definition at line 196 of file G4VisCommandsViewer.cc.

196 {
197 delete fpCommand;
198}

Member Function Documentation

◆ GetCurrentValue()

G4String G4VisCommandViewerChangeCutawayPlane::GetCurrentValue ( G4UIcommand command)
virtual

Reimplemented from G4UImessenger.

Definition at line 200 of file G4VisCommandsViewer.cc.

200 {
201 return "";
202}

◆ SetNewValue()

void G4VisCommandViewerChangeCutawayPlane::SetNewValue ( G4UIcommand command,
G4String  newValue 
)
virtual

Reimplemented from G4UImessenger.

Definition at line 204 of file G4VisCommandsViewer.cc.

204 {
205
207
208 G4VViewer* viewer = fpVisManager -> GetCurrentViewer ();
209 if (!viewer) {
210 if (verbosity >= G4VisManager::errors) {
211 G4cout <<
212 "ERROR: No current viewer - \"/vis/viewer/list\" to see possibilities."
213 << G4endl;
214 }
215 return;
216 }
217
218 size_t index;
219 G4double x, y, z, nx, ny, nz;
220 G4String unit;
221 std::istringstream is (newValue);
222 is >> index >> x >> y >> z >> unit >> nx >> ny >> nz;
224 x *= F; y *= F; z *= F;
225
226 G4ViewParameters vp = viewer->GetViewParameters();
227 vp.ChangeCutawayPlane(index,
228 G4Plane3D(G4Normal3D(nx,ny,nz), G4Point3D(x,y,z)));
229 if (verbosity >= G4VisManager::confirmations) {
230 G4cout << "Cutaway planes for viewer \"" << viewer->GetName() << "\" now:";
231 const G4Planes& cutaways = vp.GetCutawayPlanes();
232 for (size_t i = 0; i < cutaways.size(); ++i)
233 G4cout << "\n " << i << ": " << cutaways[i];
234 G4cout << G4endl;
235 }
236
237 SetViewParameters(viewer, vp);
238}
HepGeom::Normal3D< G4double > G4Normal3D
Definition: G4Normal3D.hh:35
HepGeom::Plane3D< G4double > G4Plane3D
Definition: G4Plane3D.hh:37
HepGeom::Point3D< G4double > G4Point3D
Definition: G4Point3D.hh:35
double G4double
Definition: G4Types.hh:64
std::vector< G4Plane3D > G4Planes
#define G4endl
Definition: G4ios.hh:52
G4DLLIMPORT std::ostream G4cout
static G4double ValueOf(const char *unitName)
Definition: G4UIcommand.cc:288
const G4String & GetName() const
const G4ViewParameters & GetViewParameters() const
void SetViewParameters(G4VViewer *, const G4ViewParameters &)
static G4VisManager * fpVisManager
void ChangeCutawayPlane(size_t index, const G4Plane3D &cutawayPlane)
const G4Planes & GetCutawayPlanes() const
static Verbosity GetVerbosity()

The documentation for this class was generated from the following files: