Skip to content
Snippets Groups Projects
Commit 32246439 authored by Bruno Lenzi's avatar Bruno Lenzi Committed by Graeme Stewart
Browse files

eProbabilityComb -> eProbabilityHT for TRT PID (InDetConversionFinderTools-00-04-12)

	* eProbabilityComb -> eProbabilityHT for TRT PID
	* Tagging as InDetConversionFinderTools-00-04-12
parent dd130ff6
No related merge requests found
......@@ -323,7 +323,7 @@ namespace InDet {
int nTrtXenonHits = tSum->get(Trk::numberOfTRTXenonHits);
if(ntrt > 0 && (!m_PIDonlyForXe || nTrtXenonHits==ntrt) ) { // only check TRT PID if m_PIDonlyForXe is false or all TRT hits are Xenon hits
double prob = tSum->getPID(Trk::eProbabilityComb);
double prob = tSum->getPID(Trk::eProbabilityHT);
if(prob < m_singleThreshold) pass = false;
}
......@@ -522,7 +522,7 @@ namespace InDet {
if(ntrt > 0 && (!m_PIDonlyForXe || nTrtXenonHits==ntrt) ) { // only check TRT PID if m_PIDonlyForXe is false or all TRT hits are Xenon hits
float prob = 1.0;
if( !track->summaryValue(prob,xAOD::eProbabilityComb) )
if( !track->summaryValue(prob,xAOD::eProbabilityHT) )
{
ATH_MSG_WARNING("Could not retrieve TR probability");
return false;
......
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