Last change
on this file since 257 was 220, checked in by Xavier Rouby, 16 years ago |
include statements have been cleaned
|
File size:
773 bytes
|
Line | |
---|
1 | #ifndef _STDHEPCONVERTER_H_
|
---|
2 | #define _STDHEPCONVERTER_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 SmearUtil.h
|
---|
15 | /// \brief HEPEVTConverter class, and some generic definitions
|
---|
16 |
|
---|
17 |
|
---|
18 | #include <string>
|
---|
19 | #include "DataConverter.h"
|
---|
20 |
|
---|
21 | using namespace std;
|
---|
22 |
|
---|
23 | class STDHEPConverter : public DataConverter {
|
---|
24 | public:
|
---|
25 | STDHEPConverter(const string& inputFileList, const string& outputFileName);
|
---|
26 | ~STDHEPConverter();
|
---|
27 |
|
---|
28 | private:
|
---|
29 | void AnalyseEvent(ExRootTreeBranch *branch, const Long64_t eventNumber);
|
---|
30 | void AnalyseParticles(ExRootTreeBranch *branch);
|
---|
31 | };
|
---|
32 |
|
---|
33 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.