Skip to content
Snippets Groups Projects
Commit f6977a8d authored by Ziyue Zhang's avatar Ziyue Zhang
Browse files

WIP: Try out Dummy

parent eaa83966
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !27. Comments created here will be created in the context of that merge request.
...@@ -86,7 +86,8 @@ namespace util { ...@@ -86,7 +86,8 @@ namespace util {
const double px = part.p.x; const double px = part.p.x;
const double py = part.p.y; const double py = part.p.y;
const double pz = part.p.z; const double pz = part.p.z;
return ROOT::Math::PxPyPzMVector{px, py, pz, part.mass}; const double mass = part.mass;
return ROOT::Math::PxPyPzMVector{px, py, pz, mass};
}); });
return momenta; return momenta;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment