Fork me on GitHub

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

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

vers un Nevnt implemente correctement. Pas fini

File size: 2.8 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** \----------------------------------------------/ **
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***********************************************************************/
34
35/// \file LHEFConverter
36/// \brief LHEFConverter class, and some generic definitions
37
38#include <string>
39
40#include "ExRootTreeBranch.h"
41#include "LHEF.h"
42#include "DataConverter.h"
43
44
45using namespace std;
46
47class LHEFConverter : public DataConverter
48{
49public:
50
51 LHEFConverter(const string& inputFileList, const string& outputFileName, const int& Nevents=-1);
52 ~LHEFConverter();
53
54private:
55 void AnalyseEvent(LHEF::Reader *reader, ExRootTreeBranch *branch, const Long64_t eventNumber);
56 void AnalyseParticles(LHEF::Reader *reader, ExRootTreeBranch *branch);
57
58};
59
60#endif
Note: See TracBrowser for help on using the repository browser.