forked from ltikvica/WZanalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHistogramFactory.C
102 lines (58 loc) · 2.18 KB
/
HistogramFactory.C
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#include "HistogramFactory.h"
#include <vector>
TH1F * HistogramFactory::createZmassBigHisto(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(), 100,60, 120);
return h;
}
TH1F * HistogramFactory::createZmassHisto(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(), 40,70, 110);
return h;
}
TH1F * HistogramFactory::createMETbigHisto(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(), 150,0., 300);
return h;
}
TH1F * HistogramFactory::createMETHisto(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(), 40,0., 200);
return h;
}
TH1F * HistogramFactory::createZptHisto(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(), 40,0., 400);
return h;
}
TH1D * HistogramFactory::createZPtHistogram_aTGC(std::string s, std::string title) {
TH1D * h = new TH1D(s.c_str(),title.c_str(), 8,0., 400);
return h;
}
TH1F * HistogramFactory::createWcandptHisto(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(), 40,0., 400);
return h;
}
TH1F * HistogramFactory::createLeadingJetptHisto(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(), 40,0., 200);
return h;
}
TH1F * HistogramFactory::createNjetsHisto(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(),4, 0, 4);
return h;
}
TH1F * HistogramFactory::createNjetsHistoBigger(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(),6, 0, 6);
return h;
}
TH1F * HistogramFactory::createDeltaPhi(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(),32, 0, 3.2);
return h;
}
TH1F * HistogramFactory::createMTW(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(),40, 0, 200);
return h;
}
TH1F * HistogramFactory::create3LmassHisto(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(), 27,80, 350);
return h;
}
TH1F * HistogramFactory::createEtaHisto(std::string s, std::string title) {
TH1F * h = new TH1F(s.c_str(),title.c_str(), 9,0, 3);
return h;
}