-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHistogramFactory.h
27 lines (22 loc) · 1.08 KB
/
HistogramFactory.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
#ifndef HistogramFactory_h
#define HistogramFactory_h
#include "TH1F.h"
#include <string>
class HistogramFactory {
public:
static TH1F * createZmassBigHisto(std::string s, std::string title);
static TH1F * createZmassHisto(std::string s, std::string title);
static TH1F * createMETbigHisto(std::string s, std::string title);
static TH1F * createMETHisto(std::string s, std::string title);
static TH1F * createZptHisto(std::string s, std::string title);
static TH1D * createZPtHistogram_aTGC(std::string s, std::string title);
static TH1F * createWcandptHisto(std::string s, std::string title);
static TH1F * createLeadingJetptHisto(std::string s, std::string title);
static TH1F * createNjetsHisto(std::string s, std::string title);
static TH1F * createNjetsHistoBigger(std::string s, std::string title);
static TH1F * createDeltaPhi(std::string s, std::string title);
static TH1F * createMTW(std::string s, std::string title);
static TH1F * create3LmassHisto(std::string s, std::string title);
static TH1F * createEtaHisto(std::string s, std::string title);
};
#endif