1 |
dhidas |
1.1 |
/*
|
2 |
|
|
* EventPrinter.h
|
3 |
|
|
*
|
4 |
|
|
* Created on: 22 Aug 2010
|
5 |
|
|
* Author: kreczko
|
6 |
|
|
*/
|
7 |
|
|
|
8 |
|
|
#ifndef EventContentPrinter_H_
|
9 |
|
|
#define EventContentPrinter_H_
|
10 |
|
|
#include "../RecoObjects/MCParticle.h"
|
11 |
|
|
#include "../RecoObjects/Particle.h"
|
12 |
|
|
#include "../RecoObjects/Electron.h"
|
13 |
|
|
#include "../RecoObjects/Jet.h"
|
14 |
|
|
|
15 |
|
|
namespace BAT {
|
16 |
|
|
|
17 |
|
|
namespace EventContentPrinter {
|
18 |
|
|
extern void printJets(const JetCollection jets);
|
19 |
|
|
extern void printElectrons(const ElectronCollection electrons);
|
20 |
|
|
|
21 |
|
|
extern void printJet(const JetPointer jet);
|
22 |
|
|
extern void printPFJetExtra(const JetPointer jet);
|
23 |
|
|
extern void printElectron(const ElectronPointer electron);
|
24 |
|
|
extern void printParticle(const ParticlePointer particle);
|
25 |
|
|
extern void printGenParticle(const MCParticlePointer genParticle);
|
26 |
|
|
extern void printCutFlowTable();
|
27 |
|
|
extern void printWeightedCutFlowTable();
|
28 |
|
|
}
|
29 |
|
|
}
|
30 |
|
|
#endif /* EVENTPRINTER_H_ */
|