Style.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \namespace genie::utils::style
5 
6 \brief GENIE style!
7 
8 \author Costas Andreopoulos <costas.andreopoulos \at stfc.ac.uk>
9  University of Liverpool & STFC Rutherford Appleton Lab
10 
11 \created July 29, 2010
12 
13 \cpright Copyright (c) 2003-2018, The GENIE Collaboration
14  For the full text of the license visit http://copyright.genie-mc.org
15  or see $GENIE/LICENSE
16 */
17 //____________________________________________________________________________
18 
19 #ifndef _STYLE_UTILS_H_
20 #define _STYLE_UTILS_H_
21 
22 class TGraph;
23 class TH1;
24 
25 namespace genie {
26 namespace utils {
27 
28 namespace style
29 {
30 
31  void SetDefaultStyle(bool black_n_white=false);
32 
33  void Format(TGraph* gr,
34  int lcol, int lsty, int lwid, int mcol, int msty, double msiz);
35  void Format(TH1* hst,
36  int lcol, int lsty, int lwid, int mcol, int msty, double msiz);
37 
38 } // style namespace
39 } // utils namespace
40 } // genie namespace
41 
42 #endif // _SYST_UTILS_H_
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:26
void SetDefaultStyle(bool black_n_white=false)
Definition: Style.cxx:28
Definition: utils.py:1
void Format(TGraph *gr, int lcol, int lsty, int lwid, int mcol, int msty, double msiz)
Definition: Style.cxx:154