| 95 | } |
| 96 | |
| 97 | void G4PlotterManager::PrintStyle(const G4String& a_name) const { |
| 98 | for(const auto& style : fStyles) { |
| 99 | if(style.first == a_name) { |
| 100 | G4cout << style.first << ":" << G4endl; |
| 101 | for(const auto& item : style.second) { |
| 102 | G4cout << " " << item.first << " " << item.second << G4endl; |
| 103 | } |
| 104 | } |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | void G4PlotterManager::AddStyleParameter(const G4String& a_parameter,const G4String& a_value) { |
| 109 | Style* _style = FindStyle(fCurrentStyle); |