[2] | 1 | #ifndef _STDHEPCONVERTER_H_
|
---|
| 2 | #define _STDHEPCONVERTER_H_
|
---|
| 3 |
|
---|
[260] | 4 | /***********************************************************************
|
---|
| 5 | ** **
|
---|
| 6 | ** /----------------------------------------------\ **
|
---|
| 7 | ** | Delphes, a framework for the fast simulation | **
|
---|
| 8 | ** | of a generic collider experiment | **
|
---|
| 9 | ** \----------------------------------------------/ **
|
---|
| 10 | ** **
|
---|
| 11 | ** **
|
---|
| 12 | ** This package uses: **
|
---|
| 13 | ** ------------------ **
|
---|
| 14 | ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] **
|
---|
| 15 | ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] **
|
---|
| 16 | ** FROG: [hep-ex/0901.2718v1] **
|
---|
| 17 | ** **
|
---|
| 18 | ** ------------------------------------------------------------------ **
|
---|
| 19 | ** **
|
---|
| 20 | ** Main authors: **
|
---|
| 21 | ** ------------- **
|
---|
| 22 | ** **
|
---|
| 23 | ** Severine Ovyn Xavier Rouby **
|
---|
| 24 | ** severine.ovyn@uclouvain.be xavier.rouby@cern **
|
---|
| 25 | ** **
|
---|
| 26 | ** Center for Particle Physics and Phenomenology (CP3) **
|
---|
| 27 | ** Universite catholique de Louvain (UCL) **
|
---|
| 28 | ** Louvain-la-Neuve, Belgium **
|
---|
| 29 | ** **
|
---|
| 30 | ** Copyright (C) 2008-2009, **
|
---|
| 31 | ** All rights reserved. **
|
---|
| 32 | ** **
|
---|
| 33 | ***********************************************************************/
|
---|
[2] | 34 |
|
---|
| 35 |
|
---|
| 36 | #include <string>
|
---|
[220] | 37 | #include "DataConverter.h"
|
---|
[2] | 38 |
|
---|
| 39 | using namespace std;
|
---|
| 40 |
|
---|
[220] | 41 | class STDHEPConverter : public DataConverter {
|
---|
| 42 | public:
|
---|
[295] | 43 | STDHEPConverter(const string& inputFileList, const string& outputFileName, const int& Nevents=-1);
|
---|
[220] | 44 | ~STDHEPConverter();
|
---|
[2] | 45 |
|
---|
[220] | 46 | private:
|
---|
| 47 | void AnalyseEvent(ExRootTreeBranch *branch, const Long64_t eventNumber);
|
---|
| 48 | void AnalyseParticles(ExRootTreeBranch *branch);
|
---|
[2] | 49 | };
|
---|
| 50 |
|
---|
| 51 | #endif
|
---|