38class G4PlotterManager {
45 using Style = std::vector<StyleItem>;
47 using Styles = std::vector<NamedStyle>;
57 void ListStyles()
const;
59 void SelectStyle(
const G4String& style);
60 void RemoveStyle(
const G4String& name);
61 void PrintStyle(
const G4String&)
const;
64 typedef std::pair<G4String,G4Plotter> NamedPlotter;
65 std::vector<NamedPlotter> fPlotters;
72 Messenger(
G4PlotterManager& aPlotterManager):fPlotterManager(aPlotterManager) {
77 remove_style =
new G4UIcommand(
"/vis/plotter/style/remove",
this);
85 select_style =
new G4UIcommand(
"/vis/plotter/style/select",
this);
86 select_style->
SetGuidance(
"Select a named style for further style/add commands.");
87 select_style->
SetGuidance(
"If not existing, the named style is created.");
94 add_style_parameter =
new G4UIcommand(
"/vis/plotter/style/add",
this);
95 add_style_parameter->
SetGuidance(
"Add a (parameter,value) to the current named style.");
105 list_styles =
new G4UIcommand(
"/vis/plotter/style/list",
this);
106 list_styles->
SetGuidance(
"List known not embedded styles.");
110 print_style =
new G4UIcommand(
"/vis/plotter/style/print",
this);
116 virtual ~Messenger() {
119 delete add_style_parameter;
123 virtual void SetNewValue(G4UIcommand*,G4String);
125 G4PlotterManager& fPlotterManager;
126 G4UIcommand* remove_style;
127 G4UIcommand* select_style;
128 G4UIcommand* add_style_parameter;
129 G4UIcommand* list_styles;
130 G4UIcommand* print_style;
133 Messenger* fMessenger;