Skip to content
Snippets Groups Projects
Commit 5d953210 authored by Scott Snyder's avatar Scott Snyder Committed by Adam Edward Barton
Browse files

TrigMuonEventTPCnv: Enable thread-safety checking.

TrigMuonEventTPCnv: Enable thread-safety checking.

Enable thread-safety checking and fix warnings.
parent 10cb4044
No related branches found
No related tags found
46 merge requests!59674InDetPerformanceMonitoring with LumiBlock selection,!59383cppcheck in trigger code: Prefer prefix ++/-- operators for non-primitive types.,!58990Draft:Fixing bug in FTF config when running with Reco_tf,!58835DataQualityConfigurations: Modify L1Calo config for web display,!58791DataQualityConfigurations: Modify L1Calo config for web display,!58373Modification of V2.3 processing to work well with all clients,!58289New NVSI calibration,!58286New NVSI calibration,!58106Update NVSI example algorithm,!57937Draft: New nighlty test for trigger with a Run 4 single muon RDO,!57841Edits to ZDC signal processing in preparation for analysis of data from LHCf run,!57590Fixing LAr DT dumper,!57584Draft: LAr DB fixes,!57316ATR-26311 and ATR-25754 moving one dimuon and few egamma chains from dev to phys or MC,!57090ATLASRECTS-7305: fixes for large cluster building,!56828Draft: [trigEGam] Integration beteween mongroups and TrigEgammaMonitoring,!56523Draft: Proposal for CA-Based AODFix,!56154tauRecTools: fix conditional decoration in TauIDVarCalculator,!55990MM offline DQ - plit PBC in 2 FEB in occupancy plots,!55989ATR-25904: fixed the RUN3_ROI_OVERFLOW_SHIFT and m_OverflowPerRoIMask to 12,!55609Add Athena TEvent-based file access,!55378Draft: Fix ToF channels,!55330Draft: PixelMonitoring: re-implementation of assessment of mva histograms in the online-post processing,!55327Fix memory leak in eFEX Tau algorithm (ATR-25988),!55308Fill offline MET histograms only if container is valid and non-empty,!55304Move fill of offline MET conditional on container being valid and non-empty,!55301Move fill of offline MET conditional on container being valid and non-empty,!55300Move fill of offline MET conditional on container being valid and non-empty,!55158Update JetInputs DQ web display config to add missing plots,!54932Draft: TrigBtagEmulationTool: Add BJet trigger emulation tool,!54737Draft: HLT_mu3vtx_L12MU8F Trigger Updates,!54628Draft: Added HLT_RoICluster_Composites container to EDM conifg.,!54441Draft: Add new scheme to use only half of rings as input,!54269One-line fix for e/g algorithm issue,!54263Draft: changing sTGC TDO tag,!54132Draft: Initial sTGC raw data monitoring,!54090r22 JetTagging: fix_tow_Run3,!54037Add mu3 thresholds and HLT_2mu3 (ATR-23494),!53857TauTrig : move to use tracktwoMVA as Primary chains and keep only few...,!53685fix AFP digitization setup with CA,!53648Switch to GSF by default for electron chains inside the TrigEgammaMatchingTool,!53614Typo fix PoolWriteConfig.py for DAOD compression,!53594TrigMuonEventTPCnv: Enable thread-safety checking.,!53294ctau seeding,!52778Draft: Update the collisions HLT egamma han config for Run3,!52702Draft: update of muonSelectionTool for r22 and run3
Showing
with 73 additions and 77 deletions
Trigger/TrigEvent/TrigMuonEventTPCnv
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
#include "TrigMuonEvent/TrigMuonEFCbTrack.h"
......@@ -9,7 +9,7 @@
typedef ElementLinkCnv_p3<ElementLink<Rec::TrackParticleContainer> > TrackLinkCnv_t;
/// pre-allocate the track converter
static TrackLinkCnv_t trackCnv;
static const TrackLinkCnv_t trackCnv;
void TrigMuonEFCbTrackCnv_p7::persToTrans(const TrigMuonEFCbTrack_p7* persObj, TrigMuonEFCbTrack* transObj, MsgStream &log){
// std::cout << "TrigMuonEFCbTrackCnv_p7::persToTrans called " <<std::endl;
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
#include "TrigMuonEvent/TrigMuonEFIsolation.h"
......@@ -10,7 +10,7 @@
typedef ElementLinkCnv_p3< ElementLink<TrigMuonEFInfoContainer> > InfoEleLinkCnv_t;
static InfoEleLinkCnv_t infoEleLinkCnv;
static const InfoEleLinkCnv_t infoEleLinkCnv;
/**
* Convert persistent representation of object to the transient one
......
/*
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
/**
* @file TrigMuonEventTPCnv/test/CombinedMuonFeatureCnv_p2_test.cxx
......@@ -13,6 +13,7 @@
#include "TrigMuonEventTPCnv/CombinedMuonFeatureCnv_p2.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include "GaudiKernel/ThreadLocalContext.h"
#include <cassert>
......@@ -48,7 +49,7 @@ void testit (const CombinedMuonFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
(void)Gaudi::Hive::currentContext();
......@@ -65,7 +66,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
/**
* @file TrigMuonEventTPCnv/test/CombinedMuonFeatureCnv_p3_test.cxx
......@@ -13,6 +13,7 @@
#include "TrigMuonEventTPCnv/CombinedMuonFeatureCnv_p3.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include "GaudiKernel/ThreadLocalContext.h"
#include <cassert>
......@@ -48,7 +49,7 @@ void testit (const CombinedMuonFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
(void)Gaudi::Hive::currentContext();
......@@ -65,7 +66,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
/**
* @file TrigMuonEventTPCnv/test/CombinedMuonFeatureCnv_p4_test.cxx
......@@ -13,6 +13,7 @@
#include "TrigMuonEventTPCnv/CombinedMuonFeatureCnv_p4.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include "GaudiKernel/ThreadLocalContext.h"
#include <cassert>
......@@ -46,7 +47,7 @@ void testit (const CombinedMuonFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
(void)Gaudi::Hive::currentContext();
......@@ -63,7 +64,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file TrigMuonEventTPCnv/test/IsoMuonFeatureCnv_p3_test.cxx
* @author scott snyder <snyder@bnl.gov>
......@@ -15,6 +13,7 @@
#include "TrigMuonEventTPCnv/IsoMuonFeatureCnv_p3.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include <cassert>
#include <iostream>
......@@ -56,7 +55,7 @@ void testit (const IsoMuonFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
Athena_test::Leakcheck check;
......@@ -70,7 +69,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file TrigMuonEventTPCnv/test/MuonFeatureCnv_p1_test.cxx
* @author scott snyder <snyder@bnl.gov>
......@@ -15,6 +13,7 @@
#include "TrigMuonEventTPCnv/MuonFeatureCnv_p1.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include <cassert>
#include <iostream>
......@@ -81,7 +80,7 @@ void testit (const MuonFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
Athena_test::Leakcheck check;
......@@ -107,7 +106,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file TrigMuonEventTPCnv/test/MuonFeatureCnv_p2_test.cxx
* @author scott snyder <snyder@bnl.gov>
......@@ -15,6 +13,7 @@
#include "TrigMuonEventTPCnv/MuonFeatureCnv_p2.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include <cassert>
#include <iostream>
......@@ -66,7 +65,7 @@ void testit (const MuonFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
Athena_test::Leakcheck check;
......@@ -92,7 +91,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file TrigMuonEventTPCnv/test/MuonFeatureCnv_p3_test.cxx
* @author scott snyder <snyder@bnl.gov>
......@@ -15,6 +13,7 @@
#include "TrigMuonEventTPCnv/MuonFeatureCnv_p3.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include <cassert>
#include <iostream>
......@@ -66,7 +65,7 @@ void testit (const MuonFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
Athena_test::Leakcheck check;
......@@ -92,7 +91,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file TrigMuonEventTPCnv/test/MuonFeatureDetailsCnv_p1_test.cxx
* @author scott snyder <snyder@bnl.gov>
......@@ -14,6 +12,7 @@
#undef NDEBUG
#include "TrigMuonEventTPCnv/MuonFeatureDetailsCnv_p1.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include <cassert>
#include <iostream>
......@@ -216,7 +215,7 @@ void testit (const MuonFeatureDetails& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
Athena_test::Leakcheck check;
......@@ -372,7 +371,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
test1();
return 0;
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file TrigMuonEventTPCnv/test/MuonFeatureDetailsCnv_p2_test.cxx
* @author scott snyder <snyder@bnl.gov>
......@@ -14,6 +12,7 @@
#undef NDEBUG
#include "TrigMuonEventTPCnv/MuonFeatureDetailsCnv_p2.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include <cassert>
#include <iostream>
......@@ -216,7 +215,7 @@ void testit (const MuonFeatureDetails& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
Athena_test::Leakcheck check;
......@@ -372,7 +371,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
test1();
return 0;
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file TrigMuonEventTPCnv/test/TileMuFeatureCnv_p1_test.cxx
* @author scott snyder <snyder@bnl.gov>
......@@ -15,6 +13,7 @@
#include "TrigMuonEventTPCnv/TileMuFeatureCnv_p1.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include <cassert>
#include <iostream>
......@@ -44,7 +43,7 @@ void testit (const TileMuFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
Athena_test::Leakcheck check;
......@@ -57,7 +56,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file TrigMuonEventTPCnv/test/TileMuFeatureCnv_p2_test.cxx
* @author scott snyder <snyder@bnl.gov>
......@@ -15,6 +13,7 @@
#include "TrigMuonEventTPCnv/TileMuFeatureCnv_p2.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include <cassert>
#include <iostream>
......@@ -44,7 +43,7 @@ void testit (const TileMuFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
Athena_test::Leakcheck check;
......@@ -57,7 +56,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
/**
* @file TrigMuonEventTPCnv/test/TileTrackMuFeatureCnv_p2_test.cxx
......@@ -13,6 +13,7 @@
#include "TrigMuonEventTPCnv/TileTrackMuFeatureCnv_p2.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include "GaudiKernel/ThreadLocalContext.h"
#include <cassert>
......@@ -45,7 +46,7 @@ void testit (const TileTrackMuFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
(void)Gaudi::Hive::currentContext();
......@@ -62,7 +63,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
/**
* @file TrigMuonEventTPCnv/test/TileTrackMuFeatureCnv_p3_test.cxx
......@@ -13,6 +13,7 @@
#include "TrigMuonEventTPCnv/TileTrackMuFeatureCnv_p3.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include "GaudiKernel/ThreadLocalContext.h"
#include <cassert>
......@@ -45,7 +46,7 @@ void testit (const TileTrackMuFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
(void)Gaudi::Hive::currentContext();
......@@ -62,7 +63,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file TrigMuonEventTPCnv/test/TrigMuonClusterFeatureCnv_p1_test.cxx
* @author scott snyder <snyder@bnl.gov>
......@@ -14,6 +12,7 @@
#undef NDEBUG
#include "TrigMuonEventTPCnv/TrigMuonClusterFeatureCnv_p1.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include <cassert>
#include <iostream>
......@@ -43,7 +42,7 @@ void testit (const TrigMuonClusterFeature& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
Athena_test::Leakcheck check;
......@@ -54,7 +53,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
test1();
return 0;
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file TrigMuonEventTPCnv/test/TrigMuonEFCbTrackCnv_p5_test.cxx
* @author scott snyder <snyder@bnl.gov>
......@@ -17,6 +15,7 @@
#include "TestTools/FLOATassert.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include <cassert>
#include <iostream>
......@@ -86,7 +85,7 @@ void testit (const TrigMuonEFCbTrack& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
// Get proxy created outside of leak checking.
......@@ -120,7 +119,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
// $Id$
/**
* @file TrigMuonEventTPCnv/test/TrigMuonEFCbTrackCnv_p6_test.cxx
* @author scott snyder <snyder@bnl.gov>
......@@ -17,6 +15,7 @@
#include "TestTools/FLOATassert.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include <cassert>
#include <iostream>
......@@ -86,7 +85,7 @@ void testit (const TrigMuonEFCbTrack& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
// Get proxy created outside of leak checking.
......@@ -120,7 +119,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
/*
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
/**
* @file TrigMuonEventTPCnv/test/TrigMuonEFCbTrackCnv_p7_test.cxx
......@@ -15,6 +15,7 @@
#include "TestTools/FLOATassert.h"
#include "SGTools/TestStore.h"
#include "TestTools/leakcheck.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/MsgStream.h"
#include "GaudiKernel/ThreadLocalContext.h"
#include <cassert>
......@@ -84,7 +85,7 @@ void testit (const TrigMuonEFCbTrack& trans1)
}
void test1()
void test1 ATLAS_NOT_THREAD_SAFE ()
{
std::cout << "test1\n";
(void)Gaudi::Hive::currentContext();
......@@ -119,7 +120,7 @@ void test1()
}
int main()
int main ATLAS_NOT_THREAD_SAFE ()
{
SGTest::initTestStore();
test1();
......
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