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

#include <G4VisCommandsViewer.hh>

+ Inheritance diagram for G4VisCommandViewerInterpolate:

Public Member Functions

 G4VisCommandViewerInterpolate ()
 
virtual ~G4VisCommandViewerInterpolate ()
 
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 209 of file G4VisCommandsViewer.hh.

Constructor & Destructor Documentation

◆ G4VisCommandViewerInterpolate()

G4VisCommandViewerInterpolate::G4VisCommandViewerInterpolate ( )

Definition at line 1265 of file G4VisCommandsViewer.cc.

1265 {
1266 G4bool omitable;
1267 fpCommand = new G4UIcommand ("/vis/viewer/interpolate", this);
1268 fpCommand -> SetGuidance
1269 ("Interpolate views defined by the first argument, which can contain "
1270 "Unix-shell-style pattern matching characters such as '*', '?' and '[' "
1271 "- see \"man sh\" and look for \"Pattern Matching\". The contents "
1272 "of each file are assumed to be \"/vis/viewer\" commands "
1273 "that specify a particular view. The files are processed in alphanumeric "
1274 "order of filename. The files may be written by hand or produced by the "
1275 "\"/vis/viewer/save\" command.");
1276 fpCommand -> SetGuidance
1277 ("The default is to search the working directory for files with a .g4view "
1278 "extension. Another procedure is to assemble view files in a subdirectory, "
1279 "e.g., \"myviews\"; then they can be interpolated with\n"
1280 "\"/vis/viewer/interpolate myviews\".");
1281 fpCommand -> SetGuidance
1282 ("To export interpolated views to file for a future possible movie, "
1283 "write \"export\" as 5th parameter (OpenGL only).");
1284 G4UIparameter* parameter;
1285 parameter = new G4UIparameter("pattern", 's', omitable = true);
1286 parameter -> SetGuidance("Pattern that defines the view files.");
1287 parameter -> SetDefaultValue("*.g4view");
1288 fpCommand -> SetParameter(parameter);
1289 parameter = new G4UIparameter("no-of-points", 'i', omitable = true);
1290 parameter -> SetGuidance ("Number of interpolation points per interval.");
1291 parameter -> SetDefaultValue(50);
1292 fpCommand -> SetParameter(parameter);
1293 parameter = new G4UIparameter("wait-time", 's', omitable = true);
1294 parameter -> SetGuidance("Wait time per interpolated point");
1295 parameter -> SetDefaultValue("20.");
1296 fpCommand -> SetParameter(parameter);
1297 parameter = new G4UIparameter("time-unit", 's', omitable = true);
1298 parameter -> SetDefaultValue("millisecond");
1299 fpCommand -> SetParameter (parameter);
1300 parameter = new G4UIparameter("export", 's', omitable = true);
1301 parameter -> SetDefaultValue("no");
1302 fpCommand -> SetParameter (parameter);
1303}
bool G4bool
Definition G4Types.hh:86

◆ ~G4VisCommandViewerInterpolate()

G4VisCommandViewerInterpolate::~G4VisCommandViewerInterpolate ( )
virtual

Definition at line 1305 of file G4VisCommandsViewer.cc.

1305 {
1306 delete fpCommand;
1307}

Member Function Documentation

◆ GetCurrentValue()

G4String G4VisCommandViewerInterpolate::GetCurrentValue ( G4UIcommand * command)
virtual

Reimplemented from G4UImessenger.

Definition at line 1309 of file G4VisCommandsViewer.cc.

1309 {
1310 return "";
1311}

◆ SetNewValue()

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

Reimplemented from G4UImessenger.

Definition at line 1313 of file G4VisCommandsViewer.cc.

1313 {
1314
1315 G4VisManager::Verbosity verbosity = fpVisManager->GetVerbosity();
1316
1317 G4VViewer* currentViewer = fpVisManager->GetCurrentViewer();
1318 if (!currentViewer) {
1319 if (verbosity >= G4VisManager::errors) {
1320 G4warn <<
1321 "ERROR: G4VisCommandViewerInterpolate::SetNewValue: no current viewer."
1322 << G4endl;
1323 }
1324 return;
1325 }
1326
1327 G4String pattern;
1328 G4int nInterpolationPoints;
1329 G4String waitTimePerPointString;
1330 G4String timeUnit;
1331 G4String exportString;
1332
1333 std::istringstream iss (newValue);
1334 iss
1335 >> pattern
1336 >> nInterpolationPoints
1337 >> waitTimePerPointString
1338 >> timeUnit
1339 >> exportString;
1340 G4String waitTimePerPointDimString(waitTimePerPointString + ' ' + timeUnit);
1341 const G4double waitTimePerPoint =
1342 G4UIcommand::ConvertToDimensionedDouble(waitTimePerPointDimString.c_str());
1343 G4int waitTimePerPointmilliseconds = waitTimePerPoint/millisecond;
1344 if (waitTimePerPointmilliseconds < 0) waitTimePerPointmilliseconds = 0;
1345
1346 G4UImanager* uiManager = G4UImanager::GetUIpointer();
1347
1348 // Save current view parameters
1349 G4ViewParameters saveVP = currentViewer->GetViewParameters();
1350
1351 // Save current verbosities
1352 G4VisManager::Verbosity keepVisVerbosity = fpVisManager->GetVerbosity();
1353 G4int keepUIVerbosity = uiManager->GetVerboseLevel();
1354
1355 // Set verbosities for this operation
1356 fpVisManager->SetVerboseLevel(G4VisManager::errors);
1357 uiManager->SetVerboseLevel(0);
1358
1359 // Switch off auto-refresh while we read in the view files (it will be
1360 // restored later). Note: the view files do not set auto-refresh.
1361 G4ViewParameters non_auto = saveVP;
1362 non_auto.SetAutoRefresh(false);
1363 currentViewer->SetViewParameters(non_auto);
1364
1365 const G4int safety = 99;
1366 G4int safetyCount = 0;
1367 G4fs::path pathPattern = pattern.c_str();
1368
1369 // Parent path - add "./" for empty directory
1370 G4String parentPathString
1371 (pathPattern.parent_path().string().length() ?
1372 pathPattern.parent_path().string() :
1373 std::string("./"));
1374 G4fs::path parentPath = parentPathString.c_str();
1375
1376 // Fill selected paths
1377 std::set<G4fs::path> paths; // Use std::set to ensure order
1378
1379 if (G4fs::is_directory(pathPattern)) {
1380
1381 // The user has specified a directory. Find all files.
1382 for (const auto& path: G4fs::directory_iterator(pathPattern)) {
1383 if (safetyCount++ >= safety) break;
1384 paths.insert(path);
1385 }
1386
1387 } else {
1388
1389 // Assume user has specified a Unix "glob" pattern in leaf
1390 // Default pattern is *.g4view, which translates to ^.*\\.g4view
1391 // Convert pattern into a regexp
1392 G4String regexp_pattern("^");
1393 for (G4int i = 0; i < (G4int)pattern.length(); ++i) {
1394 if (pattern[i] == '.') {
1395 regexp_pattern += "\\.";
1396 } else if (pattern[i] == '*') {
1397 regexp_pattern += ".*";
1398 } else if (pattern[i] == '?') {
1399 regexp_pattern += "(.{1,1})";
1400 } else {
1401 regexp_pattern += pattern[i];
1402 }
1403 }
1404 std::regex regexp(regexp_pattern, std::regex_constants::basic | std::regex_constants::icase);
1405
1406 for (const auto& path: G4fs::directory_iterator(parentPath)) {
1407 const auto& pathname = path.path().relative_path().string();
1408 if (std::regex_match(pathname, regexp)) {
1409 if (safetyCount++ >= safety) break;
1410 paths.insert(path);
1411 }
1412 }
1413 }
1414
1415 if (safetyCount > safety) {
1416 if (verbosity >= G4VisManager::errors) {
1417 G4warn <<
1418 "/vis/viewer/interpolate:"
1419 "\n the number of way points has been limited to the maximum currently allowed: "
1420 << safety << G4endl;
1421 }
1422 }
1423
1424 // Fill view vector of way points
1425 std::vector<G4ViewParameters> viewVector;
1426 for (const auto& path: paths) {
1427 uiManager->ApplyCommand("/control/execute " + path.relative_path().string());
1428 G4ViewParameters vp = currentViewer->GetViewParameters();
1429 // Set original auto-refresh status.
1430 vp.SetAutoRefresh(saveVP.IsAutoRefresh());
1431 viewVector.push_back(vp);
1432 }
1433
1435 (currentViewer,viewVector,
1436 nInterpolationPoints,waitTimePerPointmilliseconds,exportString);
1437
1438 // Restore original verbosities
1439 uiManager->SetVerboseLevel(keepUIVerbosity);
1440 fpVisManager->SetVerboseLevel(keepVisVerbosity);
1441
1442 // Restore original view parameters
1443 currentViewer->SetViewParameters(saveVP);
1444 currentViewer->RefreshView();
1445 if (verbosity >= G4VisManager::confirmations) {
1446 G4cout << "Viewer \"" << currentViewer -> GetName () << "\""
1447 << " restored." << G4endl;
1448 }
1449}
#define G4warn
Definition G4Scene.cc:41
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
static G4double ConvertToDimensionedDouble(const char *st)
G4int ApplyCommand(const char *aCommand)
G4int GetVerboseLevel() const
static G4UImanager * GetUIpointer()
void SetVerboseLevel(G4int val)
const G4ViewParameters & GetViewParameters() const
void SetViewParameters(const G4ViewParameters &vp)
Definition G4VViewer.cc:129
void RefreshView()
void InterpolateViews(G4VViewer *currentViewer, const std::vector< G4ViewParameters > &viewVector, const G4int nInterpolationPoints=50, const G4int waitTimePerPointmilliseconds=20, const G4String &exportString="")
static G4VisManager * fpVisManager
void SetAutoRefresh(G4bool)
G4bool IsAutoRefresh() const

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