Skip to content
Snippets Groups Projects
Commit 1643d3a5 authored by Noemi Calace's avatar Noemi Calace Committed by Edward Moyse
Browse files

Fixing electron reco with fast tracking

Fixing electron reco with fast tracking
parent 2ff60b8e
No related branches found
No related tags found
7 merge requests!66406ZDC & ZDC LED monitoring updates,!66102ZDC & RPD monitoring update,!65937Draft: Updated post-processing and plotting scripts for 2023 data in ZLumi_Scripts directory,!65537ZDC - Fix problem with swapping of low and high gain data,!64732Add hypo for time-significance based selection of HLT jets,!64579Draft: Replace status() with functions from TruthUtils,!64513Fixing electron reco with fast tracking
......@@ -160,7 +160,7 @@ InDet::SiTrajectory_xk::convertToSimpleTrackStateOnSurface(const EventContext& c
if (tsos) dtsos.push_back(tsos);
tsos = m_elements[m_elementsMap[i]].trackSimpleStateOnSurface(false,false,0);
tsos = m_elements[m_elementsMap[i]].trackSimpleStateOnSurface(false,false,m_tools->useFastTracking());
if (tsos) dtsos.push_back(tsos);
......
......@@ -666,7 +666,7 @@ InDet::SiCombinatorialTrackFinder_xk::EStat_t InDet::SiCombinatorialTrackFinder_
bool pixseed = data.trajectory().isLastPixel();
/// max #iterations
int itmax = 30;
if (data.simpleTrack()) itmax = 10;
if (!data.useFastTracking() and data.simpleTrack()) itmax = 10;
if (data.heavyIon()) itmax = 50;
//
......
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