Skip to content
Snippets Groups Projects
Commit 69898ece authored by Tamara Vazquez Schroeder's avatar Tamara Vazquez Schroeder
Browse files

Merge branch '21.0-mc16d' into '21.0-mc16d'

Followup MR for !6238

See merge request !6316
parents 3b917e87 2a9a510f
No related branches found
No related tags found
No related merge requests found
......@@ -229,6 +229,29 @@ bool DerivationFramework::KinkTrkSingleJetMetFilterTool::eventPassesFilter() con
}
}// for goodJets
if(passIsolatedTracklet==false)
continue;
if(TMath::Abs(Tracklet->eta()) < 0.1 || TMath::Abs(Tracklet->eta()) > 1.9){
passIsolatedTracklet = false;
continue;
}
if(TMath::Prob(Tracklet->chiSquared(), Tracklet->numberDoF()) < 0.1){
passIsolatedTracklet = false;
continue;
}
if(Tracklet->auxdata<UChar_t>("numberOfContribPixelLayers")<4){
passIsolatedTracklet = false;
continue;
}
if(Tracklet->auxdata<UChar_t>("numberOfPixelSpoiltHits")>0){
passIsolatedTracklet = false;
continue;
}
if(passIsolatedTracklet==false)
continue;
......
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