Skip to content
Snippets Groups Projects
Commit 09914afa authored by Arthur Marius Hennequin's avatar Arthur Marius Hennequin
Browse files

Add missing loop_mask to filter predicate

parent 2b3c3d44
No related branches found
No related tags found
1 merge request!2646Hierarchical SOACollections
......@@ -145,7 +145,7 @@ BOOST_AUTO_TEST_CASE( new_struct_from_zip ) {
auto pt = chunk.pt();
auto ipchi2 = chunk.bestPV().ipchi2();
auto index = chunk.bestPV().index();
passing_cut += popcount( ( pt > 400.f ) && ( ipchi2 > 1.f ) );
passing_cut += popcount( chunk.loop_mask() && ( pt > 400.f ) && ( ipchi2 > 1.f ) );
if ( print ) { std::cout << "pt " << pt << " ipchi2 " << ipchi2 << " index " << index << std::endl; }
}
......
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