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

#include <G4VisCommands.hh>

+ Inheritance diagram for G4VisCommandReviewKeptEvents:

Public Member Functions

 G4VisCommandReviewKeptEvents ()
 
virtual ~G4VisCommandReviewKeptEvents ()
 
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 111 of file G4VisCommands.hh.

Constructor & Destructor Documentation

◆ G4VisCommandReviewKeptEvents()

G4VisCommandReviewKeptEvents::G4VisCommandReviewKeptEvents ( )

Definition at line 270 of file G4VisCommands.cc.

271{
272 G4bool omitable;
273
274 fpCommand = new G4UIcmdWithAString("/vis/reviewKeptEvents", this);
275 fpCommand -> SetGuidance("Review kept events.");
276 fpCommand -> SetGuidance
277 ("If a macro file is specified, it is executed for each event.");
278 fpCommand -> SetGuidance(
279 "If a macro file is not specified, each event is drawn to the current"
280 "\nviewer. After each event, the session is paused. The user may issue"
281 "\nany allowed command. Then enter \"cont[inue]\" to continue to the next"
282 "\nevent."
283 "\nUseful commands might be:"
284 "\n \"/vis/viewer/...\" to change the view (zoom, set/viewpoint,...)."
285 "\n \"/vis/ogl/export\" to get hard copy."
286 "\n \"/vis/open\" to get alternative viewer."
287 "\n \"/vis/abortReviewKeptEvents\", then \"cont[inue]\", to abort.");
288 fpCommand -> SetParameterName("macro-file-name", omitable=true);
289 fpCommand -> SetDefaultValue("");
290}
bool G4bool
Definition G4Types.hh:86

◆ ~G4VisCommandReviewKeptEvents()

G4VisCommandReviewKeptEvents::~G4VisCommandReviewKeptEvents ( )
virtual

Definition at line 292 of file G4VisCommands.cc.

293{
294 delete fpCommand;
295}

Member Function Documentation

◆ GetCurrentValue()

G4String G4VisCommandReviewKeptEvents::GetCurrentValue ( G4UIcommand * command)
virtual

Reimplemented from G4UImessenger.

Definition at line 297 of file G4VisCommands.cc.

298{
299 return "";
300}

◆ SetNewValue()

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

Reimplemented from G4UImessenger.

Definition at line 302 of file G4VisCommands.cc.

303{
304 if (fpVisManager->GetReviewingKeptEvents()) {
305 G4warn <<
306 "\"/vis/reviewKeptEvents\" not allowed within an already started review."
307 "\n No action taken."
308 << G4endl;
309 return;
310 }
311
312 G4String& macroFileName = newValue;
313 G4VisManager::Verbosity verbosity = fpVisManager->GetVerbosity();
314
315 G4RunManager* runManager = G4RunManagerFactory::GetMasterRunManager();
316 const G4Run* run = runManager ? runManager->GetCurrentRun() : nullptr;
317 const std::vector<const G4Event*>* events =
318 run ? run->GetEventVector() : nullptr;
319 size_t nKeptEvents = events ? events->size() : 0;
320
321 if (!nKeptEvents) {
322 if (verbosity >= G4VisManager::errors) {
323 G4warn <<
324 "ERROR: G4VisCommandReviewKeptEvents::SetNewValue: No kept events,"
325 "\n or kept events not accessible."
326 << G4endl;
327 }
328 return;
329 }
330
331 G4VViewer* viewer = fpVisManager->GetCurrentViewer();
332 if (!viewer) {
333 if (verbosity >= G4VisManager::errors) {
334 G4warn <<
335 "ERROR: No current viewer - \"/vis/viewer/list\" to see possibilities."
336 << G4endl;
337 }
338 return;
339 }
340
341 G4Scene* pScene = fpVisManager->GetCurrentScene();
342 if (!pScene) {
343 if (verbosity >= G4VisManager::errors) {
344 G4warn << "ERROR: No current scene. Please create one." << G4endl;
345 }
346 return;
347 }
348
349 G4UImanager* UImanager = G4UImanager::GetUIpointer();
350 G4int keepControlVerbose = UImanager->GetVerboseLevel();
351 G4int newVerbose(0);
352 if (keepControlVerbose >= 2 || verbosity >= G4VisManager::confirmations)
353 newVerbose = 2;
354 UImanager->SetVerboseLevel(newVerbose);
355
356 G4VVisManager* keepConcreteInstance = fpVisManager->GetConcreteInstance();
357 fpVisManager->Enable();
358
359 // Start on clean view
360 UImanager->ApplyCommand("/vis/viewer/rebuild");
361
362 // Event by event refreshing...
363 fpVisManager->SetReviewingKeptEvents(true);
364 G4bool currentRefreshAtEndOfEvent = pScene->GetRefreshAtEndOfEvent();
365 pScene->SetRefreshAtEndOfEvent(true);
366 if (macroFileName.empty()) {
367
368 // Draw to viewer and pause session...
369 G4UIsession* session = UImanager->GetSession();
370 for (size_t i = 0; i < nKeptEvents; ++i) {
371 const G4Event* event = (*events)[i];
372 if (verbosity >= G4VisManager::warnings) {
373 G4warn << "Drawing event : " << event->GetEventID() <<
374 ". At EndOfEvent, enter any command, then \"cont[inue]\"..."
375 << G4endl;
376 static G4bool first = true;
377 if (first) {
378 first = false;
379 G4warn <<
380 " Useful commands might be:"
381 "\n \"/vis/scene/add/trajectories\" if not already added."
382 "\n \"/vis/viewer/...\" to change the view (zoom, set/viewpoint,...)."
383 "\n \"/vis/ogl/export\" to get hard copy."
384 "\n \"/vis/open\" to get alternative viewer."
385 "\n \"/vis/abortReviewKeptEvents\", then \"cont[inue]\", to abort."
386 << G4endl;
387 }
388 }
389 fpVisManager->SetRequestedEvent(event);
390 UImanager->ApplyCommand("/vis/viewer/rebuild");
391 /* The above command forces a rebuild of the scene, including
392 the detector. This is fine for "immediate" viewers - a
393 refresh requires a rebuild anyway. But for "stored mode"
394 viewers, you could, in principle, avoid a rebuild of the
395 detector with something like the following:
396 sceneHandler->ClearTransientStore();
397 viewer->DrawView();
398 sceneHandler->DrawEvent(event);
399 but this causes mayhem for "immediate" viewers because
400 ClearTransientStore issues a DrawView and some curious sort
401 of recursion takes place. For "stored" viewers, the event
402 gets drawn but not the eventID, so something odd is happening
403 there too. This needs further investigation - enhanced
404 features or a complete re-think.
405 */
406 UImanager->ApplyCommand("/vis/viewer/flush");
407 session->PauseSessionStart("EndOfEvent");
408 fpVisManager->SetRequestedEvent(0);
409 if (fpVisManager->GetAbortReviewKeptEvents()) break;
410 }
411 fpVisManager->SetAbortReviewKeptEvents(false);
412
413 } else {
414
415 // Execute macro file...
416 for (size_t i = 0; i < nKeptEvents; ++i) {
417 const G4Event* event = (*events)[i];
418 if (verbosity >= G4VisManager::warnings) {
419 G4warn << "Drawing event : " << event->GetEventID()
420 << " with macro file \"" << macroFileName << G4endl;
421 }
422 fpVisManager->SetRequestedEvent(event);
423 UImanager->ApplyCommand("/control/execute " + macroFileName);
424 fpVisManager->SetRequestedEvent(0);
425 }
426 }
427 pScene->SetRefreshAtEndOfEvent(currentRefreshAtEndOfEvent);
428 fpVisManager->SetReviewingKeptEvents(false);
429
430 if (keepConcreteInstance) fpVisManager->Enable();
431 else fpVisManager->Disable();
432 UImanager->SetVerboseLevel(keepControlVerbose);
433}
#define G4warn
Definition G4Scene.cc:41
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
static G4RunManager * GetMasterRunManager()
const G4Run * GetCurrentRun() const
std::vector< const G4Event * > * GetEventVector() const
Definition G4Run.hh:100
G4bool GetRefreshAtEndOfEvent() const
void SetRefreshAtEndOfEvent(G4bool)
G4int ApplyCommand(const char *aCommand)
G4int GetVerboseLevel() const
G4UIsession * GetSession() const
static G4UImanager * GetUIpointer()
void SetVerboseLevel(G4int val)
virtual void PauseSessionStart(const G4String &Prompt)
static G4VisManager * fpVisManager

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