Garfield 0.3
Toolkit for the detailed simulation of particle detectors based on ionization measurement in gases and semiconductors
Loading...
Searching...
No Matches
PlottingEngine.hh
Go to the documentation of this file.
1#ifndef G_PLOTTING_ENGINE_H
2#define G_PLOTTING_ENGINE_H
3#include <memory>
4
5class TStyle;
6
7namespace Garfield {
8
10
12 public:
17
19 static void SetSerif();
21 static void SetSansSerif();
22
24 static void SetPalette(const int ncol);
25
26 private:
27 static void SetFont(const int font);
28 static std::unique_ptr<TStyle> m_style;
29};
30
31} // namespace Garfield
32
33#endif
static void SetFont(const int font)
static void SetSerif()
Use serif font.
PlottingEngine()
Default constructor.
static std::unique_ptr< TStyle > m_style
static void SetPalette(const int ncol)
Set the colour palette.
static void SetSansSerif()
Use sans-serif font.
~PlottingEngine()
Destructor.