Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
G4VisCommandSceneAddUserAction Class Reference

#include <G4VisCommandsSceneAdd.hh>

Inheritance diagram for G4VisCommandSceneAddUserAction:
G4VVisCommandScene G4VVisCommand G4UImessenger

Public Member Functions

 G4VisCommandSceneAddUserAction ()
 
virtual ~G4VisCommandSceneAddUserAction ()
 
G4String GetCurrentValue (G4UIcommand *command)
 
void SetNewValue (G4UIcommand *command, G4String newValue)
 
- Public Member Functions inherited from G4VVisCommandScene
 G4VVisCommandScene ()
 
virtual ~G4VVisCommandScene ()
 
- Public Member Functions inherited from G4VVisCommand
 G4VVisCommand ()
 
virtual ~G4VVisCommand ()
 
- Public Member Functions inherited from G4UImessenger
 G4UImessenger ()
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
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 G4VVisCommandScene
G4String CurrentSceneName ()
 
- 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, G4bool commandsToBeBroadcasted=true)
 
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 379 of file G4VisCommandsSceneAdd.hh.

Constructor & Destructor Documentation

G4VisCommandSceneAddUserAction::G4VisCommandSceneAddUserAction ( )

Definition at line 2342 of file G4VisCommandsSceneAdd.cc.

2342  {
2343  G4bool omitable;
2344  fpCommand = new G4UIcmdWithAString("/vis/scene/add/userAction",this);
2345  fpCommand -> SetGuidance
2346  ("Add named Vis User Action to current scene.");
2347  fpCommand -> SetGuidance
2348  ("Attempts to match search string to name of action - use unique sub-string.");
2349  fpCommand -> SetGuidance
2350  ("(Use /vis/list to see names of registered actions.)");
2351  fpCommand -> SetGuidance
2352  ("If name == \"all\" (default), all actions are added.");
2353  fpCommand -> SetParameterName("action-name", omitable = true);
2354  fpCommand -> SetDefaultValue("all");
2355 }
bool G4bool
Definition: G4Types.hh:79
G4VisCommandSceneAddUserAction::~G4VisCommandSceneAddUserAction ( )
virtual

Definition at line 2357 of file G4VisCommandsSceneAdd.cc.

2357  {
2358  delete fpCommand;
2359 }

Member Function Documentation

G4String G4VisCommandSceneAddUserAction::GetCurrentValue ( G4UIcommand command)
virtual

Reimplemented from G4UImessenger.

Definition at line 2361 of file G4VisCommandsSceneAdd.cc.

2361  {
2362  return "";
2363 }
void G4VisCommandSceneAddUserAction::SetNewValue ( G4UIcommand command,
G4String  newValue 
)
virtual

Reimplemented from G4UImessenger.

Definition at line 2366 of file G4VisCommandsSceneAdd.cc.

References G4VisManager::errors, G4cout, G4endl, and G4VisManager::warnings.

2366  {
2367 
2369 
2370  G4Scene* pScene = fpVisManager->GetCurrentScene();
2371  if (!pScene) {
2372  if (verbosity >= G4VisManager::errors) {
2373  G4cout << "ERROR: No current scene. Please create one." << G4endl;
2374  }
2375  return;
2376  }
2377 
2378  G4bool any = false;
2379 
2380  const std::vector<G4VisManager::UserVisAction>& runDurationUserVisActions =
2382  for (size_t i = 0; i < runDurationUserVisActions.size(); i++) {
2383  const G4String& name = runDurationUserVisActions[i].fName;
2384  G4VUserVisAction* visAction = runDurationUserVisActions[i].fpUserVisAction;
2385  if (newValue == "all" || name.find(newValue) != std::string::npos) {
2386  any = true;
2387  AddVisAction(name,visAction,pScene,runDuration,verbosity);
2388  }
2389  }
2390 
2391  const std::vector<G4VisManager::UserVisAction>& endOfEventUserVisActions =
2393  for (size_t i = 0; i < endOfEventUserVisActions.size(); i++) {
2394  const G4String& name = endOfEventUserVisActions[i].fName;
2395  G4VUserVisAction* visAction = endOfEventUserVisActions[i].fpUserVisAction;
2396  if (newValue == "all" || name.find(newValue) != std::string::npos) {
2397  any = true;
2398  AddVisAction(name,visAction,pScene,endOfEvent,verbosity);
2399  }
2400  }
2401 
2402  const std::vector<G4VisManager::UserVisAction>& endOfRunUserVisActions =
2404  for (size_t i = 0; i < endOfRunUserVisActions.size(); i++) {
2405  const G4String& name = endOfRunUserVisActions[i].fName;
2406  G4VUserVisAction* visAction = endOfRunUserVisActions[i].fpUserVisAction;
2407  if (newValue == "all" || name.find(newValue) != std::string::npos) {
2408  any = true;
2409  AddVisAction(name,visAction,pScene,endOfRun,verbosity);
2410  }
2411  }
2412 
2413  if (!any) {
2414  if (verbosity >= G4VisManager::warnings) {
2415  G4cout << "WARNING: No User Vis Action registered." << G4endl;
2416  }
2417  return;
2418  }
2419 
2420  const G4String& currentSceneName = pScene -> GetName ();
2421  UpdateVisManagerScene (currentSceneName);
2422 }
void UpdateVisManagerScene(const G4String &sceneName="")
const XML_Char * name
G4GLOB_DLL std::ostream G4cout
bool G4bool
Definition: G4Types.hh:79
const std::vector< UserVisAction > & GetEndOfEventUserVisActions() const
const std::vector< UserVisAction > & GetRunDurationUserVisActions() const
static Verbosity GetVerbosity()
#define G4endl
Definition: G4ios.hh:61
const std::vector< UserVisAction > & GetEndOfRunUserVisActions() const
G4Scene * GetCurrentScene() const
static G4VisManager * fpVisManager

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