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

#include <G4UImanager.hh>

+ Inheritance diagram for G4UImanager:

Public Member Functions

 ~G4UImanager () override
 
 G4UImanager (const G4UImanager &)=delete
 
const G4UImanageroperator= (const G4UImanager &)=delete
 
G4bool operator== (const G4UImanager &) const =delete
 
G4bool operator!= (const G4UImanager &) const =delete
 
G4String GetCurrentValues (const char *aCommand)
 
void AddNewCommand (G4UIcommand *newCommand)
 
void RemoveCommand (G4UIcommand *aCommand)
 
void ExecuteMacroFile (const char *fileName)
 
void Loop (const char *macroFile, const char *variableName, G4double initialValue, G4double finalValue, G4double stepSize=1.0)
 
void Foreach (const char *macroFile, const char *variableName, const char *candidates)
 
G4int ApplyCommand (const char *aCommand)
 
G4int ApplyCommand (const G4String &aCommand)
 
G4UIcommandFindCommand (const char *aCommand)
 
G4UIcommandFindCommand (const G4String &aCommand)
 
void StoreHistory (const char *fileName="G4history.macro")
 
void StoreHistory (G4bool historySwitch, const char *fileName="G4history.macro")
 
void ListCommands (const char *direc)
 
void SetAlias (const char *aliasLine)
 
void RemoveAlias (const char *aliasName)
 
void ListAlias ()
 
G4String SolveAlias (const char *aCmd)
 
void CreateHTML (const char *dir="/")
 
void LoopS (const char *valueList)
 
void ForeachS (const char *valueList)
 
G4bool Notify (G4ApplicationState requestedState) override
 
G4String GetCurrentStringValue (const char *aCommand, G4int parameterNumber=1, G4bool reGet=true)
 
G4int GetCurrentIntValue (const char *aCommand, G4int parameterNumber=1, G4bool reGet=true)
 
G4double GetCurrentDoubleValue (const char *aCommand, G4int parameterNumber=1, G4bool reGet=true)
 
G4String GetCurrentStringValue (const char *aCommand, const char *aParameterName, G4bool reGet=true)
 
G4int GetCurrentIntValue (const char *aCommand, const char *aParameterName, G4bool reGet=true)
 
G4double GetCurrentDoubleValue (const char *aCommand, const char *aParameterName, G4bool reGet=true)
 
void SetPauseAtBeginOfEvent (G4bool vl)
 
G4bool GetPauseAtBeginOfEvent () const
 
void SetPauseAtEndOfEvent (G4bool vl)
 
G4bool GetPauseAtEndOfEvent () const
 
G4UIcommandTreeGetTree () const
 
G4UIsessionGetSession () const
 
G4UIsessionGetG4UIWindow () const
 
G4UIsessionGetBaseSession () const
 
void SetSession (G4UIsession *const value)
 
void SetG4UIWindow (G4UIsession *const value)
 
void SetCoutDestination (G4UIsession *const value)
 
void SetVerboseLevel (G4int val)
 
G4int GetVerboseLevel () const
 
G4int GetNumberOfHistory () const
 
G4String GetPreviousCommand (G4int i) const
 
void SetMaxHistSize (G4int mx)
 
G4int GetMaxHistSize () const
 
void SetMacroSearchPath (const G4String &path)
 
const G4StringGetMacroSearchPath () const
 
void ParseMacroSearchPath ()
 
G4String FindMacroPath (const G4String &fname) const
 
void SetMasterUIManager (G4bool val)
 
void SetIgnoreCmdNotFound (G4bool val)
 
std::vector< G4String > * GetCommandStack ()
 
void RegisterBridge (G4UIbridge *brg)
 
void SetUpForAThread (G4int tId)
 
void SetUpForSpecialThread (const G4String &aPrefix)
 
G4int GetThreadID () const
 
void SetCoutFileName (const G4String &fileN="G4cout.txt", G4bool ifAppend=true)
 
void SetCerrFileName (const G4String &fileN="G4cerr.txt", G4bool ifAppend=true)
 
void SetThreadPrefixString (const G4String &prefix="W")
 
void SetThreadUseBuffer (G4bool flg=true)
 
void SetThreadIgnore (G4int tid=0)
 
void SetThreadIgnoreInit (G4bool flg=true)
 
G4MTcoutDestinationGetThreadCout ()
 
G4int GetLastReturnCode () const
 
bool IsLastCommandOutputTreated ()
 
void SetLastCommandOutputTreated ()
 
- Public Member Functions inherited from G4VStateDependent
 G4VStateDependent (G4bool bottom=false)
 
virtual ~G4VStateDependent ()
 
G4bool operator== (const G4VStateDependent &right) const
 
G4bool operator!= (const G4VStateDependent &right) const
 
virtual void NotifyDeletion (const G4Event *)
 
virtual void NotifyDeletion (const G4Run *)
 

Static Public Member Functions

static G4UImanagerGetUIpointer ()
 
static G4UImanagerGetMasterUIpointer ()
 
static void UseDoublePrecisionStr (G4bool val)
 
static G4bool DoublePrecisionStr ()
 

Protected Member Functions

 G4UImanager ()
 

Detailed Description

Definition at line 57 of file G4UImanager.hh.

Constructor & Destructor Documentation

◆ ~G4UImanager()

G4UImanager::~G4UImanager ( )
override

Definition at line 111 of file G4UImanager.cc.

112{
113 if (bridges != nullptr) {
114 for (auto bridge : *bridges) {
115 delete bridge;
116 }
117 delete bridges;
118 }
119 SetCoutDestination(nullptr);
120 histVec.clear();
121 if (saveHistory) {
122 historyFile.close();
123 }
124 delete CoutMessenger;
125 delete UnitsMessenger;
126 delete UImessenger;
127 delete treeTop;
128 delete aliasList;
129 fUImanagerHasBeenKilled() = true;
130 fUImanager() = nullptr;
131 if (commandStack != nullptr) {
132 commandStack->clear();
133 delete commandStack;
134 }
135 if (threadID >= 0) {
136 delete threadCout;
138 threadID = -1;
139 }
140}
void G4iosFinalization()
Definition G4ios.cc:289
void SetCoutDestination(G4UIsession *const value)

◆ G4UImanager() [1/2]

G4UImanager::G4UImanager ( const G4UImanager & )
delete

◆ G4UImanager() [2/2]

G4UImanager::G4UImanager ( )
protected

Definition at line 94 of file G4UImanager.cc.

94 : G4VStateDependent(true)
95{
96 treeTop = new G4UIcommandTree("/");
97 aliasList = new G4UIaliasList;
98 SetCoutDestination(session);
99 commandStack = new std::vector<G4String>;
100}
G4VStateDependent(G4bool bottom=false)

Member Function Documentation

◆ AddNewCommand()

void G4UImanager::AddNewCommand ( G4UIcommand * newCommand)

Definition at line 251 of file G4UImanager.cc.

252{
253 treeTop->AddNewCommand(newCommand);
254 if (fMasterUImanager() != nullptr && G4Threading::G4GetThreadId() == 0) {
255 fMasterUImanager()->AddWorkerCommand(newCommand);
256 }
257}
G4int G4GetThreadId()

◆ ApplyCommand() [1/2]

G4int G4UImanager::ApplyCommand ( const char * aCommand)

Definition at line 446 of file G4UImanager.cc.

447{
448 const G4String& aCommand = SolveAlias(aCmd);
449 if (aCommand.empty()) {
450 return fAliasNotFound;
451 }
452 if (verboseLevel != 0) {
454 fLastCommandOutputTreated = false;
455 }
456 G4cout << aCommand << G4endl;
457 }
458 G4String commandString;
459 G4String commandParameter;
460
461 std::size_t i = aCommand.find(' ');
462 if (i != std::string::npos) {
463 commandString = aCommand.substr(0, i);
464 commandParameter = aCommand.substr(i + 1, aCommand.length() - (i + 1));
465 }
466 else {
467 commandString = aCommand;
468 }
469
470 // remove doubled slash
471 std::size_t len = commandString.length();
472 std::size_t ll = 0;
473 G4String a1;
474 G4String a2;
475 while (ll < len - 1) {
476 if (commandString.substr(ll, 2) == "//") {
477 if (ll == 0) {
478 // Safe because index argument always 0
479 commandString.erase(ll, 1);
480 }
481 else {
482 a1 = commandString.substr(0, ll);
483 a2 = commandString.substr(ll + 1, len - ll - 1);
484 commandString = a1 + a2;
485 }
486 --len;
487 }
488 else {
489 ++ll;
490 }
491 }
492
493 if (isMaster && bridges != nullptr) {
494 for (auto bridge : *bridges) {
495 G4int leng = bridge->DirLength();
496 if (commandString.substr(0, leng) == bridge->DirName()) {
497 return bridge->LocalUI()->ApplyCommand(commandString + " " + commandParameter);
498 }
499 }
500 }
501
502 G4UIcommand* targetCommand = treeTop->FindPath(commandString);
503 if (targetCommand == nullptr) {
504 if (ignoreCmdNotFound) {
505 if (stackCommandsForBroadcast) {
506 commandStack->push_back(commandString + " " + commandParameter);
507 }
508 return fCommandSucceeded;
509 }
510
511 return fCommandNotFound;
512 }
513
514 if (stackCommandsForBroadcast && targetCommand->ToBeBroadcasted()) {
515 commandStack->push_back(commandString + " " + commandParameter);
516 }
517
518 if (!(targetCommand->IsAvailable())) {
520 }
521
522 if (saveHistory) {
523 historyFile << aCommand << G4endl;
524 }
525 if (G4int(histVec.size()) >= maxHistSize) {
526 histVec.erase(histVec.begin());
527 }
528 histVec.push_back(aCommand);
529
530 targetCommand->ResetFailure();
531 G4int commandFailureCode = targetCommand->DoIt(commandParameter);
532 if (commandFailureCode == 0) {
533 G4int additionalFailureCode = targetCommand->IfCommandFailed();
534 if (additionalFailureCode > 0) {
536 msg << targetCommand->GetFailureDescription() << "\n"
537 << "Error code : " << additionalFailureCode;
538 G4Exception("G4UImanager::ApplyCommand", "UIMAN0123", JustWarning, msg);
539 commandFailureCode += additionalFailureCode;
540 }
541 }
542 return commandFailureCode;
543}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
int G4int
Definition G4Types.hh:85
@ fCommandNotFound
@ fAliasNotFound
@ fIllegalApplicationState
@ fCommandSucceeded
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4bool ToBeBroadcasted() const
G4int IfCommandFailed()
virtual G4int DoIt(const G4String &parameterList)
void ResetFailure()
G4bool IsAvailable()
const G4String & GetFailureDescription()
G4String SolveAlias(const char *aCmd)
G4bool IsMasterThread()

Referenced by ApplyCommand(), G4RunManagerKernel::BuildPhysicsTables(), G4SubEvtRunManager::CreateAndStartWorkers(), G4TaskRunManager::CreateAndStartWorkers(), G4TheMTRayTracer::CreateBitMap(), G4WorkerRunManager::DoWork(), G4VBasicShell::ExecuteCommand(), G4RunManager::GeometryHasBeenModified(), G4TaskRunManagerKernel::InitializeWorker(), G4VVisCommand::InterpolateViews(), G4QTabWidget::paintEvent(), G4RunManager::ProcessOneEvent(), G4SubEvtRunManager::ProcessOneEvent(), G4WorkerRunManager::ProcessOneEvent(), G4WorkerSubEvtRunManager::ProcessOneEvent(), G4WorkerTaskRunManager::ProcessOneEvent(), G4WorkerSubEvtRunManager::ProcessUI(), G4WorkerTaskRunManager::ProcessUI(), G4VVisCommand::RefreshIfRequired(), G4RunManager::ReinitializeGeometry(), G4SubEvtRunManager::RequestWorkersProcessCommandsStack(), G4TaskRunManager::RequestWorkersProcessCommandsStack(), G4VVisCommandGeometrySet::Set(), G4EmExtraParametersMessenger::SetNewValue(), G4EmLowEParametersMessenger::SetNewValue(), G4EmParametersMessenger::SetNewValue(), G4OpenGLViewerMessenger::SetNewValue(), G4OpenGLXmViewerMessenger::SetNewValue(), G4OpticalParametersMessenger::SetNewValue(), G4ProcessManagerMessenger::SetNewValue(), G4ProcessTableMessenger::SetNewValue(), G4TrackingMessenger::SetNewValue(), G4UIcontrolMessenger::SetNewValue(), G4VisCommandDrawLogicalVolume::SetNewValue(), G4VisCommandDrawTree::SetNewValue(), G4VisCommandDrawView::SetNewValue(), G4VisCommandDrawVolume::SetNewValue(), G4VisCommandGeometryRestore::SetNewValue(), G4VisCommandList::SetNewValue(), G4VisCommandOpen::SetNewValue(), G4VisCommandReviewKeptEvents::SetNewValue(), G4VisCommandSceneAddTrajectories::SetNewValue(), G4VisCommandSpecify::SetNewValue(), G4VisCommandsTouchable::SetNewValue(), G4VisCommandsTouchableSet::SetNewValue(), G4VisCommandViewerClone::SetNewValue(), G4VisCommandViewerCreate::SetNewValue(), G4VisCommandViewerFlush::SetNewValue(), G4VisCommandViewerInterpolate::SetNewValue(), G4VisCommandGeometrySetVisibility::SetNewValueOnLV(), G4ToolsSGSceneHandler::SetPlotterHistograms(), G4VViewer::SetTouchable(), G4TheMTRayTracer::Trace(), and G4TheRayTracer::Trace().

◆ ApplyCommand() [2/2]

G4int G4UImanager::ApplyCommand ( const G4String & aCommand)

Definition at line 440 of file G4UImanager.cc.

441{
442 return ApplyCommand(aCmd.data());
443}
G4int ApplyCommand(const char *aCommand)

◆ CreateHTML()

void G4UImanager::CreateHTML ( const char * dir = "/")

Definition at line 702 of file G4UImanager.cc.

703{
704 G4UIcommandTree* tr = FindDirectory(dir);
705 if (tr != nullptr) {
706 tr->CreateHTML();
707 }
708 else {
709 G4cerr << "Directory <" << dir << "> is not found." << G4endl;
710 }
711}
G4GLOB_DLL std::ostream G4cerr
void CreateHTML(const G4String &="")

Referenced by G4UIcontrolMessenger::SetNewValue().

◆ DoublePrecisionStr()

G4bool G4UImanager::DoublePrecisionStr ( )
static

◆ ExecuteMacroFile()

void G4UImanager::ExecuteMacroFile ( const char * fileName)

Definition at line 281 of file G4UImanager.cc.

282{
283 G4UIsession* batchSession = new G4UIbatch(fileName, session);
284 session = batchSession;
285 lastRC = 0;
286 G4UIsession* previousSession = session->SessionStart();
287 lastRC = session->GetLastReturnCode();
288 delete session;
289 session = previousSession;
290}
virtual G4UIsession * SessionStart()
G4int GetLastReturnCode() const

Referenced by Foreach(), and G4UIcontrolMessenger::SetNewValue().

◆ FindCommand() [1/2]

G4UIcommand * G4UImanager::FindCommand ( const char * aCommand)

Definition at line 552 of file G4UImanager.cc.

553{
554 const G4String& aCommand = SolveAlias(aCmd);
555 if (aCommand.empty()) {
556 return nullptr;
557 }
558
559 G4String commandString;
560
561 std::size_t i = aCommand.find(' ');
562 if (i != std::string::npos) {
563 commandString = aCommand.substr(0, i);
564 }
565 else {
566 commandString = aCommand;
567 }
568
569 return treeTop->FindPath(commandString);
570}

Referenced by FindCommand().

◆ FindCommand() [2/2]

G4UIcommand * G4UImanager::FindCommand ( const G4String & aCommand)

Definition at line 546 of file G4UImanager.cc.

547{
548 return FindCommand(aCmd.data());
549}
G4UIcommand * FindCommand(const char *aCommand)

◆ FindMacroPath()

G4String G4UImanager::FindMacroPath ( const G4String & fname) const

Definition at line 749 of file G4UImanager.cc.

750{
751 G4String macrofile = fname;
752
753 for (const auto& searchDir : searchDirs) {
754 const G4String& fullpath = searchDir + "/" + fname;
755 if (FileFound(fullpath)) {
756 macrofile = fullpath;
757 break;
758 }
759 }
760 return macrofile;
761}

Referenced by G4UIQt::AddIcon(), G4UIQt::AddViewerTabFromFile(), Foreach(), and G4UIcontrolMessenger::SetNewValue().

◆ Foreach()

void G4UImanager::Foreach ( const char * macroFile,
const char * variableName,
const char * candidates )

Definition at line 368 of file G4UImanager.cc.

369{
370 G4String candidatesString = candidates;
371 G4Tokenizer parameterToken(candidatesString);
372 G4String cd;
373 while (!((cd = parameterToken()).empty())) {
374 G4String vl = variableName;
375 vl += " ";
376 vl += cd;
377 SetAlias(vl);
379 if (lastRC != 0) {
381 ed << "Loop aborted due to a command execution error - "
382 << "error code " << lastRC;
383 G4Exception("G4UImanager::Foreach", "UIMAN0201", JustWarning, ed);
384 break;
385 }
386 }
387}
void ExecuteMacroFile(const char *fileName)
void SetAlias(const char *aliasLine)
G4String FindMacroPath(const G4String &fname) const

Referenced by ForeachS(), and Loop().

◆ ForeachS()

void G4UImanager::ForeachS ( const char * valueList)

Definition at line 338 of file G4UImanager.cc.

339{
340 const G4String& vl = valueList;
341 G4Tokenizer parameterToken(vl);
342 const G4String& mf = parameterToken();
343 const G4String& vn = parameterToken();
344 G4String c1 = parameterToken();
345 G4String ca;
346 while (!((ca = parameterToken()).empty())) {
347 c1 += " ";
348 c1 += ca;
349 }
350
351 G4String aliasValue = std::move(c1);
352 if (aliasValue[0] == '"') {
353 G4String strippedValue;
354 if (aliasValue.back() == '"') {
355 strippedValue = aliasValue.substr(1, aliasValue.length() - 2);
356 }
357 else {
358 strippedValue = aliasValue.substr(1, aliasValue.length() - 1);
359 }
360 aliasValue = std::move(strippedValue);
361 }
362
363 // Foreach(mf,vn,c1);
364 Foreach(mf, vn, aliasValue);
365}
void Foreach(const char *macroFile, const char *variableName, const char *candidates)

Referenced by G4UIcontrolMessenger::SetNewValue().

◆ GetBaseSession()

G4UIsession * G4UImanager::GetBaseSession ( ) const

Definition at line 880 of file G4UImanager.cc.

881{
882 // There may be no session - pure batch mode (session == nullptr)
883 // If there is a session, it may be a batch session used for processing macros.
884 // Find base session of this hierarchy of batch sessions.
885 G4UIsession* baseSession = session;
886 while (auto aBatchSession = dynamic_cast<G4UIbatch*>(baseSession)) {
887 auto previousSession = aBatchSession->GetPreviousSession();
888 if (previousSession == nullptr) {
889 // No previouse session - aBatchSession is the desired base session
890 baseSession = aBatchSession;
891 break;
892 }
893 // There is a previous session, which may or may not be a batch.
894 // If not, it will be our desired base - so record and test again.
895 baseSession = previousSession;
896 }
897 return baseSession;
898}

Referenced by G4OpenGLQt::IsUISessionCompatible(), G4OpenGLXm::IsUISessionCompatible(), G4OpenInventor::IsUISessionCompatible(), G4Qt3D::IsUISessionCompatible(), G4ToolsSGQtGLES::IsUISessionCompatible(), G4ToolsSGQtZB::IsUISessionCompatible(), and G4VtkQt::IsUISessionCompatible().

◆ GetCommandStack()

std::vector< G4String > * G4UImanager::GetCommandStack ( )

Definition at line 764 of file G4UImanager.cc.

765{
766 std::vector<G4String>* returnValue = commandStack;
767 commandStack = new std::vector<G4String>;
768 return returnValue;
769}

Referenced by G4MTRunManager::PrepareCommandsStack().

◆ GetCurrentDoubleValue() [1/2]

G4double G4UImanager::GetCurrentDoubleValue ( const char * aCommand,
const char * aParameterName,
G4bool reGet = true )

Definition at line 227 of file G4UImanager.cc.

229{
230 G4String targetParameter = GetCurrentStringValue(aCommand, aParameterName, reGet);
231 G4double value;
232 const char* t = targetParameter;
233 std::istringstream is(t);
234 is >> value;
235 return value;
236}
double G4double
Definition G4Types.hh:83
G4String GetCurrentStringValue(const char *aCommand, G4int parameterNumber=1, G4bool reGet=true)

◆ GetCurrentDoubleValue() [2/2]

G4double G4UImanager::GetCurrentDoubleValue ( const char * aCommand,
G4int parameterNumber = 1,
G4bool reGet = true )

Definition at line 239 of file G4UImanager.cc.

241{
242 G4String targetParameter = GetCurrentStringValue(aCommand, parameterNumber, reGet);
243 G4double value;
244 const char* t = targetParameter;
245 std::istringstream is(t);
246 is >> value;
247 return value;
248}

◆ GetCurrentIntValue() [1/2]

G4int G4UImanager::GetCurrentIntValue ( const char * aCommand,
const char * aParameterName,
G4bool reGet = true )

Definition at line 204 of file G4UImanager.cc.

206{
207 G4String targetParameter = GetCurrentStringValue(aCommand, aParameterName, reGet);
208 G4int value;
209 const char* t = targetParameter;
210 std::istringstream is(t);
211 is >> value;
212 return value;
213}

◆ GetCurrentIntValue() [2/2]

G4int G4UImanager::GetCurrentIntValue ( const char * aCommand,
G4int parameterNumber = 1,
G4bool reGet = true )

Definition at line 216 of file G4UImanager.cc.

217{
218 G4String targetParameter = GetCurrentStringValue(aCommand, parameterNumber, reGet);
219 G4int value;
220 const char* t = targetParameter;
221 std::istringstream is(t);
222 is >> value;
223 return value;
224}

Referenced by G4TheMTRayTracer::Trace(), and G4TheRayTracer::Trace().

◆ GetCurrentStringValue() [1/2]

G4String G4UImanager::GetCurrentStringValue ( const char * aCommand,
const char * aParameterName,
G4bool reGet = true )

Definition at line 189 of file G4UImanager.cc.

191{
192 if (reGet || savedCommand == nullptr) {
193 G4String parameterValues = GetCurrentValues(aCommand);
194 }
195 for (G4int i = 0; i < (G4int)savedCommand->GetParameterEntries(); ++i) {
196 if (aParameterName == savedCommand->GetParameter(i)->GetParameterName()) {
197 return GetCurrentStringValue(aCommand, i + 1, false);
198 }
199 }
200 return G4String();
201}
G4String GetCurrentValues(const char *aCommand)

◆ GetCurrentStringValue() [2/2]

G4String G4UImanager::GetCurrentStringValue ( const char * aCommand,
G4int parameterNumber = 1,
G4bool reGet = true )

Definition at line 167 of file G4UImanager.cc.

169{
170 if (reGet || savedCommand == nullptr) {
171 savedParameters = GetCurrentValues(aCommand);
172 }
173 G4Tokenizer savedToken(savedParameters);
174 G4String token;
175 for (G4int i_thParameter = 0; i_thParameter < parameterNumber; ++i_thParameter) {
176 token = savedToken();
177 if (token.empty()) {
178 return G4String();
179 }
180 if (token[(size_t)0] == '"') {
181 token.append(" ");
182 token.append(savedToken("\""));
183 }
184 }
185 return token;
186}

Referenced by GetCurrentDoubleValue(), GetCurrentDoubleValue(), GetCurrentIntValue(), GetCurrentIntValue(), and GetCurrentStringValue().

◆ GetCurrentValues()

G4String G4UImanager::GetCurrentValues ( const char * aCommand)

Definition at line 155 of file G4UImanager.cc.

156{
157 G4String theCommand = aCommand;
158 savedCommand = treeTop->FindPath(theCommand);
159 if (savedCommand == nullptr) {
160 G4cerr << "command not found" << G4endl;
161 return G4String();
162 }
163 return savedCommand->GetCurrentValue();
164}

Referenced by GetCurrentStringValue(), GetCurrentStringValue(), G4UIcontrolMessenger::SetNewValue(), G4ToolsSGSceneHandler::SetPlotterHistograms(), and G4VBasicShell::ShowCurrent().

◆ GetG4UIWindow()

G4UIsession * G4UImanager::GetG4UIWindow ( ) const
inline

◆ GetLastReturnCode()

G4int G4UImanager::GetLastReturnCode ( ) const
inline

Definition at line 242 of file G4UImanager.hh.

242{ return lastRC; }

Referenced by G4UIcontrolMessenger::SetNewValue().

◆ GetMacroSearchPath()

const G4String & G4UImanager::GetMacroSearchPath ( ) const
inline

Definition at line 206 of file G4UImanager.hh.

206{ return searchPath; }

Referenced by G4UIcontrolMessenger::GetCurrentValue().

◆ GetMasterUIpointer()

G4UImanager * G4UImanager::GetMasterUIpointer ( )
static

Definition at line 88 of file G4UImanager.cc.

89{
90 return fMasterUImanager();
91}

Referenced by G4UIbridge::G4UIbridge().

◆ GetMaxHistSize()

G4int G4UImanager::GetMaxHistSize ( ) const
inline

Definition at line 203 of file G4UImanager.hh.

203{ return maxHistSize; }

Referenced by G4UIcontrolMessenger::GetCurrentValue().

◆ GetNumberOfHistory()

G4int G4UImanager::GetNumberOfHistory ( ) const
inline

Definition at line 193 of file G4UImanager.hh.

193{ return G4int(histVec.size()); }

Referenced by G4VBasicShell::ApplyShellCommand().

◆ GetPauseAtBeginOfEvent()

G4bool G4UImanager::GetPauseAtBeginOfEvent ( ) const
inline

Definition at line 172 of file G4UImanager.hh.

172{ return pauseAtBeginOfEvent; }

◆ GetPauseAtEndOfEvent()

G4bool G4UImanager::GetPauseAtEndOfEvent ( ) const
inline

Definition at line 174 of file G4UImanager.hh.

174{ return pauseAtEndOfEvent; }

◆ GetPreviousCommand()

G4String G4UImanager::GetPreviousCommand ( G4int i) const
inline

Definition at line 194 of file G4UImanager.hh.

195 {
196 G4String st;
197 if (i >= 0 && i < G4int(histVec.size())) {
198 st = histVec[i];
199 }
200 return st;
201 }

Referenced by G4VBasicShell::ApplyShellCommand().

◆ GetSession()

G4UIsession * G4UImanager::GetSession ( ) const
inline

Definition at line 177 of file G4UImanager.hh.

177{ return session; }

Referenced by G4VisCommandReviewKeptEvents::SetNewValue().

◆ GetThreadCout()

G4MTcoutDestination * G4UImanager::GetThreadCout ( )
inline

Definition at line 237 of file G4UImanager.hh.

237{ return threadCout; }

◆ GetThreadID()

G4int G4UImanager::GetThreadID ( ) const
inline

Definition at line 229 of file G4UImanager.hh.

229{ return threadID; }

◆ GetTree()

◆ GetUIpointer()

G4UImanager * G4UImanager::GetUIpointer ( )
static

Definition at line 76 of file G4UImanager.cc.

77{
78 if (fUImanager() == nullptr) {
79 if (!fUImanagerHasBeenKilled()) {
80 fUImanager() = new G4UImanager;
81 fUImanager()->CreateMessenger();
82 }
83 }
84 return fUImanager();
85}
G4UImanager(const G4UImanager &)=delete

Referenced by G4UIQt::AddButton(), G4UIQt::AddIcon(), G4UIcommandTree::AddNewCommand(), G4UIQt::AddViewerTabFromFile(), G4OpenInventorQtExaminerViewer::afterRealizeHook(), G4VBasicShell::ApplyShellCommand(), G4RunManagerKernel::BuildPhysicsTables(), G4VVisCommand::CheckSceneAndNotifyHandlers(), G4VBasicShell::Complete(), G4SubEvtRunManager::CreateAndStartWorkers(), G4TaskRunManager::CreateAndStartWorkers(), G4TheMTRayTracer::CreateBitMap(), G4UImessenger::CreateDirectory(), G4OpenGLQtViewer::CreateMainWindow(), G4VtkQtViewer::CreateMainWindow(), G4WorkerRunManager::DoWork(), G4VBasicShell::ExecuteCommand(), G4VBasicShell::FindCommand(), G4VBasicShell::FindDirectory(), G4MTRunManager::G4MTRunManager(), G4RunManager::G4RunManager(), G4SubEvtRunManager::G4SubEvtRunManager(), G4TaskRunManager::G4TaskRunManager(), G4UIbatch::G4UIbatch(), G4UIQt::G4UIQt(), G4UIterminal::G4UIterminal(), G4UIWin32::G4UIWin32(), G4UIXm::G4UIXm(), G4VisCommandDrawLogicalVolume::G4VisCommandDrawLogicalVolume(), G4VisCommandDrawVolume::G4VisCommandDrawVolume(), G4VisCommandOpen::G4VisCommandOpen(), G4VisCommandSceneAddMagneticField::G4VisCommandSceneAddMagneticField(), G4VisManager::G4VisSubThread(), G4WorkerRunManager::G4WorkerRunManager(), G4RunManager::GeometryHasBeenModified(), G4VisManager::GeometryHasChanged(), G4VUIshell::GetCommandTree(), G4UIcontrolMessenger::GetCurrentValue(), G4OpenInventorQtViewer::Initialise(), G4Qt3DViewer::Initialise(), G4ToolsSGQtGLESViewer::Initialise(), G4ToolsSGQtZBViewer::Initialise(), G4TaskRunManagerKernel::InitializeWorker(), G4VVisCommand::InterpolateViews(), G4OpenGLQt::IsUISessionCompatible(), G4OpenGLXm::IsUISessionCompatible(), G4OpenInventor::IsUISessionCompatible(), G4Qt3D::IsUISessionCompatible(), G4ToolsSGQtGLES::IsUISessionCompatible(), G4ToolsSGQtZB::IsUISessionCompatible(), G4VtkQt::IsUISessionCompatible(), G4VisManager::NotifyHandlers(), G4QTabWidget::paintEvent(), G4MTRunManager::PrepareCommandsStack(), G4RunManager::ProcessOneEvent(), G4SubEvtRunManager::ProcessOneEvent(), G4WorkerRunManager::ProcessOneEvent(), G4WorkerSubEvtRunManager::ProcessOneEvent(), G4WorkerTaskRunManager::ProcessOneEvent(), G4WorkerSubEvtRunManager::ProcessUI(), G4WorkerTaskRunManager::ProcessUI(), G4UIQt::ReceiveG4cout(), G4VVisCommand::RefreshIfRequired(), G4RunManager::ReinitializeGeometry(), G4SubEvtRunManager::RequestWorkersProcessCommandsStack(), G4TaskRunManager::RequestWorkersProcessCommandsStack(), G4UIbatch::SessionStart(), G4VVisCommandGeometrySet::Set(), G4EmExtraParametersMessenger::SetNewValue(), G4EmLowEParametersMessenger::SetNewValue(), G4EmParametersMessenger::SetNewValue(), G4LocalThreadCoutMessenger::SetNewValue(), G4OpenGLViewerMessenger::SetNewValue(), G4OpenGLXmViewerMessenger::SetNewValue(), G4OpticalParametersMessenger::SetNewValue(), G4ProcessManagerMessenger::SetNewValue(), G4ProcessTableMessenger::SetNewValue(), G4RunMessenger::SetNewValue(), G4TrackingMessenger::SetNewValue(), G4UIcontrolMessenger::SetNewValue(), G4VisCommandDrawLogicalVolume::SetNewValue(), G4VisCommandDrawTree::SetNewValue(), G4VisCommandDrawView::SetNewValue(), G4VisCommandDrawVolume::SetNewValue(), G4VisCommandGeometryRestore::SetNewValue(), G4VisCommandList::SetNewValue(), G4VisCommandOpen::SetNewValue(), G4VisCommandPlot::SetNewValue(), G4VisCommandReviewKeptEvents::SetNewValue(), G4VisCommandReviewPlots::SetNewValue(), G4VisCommandSceneAddTrajectories::SetNewValue(), G4VisCommandSceneHandlerCreate::SetNewValue(), G4VisCommandSpecify::SetNewValue(), G4VisCommandsTouchable::SetNewValue(), G4VisCommandsTouchableSet::SetNewValue(), G4VisCommandViewerClone::SetNewValue(), G4VisCommandViewerCreate::SetNewValue(), G4VisCommandViewerFlush::SetNewValue(), G4VisCommandViewerInterpolate::SetNewValue(), G4VisCommandGeometrySetVisibility::SetNewValueOnLV(), G4ToolsSGSceneHandler::SetPlotterHistograms(), G4VViewer::SetTouchable(), G4VBasicShell::ShowCurrent(), G4MTRunManagerKernel::StartThread(), G4VBasicShell::TerminalHelp(), G4TheMTRayTracer::Trace(), G4TheRayTracer::Trace(), G4VViewer::UpdateGUISceneTree(), G4OpenGLQtViewer::updateViewerPropertiesTableWidget(), G4RunManagerKernel::~G4RunManagerKernel(), G4UIcommand::~G4UIcommand(), G4UIQt::~G4UIQt(), G4UIterminal::~G4UIterminal(), G4UIWin32::~G4UIWin32(), G4UIXm::~G4UIXm(), and G4VisManager::~G4VisManager().

◆ GetVerboseLevel()

◆ IsLastCommandOutputTreated()

bool G4UImanager::IsLastCommandOutputTreated ( )
inline

Definition at line 244 of file G4UImanager.hh.

244{ return fLastCommandOutputTreated; }

Referenced by G4UIQt::ReceiveG4cout().

◆ ListAlias()

void G4UImanager::ListAlias ( )

Definition at line 696 of file G4UImanager.cc.

697{
698 aliasList->List();
699}

Referenced by G4UIcontrolMessenger::SetNewValue().

◆ ListCommands()

void G4UImanager::ListCommands ( const char * direc)

Definition at line 604 of file G4UImanager.cc.

605{
606 G4UIcommandTree* comTree = FindDirectory(direct);
607 if (comTree != nullptr) {
608 comTree->List();
609 }
610 else {
611 G4cout << direct << " is not found." << G4endl;
612 }
613}

Referenced by G4UIcontrolMessenger::SetNewValue().

◆ Loop()

void G4UImanager::Loop ( const char * macroFile,
const char * variableName,
G4double initialValue,
G4double finalValue,
G4double stepSize = 1.0 )

Definition at line 314 of file G4UImanager.cc.

316{
317 G4String cd;
318 if (stepSize > 0) {
319 for (G4double d = initialValue; d <= finalValue; d += stepSize) {
320 std::ostringstream os;
321 os << d;
322 cd += os.str();
323 cd += " ";
324 }
325 }
326 else {
327 for (G4double d = initialValue; d >= finalValue; d += stepSize) {
328 std::ostringstream os;
329 os << d;
330 cd += os.str();
331 cd += " ";
332 }
333 }
334 Foreach(macroFile, variableName, cd);
335}

Referenced by LoopS().

◆ LoopS()

void G4UImanager::LoopS ( const char * valueList)

Definition at line 293 of file G4UImanager.cc.

294{
295 G4String vl = valueList;
296 G4Tokenizer parameterToken(vl);
297 G4String mf = parameterToken();
298 G4String vn = parameterToken();
299 G4String c1 = parameterToken();
300 c1 += " ";
301 c1 += parameterToken();
302 c1 += " ";
303 c1 += parameterToken();
304 const char* t1 = c1;
305 std::istringstream is(t1);
306 G4double d1;
307 G4double d2;
308 G4double d3;
309 is >> d1 >> d2 >> d3;
310 Loop(mf, vn, d1, d2, d3);
311}
void Loop(const char *macroFile, const char *variableName, G4double initialValue, G4double finalValue, G4double stepSize=1.0)

Referenced by G4UIcontrolMessenger::SetNewValue().

◆ Notify()

G4bool G4UImanager::Notify ( G4ApplicationState requestedState)
overridevirtual

Implements G4VStateDependent.

Definition at line 641 of file G4UImanager.cc.

642{
643 if (pauseAtBeginOfEvent) {
644 if (requestedState == G4State_EventProc
645 && G4StateManager::GetStateManager()->GetPreviousState() == G4State_GeomClosed)
646 {
647 PauseSession("BeginOfEvent");
648 }
649 }
650 if (pauseAtEndOfEvent) {
651 if (requestedState == G4State_GeomClosed
652 && G4StateManager::GetStateManager()->GetPreviousState() == G4State_EventProc)
653 {
654 PauseSession("EndOfEvent");
655 }
656 }
657 return true;
658}
@ G4State_EventProc
@ G4State_GeomClosed
static G4StateManager * GetStateManager()

◆ operator!=()

G4bool G4UImanager::operator!= ( const G4UImanager & ) const
delete

◆ operator=()

const G4UImanager & G4UImanager::operator= ( const G4UImanager & )
delete

◆ operator==()

G4bool G4UImanager::operator== ( const G4UImanager & ) const
delete

◆ ParseMacroSearchPath()

void G4UImanager::ParseMacroSearchPath ( )

Definition at line 714 of file G4UImanager.cc.

715{
716 searchDirs.clear();
717
718 std::size_t idxfirst = 0;
719 std::size_t idxend = 0;
720 G4String pathstring = "";
721 while ((idxend = searchPath.find(':', idxfirst)) != G4String::npos) {
722 pathstring = searchPath.substr(idxfirst, idxend - idxfirst);
723 if (!pathstring.empty()) {
724 searchDirs.push_back(pathstring);
725 }
726 idxfirst = idxend + 1;
727 }
728
729 pathstring = searchPath.substr(idxfirst, searchPath.size() - idxfirst);
730 if (!pathstring.empty()) {
731 searchDirs.push_back(std::move(pathstring));
732 }
733}

Referenced by G4UIcontrolMessenger::SetNewValue().

◆ RegisterBridge()

void G4UImanager::RegisterBridge ( G4UIbridge * brg)

Definition at line 772 of file G4UImanager.cc.

773{
774 if (brg->LocalUI() == this) {
775 G4Exception("G4UImanager::RegisterBridge()", "UI7002", FatalException,
776 "G4UIBridge cannot bridge between same object.");
777 }
778 else {
779 bridges->push_back(brg);
780 }
781}
@ FatalException
G4UImanager * LocalUI() const
Definition G4UIbridge.hh:54

◆ RemoveAlias()

void G4UImanager::RemoveAlias ( const char * aliasName)

Definition at line 688 of file G4UImanager.cc.

689{
690 const G4String& aL = aliasName;
691 G4String targetAlias = G4StrUtil::strip_copy(aL);
692 aliasList->RemoveAlias(targetAlias);
693}

Referenced by G4UIcontrolMessenger::SetNewValue().

◆ RemoveCommand()

void G4UImanager::RemoveCommand ( G4UIcommand * aCommand)

Definition at line 266 of file G4UImanager.cc.

267{
268 treeTop->RemoveCommand(aCommand);
269 if (fMasterUImanager() != nullptr && G4Threading::G4GetThreadId() == 0) {
270 fMasterUImanager()->RemoveWorkerCommand(aCommand);
271 }
272}

Referenced by G4UIcommand::~G4UIcommand().

◆ SetAlias()

void G4UImanager::SetAlias ( const char * aliasLine)

Definition at line 667 of file G4UImanager.cc.

668{
669 const G4String& aLine = aliasLine;
670 std::size_t i = aLine.find(' ');
671 const G4String& aliasName = aLine.substr(0, i);
672 G4String aliasValue = aLine.substr(i + 1, aLine.length() - (i + 1));
673 if (aliasValue[0] == '"') {
674 G4String strippedValue;
675 if (aliasValue.back() == '"') {
676 strippedValue = aliasValue.substr(1, aliasValue.length() - 2);
677 }
678 else {
679 strippedValue = aliasValue.substr(1, aliasValue.length() - 1);
680 }
681 aliasValue = std::move(strippedValue);
682 }
683
684 aliasList->ChangeAlias(aliasName, aliasValue);
685}

Referenced by Foreach(), G4MTRunManager::G4MTRunManager(), G4RunManager::G4RunManager(), G4SubEvtRunManager::G4SubEvtRunManager(), and G4UIcontrolMessenger::SetNewValue().

◆ SetCerrFileName()

void G4UImanager::SetCerrFileName ( const G4String & fileN = "G4cerr.txt",
G4bool ifAppend = true )

Definition at line 822 of file G4UImanager.cc.

823{
824 // for sequential mode, ignore this method.
825 if (threadID < 0) {
826 return;
827 }
828
829 if (fileN == "**Screen**") {
830 threadCout->SetCerrFileName(fileN, ifAppend);
831 }
832 else {
833 std::stringstream fn;
834 fn << "G4W_" << threadID << "_" << fileN;
835 threadCout->SetCerrFileName(fn.str(), ifAppend);
836 }
837}

Referenced by G4LocalThreadCoutMessenger::SetNewValue().

◆ SetCoutDestination()

void G4UImanager::SetCoutDestination ( G4UIsession *const value)

◆ SetCoutFileName()

void G4UImanager::SetCoutFileName ( const G4String & fileN = "G4cout.txt",
G4bool ifAppend = true )

Definition at line 804 of file G4UImanager.cc.

805{
806 // for sequential mode, ignore this method.
807 if (threadID < 0) {
808 return;
809 }
810
811 if (fileN == "**Screen**") {
812 threadCout->SetCoutFileName(fileN, ifAppend);
813 }
814 else {
815 std::stringstream fn;
816 fn << "G4W_" << threadID << "_" << fileN;
817 threadCout->SetCoutFileName(fn.str(), ifAppend);
818 }
819}

Referenced by G4LocalThreadCoutMessenger::SetNewValue().

◆ SetG4UIWindow()

void G4UImanager::SetG4UIWindow ( G4UIsession *const value)
inline

Definition at line 184 of file G4UImanager.hh.

184{ g4UIWindow = value; }

Referenced by G4UIQt::G4UIQt(), G4UIWin32::G4UIWin32(), G4UIQt::~G4UIQt(), and G4UIWin32::~G4UIWin32().

◆ SetIgnoreCmdNotFound()

void G4UImanager::SetIgnoreCmdNotFound ( G4bool val)
inline

Definition at line 219 of file G4UImanager.hh.

219{ ignoreCmdNotFound = val; }

Referenced by G4WorkerRunManager::G4WorkerRunManager().

◆ SetLastCommandOutputTreated()

void G4UImanager::SetLastCommandOutputTreated ( )
inline

Definition at line 245 of file G4UImanager.hh.

245{ fLastCommandOutputTreated = true; }

Referenced by G4UIQt::ReceiveG4cout().

◆ SetMacroSearchPath()

void G4UImanager::SetMacroSearchPath ( const G4String & path)
inline

Definition at line 205 of file G4UImanager.hh.

205{ searchPath = path; }

Referenced by G4UIcontrolMessenger::SetNewValue().

◆ SetMasterUIManager()

void G4UImanager::SetMasterUIManager ( G4bool val)
inline

Definition at line 210 of file G4UImanager.hh.

211 {
212 isMaster = val;
213 stackCommandsForBroadcast = val;
214 if (val && (bridges == nullptr)) {
215 bridges = new std::vector<G4UIbridge*>;
216 fMasterUImanager() = this;
217 }
218 }

Referenced by G4MTRunManager::G4MTRunManager(), and G4TaskRunManager::G4TaskRunManager().

◆ SetMaxHistSize()

void G4UImanager::SetMaxHistSize ( G4int mx)
inline

Definition at line 202 of file G4UImanager.hh.

202{ maxHistSize = mx; }

Referenced by G4UIcontrolMessenger::SetNewValue().

◆ SetPauseAtBeginOfEvent()

void G4UImanager::SetPauseAtBeginOfEvent ( G4bool vl)
inline

Definition at line 171 of file G4UImanager.hh.

171{ pauseAtBeginOfEvent = vl; }

Referenced by G4RunMessenger::SetNewValue().

◆ SetPauseAtEndOfEvent()

void G4UImanager::SetPauseAtEndOfEvent ( G4bool vl)
inline

Definition at line 173 of file G4UImanager.hh.

173{ pauseAtEndOfEvent = vl; }

Referenced by G4RunMessenger::SetNewValue().

◆ SetSession()

void G4UImanager::SetSession ( G4UIsession *const value)
inline

◆ SetThreadIgnore()

void G4UImanager::SetThreadIgnore ( G4int tid = 0)

Definition at line 860 of file G4UImanager.cc.

861{
862 // for sequential mode, ignore this method.
863 if (threadID < 0) {
864 igThreadID = tid;
865 return;
866 }
867 threadCout->SetIgnoreCout(tid);
868}

Referenced by G4LocalThreadCoutMessenger::SetNewValue().

◆ SetThreadIgnoreInit()

void G4UImanager::SetThreadIgnoreInit ( G4bool flg = true)

Definition at line 871 of file G4UImanager.cc.

872{
873 // for sequential mode, ignore this method.
874 if (threadID < 0) {
875 return;
876 }
877 threadCout->SetIgnoreInit(flg);
878}

Referenced by G4LocalThreadCoutMessenger::SetNewValue().

◆ SetThreadPrefixString()

void G4UImanager::SetThreadPrefixString ( const G4String & prefix = "W")

Definition at line 840 of file G4UImanager.cc.

841{
842 // for sequential mode, ignore this method.
843 if (threadID < 0) {
844 return;
845 }
846 threadCout->SetPrefixString(s);
847}

Referenced by G4LocalThreadCoutMessenger::SetNewValue().

◆ SetThreadUseBuffer()

void G4UImanager::SetThreadUseBuffer ( G4bool flg = true)

Definition at line 850 of file G4UImanager.cc.

851{
852 // for sequential mode, ignore this method.
853 if (threadID < 0) {
854 return;
855 }
856 threadCout->EnableBuffering(flg);
857}

Referenced by G4LocalThreadCoutMessenger::SetNewValue().

◆ SetUpForAThread()

void G4UImanager::SetUpForAThread ( G4int tId)

Definition at line 784 of file G4UImanager.cc.

785{
786 threadID = tId;
788 threadCout = new G4MTcoutDestination(threadID);
789 threadCout->SetIgnoreCout(igThreadID);
790}
void G4iosInitialization()
Definition G4ios.cc:288

Referenced by G4TaskRunManagerKernel::InitializeWorker(), and G4MTRunManagerKernel::StartThread().

◆ SetUpForSpecialThread()

void G4UImanager::SetUpForSpecialThread ( const G4String & aPrefix)

Definition at line 793 of file G4UImanager.cc.

794{
798 threadCout = new G4MTcoutDestination(threadID);
799 threadCout->SetPrefixString(pref);
800 threadCout->SetIgnoreCout(igThreadID);
801}
void G4SetThreadId(G4int aNewValue)

Referenced by G4VisManager::G4VisSubThread().

◆ SetVerboseLevel()

◆ SolveAlias()

G4String G4UImanager::SolveAlias ( const char * aCmd)

Definition at line 390 of file G4UImanager.cc.

391{
392 G4String aCommand = aCmd;
393 std::size_t ia = aCommand.find('{');
394 std::size_t iz = aCommand.find('#');
395 while ((ia != std::string::npos) && ((iz == std::string::npos) || (ia < iz))) {
396 G4int ibx = -1;
397 while (ibx < 0) {
398 std::size_t ib = aCommand.find('}');
399 if (ib == std::string::npos) {
400 G4cerr << aCommand << G4endl;
401 for (std::size_t i = 0; i < ia; ++i) {
402 G4cerr << " ";
403 }
404 G4cerr << "^" << G4endl;
405 G4cerr << "Unmatched alias parenthesis -- command ignored" << G4endl;
406 G4String nullStr;
407 return nullStr;
408 }
409 G4String ps = aCommand.substr(ia + 1, aCommand.length() - (ia + 1));
410 std::size_t ic = ps.find('{');
411 std::size_t id = ps.find('}');
412 if (ic != std::string::npos && ic < id) {
413 ia += ic + 1;
414 }
415 else {
416 ibx = (G4int)ib;
417 }
418 }
419 //--- Here ia represents the position of innermost "{"
420 //--- and ibx represents corresponding "}"
421 G4String subs;
422 if (ia > 0) {
423 subs = aCommand.substr(0, ia);
424 }
425 G4String alis = aCommand.substr(ia + 1, ibx - ia - 1);
426 G4String rems = aCommand.substr(ibx + 1, aCommand.length() - ibx);
427 const G4String* alVal = aliasList->FindAlias(alis);
428 if (alVal == nullptr) {
429 G4cerr << "Alias <" << alis << "> not found -- command ignored" << G4endl;
430 G4String nullStr;
431 return nullStr;
432 }
433 aCommand = subs + (*alVal) + rems;
434 ia = aCommand.find('{');
435 }
436 return aCommand;
437}

Referenced by ApplyCommand(), FindCommand(), and G4UIcontrolMessenger::SetNewValue().

◆ StoreHistory() [1/2]

void G4UImanager::StoreHistory ( const char * fileName = "G4history.macro")

Definition at line 573 of file G4UImanager.cc.

574{
575 StoreHistory(true, fileName);
576}
void StoreHistory(const char *fileName="G4history.macro")

Referenced by G4UIcontrolMessenger::SetNewValue(), and StoreHistory().

◆ StoreHistory() [2/2]

void G4UImanager::StoreHistory ( G4bool historySwitch,
const char * fileName = "G4history.macro" )

Definition at line 579 of file G4UImanager.cc.

580{
581 if (historySwitch) {
582 if (saveHistory) {
583 historyFile.close();
584 }
585 historyFile.open((char*)fileName);
586 saveHistory = true;
587 }
588 else {
589 historyFile.close();
590 saveHistory = false;
591 }
592 saveHistory = historySwitch;
593}

◆ UseDoublePrecisionStr()

void G4UImanager::UseDoublePrecisionStr ( G4bool val)
static

Definition at line 143 of file G4UImanager.cc.

144{
145 doublePrecisionStr = val;
146}

Referenced by G4UIcontrolMessenger::SetNewValue().


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