From d34bbb512d74f4a218f3ac74220dd36403b38d90 Mon Sep 17 00:00:00 2001 From: John Chapman <jchapman@cern.ch> Date: Wed, 12 Aug 2020 13:13:57 +0200 Subject: [PATCH] Migrate xAODEventShapeAthenaPool TPCnv unit tests to ComponentAccumulator xAODEventShapeAthenaPool_21.0.79_test - passes (reference file updated) --- .../xAODEventShapeAthenaPool/CMakeLists.txt | 3 ++- .../xAODEventShapeAthenaPool_21.0.79.ref | 2 -- .../xAODEventShapeAthenaPool_21.0.79_test.py | 25 +++++++++++++++++++ 3 files changed, 27 insertions(+), 3 deletions(-) create mode 100755 Event/xAOD/xAODEventShapeAthenaPool/test/xAODEventShapeAthenaPool_21.0.79_test.py diff --git a/Event/xAOD/xAODEventShapeAthenaPool/CMakeLists.txt b/Event/xAOD/xAODEventShapeAthenaPool/CMakeLists.txt index 4f619a5ec9e..4661eac89d7 100644 --- a/Event/xAOD/xAODEventShapeAthenaPool/CMakeLists.txt +++ b/Event/xAOD/xAODEventShapeAthenaPool/CMakeLists.txt @@ -13,6 +13,7 @@ atlas_add_poolcnv_library( xAODEventShapeAthenaPoolPoolCnv # Install files from the package. atlas_install_joboptions( share/*.py ) +atlas_install_scripts( test/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} ) # Set up (a) test(s) for the converter(s): find_package( AthenaPoolUtilitiesTest ) @@ -20,7 +21,7 @@ find_package( AthenaPoolUtilitiesTest ) if( ATHENAPOOLUTILITIESTEST_FOUND ) set( XAODEVENTSHAPEATHENAPOOL_REFERENCE_TAG xAODEventShapeAthenaPoolReference-01-00-01 ) - run_tpcnv_legacy_test( xAODEventShapeAthenaPool_21.0.79 AOD-21.0.79-full + run_tpcnv_test( xAODEventShapeAthenaPool_21.0.79 AOD-21.0.79-full REQUIRED_LIBRARIES xAODEventShapeAthenaPoolPoolCnv REFERENCE_TAG ${XAODEVENTSHAPEATHENAPOOL_REFERENCE_TAG} ) else() diff --git a/Event/xAOD/xAODEventShapeAthenaPool/share/xAODEventShapeAthenaPool_21.0.79.ref b/Event/xAOD/xAODEventShapeAthenaPool/share/xAODEventShapeAthenaPool_21.0.79.ref index 7bad035b83c..ed11e6d9358 100644 --- a/Event/xAOD/xAODEventShapeAthenaPool/share/xAODEventShapeAthenaPool_21.0.79.ref +++ b/Event/xAOD/xAODEventShapeAthenaPool/share/xAODEventShapeAthenaPool_21.0.79.ref @@ -510,8 +510,6 @@ IOVDbSvc INFO Disconnecting from COOLOFL_TRT/OFLP200 Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] C634B46D-ECB2-A045-91CC-00A82369D887 Domain[ROOT_All] INFO /home/sss/atlas/DBRelease/current/poolcond/cond09_mc.000070.gen.COND/cond12_data.000029.gen.COND._0001.pool.root RootDatabase.open INFO /home/sss/atlas/DBRelease/current/poolcond/cond09_mc.000070.gen.COND/cond12_data.000029.gen.COND._0001.pool.root File version:53005 -PixelDetectorMa...WARNING Cannot set AlignableTransform for identifier [2.1.0.0.0.-4.256.0] at level 2 -PixelDetectorMa...WARNING Subsequent WARNINGS will be printed at DEBUG level. PixelDetectorMa... INFO Processing IBLDist alignment container with key (/Indet/IBLDist) and alignment folder pointing to /Indet/Align Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] D67CA215-C5CB-DF11-954C-000423DC2158 Domain[ROOT_All] INFO /home/sss/atlas/DBRelease/current/poolcond/cond09_mc.000019.gen.COND/cond09_mc.000019.gen.COND._0010.pool.root diff --git a/Event/xAOD/xAODEventShapeAthenaPool/test/xAODEventShapeAthenaPool_21.0.79_test.py b/Event/xAOD/xAODEventShapeAthenaPool/test/xAODEventShapeAthenaPool_21.0.79_test.py new file mode 100755 index 00000000000..1d18b753f53 --- /dev/null +++ b/Event/xAOD/xAODEventShapeAthenaPool/test/xAODEventShapeAthenaPool_21.0.79_test.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +""" +Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration +""" + +from AthenaPoolUtilities.TPCnvTestConfig import TPCnvTest + +if __name__ == "__main__": + + infile = 'aod/AOD-21.0.79/AOD-21.0.79-full.pool.root' + keys = [ + #xAOD::EventShapeAuxInfo_v1 + 'Kt4EMPFlowEventShape', + 'Kt4EMTopoOriginEventShape', + 'Kt4LCTopoOriginEventShape', + 'NeutralParticleFlowIsoCentralEventShape', + 'NeutralParticleFlowIsoForwardEventShape', + 'ParticleFlowIsoCentralEventShape', + 'ParticleFlowIsoForwardEventShape', + 'TopoClusterIsoCentralEventShape', + 'TopoClusterIsoForwardEventShape', + 'TopoClusterIsoVeryForwardEventShape', + ] + + TPCnvTest(infile, keys) -- GitLab