ra4_draw
4bd0201e3d922d42bd545d4b045ed44db33454a4
|
#include <plot_opt.hpp>
Public Member Functions | |
PlotOpt () | |
PlotOpt (const std::string &file_name, const std::string &config_name) | |
PlotOpt (const PlotOpt &)=default | |
PlotOpt & | operator= (const PlotOpt &)=default |
PlotOpt (PlotOpt &&)=default | |
PlotOpt & | operator= (PlotOpt &&)=default |
~PlotOpt ()=default | |
PlotOpt | operator() () const |
PlotOpt & | LoadOptions (const std::string &file_name, const std::string &config_name) |
PlotOpt & | Bottom (PlotOptTypes::BottomType bottom_type) |
PlotOptTypes::BottomType | Bottom () const |
PlotOpt & | YAxis (PlotOptTypes::YAxisType y_axis_type) |
PlotOptTypes::YAxisType | YAxis () const |
PlotOpt & | Title (PlotOptTypes::TitleType title_type) |
PlotOptTypes::TitleType | Title () const |
PlotOpt & | Stack (PlotOptTypes::StackType stack_type) |
PlotOptTypes::StackType | Stack () const |
PlotOpt & | Overflow (PlotOptTypes::OverflowType overflow_type) |
PlotOptTypes::OverflowType | Overflow () const |
PlotOpt & | FileExtensions (const std::set< std::string > &file_extensions) |
const std::set< std::string > & | FileExtensions () const |
PlotOpt & | LabelSize (double label_size) |
double | LabelSize () const |
PlotOpt & | TitleSize (double title_size) |
double | TitleSize () const |
PlotOpt & | XTitleOffset (double x_title_offset) |
double | XTitleOffset () const |
PlotOpt & | YTitleOffset (double y_title_offset) |
double | YTitleOffset () const |
PlotOpt & | ZTitleOffset (double z_title_offset) |
double | ZTitleOffset () const |
PlotOpt & | AutoYAxis (bool auto_y_axis) |
bool | AutoYAxis () const |
PlotOpt & | CanvasSize (int width, int height) |
PlotOpt & | CanvasWidth (int width) |
int | CanvasWidth () const |
PlotOpt & | CanvasHeight (int height) |
int | CanvasHeight () const |
PlotOpt & | Margin (double left, double right, double bottom, double top) |
PlotOpt & | LeftMargin (double left) |
double | LeftMargin () const |
PlotOpt & | RightMargin (double right) |
double | RightMargin () const |
PlotOpt & | BottomMargin (double bottom) |
double | BottomMargin () const |
PlotOpt & | TopMargin (double top) |
double | TopMargin () const |
PlotOpt & | BottomHeight (double bottom_height) |
double | BottomHeight () const |
PlotOpt & | LegendColumns (int columns) |
int | LegendColumns () const |
PlotOpt & | LegendEntryHeight (double height) |
double | LegendEntryHeight () const |
PlotOpt & | LegendMaxHeight (double height) |
double | LegendMaxHeight () const |
PlotOpt & | LegendMarkerWidth (double width) |
double | LegendMarkerWidth () const |
PlotOpt & | LegendPad (double pad) |
double | LegendPad () const |
PlotOpt & | LegendDensity (double density) |
double | LegendDensity () const |
PlotOpt & | LogMinimum (double log_minimum) |
double | LogMinimum () const |
PlotOpt & | RatioMinimum (double ratio_minimum) |
double | RatioMinimum () const |
PlotOpt & | RatioMaximum (double ratio_maximum) |
double | RatioMaximum () const |
PlotOpt & | NDivisions (int n_divisions) |
int | NDivisions () const |
PlotOpt & | NDivisionsBottom (int n_divisions) |
int | NDivisionsBottom () const |
PlotOpt & | Font (int font) |
int | Font () const |
PlotOpt & | ShowBackgroundError (bool show_background_error) |
bool | ShowBackgroundError () const |
PlotOpt & | UseCMYK (bool use_cmyk) |
bool | UseCMYK () const |
PlotOpt & | PrintVals (bool print_vals) |
bool | PrintVals () const |
double | TopToGlobalYNDC (double top_y) const |
double | GlobalToTopYNDC (double global_y) const |
double | BottomToGlobalYNDC (double bottom_y) const |
double | GlobalToBottomYNDC (double global_y) const |
double | TrueLegendHeight (std::size_t num_entries) const |
double | TrueLegendEntryHeight (std::size_t num_entries) const |
double | TrueLegendWidth (std::size_t num_entries) const |
bool | BackgroundsStacked () const |
bool | DisplayLumiEntry () const |
std::string | TypeString () const |
void | MakeSane () |
Private Member Functions | |
void | SetProperty (const std::string &property_name, const std::string &value_string) |
Private Attributes | |
PlotOptTypes::BottomType | bottom_type_ |
PlotOptTypes::YAxisType | y_axis_type_ |
PlotOptTypes::TitleType | title_type_ |
PlotOptTypes::StackType | stack_type_ |
PlotOptTypes::OverflowType | overflow_type_ |
std::set< std::string > | file_extensions_ |
double | title_size_ |
double | label_size_ |
double | x_title_offset_ |
double | y_title_offset_ |
double | z_title_offset_ |
bool | auto_y_axis_ |
int | canvas_width_ |
int | canvas_height_ |
double | left_margin_ |
double | right_margin_ |
double | bottom_margin_ |
double | top_margin_ |
double | bottom_height_ |
int | legend_columns_ |
double | legend_entry_height_ |
double | legend_max_height_ |
double | legend_marker_width_ |
double | legend_pad_ |
double | legend_density_ |
double | log_minimum_ |
double | ratio_minimum_ |
double | ratio_maximum_ |
int | n_divisions_ |
int | n_divisions_bottom_ |
int | font_ |
bool | show_background_error_ |
bool | use_cmyk_ |
bool | print_vals_ |
Definition at line 17 of file plot_opt.hpp.
PlotOpt::PlotOpt | ( | ) |
Definition at line 13 of file plot_opt.cpp.
References auto_y_axis_, PlotOptTypes::both, bottom_height_, bottom_margin_, canvas_height_, canvas_width_, font_, PlotOptTypes::info, label_size_, left_margin_, legend_columns_, legend_density_, legend_entry_height_, legend_marker_width_, legend_max_height_, legend_pad_, PlotOptTypes::linear, log_minimum_, n_divisions_, n_divisions_bottom_, PlotOptTypes::off, print_vals_, ratio_maximum_, ratio_minimum_, right_margin_, show_background_error_, PlotOptTypes::signal_overlay, title_size_, top_margin_, use_cmyk_, x_title_offset_, y_title_offset_, and z_title_offset_.
PlotOpt::PlotOpt | ( | const std::string & | file_name, |
const std::string & | config_name | ||
) |
Definition at line 50 of file plot_opt.cpp.
References LoadOptions().
|
default |
|
default |
|
default |
PlotOpt & PlotOpt::AutoYAxis | ( | bool | auto_y_axis | ) |
Definition at line 192 of file plot_opt.cpp.
References auto_y_axis_.
Referenced by Hist1D::Print().
bool PlotOpt::AutoYAxis | ( | ) | const |
bool PlotOpt::BackgroundsStacked | ( | ) | const |
Definition at line 447 of file plot_opt.cpp.
References DBG, and stack_type_.
Referenced by Hist1D::AdjustFillStyles(), DisplayLumiEntry(), Hist1D::GetLegends(), Hist1D::GetMean(), Hist1D::GetYield(), and MakeSane().
PlotOpt & PlotOpt::Bottom | ( | PlotOptTypes::BottomType | bottom_type | ) |
Definition at line 93 of file plot_opt.cpp.
References bottom_type_.
Referenced by Hist1D::FixYAxis(), Hist1D::GetBottomHorizontal(), Hist1D::GetBottomPlots(), Hist1D::GetLegendRatio(), Hist1D::GetPads(), main(), Hist1D::Print(), and Hist1D::StripTopPlotLabels().
BottomType PlotOpt::Bottom | ( | ) | const |
PlotOpt & PlotOpt::BottomHeight | ( | double | bottom_height | ) |
Definition at line 269 of file plot_opt.cpp.
References bottom_height_.
Referenced by Hist1D::GetLegendRatio(), and Hist1D::GetPads().
double PlotOpt::BottomHeight | ( | ) | const |
Definition at line 274 of file plot_opt.cpp.
References bottom_height_.
Referenced by SetProperty().
PlotOpt & PlotOpt::BottomMargin | ( | double | bottom | ) |
Definition at line 251 of file plot_opt.cpp.
References bottom_margin_.
Referenced by Hist1D::GetLegendRatio(), Hist1D::GetPads(), main(), Hist2D::MakeOnePlot(), plotKappa(), and setPlotStyle().
double PlotOpt::BottomMargin | ( | ) | const |
Definition at line 256 of file plot_opt.cpp.
References bottom_margin_.
Referenced by SetProperty().
double PlotOpt::BottomToGlobalYNDC | ( | double | bottom_y | ) | const |
Definition at line 423 of file plot_opt.cpp.
References bottom_height_, bottom_margin_, and bottom_type_.
PlotOpt & PlotOpt::CanvasHeight | ( | int | height | ) |
Definition at line 216 of file plot_opt.cpp.
References canvas_height_.
Referenced by Hist1D::AddEntries(), Hist1D::GetPads(), Hist1D::GetTitleSize(), Hist2D::MakeOnePlot(), and setPlotStyle().
int PlotOpt::CanvasHeight | ( | ) | const |
Definition at line 221 of file plot_opt.cpp.
References canvas_height_.
Referenced by SetProperty().
PlotOpt & PlotOpt::CanvasSize | ( | int | width, |
int | height | ||
) |
Definition at line 201 of file plot_opt.cpp.
References canvas_height_, and canvas_width_.
PlotOpt & PlotOpt::CanvasWidth | ( | int | width | ) |
Definition at line 207 of file plot_opt.cpp.
References canvas_width_.
Referenced by Hist1D::AddEntries(), Hist1D::GetPads(), Hist1D::GetTitleSize(), Hist2D::MakeOnePlot(), plotKappa(), and setPlotStyle().
int PlotOpt::CanvasWidth | ( | ) | const |
bool PlotOpt::DisplayLumiEntry | ( | ) | const |
Definition at line 461 of file plot_opt.cpp.
References BackgroundsStacked(), and title_type_.
Referenced by Hist1D::GetLegendRatio(), and Hist1D::GetLegends().
PlotOpt & PlotOpt::FileExtensions | ( | const std::set< std::string > & | file_extensions | ) |
Definition at line 138 of file plot_opt.cpp.
References file_extensions_.
Referenced by main(), Hist2D::MakeOnePlot(), and Hist1D::Print().
const set< string > & PlotOpt::FileExtensions | ( | ) | const |
Definition at line 143 of file plot_opt.cpp.
References file_extensions_.
Referenced by SetProperty().
PlotOpt & PlotOpt::Font | ( | int | font | ) |
Definition at line 377 of file plot_opt.cpp.
References font_.
Referenced by Hist2D::GetLabels(), Hist1D::GetLegends(), Hist1D::GetTitleTexts(), and Hist1D::StyleHisto().
int PlotOpt::Font | ( | ) | const |
double PlotOpt::GlobalToBottomYNDC | ( | double | global_y | ) | const |
Definition at line 428 of file plot_opt.cpp.
References bottom_height_, bottom_margin_, and bottom_type_.
double PlotOpt::GlobalToTopYNDC | ( | double | global_y | ) | const |
Definition at line 418 of file plot_opt.cpp.
References bottom_height_, bottom_margin_, and bottom_type_.
PlotOpt & PlotOpt::LabelSize | ( | double | label_size | ) |
Definition at line 156 of file plot_opt.cpp.
References label_size_.
Referenced by Hist2D::GetBkgHist(), setPlotStyle(), and Hist1D::StyleHisto().
double PlotOpt::LabelSize | ( | ) | const |
PlotOpt & PlotOpt::LeftMargin | ( | double | left | ) |
Definition at line 233 of file plot_opt.cpp.
References left_margin_.
Referenced by Hist2D::GetLabels(), Hist1D::GetLegends(), Hist1D::GetPads(), Hist1D::GetTitleSize(), Hist1D::GetTitleTexts(), main(), Hist2D::MakeOnePlot(), plotKappa(), plotRatio(), and setPlotStyle().
double PlotOpt::LeftMargin | ( | ) | const |
PlotOpt & PlotOpt::LegendColumns | ( | int | columns | ) |
Definition at line 278 of file plot_opt.cpp.
References legend_columns_.
Referenced by Hist1D::GetLegends().
int PlotOpt::LegendColumns | ( | ) | const |
Definition at line 283 of file plot_opt.cpp.
References legend_columns_.
Referenced by SetProperty().
PlotOpt & PlotOpt::LegendDensity | ( | double | density | ) |
Definition at line 323 of file plot_opt.cpp.
References legend_density_.
Referenced by Hist1D::AddEntries().
double PlotOpt::LegendDensity | ( | ) | const |
Definition at line 328 of file plot_opt.cpp.
References legend_density_.
Referenced by SetProperty().
PlotOpt & PlotOpt::LegendEntryHeight | ( | double | height | ) |
Definition at line 287 of file plot_opt.cpp.
References legend_entry_height_.
Referenced by plotKappa(), and plotRatio().
double PlotOpt::LegendEntryHeight | ( | ) | const |
Definition at line 292 of file plot_opt.cpp.
References legend_entry_height_.
Referenced by SetProperty().
PlotOpt & PlotOpt::LegendMarkerWidth | ( | double | width | ) |
Definition at line 305 of file plot_opt.cpp.
References legend_marker_width_.
Referenced by Hist1D::AddEntries(), and Hist1D::GetLegends().
double PlotOpt::LegendMarkerWidth | ( | ) | const |
Definition at line 310 of file plot_opt.cpp.
References legend_marker_width_.
Referenced by SetProperty().
PlotOpt & PlotOpt::LegendMaxHeight | ( | double | height | ) |
Definition at line 296 of file plot_opt.cpp.
References legend_max_height_.
double PlotOpt::LegendMaxHeight | ( | ) | const |
Definition at line 301 of file plot_opt.cpp.
References legend_max_height_.
Referenced by SetProperty().
PlotOpt & PlotOpt::LegendPad | ( | double | pad | ) |
Definition at line 314 of file plot_opt.cpp.
References legend_pad_.
Referenced by Hist1D::GetLegendRatio(), and Hist1D::GetLegends().
double PlotOpt::LegendPad | ( | ) | const |
PlotOpt & PlotOpt::LoadOptions | ( | const std::string & | file_name, |
const std::string & | config_name | ||
) |
Definition at line 60 of file plot_opt.cpp.
References ERROR, ReplaceAll(), and SetProperty().
Referenced by PlotOpt().
PlotOpt & PlotOpt::LogMinimum | ( | double | log_minimum | ) |
Definition at line 350 of file plot_opt.cpp.
References log_minimum_.
Referenced by Hist2D::GetBkgHist(), Hist1D::GetCutLines(), and Hist1D::SetRanges().
double PlotOpt::LogMinimum | ( | ) | const |
void PlotOpt::MakeSane | ( | ) |
Definition at line 489 of file plot_opt.cpp.
References BackgroundsStacked(), DBG, show_background_error_, and ShowBackgroundError().
Referenced by Hist2D::Print(), and Hist1D::Print().
PlotOpt & PlotOpt::Margin | ( | double | left, |
double | right, | ||
double | bottom, | ||
double | top | ||
) |
Definition at line 225 of file plot_opt.cpp.
References bottom_margin_, left_margin_, right_margin_, and top_margin_.
PlotOpt & PlotOpt::NDivisions | ( | int | n_divisions | ) |
Definition at line 332 of file plot_opt.cpp.
References n_divisions_.
Referenced by setPlotStyle(), and Hist1D::StyleHisto().
int PlotOpt::NDivisions | ( | ) | const |
PlotOpt & PlotOpt::NDivisionsBottom | ( | int | n_divisions | ) |
Definition at line 341 of file plot_opt.cpp.
References n_divisions_bottom_.
Referenced by Hist1D::GetBottomPlots().
int PlotOpt::NDivisionsBottom | ( | ) | const |
Definition at line 346 of file plot_opt.cpp.
References n_divisions_bottom_.
Referenced by SetProperty().
PlotOpt PlotOpt::operator() | ( | ) | const |
Definition at line 56 of file plot_opt.cpp.
PlotOpt & PlotOpt::Overflow | ( | PlotOptTypes::OverflowType | overflow_type | ) |
Definition at line 129 of file plot_opt.cpp.
References overflow_type_.
Referenced by Hist1D::MergeOverflow().
OverflowType PlotOpt::Overflow | ( | ) | const |
Definition at line 134 of file plot_opt.cpp.
References overflow_type_.
Referenced by SetProperty().
PlotOpt & PlotOpt::PrintVals | ( | bool | print_vals | ) |
Definition at line 404 of file plot_opt.cpp.
References print_vals_.
Referenced by main(), and Hist1D::Print().
bool PlotOpt::PrintVals | ( | ) | const |
PlotOpt & PlotOpt::RatioMaximum | ( | double | ratio_maximum | ) |
Definition at line 368 of file plot_opt.cpp.
References ratio_maximum_.
Referenced by Hist1D::GetBottomPlots(), main(), and Hist1D::Print().
double PlotOpt::RatioMaximum | ( | ) | const |
Definition at line 373 of file plot_opt.cpp.
References ratio_maximum_.
Referenced by SetProperty().
PlotOpt & PlotOpt::RatioMinimum | ( | double | ratio_minimum | ) |
Definition at line 359 of file plot_opt.cpp.
References ratio_minimum_.
Referenced by Hist1D::GetBottomPlots(), and Hist1D::Print().
double PlotOpt::RatioMinimum | ( | ) | const |
Definition at line 364 of file plot_opt.cpp.
References ratio_minimum_.
Referenced by SetProperty().
PlotOpt & PlotOpt::RightMargin | ( | double | right | ) |
Definition at line 242 of file plot_opt.cpp.
References right_margin_.
Referenced by Hist2D::GetLabels(), Hist1D::GetPads(), Hist1D::GetTitleSize(), Hist1D::GetTitleTexts(), main(), Hist2D::MakeOnePlot(), plotKappa(), plotRatio(), and setPlotStyle().
double PlotOpt::RightMargin | ( | ) | const |
|
private |
Definition at line 498 of file plot_opt.cpp.
References AutoYAxis(), Bottom(), BottomHeight(), BottomMargin(), CanvasHeight(), CanvasWidth(), DBG, FileExtensions(), Font(), LabelSize(), LeftMargin(), LegendColumns(), LegendDensity(), LegendEntryHeight(), LegendMarkerWidth(), LegendMaxHeight(), LegendPad(), LogMinimum(), NDivisions(), NDivisionsBottom(), Overflow(), PrintVals(), RatioMaximum(), RatioMinimum(), RightMargin(), ShowBackgroundError(), Stack(), Title(), TitleSize(), TopMargin(), UseCMYK(), XTitleOffset(), YAxis(), YTitleOffset(), and ZTitleOffset().
Referenced by LoadOptions().
PlotOpt & PlotOpt::ShowBackgroundError | ( | bool | show_background_error | ) |
Definition at line 386 of file plot_opt.cpp.
References show_background_error_.
Referenced by Hist1D::GetMaxDraw(), Hist1D::GetMinDraw(), main(), and Hist1D::Print().
bool PlotOpt::ShowBackgroundError | ( | ) | const |
Definition at line 391 of file plot_opt.cpp.
References show_background_error_.
Referenced by MakeSane(), and SetProperty().
PlotOpt & PlotOpt::Stack | ( | PlotOptTypes::StackType | stack_type | ) |
Definition at line 120 of file plot_opt.cpp.
References stack_type_.
Referenced by Hist1D::AddEntries(), Hist1D::GetBottomPlots(), Hist1D::GetLegends(), main(), Hist2D::MakeOnePlot(), Hist1D::NormalizeHistos(), Hist1D::StackHistos(), and Hist1D::StyleHisto().
StackType PlotOpt::Stack | ( | ) | const |
PlotOpt & PlotOpt::Title | ( | PlotOptTypes::TitleType | title_type | ) |
Definition at line 111 of file plot_opt.cpp.
References title_type_.
Referenced by Hist1D::AddEntries(), Hist2D::AddEntry(), Hist2D::GetLabels(), Hist1D::GetTitleTexts(), and main().
TitleType PlotOpt::Title | ( | ) | const |
PlotOpt & PlotOpt::TitleSize | ( | double | title_size | ) |
Definition at line 147 of file plot_opt.cpp.
References title_size_.
Referenced by Hist2D::GetBkgHist(), setPlotStyle(), and Hist1D::StyleHisto().
double PlotOpt::TitleSize | ( | ) | const |
PlotOpt & PlotOpt::TopMargin | ( | double | top | ) |
Definition at line 260 of file plot_opt.cpp.
References top_margin_.
Referenced by Hist2D::GetLabels(), Hist1D::GetLegendRatio(), Hist1D::GetLegends(), Hist1D::GetPads(), Hist1D::GetTitleSize(), Hist1D::GetTitleTexts(), main(), Hist2D::MakeOnePlot(), plotKappa(), plotRatio(), and setPlotStyle().
double PlotOpt::TopMargin | ( | ) | const |
double PlotOpt::TopToGlobalYNDC | ( | double | top_y | ) | const |
Definition at line 413 of file plot_opt.cpp.
References bottom_height_, bottom_margin_, and bottom_type_.
double PlotOpt::TrueLegendEntryHeight | ( | std::size_t | num_entries | ) | const |
Definition at line 437 of file plot_opt.cpp.
References legend_columns_, and TrueLegendHeight().
Referenced by Hist1D::AddEntries(), and Hist1D::GetLegends().
double PlotOpt::TrueLegendHeight | ( | std::size_t | num_entries | ) | const |
Definition at line 433 of file plot_opt.cpp.
References legend_columns_, legend_entry_height_, and legend_max_height_.
Referenced by Hist1D::GetLegendRatio(), Hist1D::GetLegends(), and TrueLegendEntryHeight().
double PlotOpt::TrueLegendWidth | ( | std::size_t | num_entries | ) | const |
Definition at line 441 of file plot_opt.cpp.
References left_margin_, legend_columns_, legend_pad_, and right_margin_.
Referenced by Hist1D::AddEntries(), and Hist1D::GetLegends().
string PlotOpt::TypeString | ( | ) | const |
Definition at line 466 of file plot_opt.cpp.
References DBG, stack_type_, and y_axis_type_.
Referenced by Hist2D::MakeOnePlot(), and Hist1D::Print().
PlotOpt & PlotOpt::UseCMYK | ( | bool | use_cmyk | ) |
Definition at line 395 of file plot_opt.cpp.
References use_cmyk_.
Referenced by Hist2D::Print(), and Hist1D::Print().
bool PlotOpt::UseCMYK | ( | ) | const |
PlotOpt & PlotOpt::XTitleOffset | ( | double | x_title_offset | ) |
Definition at line 165 of file plot_opt.cpp.
References x_title_offset_.
Referenced by Hist2D::GetBkgHist(), setPlotStyle(), and Hist1D::StyleHisto().
double PlotOpt::XTitleOffset | ( | ) | const |
Definition at line 170 of file plot_opt.cpp.
References x_title_offset_.
Referenced by SetProperty().
PlotOpt & PlotOpt::YAxis | ( | PlotOptTypes::YAxisType | y_axis_type | ) |
Definition at line 102 of file plot_opt.cpp.
References y_axis_type_.
Referenced by Hist1D::FixYAxis(), Hist1D::GetCutLines(), main(), Hist1D::Print(), and Hist1D::SetRanges().
YAxisType PlotOpt::YAxis | ( | ) | const |
PlotOpt & PlotOpt::YTitleOffset | ( | double | y_title_offset | ) |
Definition at line 174 of file plot_opt.cpp.
References y_title_offset_.
Referenced by Hist1D::FixYAxis(), Hist2D::GetBkgHist(), setPlotStyle(), and Hist1D::StyleHisto().
double PlotOpt::YTitleOffset | ( | ) | const |
Definition at line 179 of file plot_opt.cpp.
References y_title_offset_.
Referenced by SetProperty().
PlotOpt & PlotOpt::ZTitleOffset | ( | double | z_title_offset | ) |
Definition at line 183 of file plot_opt.cpp.
References z_title_offset_.
Referenced by Hist2D::GetBkgHist().
double PlotOpt::ZTitleOffset | ( | ) | const |
Definition at line 188 of file plot_opt.cpp.
References z_title_offset_.
Referenced by SetProperty().
|
private |
Definition at line 151 of file plot_opt.hpp.
Referenced by AutoYAxis(), and PlotOpt().
|
private |
Definition at line 154 of file plot_opt.hpp.
Referenced by BottomHeight(), BottomToGlobalYNDC(), GlobalToBottomYNDC(), GlobalToTopYNDC(), PlotOpt(), and TopToGlobalYNDC().
|
private |
Definition at line 153 of file plot_opt.hpp.
Referenced by BottomMargin(), BottomToGlobalYNDC(), GlobalToBottomYNDC(), GlobalToTopYNDC(), Margin(), PlotOpt(), and TopToGlobalYNDC().
|
private |
Definition at line 143 of file plot_opt.hpp.
Referenced by Bottom(), BottomToGlobalYNDC(), GlobalToBottomYNDC(), GlobalToTopYNDC(), and TopToGlobalYNDC().
|
private |
Definition at line 152 of file plot_opt.hpp.
Referenced by CanvasHeight(), CanvasSize(), and PlotOpt().
|
private |
Definition at line 152 of file plot_opt.hpp.
Referenced by CanvasSize(), CanvasWidth(), and PlotOpt().
|
private |
Definition at line 148 of file plot_opt.hpp.
Referenced by FileExtensions().
|
private |
Definition at line 161 of file plot_opt.hpp.
|
private |
Definition at line 149 of file plot_opt.hpp.
Referenced by LabelSize(), and PlotOpt().
|
private |
Definition at line 153 of file plot_opt.hpp.
Referenced by LeftMargin(), Margin(), PlotOpt(), and TrueLegendWidth().
|
private |
Definition at line 155 of file plot_opt.hpp.
Referenced by LegendColumns(), PlotOpt(), TrueLegendEntryHeight(), TrueLegendHeight(), and TrueLegendWidth().
|
private |
Definition at line 157 of file plot_opt.hpp.
Referenced by LegendDensity(), and PlotOpt().
|
private |
Definition at line 156 of file plot_opt.hpp.
Referenced by LegendEntryHeight(), PlotOpt(), and TrueLegendHeight().
|
private |
Definition at line 157 of file plot_opt.hpp.
Referenced by LegendMarkerWidth(), and PlotOpt().
|
private |
Definition at line 156 of file plot_opt.hpp.
Referenced by LegendMaxHeight(), PlotOpt(), and TrueLegendHeight().
|
private |
Definition at line 157 of file plot_opt.hpp.
Referenced by LegendPad(), PlotOpt(), and TrueLegendWidth().
|
private |
Definition at line 158 of file plot_opt.hpp.
Referenced by LogMinimum(), and PlotOpt().
|
private |
Definition at line 160 of file plot_opt.hpp.
Referenced by NDivisions(), and PlotOpt().
|
private |
Definition at line 160 of file plot_opt.hpp.
Referenced by NDivisionsBottom(), and PlotOpt().
|
private |
Definition at line 147 of file plot_opt.hpp.
Referenced by Overflow().
|
private |
Definition at line 164 of file plot_opt.hpp.
Referenced by PlotOpt(), and PrintVals().
|
private |
Definition at line 159 of file plot_opt.hpp.
Referenced by PlotOpt(), and RatioMaximum().
|
private |
Definition at line 159 of file plot_opt.hpp.
Referenced by PlotOpt(), and RatioMinimum().
|
private |
Definition at line 153 of file plot_opt.hpp.
Referenced by Margin(), PlotOpt(), RightMargin(), and TrueLegendWidth().
|
private |
Definition at line 162 of file plot_opt.hpp.
Referenced by MakeSane(), PlotOpt(), and ShowBackgroundError().
|
private |
Definition at line 146 of file plot_opt.hpp.
Referenced by BackgroundsStacked(), Stack(), and TypeString().
|
private |
Definition at line 149 of file plot_opt.hpp.
Referenced by PlotOpt(), and TitleSize().
|
private |
Definition at line 145 of file plot_opt.hpp.
Referenced by DisplayLumiEntry(), and Title().
|
private |
Definition at line 153 of file plot_opt.hpp.
Referenced by Margin(), PlotOpt(), and TopMargin().
|
private |
Definition at line 163 of file plot_opt.hpp.
|
private |
Definition at line 150 of file plot_opt.hpp.
Referenced by PlotOpt(), and XTitleOffset().
|
private |
Definition at line 144 of file plot_opt.hpp.
Referenced by TypeString(), and YAxis().
|
private |
Definition at line 150 of file plot_opt.hpp.
Referenced by PlotOpt(), and YTitleOffset().
|
private |
Definition at line 150 of file plot_opt.hpp.
Referenced by PlotOpt(), and ZTitleOffset().