Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
Style.cxx
1/*
2 * Style.cxx
3 *
4 * Created on: 27 wrz 2022
5 * Author: Daniel Wielanek
6 * E-mail: daniel.wielanek@gmail.com
7 * Warsaw University of Technology, Faculty of Physics
8 */
9
10#include "Style.h"
11#include "Cout.h"
12#include "DividedHisto.h"
13#include "MultiGraph.h"
14#include "Std.h"
15#include "XMLNode.h"
16
17#include <initializer_list>
18
19#include <TAttLine.h>
20#include <TAttMarker.h>
21#include <TAxis.h>
22#include <TGraph.h>
23#include <TGraphErrors.h>
24#include <TVirtualPad.h>
25
26namespace Hal {
27 void Style::SetF(Int_t bit, Float_t val) {
28 fValues[bit].sFval = val;
29 SETBIT(fFlags, bit);
30 }
31
32 void Style::SetI(Int_t bit, Int_t val) {
33 fValues[bit].sIval = val;
34 SETBIT(fFlags, bit);
35 }
36
37} // namespace Hal