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