Skip to content
Snippets Groups Projects
Commit 862f1ec1 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia Committed by Melissa Yexley
Browse files

Fixed clang warnings

1. CookieCutterHelpers. Implicitly deleted constructor
2. FPGATrackSimSGToRawHitsTool. Unused private data member
parent 41f2f131
No related merge requests found
......@@ -27,7 +27,7 @@ struct CentralPosition : public AthMessaging
float phiF = 999;
float emaxF = -999 * Gaudi::Units::GeV;
CentralPosition() = default;
CentralPosition() = delete;
CentralPosition(
const std::vector<const xAOD::CaloCluster*>& clusters,
const CaloDetDescrManager& mgr);
......
/*
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/
#ifndef FPGATrackSimSGInput_FPGATrackSimSGTORAWHITSTOOL_H
......@@ -84,7 +84,6 @@ private:
Gaudi::Property<double> m_minPt { this, "minPt", .8*CLHEP::GeV };
//internal pointers
AtlasDetectorID* m_idHelper = nullptr;
const PixelID* m_pixelId = nullptr;
const SCT_ID* m_sctId = 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