Fork me on GitHub

source: svn/trunk/interface/DataConverter.h@ 2

Last change on this file since 2 was 2, checked in by Xavier Rouby, 16 years ago

first commit

File size: 653 bytes
Line 
1#ifndef _DATACONVERTER_H_
2#define _DATACONVERTER_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 DataConverter
15/// \brief DataConverter class, as mother of LHEFConverter, STDHEPConverter, ...
16
17#include <string>
18
19#include "Utilities/ExRootAnalysis/interface/ExRootTreeBranch.h"
20#include "Utilities/ExRootAnalysis/interface/LHEF.h"
21
22using namespace std;
23
24class DataConverter
25{
26public:
27
28 DataConverter() {};
29 ~DataConverter() {};
30};
31
32#endif
Note: See TracBrowser for help on using the repository browser.