[b443089] | 1 | /*
|
---|
| 2 | * Delphes: a framework for fast simulation of a generic collider experiment
|
---|
[b4786d3] | 3 | * Copyright (C) 2012-2021 Universite catholique de Louvain (UCL), Belgium
|
---|
[1fa50c2] | 4 | *
|
---|
[b443089] | 5 | * This program is free software: you can redistribute it and/or modify
|
---|
| 6 | * it under the terms of the GNU General Public License as published by
|
---|
| 7 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 8 | * (at your option) any later version.
|
---|
[1fa50c2] | 9 | *
|
---|
[b443089] | 10 | * This program is distributed in the hope that it will be useful,
|
---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 13 | * GNU General Public License for more details.
|
---|
[1fa50c2] | 14 | *
|
---|
[b443089] | 15 | * You should have received a copy of the GNU General Public License
|
---|
| 16 | * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 17 | */
|
---|
| 18 |
|
---|
[b4786d3] | 19 | #ifndef DelphesHepMC3Reader_h
|
---|
| 20 | #define DelphesHepMC3Reader_h
|
---|
[d7d2da3] | 21 |
|
---|
[b4786d3] | 22 | /** \class DelphesHepMC3Reader
|
---|
[d7d2da3] | 23 | *
|
---|
| 24 | * Reads HepMC file
|
---|
| 25 | *
|
---|
| 26 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 27 | *
|
---|
| 28 | */
|
---|
| 29 |
|
---|
| 30 | #include <map>
|
---|
[59abd43] | 31 | #include <vector>
|
---|
[d7d2da3] | 32 |
|
---|
| 33 | #include <stdio.h>
|
---|
| 34 |
|
---|
| 35 | class TObjArray;
|
---|
| 36 | class TStopwatch;
|
---|
| 37 | class TDatabasePDG;
|
---|
[4006893] | 38 | class TLorentzVector;
|
---|
[d7d2da3] | 39 | class ExRootTreeBranch;
|
---|
| 40 | class DelphesFactory;
|
---|
[4006893] | 41 | class Candidate;
|
---|
[d7d2da3] | 42 |
|
---|
[b4786d3] | 43 | class DelphesHepMC3Reader
|
---|
[d7d2da3] | 44 | {
|
---|
| 45 | public:
|
---|
[b4786d3] | 46 | DelphesHepMC3Reader();
|
---|
| 47 | ~DelphesHepMC3Reader();
|
---|
[d7d2da3] | 48 |
|
---|
| 49 | void SetInputFile(FILE *inputFile);
|
---|
| 50 |
|
---|
| 51 | void Clear();
|
---|
| 52 | bool EventReady();
|
---|
| 53 |
|
---|
| 54 | bool ReadBlock(DelphesFactory *factory,
|
---|
| 55 | TObjArray *allParticleOutputArray,
|
---|
| 56 | TObjArray *stableParticleOutputArray,
|
---|
| 57 | TObjArray *partonOutputArray);
|
---|
| 58 |
|
---|
| 59 | void AnalyzeEvent(ExRootTreeBranch *branch, long long eventNumber,
|
---|
| 60 | TStopwatch *readStopWatch, TStopwatch *procStopWatch);
|
---|
| 61 |
|
---|
[d203a37] | 62 | void AnalyzeWeight(ExRootTreeBranch *branch);
|
---|
| 63 |
|
---|
[d7d2da3] | 64 | private:
|
---|
[4006893] | 65 | void AnalyzeVertex(DelphesFactory *factory, int code, Candidate *candidate = 0);
|
---|
| 66 |
|
---|
[a26a130] | 67 | void AnalyzeParticle(DelphesFactory *factory);
|
---|
| 68 |
|
---|
| 69 | void FinalizeParticles(TObjArray *allParticleOutputArray,
|
---|
[d7d2da3] | 70 | TObjArray *stableParticleOutputArray,
|
---|
| 71 | TObjArray *partonOutputArray);
|
---|
| 72 |
|
---|
| 73 | FILE *fInputFile;
|
---|
| 74 |
|
---|
| 75 | char *fBuffer;
|
---|
| 76 |
|
---|
| 77 | TDatabasePDG *fPDG;
|
---|
| 78 |
|
---|
[b4786d3] | 79 | int fEventNumber, fMPI, fProcessID, fSignalCode, fVertexCounter, fParticleCounter;
|
---|
[d7d2da3] | 80 | double fScale, fAlphaQCD, fAlphaQED;
|
---|
| 81 |
|
---|
[cf22deb] | 82 | double fMomentumCoefficient, fPositionCoefficient;
|
---|
| 83 |
|
---|
[4006893] | 84 | std::vector<double> fWeights;
|
---|
[59abd43] | 85 |
|
---|
[edeb0f0] | 86 | double fCrossSection, fCrossSectionError;
|
---|
| 87 |
|
---|
[d7d2da3] | 88 | int fID1, fID2;
|
---|
| 89 | double fX1, fX2, fScalePDF, fPDF1, fPDF2;
|
---|
| 90 |
|
---|
[b4786d3] | 91 | int fVertexCode, fVertexStatus;
|
---|
[d7d2da3] | 92 | double fX, fY, fZ, fT;
|
---|
| 93 |
|
---|
[b4786d3] | 94 | int fParticleCode, fPID, fParticleStatus, fOutVertexCode;
|
---|
| 95 | double fPx, fPy, fPz, fE, fMass;
|
---|
[d7d2da3] | 96 |
|
---|
[4006893] | 97 | std::vector<std::pair<TLorentzVector *, TObjArray *> > fVertices;
|
---|
| 98 | std::vector<int> fParticles;
|
---|
| 99 |
|
---|
| 100 | std::map<int, int> fInVertexMap;
|
---|
| 101 | std::map<int, int> fOutVertexMap;
|
---|
[d7d2da3] | 102 |
|
---|
[4006893] | 103 | std::map<int, std::pair<int, int> > fMotherMap;
|
---|
[77e9ae1] | 104 | std::map<int, std::pair<int, int> > fDaughterMap;
|
---|
[d7d2da3] | 105 | };
|
---|
| 106 |
|
---|
[b4786d3] | 107 | #endif // DelphesHepMC3Reader_h
|
---|