Skip to content
Snippets Groups Projects
Commit 3ca2dcc4 authored by John Chapman's avatar John Chapman
Browse files

Migrate MuonEventAthenaPool TPCnv unit tests to ComponentAccumulator

MuonEventTPCnv_17.0.0_test - passes
MuonEventTPCnv_20.1.7.2_test - passes
parent a9749cde
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,7 @@ atlas_add_dictionary( MuonRDOCnvDict
# 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 )
......@@ -74,14 +75,14 @@ find_package( AthenaPoolUtilitiesTest )
if( ATHENAPOOLUTILITIESTEST_FOUND )
set( MUONEVENTATHENAPOOL_REFERENCE_TAG
MuonEventAthenaPoolReference-03-01-00 )
run_tpcnv_legacy_test( MuonEventTPCnv_17.0.0 ESD-17.0.0
REFERENCE_TAG ${MUONEVENTATHENAPOOL_REFERENCE_TAG} )
run_tpcnv_legacy_test( MuonEventTPCnv_20.1.7.2 ESD-20.1.7.2
REFERENCE_TAG ${MUONEVENTATHENAPOOL_REFERENCE_TAG} )
run_tpcnv_test( MuonEventTPCnv_17.0.0 ESD-17.0.0
REFERENCE_TAG ${MUONEVENTATHENAPOOL_REFERENCE_TAG} )
run_tpcnv_test( MuonEventTPCnv_20.1.7.2 ESD-20.1.7.2
REFERENCE_TAG ${MUONEVENTATHENAPOOL_REFERENCE_TAG} )
else()
message( WARNING
"Couldn't find AthenaPoolUtilitiesTest. No test(s) set up." )
endif()
endif()
# Helper variable for running the tests:
set( _jobOPath "${CMAKE_CURRENT_SOURCE_DIR}/share" )
......
#!/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 = 'esd/ESD-17.0.0.pool.root'
keys = [
#Muon::CscPrepDataContainer_tlp1
'CSC_Clusters',
#Muon::CscStripPrepDataContainer_tlp1
'CSC_Measurements',
#Muon::MuonPRD_Container_p2<Muon::RpcCoinData_p1>
'RPC_triggerHits',
#Muon::MuonPRD_Container_p2<Muon::MdtPrepData_p2>
'MDT_DriftCircles',
#Muon::RpcPrepDataContainer_tlp1
'RPC_Measurements',
#Muon::TgcPrepDataContainer_tlp1
'TGC_MeasurementsNextBC',
'TGC_MeasurementsPriorBC',
'TGC_Measurements',
#Muon::TgcCoinDataContainer_tlp2
'TrigT1CoinDataCollectionNextBC',
'TrigT1CoinDataCollectionPriorBC',
'TrigT1CoinDataCollection',
#Muon::ChamberT0s_p1
'MboyMuonChamberT0s',
'MooreMuonChamberT0s',
]
TPCnvTest(infile, keys, useGeoModelSvc=True, doMuon=True)
#!/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 = 'esd/ESD-20.1.7.2.pool.root'
keys = [
#Muon::CscPrepDataContainer_tlp1
'CSC_Clusters',
#Muon::CscStripPrepDataContainer_tlp1
'CSC_Measurements',
#Muon::CscSimDataCollection_p1
'CSC_SDO',
#Muon::MuonPRD_Container_p2<Muon::RpcCoinData_p1>
'RPC_triggerHits',
#Muon::MuonPRD_Container_p2<Muon::TgcPrepData_p1>
'TGC_MeasurementsAllBCs',
#Muon::MuonPRD_Container_p2<Muon::RpcPrepData_p3>
'RPC_Measurements',
#Muon::MuonPRD_Container_p2<Muon::MdtPrepData_p2>
'MDT_DriftCircles',
#Muon::TgcCoinDataContainer_tlp3
'TrigT1CoinDataCollectionNextBC',
'TrigT1CoinDataCollectionPriorBC',
'TrigT1CoinDataCollection',
#Muon::MuonSimDataCollection_p1
'TGC_SDO',
'RPC_SDO',
'MDT_SDO',
]
TPCnvTest(infile, keys, useGeoModelSvc=True, doMuon=True)
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