Skip to content
Snippets Groups Projects
Commit 7402d7c9 authored by Jakob Blomer's avatar Jakob Blomer Committed by Philippe Canal
Browse files

[ntuple] cosmetics (NFC)

parent f9181a9e
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,7 @@ public: ...@@ -120,7 +120,7 @@ public:
template <typename T> template <typename T>
T InvariantMassStdVector(std::vector<T>& pt, std::vector<T>& eta, std::vector<T>& phi, std::vector<T>& mass) T InvariantMassStdVector(std::vector<T>& pt, std::vector<T>& eta, std::vector<T>& phi, std::vector<T>& mass)
{ {
assert(pt.size() == eta.size() && eta.size() == phi.size() && phi.size() == mass.size() && mass.size() == 2); assert(pt.size() == 2 && eta.size() == 2 && phi.size() == 2 && mass.size() == 2);
// We adopt the memory here, no copy // We adopt the memory here, no copy
ROOT::RVec<float> rvPt(pt); ROOT::RVec<float> rvPt(pt);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment