Skip to content
Snippets Groups Projects
Commit c5cf9a90 authored by sutt's avatar sutt
Browse files

Fix incorrect constructor call for the Filter_Track constructor used in the tier0 moniotring

The Filter_TRack constructor was changed, but the call to this
constructor in TrigTestBase was not changed, so the parameters
for the track filter were messed up, and so all the offline
tracks the tracks were being incorrectly rejected.
parent 764ac45e
9 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!46538Draft: Added missing xAOD::TrigConfKeys from DESDM_MCP,!46514TGC Digitization: Implementation of signal propagation time between the sensor edge and ASD,!46168Fix incorrect constructor call for the Filter_Track constructor used in the tier0 moniotring
......@@ -196,7 +196,7 @@ StatusCode TrigTestBase::book(bool newEventsBlock, bool newLumiBlock, bool newRu
// track filters
// reference (offline) tracks...
TrackFilter* filterRef = new Filter_Track( m_etaCutOffline, m_d0CutOffline, m_z0CutOffline, m_pTCutOffline,
TrackFilter* filterRef = new Filter_Track( m_etaCutOffline, m_d0CutOffline, 0, m_z0CutOffline, m_pTCutOffline,
m_pixHitsOffline, m_sctHitsOffline, m_siHitsOffline, m_blayerHitsOffline,
m_strawHitsOffline, m_trtHitsOffline, 0,
m_pixHolesOffline, m_sctHolesOffline, m_siHolesOffline );
......
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