Fork me on GitHub

Changes between Version 52 and Version 53 of WorkBook/LibraryInterface


Ignore:
Timestamp:
Apr 30, 2014, 2:37:42 PM (11 years ago)
Author:
Pavel Demin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/LibraryInterface

    v52 v53  
    128128
    129129  Int_t pid, status;
    130   Double_t px, py, pz, e;
     130  Double_t px, py, pz, e, mass;
    131131  Double_t x, y, z, t;
    132132
     
    144144    pdgParticle = pdg->GetParticle(pid);
    145145    candidate->Charge = pdgParticle ? Int_t(pdgParticle->Charge()/3.0) : -999;
    146     candidate->Mass = pdgParticle ? pdgParticle->Mass() : -999.9;
     146    candidate->Mass = mass;
    147147
    148148    candidate->Momentum.SetPxPyPzE(px, py, pz, e);