-
Notifications
You must be signed in to change notification settings - Fork 2
/
OHltEffPrinter.h
46 lines (36 loc) · 1 KB
/
OHltEffPrinter.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
//////////////////////////////////////////////////////////
//
// Class to print effs
//
//////////////////////////////////////////////////////////
#ifndef OHltEffPrinter_h
#define OHltEffPrinter_h
#include <vector>
#include "OHltMenu.h"
#include "OHltConfig.h"
#include "OHltTree.h"
class OHltEffPrinter
{
public:
OHltEffPrinter() {}
virtual ~OHltEffPrinter() {}
void SetupAll(
std::vector<double> Eff,
std::vector<double> EffErr,
std::vector<double> spureEff,
std::vector<double> spureEffErr,
std::vector<double> pureEff,
std::vector<double> pureEffErr,
std::vector< std::vector<double> >coMa,
double DenEff);
void printEffASCII(OHltConfig *cfg, OHltMenu *menu);
std::vector<double> Eff;
std::vector<double> EffErr;
std::vector<double> spureEff;
std::vector<double> spureEffErr;
std::vector<double> pureEff;
std::vector<double> pureEffErr;
std::vector< std::vector<double> > coMa;
double DenEff;
};
#endif