diff --git a/Tracking/Acts/ActsRegionsOfInterest/ATLAS_CHECK_THREAD_SAFETY b/Tracking/Acts/ActsRegionsOfInterest/ATLAS_CHECK_THREAD_SAFETY new file mode 100644 index 0000000000000000000000000000000000000000..eb53471e5988f8168dfe5fd2d0dd391a68b9e48b --- /dev/null +++ b/Tracking/Acts/ActsRegionsOfInterest/ATLAS_CHECK_THREAD_SAFETY @@ -0,0 +1 @@ +Tracking/Acts/ActsRegionsOfInterest diff --git a/Tracking/Acts/ActsRegionsOfInterest/src/TestRoICreatorTool.cxx b/Tracking/Acts/ActsRegionsOfInterest/src/TestRoICreatorTool.cxx index 8d211c032710e501cada9bc97b36a48d34781078..75382bcee2df2808de6ba71d2664114fd44bc259 100644 --- a/Tracking/Acts/ActsRegionsOfInterest/src/TestRoICreatorTool.cxx +++ b/Tracking/Acts/ActsRegionsOfInterest/src/TestRoICreatorTool.cxx @@ -16,8 +16,6 @@ StatusCode TestRoICreatorTool::initialize() { ATH_MSG_DEBUG("Inizializing " << name() << " ..." ); - ATH_CHECK(m_roiCollectionKey.initialize()); - // Check consistency // We need at least one entry if (m_eta_center_rois.size() == 0) { diff --git a/Tracking/Acts/ActsRegionsOfInterest/src/TestRoICreatorTool.h b/Tracking/Acts/ActsRegionsOfInterest/src/TestRoICreatorTool.h index e0dde9a2f256b549a29303441dc6cf5e3f70c2fb..295a075b38c1853eee667ce7b84138c16d2cabb9 100644 --- a/Tracking/Acts/ActsRegionsOfInterest/src/TestRoICreatorTool.h +++ b/Tracking/Acts/ActsRegionsOfInterest/src/TestRoICreatorTool.h @@ -26,8 +26,6 @@ class TestRoICreatorTool TrigRoiDescriptorCollection& collectionRoI) const override; private: - SG::WriteHandleKey< TrigRoiDescriptorCollection > m_roiCollectionKey {this, "RoIs", ""}; - Gaudi::Property< std::vector<double> > m_eta_center_rois {this, "EtaCenters", {}, "Center of the RoI - eta coordinate"}; Gaudi::Property< std::vector<double> > m_phi_center_rois {this, "PhiCenters", {}, "Center of the RoI - phi coordinate"}; Gaudi::Property< std::vector<double> > m_z_center_rois {this, "ZCenters", {}, "Center of the RoI - z coordinate"};