--------------------------------------------------------------------
| 806 | |
| 807 | // -------------------------------------------------------------------- |
| 808 | G4String G4UImanager::FindMacroPath(const G4String& fname) const |
| 809 | { |
| 810 | G4String macrofile = fname; |
| 811 | |
| 812 | for (const auto& searchDir : searchDirs) { |
| 813 | const G4String& fullpath = searchDir + "/" + fname; |
| 814 | if (FileFound(fullpath)) { |
| 815 | macrofile = fullpath; |
| 816 | break; |
| 817 | } |
| 818 | } |
| 819 | return macrofile; |
| 820 | } |
| 821 | |
| 822 | // -------------------------------------------------------------------- |
| 823 | std::vector<G4String>* G4UImanager::GetCommandStack() |
no test coverage detected