| 85 | } |
| 86 | |
| 87 | void G4PlotterManager::RemoveStyle(const G4String& a_name) { |
| 88 | for (auto it = fStyles.begin(); it != fStyles.end(); ++it) { |
| 89 | if (it->first == a_name) { |
| 90 | fStyles.erase(it); |
| 91 | if (fCurrentStyle == a_name) fCurrentStyle.clear(); |
| 92 | return; |
| 93 | } |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | void G4PlotterManager::PrintStyle(const G4String& a_name) const { |
| 98 | for(const auto& style : fStyles) { |
no test coverage detected