1 |
dhidas |
1.1 |
/*
|
2 |
|
|
* EventPrinter.h
|
3 |
|
|
*
|
4 |
|
|
* Created on: 22 Aug 2010
|
5 |
|
|
* Author: kreczko
|
6 |
|
|
*/
|
7 |
|
|
|
8 |
|
|
#ifndef EVENTTABLEPRINTER_H_
|
9 |
|
|
#define EVENTTABLEPRINTER_H_
|
10 |
|
|
#include "../EventCounter.h"
|
11 |
|
|
#include "../EventWeightProvider.h"
|
12 |
|
|
#include "../ToplikeCandidate.h"
|
13 |
|
|
|
14 |
|
|
namespace BAT {
|
15 |
|
|
|
16 |
|
|
namespace EventTablePrinter {
|
17 |
|
|
void printCutFlowCSVTable(const Counter& cutFlow);
|
18 |
|
|
void printCutFlowLatexTable(const Counter& cutFlow);
|
19 |
|
|
void printUnweightedCutFlowLatexTable(const Counter& cutFlow);
|
20 |
|
|
void printWprimeCutFlowUnwt(const Counter& cutFlow, EventWeightProvider &weights,
|
21 |
|
|
const ToplikeSelectionSteps::Step cutArray[], unsigned int cutArraySiz,
|
22 |
|
|
const char *const selType);
|
23 |
|
|
void printWprimeCutFlow(const Counter& cutFlow, EventWeightProvider &weights,
|
24 |
|
|
const ToplikeSelectionSteps::Step cutArray[], unsigned int cutArraySiz,
|
25 |
|
|
const char *const selType, const float luminosity = 5.0);
|
26 |
|
|
}
|
27 |
|
|
}
|
28 |
|
|
#endif /* EVENTPRINTER_H_ */
|