Skip to content
Snippets Groups Projects
Commit 2ed8604c authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'naming.HGTD_GeoModel-20210917' into 'master'

HGTD_GeoModel: Fix identifier naming.

See merge request !46564
parents fc01b78d 8509fd39
7 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,!46564HGTD_GeoModel: Fix identifier naming.
......@@ -74,9 +74,9 @@ StatusCode HGTD_DetectorTool::create() {
StatusCode HGTD_DetectorTool::clear() {
// Release manager from the detector store
SG::DataProxy* _proxy = detStore()->proxy(ClassID_traits< HGTD_DetectorManager >::ID(),m_detectorManager->getName());
if (_proxy) {
_proxy->reset();
SG::DataProxy* proxy = detStore()->proxy(ClassID_traits< HGTD_DetectorManager >::ID(),m_detectorManager->getName());
if (proxy) {
proxy->reset();
m_detectorManager = nullptr;
}
......
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