| 293 | } |
| 294 | |
| 295 | void G4FastSimulationManager::ListModels() const |
| 296 | { |
| 297 | G4cout << "Current Models for the "; |
| 298 | ListTitle(); |
| 299 | G4cout << " envelope:\n"; |
| 300 | |
| 301 | for (auto iModel : ModelList) |
| 302 | G4cout << " " << iModel->GetName() << "\n"; |
| 303 | |
| 304 | for (auto iModel : fInactivatedModels) |
| 305 | G4cout << " " << iModel->GetName() << "(inactivated)\n"; |
| 306 | } |
| 307 | |
| 308 | void G4FastSimulationManager::ListModels(const G4String& modelName) const |
| 309 | { |
no test coverage detected