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

#include <G4VisCommandsSet.hh>

+ Inheritance diagram for G4VisCommandSetTouchable:

Public Member Functions

 G4VisCommandSetTouchable ()
 
virtual ~G4VisCommandSetTouchable ()
 
G4String GetCurrentValue (G4UIcommand *command)
 
void SetNewValue (G4UIcommand *command, G4String newValue)
 
- Public Member Functions inherited from G4VVisCommand
 G4VVisCommand ()
 
virtual ~G4VVisCommand ()
 
- Public Member Functions inherited from G4UImessenger
 G4UImessenger ()=default
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
G4bool CommandsShouldBeInMaster () const
 

Additional Inherited Members

- Static Public Member Functions inherited from G4VVisCommand
static G4VisManagerGetVisManager ()
 
static void SetVisManager (G4VisManager *pVisManager)
 
static const G4ColourGetCurrentTextColour ()
 
- Protected Member Functions inherited from G4VVisCommand
void SetViewParameters (G4VViewer *viewer, const G4ViewParameters &viewParams)
 
void RefreshIfRequired (G4VViewer *viewer)
 
void InterpolateViews (G4VViewer *currentViewer, const std::vector< G4ViewParameters > &viewVector, const G4int nInterpolationPoints=50, const G4int waitTimePerPointmilliseconds=20, const G4String &exportString="")
 
void InterpolateToNewView (G4VViewer *currentViewer, const G4ViewParameters &oldVP, const G4ViewParameters &newVP, const G4int nInterpolationPoints=50, const G4int waitTimePerPointmilliseconds=20, const G4String &exportString="")
 
void Twinkle (G4VViewer *currentViewer, const G4ViewParameters &baseVP, const std::vector< std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > > &paths)
 
const G4StringConvertToColourGuidance ()
 
void ConvertToColour (G4Colour &colour, const G4String &redOrString, G4double green, G4double blue, G4double opacity)
 
G4bool ProvideValueOfUnit (const G4String &where, const G4String &unit, const G4String &category, G4double &value)
 
void CopyCameraParameters (G4ViewParameters &target, const G4ViewParameters &from)
 
void CheckSceneAndNotifyHandlers (G4Scene *=nullptr)
 
G4bool CheckView ()
 
void G4VisCommandsSceneAddUnsuccessful (G4VisManager::Verbosity verbosity)
 
void CopyGuidanceFrom (const G4UIcommand *fromCmd, G4UIcommand *toCmd, G4int startLine=0)
 
void CopyParametersFrom (const G4UIcommand *fromCmd, G4UIcommand *toCmd)
 
void DrawExtent (const G4VisExtent &)
 
- Protected Member Functions inherited from G4UImessenger
G4String ItoS (G4int i)
 
G4String LtoS (G4long l)
 
G4String DtoS (G4double a)
 
G4String BtoS (G4bool b)
 
G4int StoI (const G4String &s)
 
G4long StoL (const G4String &s)
 
G4double StoD (const G4String &s)
 
G4bool StoB (const 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 G4bool ConvertToDoublePair (const G4String &paramString, G4double &xval, G4double &yval)
 
- Protected Attributes inherited from G4UImessenger
G4UIdirectorybaseDir = nullptr
 
G4String baseDirName = ""
 
G4bool commandsShouldBeInMaster = false
 
- Static Protected Attributes inherited from G4VVisCommand
static G4VisManagerfpVisManager = nullptr
 
static G4int fCurrentArrow3DLineSegmentsPerCircle = 6
 
static G4Colour fCurrentColour = G4Colour::White()
 
static G4double fCurrentLineWidth = 1.
 
static G4Colour fCurrentTextColour = G4Colour::Blue()
 
static G4Text::Layout fCurrentTextLayout = G4Text::left
 
static G4double fCurrentTextSize = 12.
 
static G4PhysicalVolumeModel::TouchableProperties fCurrentTouchableProperties
 
static G4VisExtent fCurrentExtentForField
 
static std::vector< G4PhysicalVolumesSearchScene::FindingsfCurrrentPVFindingsForField
 
static G4bool fThereWasAViewer = false
 
static G4ViewParameters fExistingVP
 
static G4SceneTreeItem fExistingSceneTree
 

Detailed Description

Definition at line 125 of file G4VisCommandsSet.hh.

Constructor & Destructor Documentation

◆ G4VisCommandSetTouchable()

G4VisCommandSetTouchable::G4VisCommandSetTouchable ( )

Definition at line 392 of file G4VisCommandsSet.cc.

393{
394 G4bool omitable;
395 G4UIparameter* parameter;
396 fpCommand = new G4UIcommand("/vis/set/touchable", this);
397 fpCommand->SetGuidance
398 ("Defines touchable for future \"/vis/touchable/set/\" commands.");
399 fpCommand->SetGuidance
400 ("Please provide a list of space-separated physical volume names and"
401 "\ncopy number pairs starting at the world volume, e.g:"
402 "\n /vis/set/touchable World 0 Envelope 0 Shape1 0"
403 "\n(To get list of touchables, use \"/vis/drawTree\")"
404 "\n(To save, use \"/vis/viewer/save\")");
405 parameter = new G4UIparameter ("list", 's', omitable = true);
406 parameter->SetGuidance
407 ("List of physical volume names and copy number pairs");
408 fpCommand->SetParameter (parameter);
409}
bool G4bool
Definition G4Types.hh:86
void SetGuidance(const char *theGuidance)

◆ ~G4VisCommandSetTouchable()

G4VisCommandSetTouchable::~G4VisCommandSetTouchable ( )
virtual

Definition at line 411 of file G4VisCommandsSet.cc.

412{
413 delete fpCommand;
414}

Member Function Documentation

◆ GetCurrentValue()

G4String G4VisCommandSetTouchable::GetCurrentValue ( G4UIcommand * command)
virtual

Reimplemented from G4UImessenger.

Definition at line 416 of file G4VisCommandsSet.cc.

417{
418 return G4String();
419}

◆ SetNewValue()

void G4VisCommandSetTouchable::SetNewValue ( G4UIcommand * command,
G4String newValue )
virtual

Reimplemented from G4UImessenger.

Definition at line 421 of file G4VisCommandsSet.cc.

422{
423 G4VisManager::Verbosity verbosity = fpVisManager->GetVerbosity();
424
425 if (newValue.empty()) {
426 fCurrentTouchableProperties = G4PhysicalVolumeModel::TouchableProperties();
427 if (verbosity >= G4VisManager::confirmations) {
428 G4cout <<
429 "Current touchable reset to: " << fCurrentTouchableProperties.fTouchablePath
430 << G4endl;
431 }
432 return;
433 }
434
435 G4ModelingParameters::PVNameCopyNoPath currentTouchablePath;
436
437 // Algorithm from Josuttis p.476.
438 G4String::size_type iBegin, iEnd;
439 iBegin = newValue.find_first_not_of(' ');
440 while (iBegin != G4String::npos) {
441 iEnd = newValue.find_first_of(' ',iBegin);
442 if (iEnd == G4String::npos) {
443 iEnd = newValue.length();
444 }
445 const G4String& name(newValue.substr(iBegin,iEnd-iBegin));
446 iBegin = newValue.find_first_not_of(' ',iEnd);
447 if (iBegin == G4String::npos) {
448 if (verbosity >= G4VisManager::warnings) {
449 G4warn <<
450 "WARNING: G4VisCommandSetTouchable::SetNewValue"
451 "\n A pair not found. (There should be an even number of parameters.)"
452 "\n Command ignored."
453 << G4endl;
454 return;
455 }
456 }
457 iEnd = newValue.find_first_of(' ',iBegin);
458 if (iEnd == G4String::npos) {
459 iEnd = newValue.length();
460 }
461 G4int copyNo;
462 std::istringstream iss(newValue.substr(iBegin,iEnd-iBegin));
463 if (!(iss >> copyNo)) {
464 if (verbosity >= G4VisManager::warnings) {
465 G4warn <<
466 "WARNING: G4VisCommandSetTouchable::SetNewValue"
467 "\n Error reading copy number - it was not numeric?"
468 "\n Command ignored."
469 << G4endl;
470 return;
471 }
472 }
473 currentTouchablePath.push_back
474 (G4ModelingParameters::PVNameCopyNo(name,copyNo));
475 iBegin = newValue.find_first_not_of(' ',iEnd);
476 }
477
478 // Check validity
479 G4bool successful = false;
480 G4TransportationManager* transportationManager =
482 size_t nWorlds = transportationManager->GetNoWorlds();
483 std::vector<G4VPhysicalVolume*>::iterator iterWorld =
484 transportationManager->GetWorldsIterator();
485 for (size_t i = 0; i < nWorlds; ++i, ++iterWorld) {
486 G4PhysicalVolumeModel pvModel (*iterWorld); // Unlimited depth.
487 G4ModelingParameters mp; // Default - no culling.
488 pvModel.SetModelingParameters (&mp);
489 G4TouchablePropertiesScene scene (&pvModel,currentTouchablePath);
490 pvModel.DescribeYourselfTo (scene); // Initiate geometry tree traversal.
491 if (scene.GetFoundTouchableProperties().fpTouchablePV) {
492 successful = true;
493 fCurrentTouchableProperties = scene.GetFoundTouchableProperties();
494 break; // Found, so no need to scan more worlds.
495 }
496 }
497
498 if (successful) {
499 if (verbosity >= G4VisManager::confirmations) {
500 G4cout <<
501 "Current touchable: " << fCurrentTouchableProperties.fTouchablePath
502 << G4endl;
503 return;
504 }
505 } else {
506 if (verbosity >= G4VisManager::warnings) {
507 G4warn <<
508 "WARNING: G4VisCommandSetTouchable::SetNewValue"
509 "\n Touchable not found."
510 << G4endl;
511 return;
512 }
513 }
514}
#define G4warn
Definition G4Scene.cc:41
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
std::vector< PVNameCopyNo > PVNameCopyNoPath
static G4TransportationManager * GetTransportationManager()
std::vector< G4VPhysicalVolume * >::iterator GetWorldsIterator()
std::size_t GetNoWorlds() const
static G4VisManager * fpVisManager
static G4PhysicalVolumeModel::TouchableProperties fCurrentTouchableProperties
const char * name(G4int ptype)

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