Skip to content
Snippets Groups Projects

Sweeping !58695 from master to 22.0. Fix in SecVtxFinder name and adaption of BTagVrtSec to Flip

Merged Sweeping !58695 from master to 22.0. Fix in SecVtxFinder name and adaption of BTagVrtSec to Flip
Merged Atlas Nightlybuild requested to merge cherry-pick-99ff5f86643-22.0 into 22.0
2 files
+ 4
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -505,7 +505,7 @@ namespace InDet{
errorMatrix, Chi2PerTrk, TrkAtVrt, Chi2,
*state, true);
if(sc.isFailure()) continue;
if(projSV_PV(tmpVertex,primVrt,jetDir)<0.) continue; // Drop negative direction
if((projSV_PV(tmpVertex,primVrt,jetDir)<0. &&(!m_getNegativeTag)) || (projSV_PV(tmpVertex,primVrt,jetDir)>0. &&(m_getNegativeTag))) continue; // Drop negative direction
if(m_useTrackClassificator) Chi2 += trkRank[it]; // Remove preferably non-HF-tracks
@@ -713,7 +713,7 @@ namespace InDet{
tmpVrt.fitVertex.y()-primVrt.y(),
tmpVrt.fitVertex.z()-primVrt.z());
tmpVrt.dRSVPV = jetDir.DeltaR(TLorentzVector(SVmPV, 1.)); //DeltaR SV-PV vs jet
if(tmpVrt.dRSVPV > m_coneForTag ) continue; // SV is outside of the jet cone
if( tmpVrt.dRSVPV > m_coneForTag && (!m_getNegativeTag) ) continue; // SV is outside of the jet cone
double jetVrtDir = SVmPV.Dot(jetDir.Vect());
double vPos = SVmPV.Dot(tmpVrt.momentum.Vect())/tmpVrt.momentum.Rho();
Loading