Skip to content
Snippets Groups Projects
Commit d5e9a9c3 authored by Luca Martinelli's avatar Luca Martinelli Committed by Adam Edward Barton
Browse files

including flag ExcludeNSWFromPrecisionLayers in the MuonCalibTool

including flag ExcludeNSWFromPrecisionLayers to be passed to the MuonSelectionTool to run on older p-tags and recent releases
parent fd34fe5f
No related branches found
No related tags found
1 merge request!68408including flag ExcludeNSWFromPrecisionLayers in the MuonCalibTool
......@@ -86,6 +86,9 @@ namespace CP {
Gaudi::Property<int> m_calibMode{this, "calibMode", -1, "Calib mode"};
//it should be used ONLY by releases>=24.2.24 and p-tag < p5834
//more infos here https://atlas-mcp.docs.cern.ch/guidelines/muonselectiontool/index.html
Gaudi::Property<bool> m_excludeNSWFromPrecisionLayers{this, "ExcludeNSWFromPrecisionLayers", false, "Cut on the number of precision layers ignores the NSW"};
// Scale and Smear options
// Do direct CB calibration
......
......@@ -75,6 +75,7 @@ namespace CP
ATH_CHECK(m_MuonSelectionTool.setProperty("TurnOffMomCorr", true));
ATH_CHECK(m_MuonSelectionTool.setProperty("IsRun3Geo", m_isRun3.value()));
ATH_CHECK(m_MuonSelectionTool.setProperty("OutputLevel", msg().level()));
ATH_CHECK(m_MuonSelectionTool.setProperty("ExcludeNSWFromPrecisionLayers", m_excludeNSWFromPrecisionLayers.value()));
}
ATH_CHECK(m_MuonSelectionTool.retrieve());
......
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