1 |
#ifndef HbbAnalysis_YieldStats_hh
|
2 |
#define HbbAnalysis_YieldStats_hh
|
3 |
|
4 |
#include <stdarg.h>
|
5 |
#include <vector>
|
6 |
#include <string>
|
7 |
#include <map>
|
8 |
|
9 |
namespace HbbAnalysis {//namespace
|
10 |
|
11 |
|
12 |
class YieldStats {
|
13 |
public:
|
14 |
YieldStats(std::string sampleName, std::string yieldName);
|
15 |
~YieldStats(){;}
|
16 |
YieldStats(){;}
|
17 |
|
18 |
//Setters
|
19 |
void SetSampleName(std::string const& sampleName);
|
20 |
void SetYieldName(std::string const& yieldName);
|
21 |
void SetStepNames(std::vector<std::string> const& stepNames);
|
22 |
void SetBinNames(std::vector<std::string> const& binNames);
|
23 |
|
24 |
//Getters
|
25 |
std::vector<std::string> GetStepNames() const;
|
26 |
std::vector<std::string> GetBinNames() const;
|
27 |
std::string GetSampleName() const { return sampleName_; }
|
28 |
std::string GetYieldName() const { return yieldName_; }
|
29 |
|
30 |
void IncrementCount(unsigned run, unsigned binIndex, unsigned stepIndex, double value);
|
31 |
void IncrementCount(unsigned run, std::string binName, std::string stepName, double value);
|
32 |
|
33 |
double CalculateYield(std::string const& stepName) const;
|
34 |
double CalculateYield(std::string stepName, unsigned minRun, unsigned maxRun) const;
|
35 |
double CalculateYield(std::string stepName, std::vector<std::string> const& binNames) const;
|
36 |
double CalculateYield(std::string const& stepName, unsigned minRun, unsigned maxRun, std::vector<std::string> const& binNames) const;
|
37 |
|
38 |
bool HasStep(std::string const& testStep) const { return stepIndexMap_.count(testStep); }
|
39 |
|
40 |
//Access Methods
|
41 |
double & at(unsigned runIndex, unsigned binIndex, unsigned stepIndex);
|
42 |
double at(unsigned runIndex, unsigned binIndex, unsigned stepIndex) const;
|
43 |
|
44 |
void Print() const;
|
45 |
|
46 |
private:
|
47 |
std::string sampleName_;
|
48 |
std::string yieldName_;
|
49 |
std::vector<double> yieldVector_;
|
50 |
std::vector<std::string> stepNames_;
|
51 |
std::vector<std::string> binNames_;
|
52 |
std::map<std::string,unsigned> stepIndexMap_;
|
53 |
std::map<std::string,unsigned> binIndexMap_;
|
54 |
std::map<unsigned, unsigned> runIndexMap_;
|
55 |
};
|
56 |
|
57 |
}//namespace
|
58 |
|
59 |
#endif //HbbAnalysis_YieldStats_hh
|