-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plot.h
executable file
·60 lines (49 loc) · 1.16 KB
/
Plot.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// ~~ PlotTING ~~
// ----------------------------------------------------------------------------
//
// Header including all functional and plotting headers
//
// ----------------------------------------------------------------------------
// --- INCLUDES ---------------------------------------------------------------
#include "TH1.h"
#include "THn.h"
#include "TLatex.h"
#include "TObjArray.h"
#include "TPad.h"
#include "TCanvas.h"
#include "TLegend.h"
#include "TPaveText.h"
#include "TFile.h"
#include "TGraphErrors.h"
#include "TGraphAsymmErrors.h"
#include "TMultiGraph.h"
#include "TStyle.h"
#include "TH2.h"
#include "TF1.h"
#include "TMarker.h"
#include "TRandom.h"
#include "TImage.h"
#include "TTimeStamp.h"
#include "TMath.h"
#include "TString.h"
#include <iostream>
#include <sstream>
#include <vector>
#include <typeinfo>
#include <algorithm>
#include <numeric>
#ifndef COLOR_H
#include "Color.h"
#endif
#ifndef FUNC_H
#include "functionality.h"
#endif
#ifndef BASE_H
#include "PlotBase.h"
#endif
#ifndef DERIVED_H
#include "PlotDerived.h"
#endif
#ifndef LEGEND_H
#include "Legend.h"
#endif