Fork me on GitHub

Changeset 4006893 in git for classes/DelphesHepMC3Reader.h


Ignore:
Timestamp:
Jun 1, 2021, 8:10:27 PM (3 years ago)
Author:
Pavel Demin <pavel.demin@…>
Branches:
master
Children:
fc6bce2
Parents:
06630ef
Message:

fix order of decay products in DelphesHepMC3Reader

File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesHepMC3Reader.h

    r06630ef r4006893  
    3636class TStopwatch;
    3737class TDatabasePDG;
     38class TLorentzVector;
    3839class ExRootTreeBranch;
    3940class DelphesFactory;
     41class Candidate;
    4042
    4143class DelphesHepMC3Reader
     
    6163
    6264private:
     65  void AnalyzeVertex(DelphesFactory *factory, int code, Candidate *candidate = 0);
     66
    6367  void AnalyzeParticle(DelphesFactory *factory,
    6468    TObjArray *allParticleOutputArray,
     
    7983  double fMomentumCoefficient, fPositionCoefficient;
    8084
    81   std::vector<double> fWeight;
     85  std::vector<double> fWeights;
    8286
    8387  double fCrossSection, fCrossSectionError;
     
    9296  double fPx, fPy, fPz, fE, fMass;
    9397
    94   int fM1, fM2;
     98  std::vector<std::pair<TLorentzVector *, TObjArray *> > fVertices;
     99  std::vector<int> fParticles;
    95100
    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;
    97105  std::map<int, std::pair<int, int> > fDaughterMap;
    98106};
Note: See TracChangeset for help on using the changeset viewer.