#include <G4PlotParameters.hh>
Definition at line 41 of file G4PlotParameters.hh.
◆ G4PlotParameters()
G4PlotParameters::G4PlotParameters |
( |
| ) |
|
Definition at line 38 of file G4PlotParameters.cc.
39 : fMessenger(nullptr),
40#if defined(TOOLS_USE_FREETYPE)
41 fDefaultStyle("ROOT_default"),
42 fAvailableStyles("ROOT_default hippodrow inlib_default"),
43#else
44 fDefaultStyle("inlib_default"),
45 fAvailableStyles("inlib_default"),
46#endif
47 fStyle(fDefaultStyle)
48{
49 fMessenger = std::make_unique<G4PlotMessenger>(this);
50}
◆ GetAvailableStyles()
G4String G4PlotParameters::GetAvailableStyles |
( |
| ) |
|
|
inline |
◆ GetColumns()
G4int G4PlotParameters::GetColumns |
( |
| ) |
const |
|
inline |
◆ GetHeight()
G4int G4PlotParameters::GetHeight |
( |
| ) |
const |
|
inline |
◆ GetMaxColumns()
G4int G4PlotParameters::GetMaxColumns |
( |
| ) |
|
|
inline |
◆ GetMaxRows()
G4int G4PlotParameters::GetMaxRows |
( |
| ) |
|
|
inline |
◆ GetRows()
G4int G4PlotParameters::GetRows |
( |
| ) |
const |
|
inline |
◆ GetScale()
G4float G4PlotParameters::GetScale |
( |
| ) |
const |
|
inline |
◆ GetStyle()
G4String G4PlotParameters::GetStyle |
( |
| ) |
const |
|
inline |
◆ GetWidth()
G4int G4PlotParameters::GetWidth |
( |
| ) |
const |
|
inline |
◆ SetDimensions()
void G4PlotParameters::SetDimensions |
( |
G4int | width, |
|
|
G4int | height ) |
◆ SetLayout()
void G4PlotParameters::SetLayout |
( |
G4int | columns, |
|
|
G4int | rows ) |
Definition at line 57 of file G4PlotParameters.cc.
58{
59 if ( columns > rows ||
60 columns < 1 || columns > fkMaxColumns ||
61 rows < 1 || rows > fkMaxRows ) {
62 Warn(
"Layout: " + to_string(columns) +
" x " + to_string(rows) +
63 " was ignored.\n"
64 "Supported layouts (columns <= rows): \n" +
65 " columns = 1 .. " + to_string(fkMaxColumns) + "\n" +
66 " rows = 1 .. " + to_string(fkMaxRows),
67 fkClass, "SetLayout");
68 return;
69 }
70 fColumns = columns;
71 fRows = rows;
72}
void Warn(const G4String &message, const std::string_view inClass, const std::string_view inFunction)
◆ SetStyle()
void G4PlotParameters::SetStyle |
( |
const G4String & | style | ) |
|
Definition at line 82 of file G4PlotParameters.cc.
83{
84
85
86 if ( fAvailableStyles.find(style) == std::string::npos ) {
87 Warn(
"Style: " + style +
" was ignored.\n" +
88 "Supported styles: " + fAvailableStyles,
89 fkClass, "SetStyle");
90 return;
91 }
92
93 fStyle = style;
94
95 if ( fStyle == "ROOT_default" ) {
96 fScale = fkDefaultScale;
97 } else {
98 fScale = 1.f;
99 }
100}
The documentation for this class was generated from the following files: