Skip to content
Snippets Groups Projects
Commit ace24586 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

Require 90% tracking efficiency

parent 9b6901ad
No related branches found
No related tags found
1 merge request!80Single simulation test on standard reconstruction
This commit is part of merge request !80. Comments created here will be created in the context of that merge request.
......@@ -26,8 +26,7 @@ int analyze(std::string file)
auto stats_n_tracks_gen = d.Stats("n_tracks_gen");
auto stats_n_tracks_rec = d.Stats("n_tracks_rec");
if (stats_n_tracks_gen->GetMean() < 1.0
|| stats_n_tracks_rec->GetMean()) {
if (stats_n_tracks_rec->GetMean() < 0.9) {
std::cout << "Error: too few tracks per events " << std::endl;
stats_n_tracks_gen->Print();
stats_n_tracks_rec->Print();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment