ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/dhidas/OSUAnalysis/Tools/interface/Printers/EventTablePrinter.h
Revision: 1.1.1.1 (vendor branch)
Committed: Thu Dec 1 16:28:48 2011 UTC (13 years, 5 months ago) by dhidas
Content type: text/plain
Branch: dhidas, MAIN
CVS Tags: START, HEAD
Changes since 1.1: +0 -0 lines
Log Message:
osu copy modified

File Contents

# Content
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_ */