Changeset 4006893 in git for classes/DelphesHepMC3Reader.h
- Timestamp:
- Jun 1, 2021, 8:10:27 PM (3 years ago)
- Branches:
- master
- Children:
- fc6bce2
- Parents:
- 06630ef
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesHepMC3Reader.h
r06630ef r4006893 36 36 class TStopwatch; 37 37 class TDatabasePDG; 38 class TLorentzVector; 38 39 class ExRootTreeBranch; 39 40 class DelphesFactory; 41 class Candidate; 40 42 41 43 class DelphesHepMC3Reader … … 61 63 62 64 private: 65 void AnalyzeVertex(DelphesFactory *factory, int code, Candidate *candidate = 0); 66 63 67 void AnalyzeParticle(DelphesFactory *factory, 64 68 TObjArray *allParticleOutputArray, … … 79 83 double fMomentumCoefficient, fPositionCoefficient; 80 84 81 std::vector<double> fWeight ;85 std::vector<double> fWeights; 82 86 83 87 double fCrossSection, fCrossSectionError; … … 92 96 double fPx, fPy, fPz, fE, fMass; 93 97 94 int fM1, fM2; 98 std::vector<std::pair<TLorentzVector *, TObjArray *> > fVertices; 99 std::vector<int> fParticles; 95 100 96 std::map<int, int> fVertexMap; 101 std::map<int, int> fInVertexMap; 102 std::map<int, int> fOutVertexMap; 103 104 std::map<int, std::pair<int, int> > fMotherMap; 97 105 std::map<int, std::pair<int, int> > fDaughterMap; 98 106 };
Note:
See TracChangeset
for help on using the changeset viewer.