58 fpCommand -> SetGuidance(
"Abort review of kept events.");
59 fpCommand -> SetParameterName(
"abort", omitable=
true);
60 fpCommand -> SetDefaultValue(
true);
74 G4warn <<
"Type \"continue\" to complete the abort." <<
G4endl;
83 fpCommand -> SetGuidance(
"Abort review of plots.");
84 fpCommand -> SetParameterName(
"abort", omitable=
true);
85 fpCommand -> SetDefaultValue(
true);
99 G4warn <<
"Type \"continue\" to complete the abort." <<
G4endl;
109 fpCommand -> SetGuidance
110 (
"DURING A RUN draw only those events that have been \"to be kept\" by the user"
111 "\nwith G4EventManager::GetEventManager()->KeepTheCurrentEvent() or"
112 "\nwith \"/event/keepCurrentEvent\".");
113 fpCommand -> SetGuidance(
114 "To draw selected events the user should set this flag, then in a user action:"
115 "\n if ( some criterion ) {"
116 "\n G4EventManager::GetEventManager()->KeepTheCurrentEvent();"
118 fpCommand -> SetParameterName(
"draw", omitable=
true);
119 fpCommand -> SetDefaultValue(
true);
136 G4warn <<
"Only events that have been kept will be drawn." <<
G4endl;
149 fpCommand -> SetGuidance(
"Enables/disables visualization system.");
150 fpCommand -> SetParameterName(
"enabled", omitable=
true);
151 fpCommand -> SetDefaultValue(
true);
154 fpCommand1 -> SetGuidance(
"Disables visualization system.");
168 if (command == fpCommand) {
181 fpCommand -> SetGuidance(
"Initialise visualisation manager.");
200 fpCommand -> SetGuidance(
"Lists visualization parameters.");
201 fpCommand -> SetParameterName(
"verbosity", omitable=
true);
202 fpCommand -> SetDefaultValue(
"warnings");
230 UImanager->
ApplyCommand(
"/vis/scene/list ! " + newValue);
232 UImanager->
ApplyCommand(
"/vis/viewer/list ! " + newValue);
235 "\nAttributes available for modeling and filtering with"
236 "\n \"/vis/modeling/trajectories/create/drawByAttribute\" and"
237 "\n \"/vis/filtering/trajectories/create/attributeFilter\" commands"
253 "\nGeometry attributes available for touchables by picking:\n";
259 "\nTo get more information, \"/vis/list all\" or use individual commands"
260 "\n such as (use \"ls\" or \"help\"):"
261 "\n /vis/scene/list all all"
262 "\n /vis/viewer/list all all"
263 "\n /vis/modeling/trajectories/list"
264 "\n /vis/filtering/trajectories/list"
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"
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(
"");
306 "\"/vis/reviewKeptEvents\" not allowed within an already started review."
307 "\n No action taken."
317 const std::vector<const G4Event*>* events =
319 size_t nKeptEvents = events ? events->size() : 0;
324 "ERROR: G4VisCommandReviewKeptEvents::SetNewValue: No kept events,"
325 "\n or kept events not accessible."
335 "ERROR: No current viewer - \"/vis/viewer/list\" to see possibilities."
344 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
366 if (macroFileName.empty()) {
370 for (
size_t i = 0; i < nKeptEvents; ++i) {
371 const G4Event*
event = (*events)[i];
373 G4warn <<
"Drawing event : " <<
event->GetEventID() <<
374 ". At EndOfEvent, enter any command, then \"cont[inue]\"..."
376 static G4bool first =
true;
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."
407 session->PauseSessionStart(
"EndOfEvent");
416 for (
size_t i = 0; i < nKeptEvents; ++i) {
417 const G4Event*
event = (*events)[i];
419 G4warn <<
"Drawing event : " <<
event->GetEventID()
420 <<
" with macro file \"" << macroFileName <<
G4endl;
423 UImanager->
ApplyCommand(
"/control/execute " + macroFileName);
440 fpCommand -> SetGuidance(
"Review plots.");
441 fpCommand -> SetGuidance
442 (
"Each plot is drawn, one by one, to the current viewer. After each"
443 "\nplot the session is paused. The user may issue any allowed command."
444 "\nThen enter \"cont[inue]\" to continue to the next plot."
445 "\nUseful commands might be:"
446 "\n \"/vis/tsg/export\" to get hard copy."
447 "\n \"/vis/abortReviewPlots\", then \"cont[inue]\", to abort.");
460#include <tools/histo/h1d>
461#include <tools/histo/h2d>
464 template <
typename HT>
468 auto session = ui->GetSession();
470 auto keepControlVerbose = ui->GetVerboseLevel();
471 ui->SetVerboseLevel(0);
472 auto status = ui->ApplyCommand(
"/analysis/" + plotType +
"/getVector");
473 ui->SetVerboseLevel(keepControlVerbose);
475 G4String hexString = ui->GetCurrentValues(
G4String(
"/analysis/" + plotType +
"/getVector"));
476 if(hexString.size()) {
478 std::istringstream is(hexString);
480 auto _v = (
const std::vector<HT*>*)ptr;
481 auto _n = _v->size();
482 for (
size_t i = 0; i < _n; ++i) {
484 std::ostringstream oss;
485 oss <<
"/vis/plot " << plotType <<
' ' << i;
486 ui->ApplyCommand(oss.str());
487 session->PauseSessionStart(
"EndOfEvent");
488 if (visManager->GetAbortReviewPlots()) {
503 "\"/vis/reviewPlots\" not allowed within an already started review."
504 "\n No action taken."
512 if (!currentViewer) {
515 "ERROR: No current viewer - \"/vis/viewer/list\" to see possibilities."
521 if (currentViewer->GetName().find(
"TOOLSSG") == std::string::npos) {
523 "WARNING: Current viewer not able to draw plots."
524 "\n Try \"/vis/open TSG\", then \"/vis/reviewPlots\" again."
532 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
539 auto keepControlVerbose = ui->GetVerboseLevel();
540 ui->SetVerboseLevel(0);
547 if (ReviewPlots<tools::histo::h1d>(
"h1"))
goto finish;
548 if (ReviewPlots<tools::histo::h2d>(
"h2"))
goto finish;
554 ui->SetVerboseLevel(keepControlVerbose);
566 fpCommand -> SetParameterName(
"verbosity", omitable=
true);
567 fpCommand -> SetDefaultValue(
"");
584 G4cout <<
"Visualization verbosity is now "
G4GLOB_DLL std::ostream G4cout
const std::map< G4String, G4AttDef > * GetAttDefs() const
const std::map< G4String, G4AttDef > * GetAttDefs() const override
const std::map< G4String, G4AttDef > * GetAttDefs() const override
static G4RunManager * GetMasterRunManager()
const G4Run * GetCurrentRun() const
std::vector< const G4Event * > * GetEventVector() const
G4bool GetRefreshAtEndOfEvent() const
void SetRefreshAtEndOfEvent(G4bool)
const std::map< G4String, G4AttDef > * GetAttDefs() const override
const std::map< G4String, G4AttDef > * GetAttDefs() const override
const std::map< G4String, G4AttDef > * GetAttDefs() const
const std::map< G4String, G4AttDef > * GetAttDefs() const override
const std::map< G4String, G4AttDef > * GetAttDefs() const override
static G4bool ConvertToBool(const char *st)
G4int ApplyCommand(const char *aCommand)
G4int GetVerboseLevel() const
G4UIsession * GetSession() const
static G4UImanager * GetUIpointer()
void SetVerboseLevel(G4int val)
static G4VisManager * fpVisManager
virtual ~G4VisCommandAbortReviewKeptEvents()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandAbortReviewKeptEvents()
virtual ~G4VisCommandAbortReviewPlots()
G4VisCommandAbortReviewPlots()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandDrawOnlyToBeKeptEvents()
G4VisCommandDrawOnlyToBeKeptEvents()
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandEnable()
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandInitialize()
void SetNewValue(G4UIcommand *command, G4String newValue)
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandList()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandReviewKeptEvents()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandReviewKeptEvents()
G4VisCommandReviewPlots()
virtual ~G4VisCommandReviewPlots()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
virtual ~G4VisCommandVerbose()
static std::vector< G4String > VerbosityGuidanceStrings
static G4String VerbosityString(Verbosity)
static void PrintAvailableVerbosity(std::ostream &os)
static G4VisManager * GetInstance()