-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUnfold.h
37 lines (25 loc) · 844 Bytes
/
Unfold.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
#ifndef UNFOLD_H
#define UNFOLD_H
#include "RooUnfoldResponse.h"
#include "RooUnfoldBayes.h"
#include "TH2D.h"
class Unfold {
public:
Unfold(int nb, double xlo, double xhi);
RooUnfoldResponse response_SliceID_Int; //Interaction
RooUnfoldResponse response_SliceID_Inc; //Incident
RooUnfoldResponse response_SliceID_Ini; //Initial
TH1D *eff_num_Int; //Interaction efficiency numerator
TH1D *eff_den_Int; //Interaction efficiency denominator
TH1D *eff_num_Inc; //Incident efficiency numerator
TH1D *eff_den_Inc; //Incident efficiency denominator
TH1D *pur_num_Int; //Interaction purity numerator
TH1D *pur_num_Inc; //Incident purity numerator
TH1D *pur_den; //Interaction/incident purity denominator
TH1D *eff_Int;
TH1D *eff_Inc;
TH1D *pur_Int;
TH1D *pur_Inc;
void SaveHistograms();
};
#endif