Fork me on GitHub

source: svn/trunk/interface/LHEFConverter.h@ 478

Last change on this file since 478 was 450, checked in by Xavier Rouby, 15 years ago

lhe bug (empty Analysis tree) solved

File size: 3.0 KB
Line 
1#ifndef _LHEFCONVERTER_H_
2#define _LHEFCONVERTER_H_
3
4/***********************************************************************
5** **
6** /----------------------------------------------\ **
7** | Delphes, a framework for the fast simulation | **
8** | of a generic collider experiment | **
9** \------------- arXiv:0903.2225v1 ------------/ **
10** **
11** **
12** This package uses: **
13** ------------------ **
14** ROOT: Nucl. Inst. & Meth. in Phys. Res. A389 (1997) 81-86 **
15** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] **
16** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] **
17** FROG: [hep-ex/0901.2718v1] **
18** HepMC: Comput. Phys. Commun.134 (2001) 41 **
19** **
20** ------------------------------------------------------------------ **
21** **
22** Main authors: **
23** ------------- **
24** **
25** Severine Ovyn Xavier Rouby **
26** severine.ovyn@uclouvain.be xavier.rouby@cern **
27** **
28** Center for Particle Physics and Phenomenology (CP3) **
29** Universite catholique de Louvain (UCL) **
30** Louvain-la-Neuve, Belgium **
31** **
32** Copyright (C) 2008-2009, **
33** All rights reserved. **
34** **
35***********************************************************************/
36
37/// \file LHEFConverter
38/// \brief LHEFConverter class, and some generic definitions
39
40#include <string>
41
42#include "ExRootTreeBranch.h"
43#include "LHEF.h"
44#include "DataConverter.h"
45
46
47using namespace std;
48
49class LHEFConverter : public DataConverter
50{
51public:
52
53 LHEFConverter(const string& inputFileList, const string& outputFileName, const PdgTable& pdg, const int& Nevents=-1);
54 virtual ~LHEFConverter();
55
56private:
57 void AnalyseEvent(LHEF::Reader *reader, ExRootTreeBranch *branch, const Long64_t eventNumber);
58 void AnalyseParticles(LHEF::Reader *reader, ExRootTreeBranch *branch);
59 //void AnalyseLHEFParticles(LHEF::Reader *reader, ExRootTreeBranch *branch);
60
61};
62
63#endif
Note: See TracBrowser for help on using the repository browser.