Last change
on this file since 41 was 11, checked in by severine ovyn, 16 years ago |
Fastjet added; CDFCones directory has been changed
|
File size:
1.1 KB
|
Rev | Line | |
---|
[2] | 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"
|
---|
[11] | 29 | //#include "Utilities/CDFCones/interface/PhysicsTower.h"
|
---|
[2] | 30 | #include "Utilities/ExRootAnalysis/interface/LHEF.h"
|
---|
| 31 |
|
---|
| 32 | #include "interface/DataConverter.h"
|
---|
| 33 |
|
---|
| 34 | using namespace std;
|
---|
| 35 |
|
---|
| 36 | class STDHEPConverter : public DataConverter
|
---|
| 37 | {
|
---|
| 38 | public:
|
---|
| 39 |
|
---|
| 40 | STDHEPConverter(const string& inputFileList, const string& outputFileName);
|
---|
| 41 | ~STDHEPConverter();
|
---|
| 42 |
|
---|
| 43 | private:
|
---|
| 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.