Last change
on this file since 227 was 220, checked in by Xavier Rouby, 16 years ago |
include statements have been cleaned
|
File size:
846 bytes
|
Line | |
---|
1 | #ifndef _LHEFCONVERTER_H_
|
---|
2 | #define _LHEFCONVERTER_H_
|
---|
3 |
|
---|
4 | /*
|
---|
5 | ---- Delphes ----
|
---|
6 | A Fast Simulator for general purpose LHC detector
|
---|
7 | S. Ovyn ~~~~ severine.ovyn@uclouvain.be
|
---|
8 |
|
---|
9 | Center for Particle Physics and Phenomenology (CP3)
|
---|
10 | Universite Catholique de Louvain (UCL)
|
---|
11 | Louvain-la-Neuve, Belgium
|
---|
12 | */
|
---|
13 |
|
---|
14 | /// \file LHEFConverter
|
---|
15 | /// \brief LHEFConverter class, and some generic definitions
|
---|
16 |
|
---|
17 | #include <string>
|
---|
18 |
|
---|
19 | #include "ExRootTreeBranch.h"
|
---|
20 | #include "LHEF.h"
|
---|
21 | #include "DataConverter.h"
|
---|
22 |
|
---|
23 |
|
---|
24 | using namespace std;
|
---|
25 |
|
---|
26 | class LHEFConverter : public DataConverter
|
---|
27 | {
|
---|
28 | public:
|
---|
29 |
|
---|
30 | LHEFConverter(const string& inputFileList, const string& outputFileName);
|
---|
31 | ~LHEFConverter();
|
---|
32 |
|
---|
33 | private:
|
---|
34 | void AnalyseEvent(LHEF::Reader *reader, ExRootTreeBranch *branch, const Long64_t eventNumber);
|
---|
35 | void AnalyseParticles(LHEF::Reader *reader, ExRootTreeBranch *branch);
|
---|
36 |
|
---|
37 | };
|
---|
38 |
|
---|
39 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.