Fork me on GitHub

source: svn/trunk/interface/STDHEPConverter.h@ 17

Last change on this file since 17 was 11, checked in by severine ovyn, 16 years ago

Fastjet added; CDFCones directory has been changed

File size: 1.1 KB
Line 
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 <iostream>
19#include <sstream>
20#include <fstream>
21#include <vector>
22#include <string>
23
24#include "TLorentzVector.h"
25#include "TRandom.h"
26
27#include "Utilities/ExRootAnalysis/interface/BlockClasses.h"
28#include "Utilities/ExRootAnalysis/interface/TSimpleArray.h"
29//#include "Utilities/CDFCones/interface/PhysicsTower.h"
30#include "Utilities/ExRootAnalysis/interface/LHEF.h"
31
32#include "interface/DataConverter.h"
33
34using namespace std;
35
36class STDHEPConverter : public DataConverter
37{
38public:
39
40 STDHEPConverter(const string& inputFileList, const string& outputFileName);
41 ~STDHEPConverter();
42
43private:
44 void AnalyseEvent(ExRootTreeBranch *branch, const Long64_t eventNumber);
45 void AnalyseParticles(ExRootTreeBranch *branch);
46
47
48
49};
50
51#endif
Note: See TracBrowser for help on using the repository browser.