307 {
308
310
311 G4String action;
312 G4int maxNumberOfKeptEvents;
313 std::istringstream is (newValue);
314 is >> action >> maxNumberOfKeptEvents;
315
317 if (!pScene) {
319 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
320 }
321 return;
322 }
323
324 G4VSceneHandler* pSceneHandler =
fpVisManager->GetCurrentSceneHandler();
325 if (!pSceneHandler) {
327 G4warn <<
"ERROR: No current sceneHandler. Please create one." <<
G4endl;
328 }
329 return;
330 }
331
332 if (action == "accumulate") {
335 }
336 else if (action == "refresh") {
340 "ERROR: Cannot refresh events unless runs refresh too."
341 "\n Use \"/vis/scene/endOfRun refresh\"."
343 }
344 } else {
348 }
349 }
350 else {
353 "ERROR: unrecognised parameter \"" << action << "\"."
355 }
356 return;
357 }
358
359
361
362
363 size_t nCurrentlyKept = 0;
365 if(runManager)
366 {
368 if(currentRun)
369 {
370 const std::vector<const G4Event*>* events = currentRun->
GetEventVector();
371 if(events)
372 nCurrentlyKept = events->size();
373 }
374 }
375
377 G4cout <<
"End of event action set to ";
379 else {
380 G4cout <<
"\"accumulate\"."
381 "\n Maximum number of events to be kept: "
382 << maxNumberOfKeptEvents
383 << " (unlimited if negative)."
384 "\n This may be changed with, e.g., "
385 "\"/vis/scene/endOfEventAction accumulate 1000\".";
386 }
388 }
389
391 maxNumberOfKeptEvents != 0 &&
394 if (nCurrentlyKept) {
396 "\n There are currently " << nCurrentlyKept
397 << " events kept for refreshing and/or reviewing.";
398 } else {
399 G4warn <<
"The vis manager will keep ";
400 if (maxNumberOfKeptEvents < 0)
G4warn <<
"an unlimited number of";
401 else G4warn <<
"up to " << maxNumberOfKeptEvents;
403 if (maxNumberOfKeptEvents > 1 || maxNumberOfKeptEvents < 0)
405 "\n This may use a lot of memory."
406 "\n It may be changed with, e.g., "
407 "\"/vis/scene/endOfEventAction accumulate 10\".";
408 }
410 }
411}
G4GLOB_DLL std::ostream G4cout
static G4RunManager * GetMasterRunManager()
const G4Run * GetCurrentRun() const
std::vector< const G4Event * > * GetEventVector() const
G4bool GetRefreshAtEndOfEvent() const
void SetRefreshAtEndOfEvent(G4bool)
void SetMaxNumberOfKeptEvents(G4int)
G4bool GetRefreshAtEndOfRun() const
void SetMarkForClearingTransientStore(G4bool)
static G4VisManager * fpVisManager