--------------------------------------------------------------------
| 1183 | |
| 1184 | // -------------------------------------------------------------------- |
| 1185 | G4VProcess* G4ProcessManager::GetProcess(const G4String& processName) const |
| 1186 | { |
| 1187 | for (G4int k=0; k<numberOfProcesses; ++k) |
| 1188 | { |
| 1189 | G4VProcess* process = (*theProcessList)[k]; |
| 1190 | if (process->GetProcessName() == processName) return process; |
| 1191 | } |
| 1192 | return nullptr; |
| 1193 | } |
| 1194 | |
| 1195 | // -------------------------------------------------------------------- |
| 1196 | G4VProcess* G4ProcessManager::SetProcessActivation(G4VProcess* aProcess, |
no outgoing calls
no test coverage detected