diff --git a/Control/DataModelTest/DataModelRunTests/CMakeLists.txt b/Control/DataModelTest/DataModelRunTests/CMakeLists.txt index 044b60fbb984d40bfa8e898c3566fe5037f67711..7f1872f2c0add06397faa9622f13adfcd89cfe41 100644 --- a/Control/DataModelTest/DataModelRunTests/CMakeLists.txt +++ b/Control/DataModelTest/DataModelRunTests/CMakeLists.txt @@ -6,9 +6,11 @@ atlas_subdir( DataModelRunTests ) # Install files from the package: atlas_install_joboptions( share/*.py ) +atlas_install_python_modules( python/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} ) + # Tests in the package: function (datamodel_run_test testName) - cmake_parse_arguments( ARG "" "DEPENDS;COMMAND;ARG;EXTRA_IGNORE" "" ${ARGN} ) + cmake_parse_arguments( ARG "MT" "DEPENDS;COMMAND;ARG;EXTRA_IGNORE" "" ${ARGN} ) if( ARG_COMMAND ) set( _command ${ARG_COMMAND} ) @@ -17,15 +19,20 @@ function (datamodel_run_test testName) endif() if( ARG_ARG ) - set( _arg ${ARG_ARG} ) + set( _arg ${CMAKE_CURRENT_SOURCE_DIR}/test/${ARG_ARG} ) else() - set( _arg DataModelRunTests/${testName}_jo.py ) + set( _arg ${CMAKE_CURRENT_SOURCE_DIR}/test/${testName}.py ) + endif() + + if( ARG_MT ) + set( testName "${testName}MT" ) + set( _command "${_command} --threads=1 " ) endif() atlas_add_test( ${testName} SCRIPT ${_command} ${_arg} - PROPERTIES TIMEOUT 300 - LOG_IGNORE_PATTERN "has different type than the branch|no dictionary for class|^StorageSvc +INFO|Cache alignment|Unable to locate catalog|IOVDbSvc[0-9 ]+INFO|Invalid ./TagInfo${ARG_EXTRA_IGNORE}|The database does not exist|IDatabaseSvc::openDatabase.*=>" + PROPERTIES TIMEOUT 600 + LOG_IGNORE_PATTERN "has different type than the branch|no dictionary for class|^StorageSvc +INFO|Cache alignment|Unable to locate catalog|IOVDbSvc[0-9 ]+INFO|Invalid ./TagInfo${ARG_EXTRA_IGNORE}|The database does not exist|IDatabaseSvc::openDatabase.*=>|New file created" ENVIRONMENT "ATLAS_REFERENCE_TAG=DataModelRunTests/DataModelRunTestsReference-01-00-03" DEPENDS ${ARG_DEPENDS} ) endfunction (datamodel_run_test) @@ -38,54 +45,47 @@ datamodel_run_test (xAODTestRead DEPENDS xAODTestWrite) #i:xaoddata.root o:xaodd datamodel_run_test (xAODTestRead2 DEPENDS xAODTestRead) #i:xaoddata2.root o:xaoddata2x.root datamodel_run_test (xAODTestTypelessRead DEPENDS xAODTestWrite) datamodel_run_test (xAODTestRead3 DEPENDS xAODTestTypelessRead) -datamodel_run_test (xAODTestRead3MT - COMMAND "athena.py --threads=1" - EXTRA_IGNORE "|^xAODTestRead" +datamodel_run_test (xAODTestRead3 MT + EXTRA_IGNORE "|^xAODTe" DEPENDS xAODTestTypelessRead) datamodel_run_test (xAODTestReadRename DEPENDS xAODTestWrite) -datamodel_run_test (xAODTestReadRenameMT - COMMAND "athena.py --threads=1" +datamodel_run_test (xAODTestReadRename MT DEPENDS xAODTestWrite) datamodel_run_test (xAODTestReadFilter DEPENDS xAODTestWrite) datamodel_run_test (xAODTestReadFilterRead DEPENDS xAODTestReadFilter) datamodel_run_test (xAODRootTestRead COMMAND python - ARG ${CMAKE_CURRENT_SOURCE_DIR}/share/xAODRootTestRead_t.py + ARG xAODRootTestRead_t.py DEPENDS xAODTestWrite) datamodel_run_test (xAODRootTestRead2 COMMAND python - ARG ${CMAKE_CURRENT_SOURCE_DIR}/share/xAODRootTestRead2_t.py + ARG xAODRootTestRead2_t.py DEPENDS xAODRootTestRead) datamodel_run_test (ByteStreamTestWrite) datamodel_run_test (ByteStreamTestRead DEPENDS ByteStreamTestWrite) datamodel_run_test (xAODTestSymlinks1) -datamodel_run_test (xAODTestSymlinks1MT - EXTRA_IGNORE "|^xAODTestRead" - COMMAND "athena.py --threads=1") +datamodel_run_test (xAODTestSymlinks1 MT + EXTRA_IGNORE "|^xAODTe") datamodel_run_test (xAODTestSymlinks2 DEPENDS xAODTestWrite) -datamodel_run_test (xAODTestSymlinks2MT - COMMAND "athena.py --threads=1" +datamodel_run_test (xAODTestSymlinks2 MT DEPENDS xAODTestWrite) datamodel_run_test (xAODTestDecorHandle1) -datamodel_run_test (xAODTestDecorHandle1MT - COMMAND "athena.py --threads=1") +datamodel_run_test (xAODTestDecorHandle1 MT) datamodel_run_test (xAODTestDecorHandle2 DEPENDS xAODTestWrite) -datamodel_run_test (xAODTestDecorHandle2MT - COMMAND "athena.py --threads=1" +datamodel_run_test (xAODTestDecorHandle2 MT DEPENDS xAODTestWrite) datamodel_run_test (CondWriter) datamodel_run_test (CondReader DEPENDS CondWriter) -datamodel_run_test (CondReaderMT - COMMAND "athena.py --threads=1" +datamodel_run_test (CondReader MT DEPENDS CondWriter) datamodel_run_test (CondReadWrite) @@ -103,38 +103,38 @@ datamodel_run_test (AllocTestWriteWithAlloc) datamodel_run_test (AllocTestReadNoAllocWithoutAlloc COMMAND "athena.py --filesInput=alloctestWithoutAlloc.root" - ARG DataModelRunTests/AllocTestReadWithoutAlloc_jo.py + ARG AllocTestReadWithoutAlloc.py DEPENDS AllocTestWriteWithoutAlloc) datamodel_run_test (AllocTestReadAllocWithAlloc COMMAND "athena.py --filesInput=alloctestWithAlloc.root" - ARG DataModelRunTests/AllocTestReadWithAlloc_jo.py + ARG AllocTestReadWithAlloc.py DEPENDS AllocTestWriteWithAlloc) datamodel_run_test (AllocTestReadNoAllocWithAlloc COMMAND "athena.py --filesInput=alloctestWithoutAlloc.root" - ARG DataModelRunTests/AllocTestReadWithAlloc_jo.py + ARG AllocTestReadWithAlloc.py DEPENDS AllocTestWriteWithoutAlloc) datamodel_run_test (AllocTestReadAllocWithoutAlloc COMMAND "athena.py --filesInput=alloctestWithAlloc.root" - ARG DataModelRunTests/AllocTestReadWithoutAlloc_jo.py + ARG AllocTestReadWithoutAlloc.py DEPENDS AllocTestWriteWithAlloc) datamodel_run_test (RootAllocTestReadNoAllocWithoutAlloc COMMAND python - ARG ${CMAKE_CURRENT_SOURCE_DIR}/share/RootAllocTestReadNoAllocWithoutAlloc_t.py + ARG RootAllocTestReadNoAllocWithoutAlloc_t.py DEPENDS AllocTestWriteWithoutAlloc) datamodel_run_test (RootAllocTestReadAllocWithAlloc COMMAND python - ARG ${CMAKE_CURRENT_SOURCE_DIR}/share/RootAllocTestReadAllocWithAlloc_t.py + ARG RootAllocTestReadAllocWithAlloc_t.py DEPENDS AllocTestWriteWithAlloc) datamodel_run_test (RootAllocTestReadNoAllocWithAlloc COMMAND python - ARG ${CMAKE_CURRENT_SOURCE_DIR}/share/RootAllocTestReadNoAllocWithAlloc_t.py + ARG RootAllocTestReadNoAllocWithAlloc_t.py DEPENDS AllocTestWriteWithoutAlloc) datamodel_run_test (RootAllocTestReadAllocWithoutAlloc COMMAND python - ARG ${CMAKE_CURRENT_SOURCE_DIR}/share/RootAllocTestReadAllocWithoutAlloc_t.py + ARG RootAllocTestReadAllocWithoutAlloc_t.py DEPENDS AllocTestWriteWithAlloc) diff --git a/Control/DataModelTest/DataModelRunTests/python/DataModelTestConfig.py b/Control/DataModelTest/DataModelRunTests/python/DataModelTestConfig.py new file mode 100644 index 0000000000000000000000000000000000000000..fee0dfba9840247aa273ca961f4ef3bd5b9f0c99 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/python/DataModelTestConfig.py @@ -0,0 +1,192 @@ +# +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# +# File: DataModelRunTests/python/DataModelTestConfig.py +# Author: snyder@bnl.gov +# Date: Nov 2023 +# Purpose: Helpers for configuration tests. +# + +from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator +from AthenaConfiguration.AllConfigFlags import initConfigFlags +from AthenaConfiguration.ComponentFactory import CompFactory +from AthenaPython.PyAthenaComps import Alg, StatusCode +from AthenaCommon.Constants import INFO + + +# +# Common configuration flag settings. +# Takes an optional input file name and event count. +# Remaining keyword argument names are interpreted as stream names. Example: +# flags = DataModelTestFlags (infile = 'SimplePoolFile.root', +# Stream1 = 'SimplePoolFile2.root') +# +def DataModelTestFlags (infile = None, evtMax = 20, **kw): + flags = initConfigFlags() + flags.Exec.MaxEvents = evtMax + flags.Exec.OutputLevel = INFO + flags.Common.MsgSourceLength = 18 + + # Disable FPE auditing. + flags.Exec.FPE = -2 + + # Set input/output files. + if infile: + flags.Input.Files = [infile] + for stream, outfile in kw.items(): + flags.addFlag (f'Output.{stream}FileName', outfile) + + # Block input file peeking. + from Campaigns.Utils import Campaign + flags.Input.RunNumber = 0 + flags.Input.TimeStamp = 0 + flags.Input.ProcessingTags = [] + flags.Input.TypedCollections = [] + flags.Input.isMC = True + flags.IOVDb.GlobalTag = '' + flags.Input.MCCampaign = Campaign.Unknown + return flags + + +# +# Common configuration for tests. +# +def DataModelTestCfg (flags, testName, + loadReadDicts = False, + loadWriteDicts = False, + EventsPerLB = None, + TimeStampInterval = None, + readCatalog = None): + from AthenaConfiguration.MainServicesConfig import \ + MainServicesCfg, MessageSvcCfg + cfg = MainServicesCfg (flags) + cfg.merge (MessageSvcCfg (flags)) + cfg.getService("MessageSvc").debugLimit = 10000 + cfg.addService (CompFactory.ClassIDSvc (OutputLevel = INFO)) + cfg.addService (CompFactory.ChronoStatSvc (ChronoPrintOutTable = False, + PrintUserTime = False, + StatPrintOutTable = False)) + + if flags.Input.Files == ['_ATHENA_GENERIC_INPUTFILE_NAME_']: + # No input file --- configure like an event generator, + # and make an xAODEventInfo. + from McEventSelector.McEventSelectorConfig import McEventSelectorCfg + mckw = {} + if EventsPerLB is not None: + mckw['EventsPerLB'] = EventsPerLB + if TimeStampInterval is not None: + mckw['TimeStampInterval'] = TimeStampInterval + cfg.merge (McEventSelectorCfg (flags, **mckw)) + + from xAODEventInfoCnv.xAODEventInfoCnvConfig import EventInfoCnvAlgCfg + cfg.merge (EventInfoCnvAlgCfg (flags, disableBeamSpot = True)) + elif not flags.Input.Files[0].endswith ('.bs'): + # Configure reading. + from AthenaPoolCnvSvc.PoolReadConfig import PoolReadCfg + cfg.merge (PoolReadCfg (flags)) + + # Load dictionaries if requested. + if loadWriteDicts: + cfg.merge (LoadWriteDictsCfg (flags)) + if loadReadDicts: + cfg.merge (LoadReadDictsCfg (flags)) + + # Prevent races when we run tests in parallel in the same directory. + fileCatalog = testName + '_catalog.xml' + from AthenaPoolCnvSvc.PoolCommonConfig import PoolSvcCfg + kw = {'WriteCatalog' : 'file:' + fileCatalog} + if readCatalog: + kw['ReadCatalog'] = ['file:' + readCatalog] + cfg.merge (PoolSvcCfg (flags, **kw)) + import os + try: + os.remove (fileCatalog) + except OSError: + pass + + + return cfg + + +# +# Configure an output stream. +# +def TestOutputCfg (flags, stream, itemList, typeNames = [], metaItemList = []): + from OutputStreamAthenaPool.OutputStreamConfig import OutputStreamCfg + acc = ComponentAccumulator() + itemList = ['xAOD::EventInfo#EventInfo', + 'xAOD::EventAuxInfo#EventInfoAux.'] + itemList + helperTools = [] + if typeNames: + helperTools = [ CompFactory.xAODMaker.EventFormatStreamHelperTool( + f'{stream}_EventFormatStreamHelperTool', + Key = f'EventFormat{stream}', + TypeNames = typeNames, + DataHeaderKey = f'Stream{stream}') ] + metaItemList = [ f'xAOD::EventFormat#EventFormat{stream}' ] + metaItemList + acc.merge (OutputStreamCfg (flags, stream, + disableEventTag = True, + ItemList = itemList, + HelperTools = helperTools, + MetadataItemList = metaItemList)) + if typeNames: + alg = acc.getEventAlgo (f'OutputStream{stream}') + alg.WritingTool.SubLevelBranchName = '<key>' + acc.getService ('AthenaPoolCnvSvc').PoolAttributes += ["DEFAULT_SPLITLEVEL='1'"] + return acc + + + + +# Arrange to get dictionaries loaded for write tests. +# Do this as an algorithm so we can defer it to initialize(). +# In some cases, loading DSOs during initial python processing +# can cause component loading to fail. +class LoadWriteDicts (Alg): + def __init__ (self, name = 'LoadWriteDicts', **kw): + return super(LoadWriteDicts, self).__init__ (name=name, **kw) + def initialize (self): + import ROOT + ROOT.gROOT.SetBatch(True) + import cppyy + cppyy.load_library("libDataModelTestDataCommonDict") + cppyy.load_library("libDataModelTestDataWriteDict") + cppyy.load_library("libDataModelTestDataWriteCnvDict") + ROOT.DMTest.B + ROOT.DMTest.setConverterLibrary ('libDataModelTestDataWriteCnvPoolCnv.so') + ROOT.DMTest.setTrigConverterLibrary ('libDataModelTestDataWriteSerCnv.so') + return StatusCode.Success + + +def LoadWriteDictsCfg (flags): + acc = ComponentAccumulator() + acc.addEventAlgo (LoadWriteDicts()) + return acc + + +# Arrange to get dictionaries loaded for read tests. +# Do this as an algorithm so we can defer it to initialize(). +# In some cases, loading DSOs during initial python processing +# can cause component loading to fail. +class LoadReadDicts (Alg): + def __init__ (self, name = 'LoadReadDicts', **kw): + return super(LoadReadDicts, self).__init__ (name=name, **kw) + def initialize (self): + import ROOT + ROOT.gROOT.SetBatch(True) + import cppyy + cppyy.load_library("libDataModelTestDataCommonDict") + cppyy.load_library("libDataModelTestDataReadDict") + ROOT.DMTest.B + ROOT.gROOT.GetClass('DMTest::HAuxContainer_v1') + ROOT.gROOT.GetClass('DataVector<DMTest::H_v1>') + ROOT.gROOT.GetClass('DMTest::HView_v1') + ROOT.DMTest.setConverterLibrary ('libDataModelTestDataReadCnvPoolCnv.so') + ROOT.DMTest.setTrigConverterLibrary ('libDataModelTestDataReadSerCnv.so') + return StatusCode.Success + +def LoadReadDictsCfg (flags): + acc = ComponentAccumulator() + acc.addEventAlgo (LoadReadDicts()) + return acc diff --git a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadAllocWithAlloc.ref b/Control/DataModelTest/DataModelRunTests/share/AllocTestReadAllocWithAlloc.ref index 7c1d3873caf2d927b752eb9853379b2b1f88b063..1e9515d96317d7a90561ab35535ec6931fe803bb 100644 --- a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadAllocWithAlloc.ref +++ b/Control/DataModelTest/DataModelRunTests/share/AllocTestReadAllocWithAlloc.ref @@ -1,88 +1,15 @@ -Fri May 12 22:29:39 EDT 2023 -Py:Athena INFO using release [?-22.0.0] [?] [?/?] -- built on [?] -Py:Athena INFO including file "AthenaCommon/Preparation.py" -Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO including file "AthenaCommon/Execution.py" -Py:Athena INFO including file "/ssd/sss/atlas/dvtest/../share/AllocTestReadWithAlloc_jo.py" -Py:ConfigurableDb INFO Read module info for 1230 configurables from 2 genConfDb files -Py:ConfigurableDb INFO No duplicates have been found: that's good ! -Py:Athena INFO including file "DataModelRunTests/loadReadDicts.py" -Py:Athena INFO including file "DataModelRunTests/commonTrailer.py" -Py:Athena INFO including file "DataModelRunTests/setCatalog.py" -Py:Athena INFO including file "AthenaCommon/runbatch.py" -# setting LC_ALL to "C" -ApplicationMgr SUCCESS -==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99) - running on karma on Fri May 12 22:29:57 2023 -==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 3178 CLIDRegistry entries for module ALL -CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 14(Alarm clock) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -ClassIDSvc INFO getRegistryEntries: read 10786 CLIDRegistry entries for module ALL PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... -MetaDataSvc INFO Initializing MetaDataSvc -PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled -PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config -DBReplicaSvc INFO No specific match for domain found - use default fallback -DBReplicaSvc INFO Total of 1 servers found for host karma [atlas_dd ] -PoolSvc INFO Successfully setup replica sorting algorithm -PoolSvc INFO Setting up APR FileCatalog and Streams -PoolSvc INFO POOL WriteCatalog is file:AllocTestReadWithAllocalloctestWithAlloc_catalog.xml -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool']) EventSelector INFO EventSelection with query -PoolSvc INFO File is not in Catalog! Attempt to open it anyway. -DbSession INFO Open DbSession -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 7D2BB6EF-FDCA-BA18-3A0E-3877C24DE71F -Domain[ROOT_All] INFO alloctestWithAlloc.root -RootDatabase.open INFO alloctestWithAlloc.root File version:62610 -alloctestWithAl... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 7D2BB6EF-FDCA-BA18-3A0E-3877C24DE71F -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -PoolSvc INFO File is not in Catalog! Attempt to open it anyway. -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 7D2BB6EF-FDCA-BA18-3A0E-3877C24DE71F -Domain[ROOT_All] INFO alloctestWithAlloc.root -RootDatabase.open INFO alloctestWithAlloc.root File version:62610 -alloctestWithAl... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 7D2BB6EF-FDCA-BA18-3A0E-3877C24DE71F -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 6BB5D2A5-3D0F-5B4F-84DB-0AE5256C1D04 -Domain[ROOT_All] INFO alloctestWithAlloc.root -RootDatabase.open INFO alloctestWithAlloc.root File version:62610 -ClassIDSvc INFO getRegistryEntries: read 1594 CLIDRegistry entries for module ALL -EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc -ClassIDSvc INFO getRegistryEntries: read 23 CLIDRegistry entries for module ALL -MetaDataSvc INFO AlgTool: ToolSvc.IOVDbMetaDataTool AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully -alloctestWithAl... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 6BB5D2A5-3D0F-5B4F-84DB-0AE5256C1D04 -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 6BB5D2A5-3D0F-5B4F-84DB-0AE5256C1D04 -Domain[ROOT_All] INFO alloctestWithAlloc.root -RootDatabase.open INFO alloctestWithAlloc.root File version:62610 ApplicationMgr INFO Application Manager Started successfully -AlgResourcePool INFO TopAlg list empty. Recovering the one of Application Manager -AthenaPoolConve... INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== AllocTest 0 10 20 30 1 11 21 31 2 12 22 32 3 13 23 33 4 14 24 34 5 15 25 35 6 16 26 36 7 17 27 37 8 18 28 38 9 19 29 39 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== -ClassIDSvc INFO getRegistryEntries: read 77 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== AllocTest 100 110 120 130 101 111 121 131 102 112 122 132 103 113 123 133 104 114 124 134 105 115 125 135 106 116 126 136 107 117 127 137 108 118 128 138 109 119 129 139 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== @@ -140,16 +67,7 @@ AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== AllocTest 1900 1910 1920 1930 1901 1911 1921 1931 1902 1912 1922 1932 1903 1913 1923 1933 1904 1914 1924 1934 1905 1915 1925 1935 1906 1916 1926 1936 1907 1917 1927 1937 1908 1918 1928 1938 1909 1919 1929 1939 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -alloctestWithAl... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 6BB5D2A5-3D0F-5B4F-84DB-0AE5256C1D04 ApplicationMgr INFO Application Manager Stopped successfully -LoadReadDicts INFO Finalizing LoadReadDicts... -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -XMLCatalog INFO File 'AllocTestReadWithAllocalloctestWithAlloc_catalog.xml' does not exist. New file created. -PyComponentMgr INFO Finalizing PyComponentMgr... -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadAllocWithoutAlloc.ref b/Control/DataModelTest/DataModelRunTests/share/AllocTestReadAllocWithoutAlloc.ref index 3694ed3822ba3b521d0615aabaf249f840a2a191..ff839bf8c60a036f6066a8d2974041dfd4c06c87 100644 --- a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadAllocWithoutAlloc.ref +++ b/Control/DataModelTest/DataModelRunTests/share/AllocTestReadAllocWithoutAlloc.ref @@ -1,88 +1,15 @@ -Fri May 12 22:28:02 EDT 2023 -Py:Athena INFO using release [?-22.0.0] [?] [?/?] -- built on [?] -Py:Athena INFO including file "AthenaCommon/Preparation.py" -Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO including file "AthenaCommon/Execution.py" -Py:Athena INFO including file "/ssd/sss/atlas/dvtest/../share/AllocTestReadWithoutAlloc_jo.py" -Py:ConfigurableDb INFO Read module info for 1230 configurables from 2 genConfDb files -Py:ConfigurableDb INFO No duplicates have been found: that's good ! -Py:Athena INFO including file "DataModelRunTests/loadWriteDicts.py" -Py:Athena INFO including file "DataModelRunTests/commonTrailer.py" -Py:Athena INFO including file "DataModelRunTests/setCatalog.py" -Py:Athena INFO including file "AthenaCommon/runbatch.py" -# setting LC_ALL to "C" -ApplicationMgr SUCCESS -==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99) - running on karma on Fri May 12 22:28:22 2023 -==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 3178 CLIDRegistry entries for module ALL -CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 14(Alarm clock) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -ClassIDSvc INFO getRegistryEntries: read 10519 CLIDRegistry entries for module ALL PyComponentMgr INFO Initializing PyComponentMgr... LoadWriteDicts INFO Initializing LoadWriteDicts... -MetaDataSvc INFO Initializing MetaDataSvc -PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled -PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config -DBReplicaSvc INFO No specific match for domain found - use default fallback -DBReplicaSvc INFO Total of 1 servers found for host karma [atlas_dd ] -PoolSvc INFO Successfully setup replica sorting algorithm -PoolSvc INFO Setting up APR FileCatalog and Streams -PoolSvc INFO POOL WriteCatalog is file:AllocTestReadWithoutAllocalloctestWithAlloc_catalog.xml -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool']) EventSelector INFO EventSelection with query -PoolSvc INFO File is not in Catalog! Attempt to open it anyway. -DbSession INFO Open DbSession -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 7D2BB6EF-FDCA-BA18-3A0E-3877C24DE71F -Domain[ROOT_All] INFO alloctestWithAlloc.root -RootDatabase.open INFO alloctestWithAlloc.root File version:62610 -alloctestWithAl... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 7D2BB6EF-FDCA-BA18-3A0E-3877C24DE71F -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -PoolSvc INFO File is not in Catalog! Attempt to open it anyway. -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 7D2BB6EF-FDCA-BA18-3A0E-3877C24DE71F -Domain[ROOT_All] INFO alloctestWithAlloc.root -RootDatabase.open INFO alloctestWithAlloc.root File version:62610 -alloctestWithAl... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 7D2BB6EF-FDCA-BA18-3A0E-3877C24DE71F -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 6BB5D2A5-3D0F-5B4F-84DB-0AE5256C1D04 -Domain[ROOT_All] INFO alloctestWithAlloc.root -RootDatabase.open INFO alloctestWithAlloc.root File version:62610 -ClassIDSvc INFO getRegistryEntries: read 1595 CLIDRegistry entries for module ALL -EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc -ClassIDSvc INFO getRegistryEntries: read 23 CLIDRegistry entries for module ALL -MetaDataSvc INFO AlgTool: ToolSvc.IOVDbMetaDataTool AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully -alloctestWithAl... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 6BB5D2A5-3D0F-5B4F-84DB-0AE5256C1D04 -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 6BB5D2A5-3D0F-5B4F-84DB-0AE5256C1D04 -Domain[ROOT_All] INFO alloctestWithAlloc.root -RootDatabase.open INFO alloctestWithAlloc.root File version:62610 ApplicationMgr INFO Application Manager Started successfully -AlgResourcePool INFO TopAlg list empty. Recovering the one of Application Manager -AthenaPoolConve... INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== AllocTest 0 10 20 30 1 11 21 31 2 12 22 32 3 13 23 33 4 14 24 34 5 15 25 35 6 16 26 36 7 17 27 37 8 18 28 38 9 19 29 39 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== -ClassIDSvc INFO getRegistryEntries: read 65 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== AllocTest 100 110 120 130 101 111 121 131 102 112 122 132 103 113 123 133 104 114 124 134 105 115 125 135 106 116 126 136 107 117 127 137 108 118 128 138 109 119 129 139 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== @@ -140,16 +67,7 @@ AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== AllocTest 1900 1910 1920 1930 1901 1911 1921 1931 1902 1912 1922 1932 1903 1913 1923 1933 1904 1914 1924 1934 1905 1915 1925 1935 1906 1916 1926 1936 1907 1917 1927 1937 1908 1918 1928 1938 1909 1919 1929 1939 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -alloctestWithAl... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 6BB5D2A5-3D0F-5B4F-84DB-0AE5256C1D04 ApplicationMgr INFO Application Manager Stopped successfully -LoadWriteDicts INFO Finalizing LoadWriteDicts... -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -XMLCatalog INFO File 'AllocTestReadWithoutAllocalloctestWithAlloc_catalog.xml' does not exist. New file created. -PyComponentMgr INFO Finalizing PyComponentMgr... -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadNoAllocWithAlloc.ref b/Control/DataModelTest/DataModelRunTests/share/AllocTestReadNoAllocWithAlloc.ref index 4b1dc83bfb657ac489d0de4fe1eefa2a86d2482d..1e9515d96317d7a90561ab35535ec6931fe803bb 100644 --- a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadNoAllocWithAlloc.ref +++ b/Control/DataModelTest/DataModelRunTests/share/AllocTestReadNoAllocWithAlloc.ref @@ -1,88 +1,15 @@ -Fri May 12 22:26:42 EDT 2023 -Py:Athena INFO using release [?-22.0.0] [?] [?/?] -- built on [?] -Py:Athena INFO including file "AthenaCommon/Preparation.py" -Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO including file "AthenaCommon/Execution.py" -Py:Athena INFO including file "/ssd/sss/atlas/dvtest/../share/AllocTestReadWithAlloc_jo.py" -Py:ConfigurableDb INFO Read module info for 1230 configurables from 2 genConfDb files -Py:ConfigurableDb INFO No duplicates have been found: that's good ! -Py:Athena INFO including file "DataModelRunTests/loadReadDicts.py" -Py:Athena INFO including file "DataModelRunTests/commonTrailer.py" -Py:Athena INFO including file "DataModelRunTests/setCatalog.py" -Py:Athena INFO including file "AthenaCommon/runbatch.py" -# setting LC_ALL to "C" -ApplicationMgr SUCCESS -==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99) - running on karma on Fri May 12 22:27:01 2023 -==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 3178 CLIDRegistry entries for module ALL -CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 14(Alarm clock) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -ClassIDSvc INFO getRegistryEntries: read 10786 CLIDRegistry entries for module ALL PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... -MetaDataSvc INFO Initializing MetaDataSvc -PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled -PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config -DBReplicaSvc INFO No specific match for domain found - use default fallback -DBReplicaSvc INFO Total of 1 servers found for host karma [atlas_dd ] -PoolSvc INFO Successfully setup replica sorting algorithm -PoolSvc INFO Setting up APR FileCatalog and Streams -PoolSvc INFO POOL WriteCatalog is file:AllocTestReadWithAllocalloctestWithoutAlloc_catalog.xml -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool']) EventSelector INFO EventSelection with query -PoolSvc INFO File is not in Catalog! Attempt to open it anyway. -DbSession INFO Open DbSession -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] C825D530-AD2A-DC8C-A73F-423D68AA656E -Domain[ROOT_All] INFO alloctestWithoutAlloc.root -RootDatabase.open INFO alloctestWithoutAlloc.root File version:62610 -alloctestWithou... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] C825D530-AD2A-DC8C-A73F-423D68AA656E -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -PoolSvc INFO File is not in Catalog! Attempt to open it anyway. -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] C825D530-AD2A-DC8C-A73F-423D68AA656E -Domain[ROOT_All] INFO alloctestWithoutAlloc.root -RootDatabase.open INFO alloctestWithoutAlloc.root File version:62610 -alloctestWithou... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] C825D530-AD2A-DC8C-A73F-423D68AA656E -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] CD6FB0BB-7C6B-A24A-9ED0-C09A153D3FDD -Domain[ROOT_All] INFO alloctestWithoutAlloc.root -RootDatabase.open INFO alloctestWithoutAlloc.root File version:62610 -ClassIDSvc INFO getRegistryEntries: read 1594 CLIDRegistry entries for module ALL -EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc -ClassIDSvc INFO getRegistryEntries: read 23 CLIDRegistry entries for module ALL -MetaDataSvc INFO AlgTool: ToolSvc.IOVDbMetaDataTool AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully -alloctestWithou... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] CD6FB0BB-7C6B-A24A-9ED0-C09A153D3FDD -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] CD6FB0BB-7C6B-A24A-9ED0-C09A153D3FDD -Domain[ROOT_All] INFO alloctestWithoutAlloc.root -RootDatabase.open INFO alloctestWithoutAlloc.root File version:62610 ApplicationMgr INFO Application Manager Started successfully -AlgResourcePool INFO TopAlg list empty. Recovering the one of Application Manager -AthenaPoolConve... INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== AllocTest 0 10 20 30 1 11 21 31 2 12 22 32 3 13 23 33 4 14 24 34 5 15 25 35 6 16 26 36 7 17 27 37 8 18 28 38 9 19 29 39 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== -ClassIDSvc INFO getRegistryEntries: read 77 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== AllocTest 100 110 120 130 101 111 121 131 102 112 122 132 103 113 123 133 104 114 124 134 105 115 125 135 106 116 126 136 107 117 127 137 108 118 128 138 109 119 129 139 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== @@ -140,16 +67,7 @@ AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== AllocTest 1900 1910 1920 1930 1901 1911 1921 1931 1902 1912 1922 1932 1903 1913 1923 1933 1904 1914 1924 1934 1905 1915 1925 1935 1906 1916 1926 1936 1907 1917 1927 1937 1908 1918 1928 1938 1909 1919 1929 1939 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -alloctestWithou... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] CD6FB0BB-7C6B-A24A-9ED0-C09A153D3FDD ApplicationMgr INFO Application Manager Stopped successfully -LoadReadDicts INFO Finalizing LoadReadDicts... -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -XMLCatalog INFO File 'AllocTestReadWithAllocalloctestWithoutAlloc_catalog.xml' does not exist. New file created. -PyComponentMgr INFO Finalizing PyComponentMgr... -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadNoAllocWithoutAlloc.ref b/Control/DataModelTest/DataModelRunTests/share/AllocTestReadNoAllocWithoutAlloc.ref index f5efd4d6cbf95e6c37cbb86948185456169f6c41..ff839bf8c60a036f6066a8d2974041dfd4c06c87 100644 --- a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadNoAllocWithoutAlloc.ref +++ b/Control/DataModelTest/DataModelRunTests/share/AllocTestReadNoAllocWithoutAlloc.ref @@ -1,88 +1,15 @@ -Fri May 12 22:24:15 EDT 2023 -Py:Athena INFO using release [?-22.0.0] [?] [?/?] -- built on [?] -Py:Athena INFO including file "AthenaCommon/Preparation.py" -Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO including file "AthenaCommon/Execution.py" -Py:Athena INFO including file "/ssd/sss/atlas/dvtest/../share/AllocTestReadWithoutAlloc_jo.py" -Py:ConfigurableDb INFO Read module info for 1230 configurables from 2 genConfDb files -Py:ConfigurableDb INFO No duplicates have been found: that's good ! -Py:Athena INFO including file "DataModelRunTests/loadWriteDicts.py" -Py:Athena INFO including file "DataModelRunTests/commonTrailer.py" -Py:Athena INFO including file "DataModelRunTests/setCatalog.py" -Py:Athena INFO including file "AthenaCommon/runbatch.py" -# setting LC_ALL to "C" -ApplicationMgr SUCCESS -==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99) - running on karma on Fri May 12 22:24:42 2023 -==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 3178 CLIDRegistry entries for module ALL -CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 14(Alarm clock) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -ClassIDSvc INFO getRegistryEntries: read 10519 CLIDRegistry entries for module ALL PyComponentMgr INFO Initializing PyComponentMgr... LoadWriteDicts INFO Initializing LoadWriteDicts... -MetaDataSvc INFO Initializing MetaDataSvc -PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled -PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config -DBReplicaSvc INFO No specific match for domain found - use default fallback -DBReplicaSvc INFO Total of 1 servers found for host karma [atlas_dd ] -PoolSvc INFO Successfully setup replica sorting algorithm -PoolSvc INFO Setting up APR FileCatalog and Streams -PoolSvc INFO POOL WriteCatalog is file:AllocTestReadWithoutAllocalloctestWithoutAlloc_catalog.xml -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool']) EventSelector INFO EventSelection with query -PoolSvc INFO File is not in Catalog! Attempt to open it anyway. -DbSession INFO Open DbSession -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] C825D530-AD2A-DC8C-A73F-423D68AA656E -Domain[ROOT_All] INFO alloctestWithoutAlloc.root -RootDatabase.open INFO alloctestWithoutAlloc.root File version:62610 -alloctestWithou... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] C825D530-AD2A-DC8C-A73F-423D68AA656E -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -PoolSvc INFO File is not in Catalog! Attempt to open it anyway. -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] C825D530-AD2A-DC8C-A73F-423D68AA656E -Domain[ROOT_All] INFO alloctestWithoutAlloc.root -RootDatabase.open INFO alloctestWithoutAlloc.root File version:62610 -alloctestWithou... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] C825D530-AD2A-DC8C-A73F-423D68AA656E -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] CD6FB0BB-7C6B-A24A-9ED0-C09A153D3FDD -Domain[ROOT_All] INFO alloctestWithoutAlloc.root -RootDatabase.open INFO alloctestWithoutAlloc.root File version:62610 -ClassIDSvc INFO getRegistryEntries: read 1595 CLIDRegistry entries for module ALL -EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc -ClassIDSvc INFO getRegistryEntries: read 23 CLIDRegistry entries for module ALL -MetaDataSvc INFO AlgTool: ToolSvc.IOVDbMetaDataTool AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully -alloctestWithou... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] CD6FB0BB-7C6B-A24A-9ED0-C09A153D3FDD -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] CD6FB0BB-7C6B-A24A-9ED0-C09A153D3FDD -Domain[ROOT_All] INFO alloctestWithoutAlloc.root -RootDatabase.open INFO alloctestWithoutAlloc.root File version:62610 ApplicationMgr INFO Application Manager Started successfully -AlgResourcePool INFO TopAlg list empty. Recovering the one of Application Manager -AthenaPoolConve... INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== AllocTest 0 10 20 30 1 11 21 31 2 12 22 32 3 13 23 33 4 14 24 34 5 15 25 35 6 16 26 36 7 17 27 37 8 18 28 38 9 19 29 39 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== -ClassIDSvc INFO getRegistryEntries: read 65 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== AllocTest 100 110 120 130 101 111 121 131 102 112 122 132 103 113 123 133 104 114 124 134 105 115 125 135 106 116 126 136 107 117 127 137 108 118 128 138 109 119 129 139 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== @@ -140,16 +67,7 @@ AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== AllocTest 1900 1910 1920 1930 1901 1911 1921 1931 1902 1912 1922 1932 1903 1913 1923 1933 1904 1914 1924 1934 1905 1915 1925 1935 1906 1916 1926 1936 1907 1917 1927 1937 1908 1918 1928 1938 1909 1919 1929 1939 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -alloctestWithou... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] CD6FB0BB-7C6B-A24A-9ED0-C09A153D3FDD ApplicationMgr INFO Application Manager Stopped successfully -LoadWriteDicts INFO Finalizing LoadWriteDicts... -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -XMLCatalog INFO File 'AllocTestReadWithoutAllocalloctestWithoutAlloc_catalog.xml' does not exist. New file created. -PyComponentMgr INFO Finalizing PyComponentMgr... -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadWithAlloc_jo.py b/Control/DataModelTest/DataModelRunTests/share/AllocTestReadWithAlloc_jo.py deleted file mode 100644 index d197745a9ed5e62eb3f2e78162e75200df68be20..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadWithAlloc_jo.py +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration. -# -# File: share/AllocTestReadWithAlloc_jo.py -# Author: snyder@bnl.gov -# Date: Nov 2022 -# Purpose: Testing an xAOD object with a non-standard memory allocator. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Input defined on the command line. -#-------------------------------------------------------------- -#svcMgr.EventSelector.InputCollections = [ "alloctest2.root" ] - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from DataModelTestDataRead.DataModelTestDataReadConf import \ - DMTest__AllocTestReadWithAlloc - - -topSequence += DMTest__AllocTestReadWithAlloc ('AllocTestReadWithAlloc') - - -# Avoid races when running tests in parallel. -FILECATALOG = 'AllocTestReadWithAlloc' + os.path.splitext (svcMgr.EventSelector.InputCollections[0])[0] +'_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadWithoutAlloc_jo.py b/Control/DataModelTest/DataModelRunTests/share/AllocTestReadWithoutAlloc_jo.py deleted file mode 100644 index 9fd974c2fb3cc1310bfffbd3e24bbb8e0533437e..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/AllocTestReadWithoutAlloc_jo.py +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration. -# -# File: share/AllocTestReadWithoutAlloc_jo.py -# Author: snyder@bnl.gov -# Date: Nov 2022 -# Purpose: Testing an xAOD object with a non-standard memory allocator. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadWriteDicts.py') - -#-------------------------------------------------------------- -# Input defined on the command line. -#-------------------------------------------------------------- -#svcMgr.EventSelector.InputCollections = [ "alloctestWithoutAlloc.root" ] - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from DataModelTestDataWrite.DataModelTestDataWriteConf import \ - DMTest__AllocTestReadWithoutAlloc - - -topSequence += DMTest__AllocTestReadWithoutAlloc ('AllocTestReadWithoutAlloc') - - -# Avoid races when running tests in parallel. -FILECATALOG = 'AllocTestReadWithoutAlloc' + os.path.splitext (svcMgr.EventSelector.InputCollections[0])[0] +'_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithAlloc.ref b/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithAlloc.ref index 3548b9128ea102ca3517f8650dec7292a16e22ba..fc73dff2a2e4ee18fa64b5c6618af532c3dd16d0 100644 --- a/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithAlloc.ref +++ b/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithAlloc.ref @@ -1,96 +1,24 @@ -Mon Nov 14 13:10:26 EST 2022 -Py:Athena INFO including file "AthenaCommon/Preparation.py" -Py:Athena INFO using release [?-22.0.0] [?] [?/?] -- built on [?] -Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO including file "AthenaCommon/Execution.py" -Py:Athena INFO including file "/ssd/sss/atlas/dvtest/../share/AllocTestWriteWithAlloc_jo.py" -Py:ConfigurableDb INFO Read module info for 1142 configurables from 2 genConfDb files -Py:ConfigurableDb INFO No duplicates have been found: that's good ! -Py:Athena INFO including file "DataModelRunTests/loadReadDicts.py" -Py:Athena INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" -Py:Athena INFO including file "DataModelRunTests/commonTrailer.py" -Py:Athena INFO including file "DataModelRunTests/setCatalog.py" -Py:Athena INFO including file "AthenaCommon/runbatch.py" -# setting LC_ALL to "C" -ApplicationMgr SUCCESS -==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99) - running on karma on Mon Nov 14 13:10:33 2022 -==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 3158 CLIDRegistry entries for module ALL -CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 14(Alarm clock) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -ClassIDSvc INFO getRegistryEntries: read 965 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 10385 CLIDRegistry entries for module ALL -xAODMaker::Even... INFO Initializing xAODMaker::EventInfoCnvAlg -MetaDataSvc INFO Initializing MetaDataSvc -PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled -PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config -DBReplicaSvc INFO No specific match for domain found - use default fallback -DBReplicaSvc INFO Total of 1 servers found for host karma [atlas_dd ] -PoolSvc INFO Successfully setup replica sorting algorithm -PoolSvc INFO Setting up APR FileCatalog and Streams -PoolSvc INFO POOL WriteCatalog is file:AllocTestWriteWithAlloc_catalog.xml -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray([]) -xAODMaker::Even... INFO Beam spot information not available -xAODMaker::Even... INFO Will not fill beam spot information into xAOD::EventInfo -ClassIDSvc INFO getRegistryEntries: read 755 CLIDRegistry entries for module ALL +EventInfoCnvAlg INFO Initializing EventInfoCnvAlg +EventI...foCnvTool INFO Beam spot information not available +EventI...foCnvTool INFO Will not fill beam spot information into xAOD::EventInfo PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... -ClassIDSvc INFO getRegistryEntries: read 232 CLIDRegistry entries for module ALL -DecisionSvc INFO Inserting stream: Stream1 with no Algs -Stream1.Stream1... INFO Initializing Stream1.Stream1Tool -TagInfoMgr INFO AlgTool: ToolSvc.IOVDbMetaDataTool -Stream1 INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo','xAODMaker::EventFormatStreamHelperTool/Stream1_MakeEventFormat','xAODMaker::FileMetaDataCreatorTool/FileMetaDataCreatorTool','Athena::ThinningCacheTool/ThinningCacheTool_Stream1']) -Stream1 INFO Data output: alloctestWithAlloc.root -Stream1 INFO I/O reinitialization... -ClassIDSvc INFO getRegistryEntries: read 975 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 7 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 33 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 14 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 10 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 6 CLIDRegistry entries for module ALL +DecisionSvc INFO Inserting stream: OutputStreamStream1 with no Algs +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +Output...ream1Tool INFO Initializing OutputStreamStream1.StreamStream1Tool +MetaDataSvc INFO Initializing MetaDataSvc +Output...amStream1 INFO Data output: alloctestWithAlloc.root +Output...amStream1 INFO ../O reinitialization... EventSelector INFO Enter McEventSelector Initialization AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully -EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventP...stencySvc INFO Added successfully Conversion service:McCnvSvc AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== -IOVDbSvc INFO Only 5 POOL conditions files will be open at once -IOVDbSvc INFO Setting run/LB/time from EventSelector override in initialize -IOVDbSvc INFO run/LB/time set to [0,0 : 0] -IOVDbSvc INFO Initialised with 1 connections and 0 folders -IOVDbSvc INFO Service IOVDbSvc initialised successfully -IOVDbSvc INFO AlgTool: ToolSvc.IOVDbMetaDataTool AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== -ClassIDSvc INFO getRegistryEntries: read 386 CLIDRegistry entries for module ALL -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain UPDATE [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase CREATE [ROOT_All] 3FD615ED-899F-4644-80AA-576A00CBF031 -Domain[ROOT_All] INFO alloctestWithAlloc.root -RootDatabase.open INFO alloctestWithAlloc.root File version:62606 -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO DMTest::AllocTestAuxContainer_v1 [155016C7-A9B8-4E2E-B2FE-B4A98A28BECF] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::EventAuxInfo_v3 [0D6FFB22-1BCB-49B9-BBFB-66B6DF352067] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO EventInfo_p4 [C634FDB6-CC4B-4BA2-B8F9-A84BE6A786C7] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO DataVector<DMTest::AllocTest_v1> [967B1326-A877-4C9A-B734-5E0629D6534E] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::EventInfo_v1 [AE8BED6D-1D41-4CAF-994B-42613FC91A0A] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO DataHeader_p6 [4DDBD295-EFCE-472A-9EC8-15CD35A9EB8D] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO DataHeaderForm_p6 [7BE56CEF-C866-4BEE-9348-A5F34B5F1DAD] -ClassIDSvc INFO getRegistryEntries: read 120 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== @@ -130,32 +58,10 @@ AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::FileMetaDataAuxInfo_v1 [BEE2BECF-A936-4078-9FDD-AD703C9ADF9F] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO EventStreamInfo_p3 [11DF1B8C-0DEE-4687-80D7-E74B520ACBB4] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::FileMetaData_v1 [C87E3828-4A7A-480A-95DE-0339539F6A0F] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::EventFormat_v1 [0EFE2D2C-9E78-441D-9A87-9EE2B908AC81] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO IOVMetaDataContainer_p1 [6C2DE6DF-6D52-43F6-B435-9F29812F40C0] -ClassIDSvc INFO getRegistryEntries: read 28 CLIDRegistry entries for module ALL -Stream1 INFO Metadata records written: 21 -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -alloctestWithAl... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] 3FD615ED-899F-4644-80AA-576A00CBF031 -Domain[ROOT_All] INFO > Deaccess DbDomain UPDATE [ROOT_All] +Output...amStream1 INFO Metadata records written: 21 ApplicationMgr INFO Application Manager Stopped successfully -LoadReadDicts INFO Finalizing LoadReadDicts... -IOVDbSvc INFO bytes in (( 0.00 ))s -IOVDbSvc INFO Connection sqlite://;schema=cooldummy.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: (( 0.00 ))s -DecisionSvc INFO Finalized successfully. -PyComponentMgr INFO Finalizing PyComponentMgr... -XMLCatalog INFO File 'AllocTestWriteWithAlloc_catalog.xml' does not exist. New file created. AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithAlloc_jo.py b/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithAlloc_jo.py deleted file mode 100644 index 871a289c405aca41a7be613db95d185cd22ea466..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithAlloc_jo.py +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration. -# -# File: share/AllocTestWriteWithAlloc_jo.py -# Author: snyder@bnl.gov -# Date: Nov 2022 -# Purpose: Testing an xAOD object with a non-standard memory allocator. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixGeneratorJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- - -from DataModelTestDataRead.DataModelTestDataReadConf import \ - DMTest__AllocTestWriteWithAlloc -topSequence += DMTest__AllocTestWriteWithAlloc ("AllocTestWriteWithAlloc") - - -#-------------------------------------------------------------- -# Output options -#-------------------------------------------------------------- - -# ItemList: -include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" ) -fullItemList+=["DMTest::AllocTestContainer#AllocTest"] -fullItemList+=["DMTest::AllocTestAuxContainer#AllocTestAux."] -fullItemList+=["xAOD::EventInfo#EventInfo"] -fullItemList+=["xAOD::EventAuxInfo#EventInfoAux."] - - -# Stream's output file -from OutputStreamAthenaPool.MultipleStreamManager import MSMgr -Stream1_Augmented = MSMgr.NewPoolStream ('Stream1', 'alloctestWithAlloc.root', asAlg=True, noTag=True) -Stream1 = Stream1_Augmented.GetEventStream() -Stream1.WritingTool.SubLevelBranchName = '<key>' -# List of DO's to write out -Stream1.ItemList += fullItemList -ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += ["DEFAULT_SPLITLEVEL='1'"] - -from xAODEventFormatCnv.xAODEventFormatCnvConf import xAODMaker__EventFormatStreamHelperTool -for tool in Stream1.HelperTools: - if isinstance(tool, xAODMaker__EventFormatStreamHelperTool): - tool.TypeNames += [ - 'DataVector<DMTest::AllocTest_v1>', - 'DMTest::AllocTest_v1', - 'DMTest::AllocTestAuxContainer_v1', - ] - break - - -# Avoid races when running tests in parallel. -FILECATALOG = 'AllocTestWriteWithAlloc_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithoutAlloc.ref b/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithoutAlloc.ref index bb8b856bdc586c26a022ba04ac92898363d65e07..4f0eecc2815297316fd602f730e1dd627a525058 100644 --- a/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithoutAlloc.ref +++ b/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithoutAlloc.ref @@ -1,96 +1,24 @@ -Mon Nov 14 13:08:50 EST 2022 -Py:Athena INFO including file "AthenaCommon/Preparation.py" -Py:Athena INFO using release [?-22.0.0] [?] [?/?] -- built on [?] -Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO including file "AthenaCommon/Execution.py" -Py:Athena INFO including file "/ssd/sss/atlas/dvtest/../share/AllocTestWriteWithoutAlloc_jo.py" -Py:ConfigurableDb INFO Read module info for 1142 configurables from 2 genConfDb files -Py:ConfigurableDb INFO No duplicates have been found: that's good ! -Py:Athena INFO including file "DataModelRunTests/loadWriteDicts.py" -Py:Athena INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" -Py:Athena INFO including file "DataModelRunTests/commonTrailer.py" -Py:Athena INFO including file "DataModelRunTests/setCatalog.py" -Py:Athena INFO including file "AthenaCommon/runbatch.py" -# setting LC_ALL to "C" -ApplicationMgr SUCCESS -==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99) - running on karma on Mon Nov 14 13:08:56 2022 -==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 3158 CLIDRegistry entries for module ALL -CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 14(Alarm clock) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -ClassIDSvc INFO getRegistryEntries: read 965 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 10118 CLIDRegistry entries for module ALL -xAODMaker::Even... INFO Initializing xAODMaker::EventInfoCnvAlg -MetaDataSvc INFO Initializing MetaDataSvc -PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled -PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config -DBReplicaSvc INFO No specific match for domain found - use default fallback -DBReplicaSvc INFO Total of 1 servers found for host karma [atlas_dd ] -PoolSvc INFO Successfully setup replica sorting algorithm -PoolSvc INFO Setting up APR FileCatalog and Streams -PoolSvc INFO POOL WriteCatalog is file:AllocTestWriteWithoutAlloc_catalog.xml -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray([]) -xAODMaker::Even... INFO Beam spot information not available -xAODMaker::Even... INFO Will not fill beam spot information into xAOD::EventInfo -ClassIDSvc INFO getRegistryEntries: read 755 CLIDRegistry entries for module ALL +EventInfoCnvAlg INFO Initializing EventInfoCnvAlg +EventI...foCnvTool INFO Beam spot information not available +EventI...foCnvTool INFO Will not fill beam spot information into xAOD::EventInfo PyComponentMgr INFO Initializing PyComponentMgr... LoadWriteDicts INFO Initializing LoadWriteDicts... -ClassIDSvc INFO getRegistryEntries: read 233 CLIDRegistry entries for module ALL -DecisionSvc INFO Inserting stream: Stream1 with no Algs -Stream1.Stream1... INFO Initializing Stream1.Stream1Tool -TagInfoMgr INFO AlgTool: ToolSvc.IOVDbMetaDataTool -Stream1 INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo','xAODMaker::EventFormatStreamHelperTool/Stream1_MakeEventFormat','xAODMaker::FileMetaDataCreatorTool/FileMetaDataCreatorTool','Athena::ThinningCacheTool/ThinningCacheTool_Stream1']) -Stream1 INFO Data output: alloctestWithoutAlloc.root -Stream1 INFO I/O reinitialization... -ClassIDSvc INFO getRegistryEntries: read 975 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 7 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 33 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 14 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 10 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 6 CLIDRegistry entries for module ALL +DecisionSvc INFO Inserting stream: OutputStreamStream1 with no Algs +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +Output...ream1Tool INFO Initializing OutputStreamStream1.StreamStream1Tool +MetaDataSvc INFO Initializing MetaDataSvc +Output...amStream1 INFO Data output: alloctestWithoutAlloc.root +Output...amStream1 INFO ../O reinitialization... EventSelector INFO Enter McEventSelector Initialization AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully -EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventP...stencySvc INFO Added successfully Conversion service:McCnvSvc AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== -IOVDbSvc INFO Only 5 POOL conditions files will be open at once -IOVDbSvc INFO Setting run/LB/time from EventSelector override in initialize -IOVDbSvc INFO run/LB/time set to [0,0 : 0] -IOVDbSvc INFO Initialised with 1 connections and 0 folders -IOVDbSvc INFO Service IOVDbSvc initialised successfully -IOVDbSvc INFO AlgTool: ToolSvc.IOVDbMetaDataTool AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== -ClassIDSvc INFO getRegistryEntries: read 386 CLIDRegistry entries for module ALL -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain UPDATE [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase CREATE [ROOT_All] 29E68CDA-7ADB-1B43-BB5C-3540E33146D4 -Domain[ROOT_All] INFO alloctestWithoutAlloc.root -RootDatabase.open INFO alloctestWithoutAlloc.root File version:62606 -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO DMTest::AllocTestAuxContainer_v1 [155016C7-A9B8-4E2E-B2FE-B4A98A28BECF] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::EventAuxInfo_v3 [0D6FFB22-1BCB-49B9-BBFB-66B6DF352067] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO EventInfo_p4 [C634FDB6-CC4B-4BA2-B8F9-A84BE6A786C7] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO DataVector<DMTest::AllocTest_v1> [967B1326-A877-4C9A-B734-5E0629D6534E] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::EventInfo_v1 [AE8BED6D-1D41-4CAF-994B-42613FC91A0A] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO DataHeader_p6 [4DDBD295-EFCE-472A-9EC8-15CD35A9EB8D] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO DataHeaderForm_p6 [7BE56CEF-C866-4BEE-9348-A5F34B5F1DAD] -ClassIDSvc INFO getRegistryEntries: read 108 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== @@ -130,32 +58,10 @@ AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::FileMetaDataAuxInfo_v1 [BEE2BECF-A936-4078-9FDD-AD703C9ADF9F] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO EventStreamInfo_p3 [11DF1B8C-0DEE-4687-80D7-E74B520ACBB4] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::FileMetaData_v1 [C87E3828-4A7A-480A-95DE-0339539F6A0F] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::EventFormat_v1 [0EFE2D2C-9E78-441D-9A87-9EE2B908AC81] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO IOVMetaDataContainer_p1 [6C2DE6DF-6D52-43F6-B435-9F29812F40C0] -ClassIDSvc INFO getRegistryEntries: read 28 CLIDRegistry entries for module ALL -Stream1 INFO Metadata records written: 21 -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -alloctestWithou... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] 29E68CDA-7ADB-1B43-BB5C-3540E33146D4 -Domain[ROOT_All] INFO > Deaccess DbDomain UPDATE [ROOT_All] +Output...amStream1 INFO Metadata records written: 21 ApplicationMgr INFO Application Manager Stopped successfully -LoadWriteDicts INFO Finalizing LoadWriteDicts... -IOVDbSvc INFO bytes in (( 0.00 ))s -IOVDbSvc INFO Connection sqlite://;schema=cooldummy.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: (( 0.00 ))s -DecisionSvc INFO Finalized successfully. -PyComponentMgr INFO Finalizing PyComponentMgr... -XMLCatalog INFO File 'AllocTestWriteWithoutAlloc_catalog.xml' does not exist. New file created. AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithoutAlloc_jo.py b/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithoutAlloc_jo.py deleted file mode 100644 index 969d707fdeb48c16b239ea14b067120b71d2d3b2..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/AllocTestWriteWithoutAlloc_jo.py +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration. -# -# File: share/AllocTestWriteWithoutAlloc_jo.py -# Author: snyder@bnl.gov -# Date: Nov 2022 -# Purpose: Testing an xAOD object with a non-standard memory allocator. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixGeneratorJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool - -include ('DataModelRunTests/loadWriteDicts.py') - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- - -from DataModelTestDataWrite.DataModelTestDataWriteConf import \ - DMTest__AllocTestWriteWithoutAlloc -topSequence += DMTest__AllocTestWriteWithoutAlloc ("AllocTestWriteWithoutAlloc") - - -#-------------------------------------------------------------- -# Output options -#-------------------------------------------------------------- - -# ItemList: -include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" ) -fullItemList+=["DMTest::AllocTestContainer#AllocTest"] -fullItemList+=["DMTest::AllocTestAuxContainer#AllocTestAux."] -fullItemList+=["xAOD::EventInfo#EventInfo"] -fullItemList+=["xAOD::EventAuxInfo#EventInfoAux."] - - -# Stream's output file -from OutputStreamAthenaPool.MultipleStreamManager import MSMgr -Stream1_Augmented = MSMgr.NewPoolStream ('Stream1', 'alloctestWithoutAlloc.root', asAlg=True, noTag=True) -Stream1 = Stream1_Augmented.GetEventStream() -Stream1.WritingTool.SubLevelBranchName = '<key>' -# List of DO's to write out -Stream1.ItemList += fullItemList -ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += ["DEFAULT_SPLITLEVEL='1'"] - -from xAODEventFormatCnv.xAODEventFormatCnvConf import xAODMaker__EventFormatStreamHelperTool -for tool in Stream1.HelperTools: - if isinstance(tool, xAODMaker__EventFormatStreamHelperTool): - tool.TypeNames += [ - 'DataVector<DMTest::AllocTest_v1>', - 'DMTest::AllocTest_v1', - 'DMTest::AllocTestAuxContainer_v1', - ] - break - - -# Avoid races when running tests in parallel. -FILECATALOG = 'AllocTestWriteWithoutAlloc_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestRead.ref b/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestRead.ref index d20869995f4720627221b786549ff3f505c073ab..ff0a6c6a8b57697113e6c46af021c08b0c34bc47 100644 --- a/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestRead.ref +++ b/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestRead.ref @@ -1,34 +1,37 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... -ByteStreamAddre... INFO Initializing -ByteStreamAddre... INFO -- Will fill Store with id = 0 +SGInputLoader INFO Will explicitly preload the following DataObjects: + + ( 'HLT::HLTResult' , 'StoreGateSvc+HLTResult_HLT' ) MetaDataSvc INFO Initializing MetaDataSvc -ToolSvc.ByteStr... INFO Initializing -TrigSerializeCn... INFO initialize() +ToolSv...adataTool INFO Initializing +ByteSt...oviderSvc INFO Initializing +ByteSt...oviderSvc INFO -- Will fill Store with id = 0 +TrigSe...izeCnvSvc INFO initialize() ByteStreamInputSvc INFO Initializing ROBDataProviderSvc INFO Initializing ROBDataProviderSvc INFO ---> Filter out empty ROB fragments = 'filterEmptyROB':False ROBDataProviderSvc INFO ---> Filter out specific ROBs by Status Code: # ROBs = 0 ROBDataProviderSvc INFO ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0 +EventS...ectorTool INFO Beam spot information not available +EventS...ectorTool INFO Will not fill beam spot information into xAOD::EventInfo EventSelector INFO reinitialization... ByteStreamInputSvc INFO Picked valid file: test.bs AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully -EventPersistenc... INFO Added successfully Conversion service:ByteStreamCnvSvc -EventInfoByteSt... INFO IsSimulation : 0 -EventInfoByteSt... INFO IsTestbeam : 0 -EventInfoByteSt... INFO IsCalibration : 0 +EventP...stencySvc INFO Added successfully Conversion service:ByteStreamCnvSvc +EventI...eamAuxCnv INFO IsSimulation : 0 +EventI...eamAuxCnv INFO IsTestbeam : 0 +EventI...eamAuxCnv INFO IsCalibration : 0 AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== -ToolSvc.TrigSer... INFO Initializing -APR:DbReflex:fo...WARNING doing GUID scan on ALL types for Class ID=EAD7484F-1F40-4344-A667-BB9C47536BE6 -APR:DbReflex:fo...WARNING doing GUID scan on ALL types for Class ID=740C4020-F0A3-40B3-88E1-B15A8055DB64 +To...TrigSerTPTool INFO Initializing +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +APR:Db...x:forGuidWARNING doing GUID scan on ALL types for Class ID=EAD7484F-1F40-4344-A667-BB9C47536BE6 +APR:Db...x:forGuidWARNING doing GUID scan on ALL types for Class ID=740C4020-F0A3-40B3-88E1-B15A8055DB64 xAODTestReadCVec INFO HLT_DMTest__CVec_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt xAODTestReadCVec INFO Type of aux store: DMTest::CAuxContainer_v1 xAODTestReadCVec INFO anInt1 201 aFloat: 400 pInt: 1001 pFloat: 0.02 anInt2: 601 dInt1: 801 dVar1: 901 dpInt1: 101 cEL: [9] @@ -1921,9 +1924,8 @@ AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events ApplicationMgr INFO Application Manager Stopped successfully AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ToolSvc.ByteStr... INFO in finalize() -ToolSvc.TrigTSe... INFO ToolSvc.TrigTSerializer no problems encountered -ChronoStatSvc.f... INFO Service finalized successfully +ToolSv...adataTool INFO in finalize() +ToolSv...erializer INFO ToolSvc.TrigTSerializer no problems encountered ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestRead_jo.py b/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestRead_jo.py deleted file mode 100755 index f01c110c3274c49711d44460b79dc97850067831..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestRead_jo.py +++ /dev/null @@ -1,68 +0,0 @@ -# -# $Id$ -# -# File: share/xAODTestRead_jo.py -# Author: snyder@bnl.gov -# Date: May 2014 -# Purpose: Test reading xAOD objects data. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from TrigNavigation.TrigNavigationConf import HLT__Navigation -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestReadCVec -from DataModelTestDataRead.DataModelTestDataReadConf import \ - DMTest__HLTResultReader, \ - DMTest__xAODTestReadCView, \ - DMTest__xAODTestReadHVec - - -topSequence += DMTest__HLTResultReader \ - ("HLTResultReader", - Nav = HLT__Navigation (ClassesToPayload = [], - ClassesToPreregister = [])) - - -topSequence += DMTest__xAODTestReadCVec ('xAODTestReadCVec', - CVecKey = 'HLT_DMTest__CVec_cvec') -topSequence += DMTest__xAODTestReadCView ('xAODTestReadCView', - CViewKey = 'HLT_DMTest__CView_cview') -topSequence += DMTest__xAODTestReadHVec ('xAODTestReadHVec', - HVecKey = 'HLT_DMTest__HVec_hvec', - HViewKey = 'HLT_DMTest__HView_hview') -topSequence += DMTest__xAODTestReadCVec ('xAODTestReadCVec2', - CVecKey = 'HLT_DMTest__CVec_cvec2') - - -from AthenaCommon.AthenaCommonFlags import athenaCommonFlags -athenaCommonFlags.BSRDOInput = ['test.bs'] -from ByteStreamCnvSvc import ReadByteStream -svcMgr.EventSelector.Input = ['test.bs'] -svcMgr.ByteStreamAddressProviderSvc.TypeNames += [ - 'HLT::HLTResult/HLTResult_HLT', - ] - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestWrite.ref b/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestWrite.ref index 90b1b989575928e5a9b59a4f24ec67512a11bd20..1785bf248e8758962a7c511c11655286342324f5 100644 --- a/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestWrite.ref +++ b/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestWrite.ref @@ -1,25 +1,27 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr +EventInfoCnvAlg INFO Initializing EventInfoCnvAlg +EventI...foCnvTool INFO Beam spot information not available +EventI...foCnvTool INFO Will not fill beam spot information into xAOD::EventInfo PyComponentMgr INFO Initializing PyComponentMgr... LoadWriteDicts INFO Initializing LoadWriteDicts... -TrigSerializeCn... INFO initialize() -ToolSvc.TrigSer... INFO Initializing -DecisionSvc INFO Inserting stream: StreamBSFileOutput with no Algs -StreamBSFileOut... INFO Initializing StreamBSFileOutput.DefaultNameTool -ByteStreamEvent... INFO Initializing -ByteStreamEvent... INFO eformat version to use: " 'EformatVersion':'current'" -ByteStreamEvent... INFO event storage (BS) version to use: " 'EventStorageVersion':'current'" -ByteStreamEvent... INFO Reinitialization... -StreamBSFileOutput INFO Data output: ByteStreamEventStorageOutputSvc -StreamBSFileOutput INFO ../O reinitialization... +TrigSe...izeCnvSvc INFO initialize() +To...TrigSerTPTool INFO Initializing +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +DecisionSvc INFO Inserting stream: BSOutputStreamAlg with no Algs +BSOutp...amAlgTool INFO Initializing BSOutputStreamAlg.BSOutputStreamAlgTool +ByteSt...OutputSvc INFO Initializing +ByteSt...OutputSvc INFO eformat version to use: " 'EformatVersion':'current'" +ByteSt...OutputSvc INFO event storage (BS) version to use: " 'EventStorageVersion':'current'" +ByteSt...OutputSvc INFO Reinitialization... +BSOutputStreamAlg INFO Data output: ByteStreamEventStorageOutputSvc +BSOutputStreamAlg INFO ../O reinitialization... EventSelector INFO Enter McEventSelector Initialization AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully -EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventP...stencySvc INFO Added successfully Conversion service:McCnvSvc AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== MetaDataSvc INFO Initializing MetaDataSvc @@ -27,7 +29,7 @@ ROBDataProviderSvc INFO Initializing ROBDataProviderSvc INFO ---> Filter out empty ROB fragments = 'filterEmptyROB':False ROBDataProviderSvc INFO ---> Filter out specific ROBs by Status Code: # ROBs = 0 ROBDataProviderSvc INFO ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0 -ByteStreamEvent...WARNING failed to retrieve ByteStreamMetaData +ByteSt...OutputSvcWARNING failed to retrieve ByteStreamMetaData AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== @@ -68,11 +70,10 @@ AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully -ByteStreamEvent... INFO number of events written: 20 +ByteSt...OutputSvc INFO number of events written: 20 AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ToolSvc.TrigTSe... INFO ToolSvc.TrigTSerializer no problems encountered -ChronoStatSvc.f... INFO Service finalized successfully +ToolSv...erializer INFO ToolSvc.TrigTSerializer no problems encountered ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestWrite_jo.py b/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestWrite_jo.py deleted file mode 100755 index 4b57b1579419889835324dbf9272bd746614a0b6..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestWrite_jo.py +++ /dev/null @@ -1,102 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/ByteStreamTestWrite_jo.py -# Author: snyder@bnl.gov -# Date: Mar 2016 -# Purpose: Test writing objects to bytestream. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixGeneratorJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -include ('DataModelRunTests/loadWriteDicts.py') - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- - -bswrite = ['DMTest::CVec#cvec.-dVar2.-dtest', - 'DMTest::CView#cview', - 'DMTest::HVec#hvec', - 'DMTest::HView#hview', - 'DMTest::CVec#cvec2', - ] - -from TrigNavigation.TrigNavigationConf import HLT__Navigation -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestWriteCVec, \ - DMTest__xAODTestDecor, \ - DMTest__DummyDecisionWriter -from DataModelTestDataWrite.DataModelTestDataWriteConf import \ - DMTest__xAODTestWriteHVec, \ - DMTest__xAODTestWriteCView, \ - DMTest__HLTResultWriter -topSequence += DMTest__DummyDecisionWriter ("DummyDecisionWriter", - DecisionKey = 'xTrigDecision') -topSequence += DMTest__xAODTestWriteCVec ("xAODTestWriteCVec", - CVecKey = 'HLT_DMTest__CVec_cvec') -topSequence += DMTest__xAODTestWriteCView ("xAODTestWriteCView", - CVecKey = 'HLT_DMTest__CVec_cvec', - CViewKey = 'HLT_DMTest__CView_cview') -topSequence += DMTest__xAODTestWriteHVec ("xAODTestWriteHVec", - HVecKey = 'HLT_DMTest__HVec_hvec', - HViewKey = 'HLT_DMTest__HView_hview') -topSequence += DMTest__xAODTestDecor ("xAODTestDecor", - ReadPrefix = 'HLT_DMTest__CVec_', - DoCInfo = False, - DoCTrig = False) - -# Making sure that no dyn vars are selected by default. -topSequence += DMTest__xAODTestWriteCVec ("xAODTestWriteCVec2", - CVecKey = 'HLT_DMTest__CVec_cvec2') -topSequence += DMTest__HLTResultWriter \ - ("HLTResultWriter", - Nav = HLT__Navigation (ClassesToPayload = bswrite, - ClassesToPreregister = bswrite)) - -#-------------------------------------------------------------- -# Output options -#-------------------------------------------------------------- -# ItemList: -fullItemList = [] -fullItemList+=["HLT::HLTResult#HLTResult_HLT"] - -# Stream's output file -import os -try: - os.remove('test.bs') -except OSError: - pass -import os -try: - os.remove('test.bs.writing') -except OSError: - pass -from AthenaCommon.AthenaCommonFlags import athenaCommonFlags -athenaCommonFlags.BSRDOOutput = 'test.bs' -from ByteStreamCnvSvc import WriteByteStream -from StoreGate.StoreGateConf import StoreGateSvc -svcMgr += StoreGateSvc('InputMetaDataStore') -svcMgr += StoreGateSvc('MetaDataStore') -StreamBSFileOutput = WriteByteStream.getStream("EventStorage","StreamBSFileOutput") -# List of DO's to write out -StreamBSFileOutput.ItemList += fullItemList - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/CondReadWrite.ref b/Control/DataModelTest/DataModelRunTests/share/CondReadWrite.ref index da4d4ec35795b67108b08e9bd7d812d90740e00f..c35edd98a68c5f370ea854da24d98bd53dc66b00 100644 --- a/Control/DataModelTest/DataModelRunTests/share/CondReadWrite.ref +++ b/Control/DataModelTest/DataModelRunTests/share/CondReadWrite.ref @@ -1,4 +1,3 @@ -Py:Athena INFO executing ROOT6Setup >== Data valid for run,LB [ 0 , 0 ] to [ 0 , 4 ] Could not connect to sqlite://;schema=condtest_rw.db;dbname=OFLP200 try to create it >== Store object in folder /DMTest/TestAttrList @@ -13,101 +12,103 @@ Folder created >== Storing COOL object succeeded. Current content: [0,0] - [0,5) (0) [xint (Int32) : 10] [0,5] - [2147483647,4294967295) (0) [xint (Int32) : 20] -Py:IOVDbSvc.CondDB INFO Setting up conditions DB access to instance OFLP200 ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -MetaDataSvc INFO Initializing MetaDataSvc -IOVDbFolder INFO Read from meta data only for folder /TagInfo -IOVDbFolder INFO Extensible folder /DMTest/TestAttrList -AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -IOVSvc 0 INFO No IOVSvcTool associated with store "StoreGateSvc" -CondInputLoader 0 INFO Adding base classes: +AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr +IOVDbFolder INFO Read from meta data only for folder /TagInfo +IOVDbFolder INFO Extensible folder /DMTest/TestAttrList +MetaDataSvc INFO Initializing MetaDataSvc +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +IOVSvc INFO No IOVSvcTool associated with store "StoreGateSvc" +CondInputLoader INFO Adding base classes: + ( 'AthenaAttributeList' , 'ConditionStore+/DMTest/TestAttrList' ) -> -CondInputLoader 0 INFO Will create WriteCondHandle dependencies for the following DataObjects: +CondInputLoader INFO Will create WriteCondHandle dependencies for the following DataObjects: + ( 'AthenaAttributeList' , 'ConditionStore+/DMTest/TestAttrList' ) -EventSelector 0 INFO Enter McEventSelector Initialization -AthenaEventLoopMgr 0 INFO Setup EventSelector service EventSelector -ApplicationMgr 0 INFO Application Manager Initialized successfully -CondInputLoader 0 INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/DMTest/TestAttrList' -ApplicationMgr 0 INFO Application Manager Started successfully -EventPersistencySvc 0 INFO Added successfully Conversion service:McCnvSvc -AthenaEventLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== -AthenaEventLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== -DMTest::CondWriterExtAlg 0 0 INFO Event 1 LBN 0 -DMTest::CondReaderAlg 0 0 INFO Event 1 LBN 0 -DMTest::CondReaderAlg 0 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 0 0 INFO scond 1000 -AthenaEventLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== -AthenaEventLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== -DMTest::CondWriterExtAlg 1 0 INFO Event 2 LBN 0 -DMTest::CondReaderAlg 1 0 INFO Event 2 LBN 0 -DMTest::CondReaderAlg 1 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 1 0 INFO scond 1000 -AthenaEventLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== -AthenaEventLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 2 events processed so far <<<=== -DMTest::CondWriterExtAlg 2 0 INFO Event 3 LBN 1 -DMTest::CondReaderAlg 2 0 INFO Event 3 LBN 1 -DMTest::CondReaderAlg 2 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 2 0 INFO scond 1000 -AthenaEventLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 3 events processed so far <<<=== -AthenaEventLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 3 events processed so far <<<=== -DMTest::CondWriterExtAlg 3 0 INFO Event 4 LBN 1 -DMTest::CondReaderAlg 3 0 INFO Event 4 LBN 1 -DMTest::CondReaderAlg 3 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 3 0 INFO scond 1000 -AthenaEventLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 4 events processed so far <<<=== -AthenaEventLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 4 events processed so far <<<=== -DMTest::CondWriterExtAlg 4 0 INFO Event 5 LBN 2 -DMTest::CondReaderAlg 4 0 INFO Event 5 LBN 2 -DMTest::CondReaderAlg 4 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 4 0 INFO scond 1000 -AthenaEventLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 5 events processed so far <<<=== -AthenaEventLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 5 events processed so far <<<=== -DMTest::CondWriterExtAlg 5 0 INFO Event 6 LBN 2 -DMTest::CondReaderAlg 5 0 INFO Event 6 LBN 2 -DMTest::CondReaderAlg 5 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 5 0 INFO scond 1000 -AthenaEventLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 6 events processed so far <<<=== -AthenaEventLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 6 events processed so far <<<=== -DMTest::CondWriterExtAlg 6 0 INFO Event 7 LBN 3 -DMTest::CondReaderAlg 6 0 INFO Event 7 LBN 3 -DMTest::CondReaderAlg 6 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 6 0 INFO scond 1000 -AthenaEventLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 7 events processed so far <<<=== -AthenaEventLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 7 events processed so far <<<=== -DMTest::CondWriterExtAlg 7 0 INFO Event 8 LBN 3 -DMTest::CondReaderAlg 7 0 INFO Event 8 LBN 3 -DMTest::CondReaderAlg 7 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 7 0 INFO scond 1000 -AthenaEventLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 8 events processed so far <<<=== -AthenaEventLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 8 events processed so far <<<=== -DMTest::CondWriterExtAlg 8 0 INFO Event 9 LBN 4 -DMTest::CondReaderAlg 8 0 INFO Event 9 LBN 4 -DMTest::CondReaderAlg 8 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 8 0 INFO scond 1000 -AthenaEventLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 9 events processed so far <<<=== -AthenaEventLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 9 events processed so far <<<=== -DMTest::CondWriterExtAlg 9 0 INFO Event 10 LBN 4 -DMTest::CondReaderAlg 9 0 INFO Event 10 LBN 4 -DMTest::CondReaderAlg 9 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 9 0 INFO scond 1000 -AthenaEventLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 10 events processed so far <<<=== -AthenaEventLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 10 events processed so far <<<=== -DMTest::CondWriterExtAlg 10 0 INFO Event 11 LBN 5 -DMTest::CondReaderAlg 10 0 INFO Event 11 LBN 5 -DMTest::CondReaderAlg 10 0 INFO xint xint (int) : 20 -DMTest::CondReaderAlg 10 0 INFO scond 2000 -AthenaEventLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 11 events processed so far <<<=== -AthenaEventLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 11 events processed so far <<<=== -DMTest::CondWriterExtAlg 11 0 INFO Event 12 LBN 5 -DMTest::CondReaderAlg 11 0 INFO Event 12 LBN 5 -DMTest::CondReaderAlg 11 0 INFO xint xint (int) : 20 -DMTest::CondReaderAlg 11 0 INFO scond 2000 -AthenaEventLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 12 events processed so far <<<=== -AthenaEventLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 12 events processed so far <<<=== -DMTest::CondWriterExtAlg 12 0 INFO Event 13 LBN 6 -DMTest::CondWriterExtAlg 12 0 INFO Executing: dmtest_condwriter.py --rs=0 --ls=8 'sqlite://;schema=condtest_rw.db;dbname=OFLP200' AttrList_noTag 42 +EventInfoCnvAlg INFO Initializing EventInfoCnvAlg +EventI...foCnvTool INFO Beam spot information not available +EventI...foCnvTool INFO Will not fill beam spot information into xAOD::EventInfo +EventSelector INFO Enter McEventSelector Initialization +AthenaEventLoopMgr INFO Setup EventSelector service EventSelector +ApplicationMgr INFO Application Manager Initialized successfully +CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/DMTest/TestAttrList' +ApplicationMgr INFO Application Manager Started successfully +EventP...stencySvc INFO Added successfully Conversion service:McCnvSvc +AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== +DMTest...terExtAlg INFO Event 1 LBN 0 +DMTest...ReaderAlg INFO Event 1 LBN 0 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== +DMTest...terExtAlg INFO Event 2 LBN 0 +DMTest...ReaderAlg INFO Event 2 LBN 0 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #3, run #0 2 events processed so far <<<=== +DMTest...terExtAlg INFO Event 3 LBN 1 +DMTest...ReaderAlg INFO Event 3 LBN 1 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +AthenaEventLoopMgr INFO ===>>> done processing event #3, run #0 3 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #4, run #0 3 events processed so far <<<=== +DMTest...terExtAlg INFO Event 4 LBN 1 +DMTest...ReaderAlg INFO Event 4 LBN 1 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +AthenaEventLoopMgr INFO ===>>> done processing event #4, run #0 4 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #5, run #0 4 events processed so far <<<=== +DMTest...terExtAlg INFO Event 5 LBN 2 +DMTest...ReaderAlg INFO Event 5 LBN 2 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +AthenaEventLoopMgr INFO ===>>> done processing event #5, run #0 5 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #6, run #0 5 events processed so far <<<=== +DMTest...terExtAlg INFO Event 6 LBN 2 +DMTest...ReaderAlg INFO Event 6 LBN 2 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +AthenaEventLoopMgr INFO ===>>> done processing event #6, run #0 6 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #7, run #0 6 events processed so far <<<=== +DMTest...terExtAlg INFO Event 7 LBN 3 +DMTest...ReaderAlg INFO Event 7 LBN 3 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +AthenaEventLoopMgr INFO ===>>> done processing event #7, run #0 7 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #8, run #0 7 events processed so far <<<=== +DMTest...terExtAlg INFO Event 8 LBN 3 +DMTest...ReaderAlg INFO Event 8 LBN 3 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +AthenaEventLoopMgr INFO ===>>> done processing event #8, run #0 8 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #9, run #0 8 events processed so far <<<=== +DMTest...terExtAlg INFO Event 9 LBN 4 +DMTest...ReaderAlg INFO Event 9 LBN 4 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +AthenaEventLoopMgr INFO ===>>> done processing event #9, run #0 9 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #10, run #0 9 events processed so far <<<=== +DMTest...terExtAlg INFO Event 10 LBN 4 +DMTest...ReaderAlg INFO Event 10 LBN 4 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +AthenaEventLoopMgr INFO ===>>> done processing event #10, run #0 10 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #11, run #0 10 events processed so far <<<=== +DMTest...terExtAlg INFO Event 11 LBN 5 +DMTest...ReaderAlg INFO Event 11 LBN 5 +DMTest...ReaderAlg INFO xint xint (int) : 20 +DMTest...ReaderAlg INFO scond 2000 +AthenaEventLoopMgr INFO ===>>> done processing event #11, run #0 11 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #12, run #0 11 events processed so far <<<=== +DMTest...terExtAlg INFO Event 12 LBN 5 +DMTest...ReaderAlg INFO Event 12 LBN 5 +DMTest...ReaderAlg INFO xint xint (int) : 20 +DMTest...ReaderAlg INFO scond 2000 +AthenaEventLoopMgr INFO ===>>> done processing event #12, run #0 12 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #13, run #0 12 events processed so far <<<=== +DMTest...terExtAlg INFO Event 13 LBN 6 +DMTest...terExtAlg INFO Executing: dmtest_condwriter.py --rs=0 --ls=8 'sqlite://;schema=condtest_rw.db;dbname=OFLP200' AttrList_noTag 42 >== Data valid for run,LB [ 0 , 8 ] to [ 2147483647 , 4294967294 ] >== Store object in folder /DMTest/TestAttrList >== Store object with IOV [ 8 , 9223372036854775807 ] and tag AttrList_noTag xint 42 @@ -115,57 +116,57 @@ DMTest::CondWriterExtAlg 12 0 INFO Executing: dmtest_condwr [0,0] - [0,5) (0) [xint (Int32) : 10] [0,5] - [0,8) (0) [xint (Int32) : 20] [0,8] - [2147483647,4294967295) (0) [xint (Int32) : 42] -DMTest::CondWriterExtAlg 12 0 INFO Resetting and dropping payload of folder /DMTest/TestAttrList -DMTest::CondReaderAlg 12 0 INFO Event 13 LBN 6 -DMTest::CondReaderAlg 12 0 INFO xint xint (int) : 20 -DMTest::CondReaderAlg 12 0 INFO scond 2000 -AthenaEventLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 13 events processed so far <<<=== -AthenaEventLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 13 events processed so far <<<=== -DMTest::CondWriterExtAlg 13 0 INFO Event 14 LBN 6 -DMTest::CondReaderAlg 13 0 INFO Event 14 LBN 6 -DMTest::CondReaderAlg 13 0 INFO xint xint (int) : 20 -DMTest::CondReaderAlg 13 0 INFO scond 2000 -AthenaEventLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 14 events processed so far <<<=== -AthenaEventLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 14 events processed so far <<<=== -DMTest::CondWriterExtAlg 14 0 INFO Event 15 LBN 7 -DMTest::CondReaderAlg 14 0 INFO Event 15 LBN 7 -DMTest::CondReaderAlg 14 0 INFO xint xint (int) : 20 -DMTest::CondReaderAlg 14 0 INFO scond 2000 -AthenaEventLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 15 events processed so far <<<=== -AthenaEventLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 15 events processed so far <<<=== -DMTest::CondWriterExtAlg 15 0 INFO Event 16 LBN 7 -DMTest::CondReaderAlg 15 0 INFO Event 16 LBN 7 -DMTest::CondReaderAlg 15 0 INFO xint xint (int) : 20 -DMTest::CondReaderAlg 15 0 INFO scond 2000 -AthenaEventLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 16 events processed so far <<<=== -AthenaEventLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 16 events processed so far <<<=== -DMTest::CondWriterExtAlg 16 0 INFO Event 17 LBN 8 -DMTest::CondReaderAlg 16 0 INFO Event 17 LBN 8 -DMTest::CondReaderAlg 16 0 INFO xint xint (int) : 42 -DMTest::CondReaderAlg 16 0 INFO scond 4200 -AthenaEventLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 17 events processed so far <<<=== -AthenaEventLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 17 events processed so far <<<=== -DMTest::CondWriterExtAlg 17 0 INFO Event 18 LBN 8 -DMTest::CondReaderAlg 17 0 INFO Event 18 LBN 8 -DMTest::CondReaderAlg 17 0 INFO xint xint (int) : 42 -DMTest::CondReaderAlg 17 0 INFO scond 4200 -AthenaEventLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 18 events processed so far <<<=== -AthenaEventLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 18 events processed so far <<<=== -DMTest::CondWriterExtAlg 18 0 INFO Event 19 LBN 9 -DMTest::CondReaderAlg 18 0 INFO Event 19 LBN 9 -DMTest::CondReaderAlg 18 0 INFO xint xint (int) : 42 -DMTest::CondReaderAlg 18 0 INFO scond 4200 -AthenaEventLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== -AthenaEventLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== -DMTest::CondWriterExtAlg 19 0 INFO Event 20 LBN 9 -DMTest::CondReaderAlg 19 0 INFO Event 20 LBN 9 -DMTest::CondReaderAlg 19 0 INFO xint xint (int) : 42 -DMTest::CondReaderAlg 19 0 INFO scond 4200 -AthenaEventLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -ApplicationMgr 19 0 INFO Application Manager Stopped successfully -AthDictLoaderSvc 19 0 INFO in finalize... -ToolSvc 19 0 INFO Removing all tools created by ToolSvc -ChronoStatSvc.finalize() 19 0 INFO Service finalized successfully -ApplicationMgr 19 0 INFO Application Manager Finalized successfully -ApplicationMgr 19 0 INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +DMTest...terExtAlg INFO Resetting and dropping payload of folder /DMTest/TestAttrList +DMTest...ReaderAlg INFO Event 13 LBN 6 +DMTest...ReaderAlg INFO xint xint (int) : 20 +DMTest...ReaderAlg INFO scond 2000 +AthenaEventLoopMgr INFO ===>>> done processing event #13, run #0 13 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #14, run #0 13 events processed so far <<<=== +DMTest...terExtAlg INFO Event 14 LBN 6 +DMTest...ReaderAlg INFO Event 14 LBN 6 +DMTest...ReaderAlg INFO xint xint (int) : 20 +DMTest...ReaderAlg INFO scond 2000 +AthenaEventLoopMgr INFO ===>>> done processing event #14, run #0 14 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #15, run #0 14 events processed so far <<<=== +DMTest...terExtAlg INFO Event 15 LBN 7 +DMTest...ReaderAlg INFO Event 15 LBN 7 +DMTest...ReaderAlg INFO xint xint (int) : 20 +DMTest...ReaderAlg INFO scond 2000 +AthenaEventLoopMgr INFO ===>>> done processing event #15, run #0 15 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #16, run #0 15 events processed so far <<<=== +DMTest...terExtAlg INFO Event 16 LBN 7 +DMTest...ReaderAlg INFO Event 16 LBN 7 +DMTest...ReaderAlg INFO xint xint (int) : 20 +DMTest...ReaderAlg INFO scond 2000 +AthenaEventLoopMgr INFO ===>>> done processing event #16, run #0 16 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #17, run #0 16 events processed so far <<<=== +DMTest...terExtAlg INFO Event 17 LBN 8 +DMTest...ReaderAlg INFO Event 17 LBN 8 +DMTest...ReaderAlg INFO xint xint (int) : 42 +DMTest...ReaderAlg INFO scond 4200 +AthenaEventLoopMgr INFO ===>>> done processing event #17, run #0 17 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #18, run #0 17 events processed so far <<<=== +DMTest...terExtAlg INFO Event 18 LBN 8 +DMTest...ReaderAlg INFO Event 18 LBN 8 +DMTest...ReaderAlg INFO xint xint (int) : 42 +DMTest...ReaderAlg INFO scond 4200 +AthenaEventLoopMgr INFO ===>>> done processing event #18, run #0 18 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events processed so far <<<=== +DMTest...terExtAlg INFO Event 19 LBN 9 +DMTest...ReaderAlg INFO Event 19 LBN 9 +DMTest...ReaderAlg INFO xint xint (int) : 42 +DMTest...ReaderAlg INFO scond 4200 +AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== +DMTest...terExtAlg INFO Event 20 LBN 9 +DMTest...ReaderAlg INFO Event 20 LBN 9 +DMTest...ReaderAlg INFO xint xint (int) : 42 +DMTest...ReaderAlg INFO scond 4200 +AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== +ApplicationMgr INFO Application Manager Stopped successfully +AthDictLoaderSvc INFO in finalize... +ToolSvc INFO Removing all tools created by ToolSvc +Chron...finalize() INFO Service finalized successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/CondReadWrite_jo.py b/Control/DataModelTest/DataModelRunTests/share/CondReadWrite_jo.py deleted file mode 100644 index 0ed8e7c39669b17abcefe2929c578ed41736e46f..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/CondReadWrite_jo.py +++ /dev/null @@ -1,94 +0,0 @@ -# -# File: share/CondUpdater_jo.py -# Author: Frank Winklmeier - -# Date: Aug 2018 -# Purpose: Test reading of conditions that are written during runtime -# - -#-------------------------------------------------------------- -# Create conditions DB -#-------------------------------------------------------------- - -## Cleanup previous file -import os -if os.path.isfile("condtest_rw.db"): - os.remove("condtest_rw.db") - -## Write some initial IOVs and values -os.system("dmtest_condwriter.py --r=0 --ls=0 --lu=4 'sqlite://;schema=condtest_rw.db;dbname=OFLP200' AttrList_noTag 10") -os.system("dmtest_condwriter.py --rs=0 --ls=5 'sqlite://;schema=condtest_rw.db;dbname=OFLP200' AttrList_noTag 20") - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixGeneratorJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Conditions setup. -#-------------------------------------------------------------- - -from IOVSvc.IOVSvcConf import CondSvc -svcMgr += CondSvc() - -from AthenaCommon.AlgSequence import AthSequencer -condSeq = AthSequencer("AthCondSeq") - -import StoreGate.StoreGateConf as StoreGateConf -svcMgr += StoreGateConf.StoreGateSvc("ConditionStore") - -from IOVDbSvc.CondDB import conddb -conddb.addFolder ('condtest_rw.db', '/DMTest/TestAttrList <tag>AttrList_noTag</tag>', - className='AthenaAttributeList', extensible=True) - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- -from AthenaCommon.ConcurrencyFlags import jobproperties as jp -nThreads = jp.ConcurrencyFlags.NumThreads() -if nThreads >= 1: - from AthenaCommon.AlgScheduler import AlgScheduler - AlgScheduler.ShowDataDependencies (True) - - -from DataModelTestDataCommon.DataModelTestDataCommonConf import (DMTest__CondReaderAlg, - DMTest__CondWriterExtAlg, - DMTest__CondAlg1) - -## Setup writer alg that writes new conditions on given LB -cmds = { 6 : "dmtest_condwriter.py --rs=0 --ls=8 'sqlite://;schema=condtest_rw.db;dbname=OFLP200' AttrList_noTag 42" } - -topSequence += DMTest__CondWriterExtAlg( Commands = cmds ) -topSequence += DMTest__CondReaderAlg( S2Key = "") - -from AthenaCommon.AlgSequence import AthSequencer -condSequence = AthSequencer("AthCondSeq") -condSequence += DMTest__CondAlg1() - -svcMgr.MessageSvc.Format = "% F%40W%S%4W%e%s%7W%R%T %0W%M" -svcMgr.MessageSvc.defaultLimit = 0 - -# Increment LBN every two events. -from McEventSelector import McEventSelectorConf -svcMgr+=McEventSelectorConf.McEventSelector('EventSelector',EventsPerLB=2) - -# This is how we currently configure the IOV(Db)Svc in the HLT -svcMgr.IOVSvc.updateInterval = "RUN" -#svcMgr.IOVSvc.preLoadData = True -svcMgr.IOVSvc.forceResetAtBeginRun = False -svcMgr.IOVDbSvc.CacheAlign = 0 # VERY IMPORTANT to get unique queries for folder udpates (see Savannah #81092) -svcMgr.IOVDbSvc.CacheRun = 0 -svcMgr.IOVDbSvc.CacheTime = 0 - - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/CondReader.ref b/Control/DataModelTest/DataModelRunTests/share/CondReader.ref index 6d203348cd4d8fe4136d6f73ecf4405e358da0c1..54a220bd3dc08cfe15c728d2b704ddad057df288 100644 --- a/Control/DataModelTest/DataModelRunTests/share/CondReader.ref +++ b/Control/DataModelTest/DataModelRunTests/share/CondReader.ref @@ -1,11 +1,9 @@ -Py:Athena INFO executing ROOT6Setup -Py:IOVDbSvc.CondDB INFO Setting up conditions DB access to instance OFLP200 ApplicationMgr INFO Application Manager Configured successfully +AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr +IOVDbFolder INFO Read from meta data only for folder /TagInfo +MetaDataSvc INFO Initializing MetaDataSvc AthDictLoaderSvc INFO in initialize... AthDictLoaderSvc INFO acquired Dso-registry -MetaDataSvc INFO Initializing MetaDataSvc -IOVDbFolder INFO Read from meta data only for folder /TagInfo -AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr IOVSvc INFO No IOVSvcTool associated with store "StoreGateSvc" CondInputLoader INFO Adding base classes: + ( 'AthenaAttributeList' , 'ConditionStore+/DMTest/RLTest' ) -> @@ -18,6 +16,9 @@ CondInputLoader INFO Will create WriteCondHandle dependencies for the follo + ( 'AthenaAttributeList' , 'ConditionStore+/DMTest/TestAttrList' ) + ( 'DMTest::S1' , 'ConditionStore+/DMTest/S2' ) + ( 'DMTest::S2' , 'ConditionStore+/DMTest/S2' ) +EventInfoCnvAlg INFO Initializing EventInfoCnvAlg +EventI...foCnvTool INFO Beam spot information not available +EventI...foCnvTool INFO Will not fill beam spot information into xAOD::EventInfo PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... EventSelector INFO Enter McEventSelector Initialization @@ -28,282 +29,282 @@ CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'Condit CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/DMTest/TestAttrList' CondInputLoader INFO created CondCont<DMTest::S2> with key 'ConditionStore+/DMTest/S2' ApplicationMgr INFO Application Manager Started successfully -EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventP...stencySvc INFO Added successfully Conversion service:McCnvSvc AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== -DMTest::CondRea... INFO Event 1 LBN 0 -DMTest::CondRea... INFO xint xint (int) : 10 -DMTest::CondRea... INFO scond 1000 -DMTest::CondRea... INFO s2 0 -DMTest::CondRea... INFO rl xint (int) : 1 -DMTest::CondRea... INFO ts xint (int) : 100 -DMTest::CondRea... INFO s3 101 +DMTest...ReaderAlg INFO Event 1 LBN 0 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +DMTest...ReaderAlg INFO s2 0 +DMTest...ReaderAlg INFO rl xint (int) : 1 +DMTest...ReaderAlg INFO ts xint (int) : 100 +DMTest...ReaderAlg INFO s3 101 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== -DMTest::CondRea... INFO Event 2 LBN 0 -DMTest::CondRea... INFO xint xint (int) : 10 -DMTest::CondRea... INFO scond 1000 -DMTest::CondRea... INFO s2 0 -DMTest::CondRea... INFO rl xint (int) : 1 -DMTest::CondRea... INFO ts xint (int) : 100 -DMTest::CondRea... INFO s3 101 +DMTest...ReaderAlg INFO Event 2 LBN 0 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +DMTest...ReaderAlg INFO s2 0 +DMTest...ReaderAlg INFO rl xint (int) : 1 +DMTest...ReaderAlg INFO ts xint (int) : 100 +DMTest...ReaderAlg INFO s3 101 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #3, run #0 2 events processed so far <<<=== -DMTest::CondRea... INFO Event 3 LBN 0 -DMTest::CondRea... INFO xint xint (int) : 10 -DMTest::CondRea... INFO scond 1000 -DMTest::CondRea... INFO s2 0 -DMTest::CondRea... INFO rl xint (int) : 1 -DMTest::CondRea... INFO ts xint (int) : 100 -DMTest::CondRea... INFO s3 101 +DMTest...ReaderAlg INFO Event 3 LBN 0 +DMTest...ReaderAlg INFO xint xint (int) : 10 +DMTest...ReaderAlg INFO scond 1000 +DMTest...ReaderAlg INFO s2 0 +DMTest...ReaderAlg INFO rl xint (int) : 1 +DMTest...ReaderAlg INFO ts xint (int) : 100 +DMTest...ReaderAlg INFO s3 101 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #0 3 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #4, run #0 3 events processed so far <<<=== -DMTest::CondRea... INFO Event 4 LBN 1 -DMTest::CondRea... INFO xint xint (int) : 20 -DMTest::CondRea... INFO scond 2000 -DMTest::CondRea... INFO s2 0 -DMTest::CondRea... INFO rl xint (int) : 2 -DMTest::CondRea... INFO ts xint (int) : 200 -DMTest::CondRea... INFO s3 202 +DMTest...ReaderAlg INFO Event 4 LBN 1 +DMTest...ReaderAlg INFO xint xint (int) : 20 +DMTest...ReaderAlg INFO scond 2000 +DMTest...ReaderAlg INFO s2 0 +DMTest...ReaderAlg INFO rl xint (int) : 2 +DMTest...ReaderAlg INFO ts xint (int) : 200 +DMTest...ReaderAlg INFO s3 202 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #0 4 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #5, run #0 4 events processed so far <<<=== -DMTest::CondRea... INFO Event 5 LBN 1 -DMTest::CondRea... INFO xint xint (int) : 20 -DMTest::CondRea... INFO scond 2000 -DMTest::CondRea... INFO s2 0 -DMTest::CondRea... INFO rl xint (int) : 2 -DMTest::CondRea... INFO ts xint (int) : 200 -DMTest::CondRea... INFO s3 202 +DMTest...ReaderAlg INFO Event 5 LBN 1 +DMTest...ReaderAlg INFO xint xint (int) : 20 +DMTest...ReaderAlg INFO scond 2000 +DMTest...ReaderAlg INFO s2 0 +DMTest...ReaderAlg INFO rl xint (int) : 2 +DMTest...ReaderAlg INFO ts xint (int) : 200 +DMTest...ReaderAlg INFO s3 202 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #0 5 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #6, run #0 5 events processed so far <<<=== -DMTest::CondRea... INFO Event 6 LBN 1 -DMTest::CondRea... INFO xint xint (int) : 20 -DMTest::CondRea... INFO scond 2000 -DMTest::CondRea... INFO s2 0 -DMTest::CondRea... INFO rl xint (int) : 2 -DMTest::CondRea... INFO ts xint (int) : 200 -DMTest::CondRea... INFO s3 202 +DMTest...ReaderAlg INFO Event 6 LBN 1 +DMTest...ReaderAlg INFO xint xint (int) : 20 +DMTest...ReaderAlg INFO scond 2000 +DMTest...ReaderAlg INFO s2 0 +DMTest...ReaderAlg INFO rl xint (int) : 2 +DMTest...ReaderAlg INFO ts xint (int) : 200 +DMTest...ReaderAlg INFO s3 202 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #0 6 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #7, run #0 6 events processed so far <<<=== -DMTest::CondRea... INFO Event 7 LBN 2 -DMTest::CondRea... INFO xint xint (int) : 30 -DMTest::CondRea... INFO scond 3000 -DMTest::CondRea... INFO s2 100 -DMTest::CondRea... INFO rl xint (int) : 2 -DMTest::CondRea... INFO ts xint (int) : 300 -DMTest::CondRea... INFO s3 302 +DMTest...ReaderAlg INFO Event 7 LBN 2 +DMTest...ReaderAlg INFO xint xint (int) : 30 +DMTest...ReaderAlg INFO scond 3000 +DMTest...ReaderAlg INFO s2 100 +DMTest...ReaderAlg INFO rl xint (int) : 2 +DMTest...ReaderAlg INFO ts xint (int) : 300 +DMTest...ReaderAlg INFO s3 302 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #0 7 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #8, run #0 7 events processed so far <<<=== -DMTest::CondRea... INFO Event 8 LBN 2 -DMTest::CondRea... INFO xint xint (int) : 30 -DMTest::CondRea... INFO scond 3000 -DMTest::CondRea... INFO s2 100 -DMTest::CondRea... INFO rl xint (int) : 2 -DMTest::CondRea... INFO ts xint (int) : 400 -DMTest::CondRea... INFO s3 402 +DMTest...ReaderAlg INFO Event 8 LBN 2 +DMTest...ReaderAlg INFO xint xint (int) : 30 +DMTest...ReaderAlg INFO scond 3000 +DMTest...ReaderAlg INFO s2 100 +DMTest...ReaderAlg INFO rl xint (int) : 2 +DMTest...ReaderAlg INFO ts xint (int) : 400 +DMTest...ReaderAlg INFO s3 402 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #0 8 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #9, run #0 8 events processed so far <<<=== -DMTest::CondRea... INFO Event 9 LBN 2 -DMTest::CondRea... INFO xint xint (int) : 30 -DMTest::CondRea... INFO scond 3000 -DMTest::CondRea... INFO s2 100 -DMTest::CondRea... INFO rl xint (int) : 2 -DMTest::CondRea... INFO ts xint (int) : 400 -DMTest::CondRea... INFO s3 402 +DMTest...ReaderAlg INFO Event 9 LBN 2 +DMTest...ReaderAlg INFO xint xint (int) : 30 +DMTest...ReaderAlg INFO scond 3000 +DMTest...ReaderAlg INFO s2 100 +DMTest...ReaderAlg INFO rl xint (int) : 2 +DMTest...ReaderAlg INFO ts xint (int) : 400 +DMTest...ReaderAlg INFO s3 402 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #0 9 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #10, run #0 9 events processed so far <<<=== -DMTest::CondRea... INFO Event 10 LBN 3 -DMTest::CondRea... INFO xint xint (int) : 40 -DMTest::CondRea... INFO scond 4000 -DMTest::CondRea... INFO s2 100 -DMTest::CondRea... INFO rl xint (int) : 3 -DMTest::CondRea... INFO ts xint (int) : 400 -DMTest::CondRea... INFO s3 403 +DMTest...ReaderAlg INFO Event 10 LBN 3 +DMTest...ReaderAlg INFO xint xint (int) : 40 +DMTest...ReaderAlg INFO scond 4000 +DMTest...ReaderAlg INFO s2 100 +DMTest...ReaderAlg INFO rl xint (int) : 3 +DMTest...ReaderAlg INFO ts xint (int) : 400 +DMTest...ReaderAlg INFO s3 403 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #0 10 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #11, run #0 10 events processed so far <<<=== -DMTest::CondRea... INFO Event 11 LBN 3 -DMTest::CondRea... INFO xint xint (int) : 40 -DMTest::CondRea... INFO scond 4000 -DMTest::CondRea... INFO s2 100 -DMTest::CondRea... INFO rl xint (int) : 3 -DMTest::CondRea... INFO ts xint (int) : 500 -DMTest::CondRea... INFO s3 503 +DMTest...ReaderAlg INFO Event 11 LBN 3 +DMTest...ReaderAlg INFO xint xint (int) : 40 +DMTest...ReaderAlg INFO scond 4000 +DMTest...ReaderAlg INFO s2 100 +DMTest...ReaderAlg INFO rl xint (int) : 3 +DMTest...ReaderAlg INFO ts xint (int) : 500 +DMTest...ReaderAlg INFO s3 503 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #0 11 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #12, run #0 11 events processed so far <<<=== -DMTest::CondRea... INFO Event 12 LBN 3 -DMTest::CondRea... INFO xint xint (int) : 40 -DMTest::CondRea... INFO scond 4000 -DMTest::CondRea... INFO s2 100 -DMTest::CondRea... INFO rl xint (int) : 3 -DMTest::CondRea... INFO ts xint (int) : 500 -DMTest::CondRea... INFO s3 503 +DMTest...ReaderAlg INFO Event 12 LBN 3 +DMTest...ReaderAlg INFO xint xint (int) : 40 +DMTest...ReaderAlg INFO scond 4000 +DMTest...ReaderAlg INFO s2 100 +DMTest...ReaderAlg INFO rl xint (int) : 3 +DMTest...ReaderAlg INFO ts xint (int) : 500 +DMTest...ReaderAlg INFO s3 503 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #0 12 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #13, run #0 12 events processed so far <<<=== -DMTest::CondRea... INFO Event 13 LBN 4 -DMTest::CondRea... INFO xint xint (int) : 50 -DMTest::CondRea... INFO scond 5000 -DMTest::CondRea... INFO s2 200 -DMTest::CondRea... INFO rl xint (int) : 4 -DMTest::CondRea... INFO ts xint (int) : 500 -DMTest::CondRea... INFO s3 504 +DMTest...ReaderAlg INFO Event 13 LBN 4 +DMTest...ReaderAlg INFO xint xint (int) : 50 +DMTest...ReaderAlg INFO scond 5000 +DMTest...ReaderAlg INFO s2 200 +DMTest...ReaderAlg INFO rl xint (int) : 4 +DMTest...ReaderAlg INFO ts xint (int) : 500 +DMTest...ReaderAlg INFO s3 504 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #0 13 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #14, run #0 13 events processed so far <<<=== -DMTest::CondRea... INFO Event 14 LBN 4 -DMTest::CondRea... INFO xint xint (int) : 50 -DMTest::CondRea... INFO scond 5000 -DMTest::CondRea... INFO s2 200 -DMTest::CondRea... INFO rl xint (int) : 4 -DMTest::CondRea... INFO ts xint (int) : 500 -DMTest::CondRea... INFO s3 504 +DMTest...ReaderAlg INFO Event 14 LBN 4 +DMTest...ReaderAlg INFO xint xint (int) : 50 +DMTest...ReaderAlg INFO scond 5000 +DMTest...ReaderAlg INFO s2 200 +DMTest...ReaderAlg INFO rl xint (int) : 4 +DMTest...ReaderAlg INFO ts xint (int) : 500 +DMTest...ReaderAlg INFO s3 504 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #0 14 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #15, run #0 14 events processed so far <<<=== -DMTest::CondRea... INFO Event 15 LBN 4 -DMTest::CondRea... INFO xint xint (int) : 50 -DMTest::CondRea... INFO scond 5000 -DMTest::CondRea... INFO s2 200 -DMTest::CondRea... INFO rl xint (int) : 4 -DMTest::CondRea... INFO ts xint (int) : 500 -DMTest::CondRea... INFO s3 504 +DMTest...ReaderAlg INFO Event 15 LBN 4 +DMTest...ReaderAlg INFO xint xint (int) : 50 +DMTest...ReaderAlg INFO scond 5000 +DMTest...ReaderAlg INFO s2 200 +DMTest...ReaderAlg INFO rl xint (int) : 4 +DMTest...ReaderAlg INFO ts xint (int) : 500 +DMTest...ReaderAlg INFO s3 504 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #0 15 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #16, run #0 15 events processed so far <<<=== -DMTest::CondRea... INFO Event 16 LBN 5 -DMTest::CondRea... INFO xint xint (int) : 60 -DMTest::CondRea... INFO scond 6000 -DMTest::CondRea... INFO s2 200 -DMTest::CondRea... INFO rl xint (int) : 4 -DMTest::CondRea... INFO ts xint (int) : 500 -DMTest::CondRea... INFO s3 504 +DMTest...ReaderAlg INFO Event 16 LBN 5 +DMTest...ReaderAlg INFO xint xint (int) : 60 +DMTest...ReaderAlg INFO scond 6000 +DMTest...ReaderAlg INFO s2 200 +DMTest...ReaderAlg INFO rl xint (int) : 4 +DMTest...ReaderAlg INFO ts xint (int) : 500 +DMTest...ReaderAlg INFO s3 504 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #0 16 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #17, run #0 16 events processed so far <<<=== -DMTest::CondRea... INFO Event 17 LBN 5 -DMTest::CondRea... INFO xint xint (int) : 60 -DMTest::CondRea... INFO scond 6000 -DMTest::CondRea... INFO s2 200 -DMTest::CondRea... INFO rl xint (int) : 4 -DMTest::CondRea... INFO ts xint (int) : 500 -DMTest::CondRea... INFO s3 504 +DMTest...ReaderAlg INFO Event 17 LBN 5 +DMTest...ReaderAlg INFO xint xint (int) : 60 +DMTest...ReaderAlg INFO scond 6000 +DMTest...ReaderAlg INFO s2 200 +DMTest...ReaderAlg INFO rl xint (int) : 4 +DMTest...ReaderAlg INFO ts xint (int) : 500 +DMTest...ReaderAlg INFO s3 504 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #0 17 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #18, run #0 17 events processed so far <<<=== -DMTest::CondRea... INFO Event 18 LBN 5 -DMTest::CondRea... INFO xint xint (int) : 60 -DMTest::CondRea... INFO scond 6000 -DMTest::CondRea... INFO s2 200 -DMTest::CondRea... INFO rl xint (int) : 4 -DMTest::CondRea... INFO ts xint (int) : 600 -DMTest::CondRea... INFO s3 604 +DMTest...ReaderAlg INFO Event 18 LBN 5 +DMTest...ReaderAlg INFO xint xint (int) : 60 +DMTest...ReaderAlg INFO scond 6000 +DMTest...ReaderAlg INFO s2 200 +DMTest...ReaderAlg INFO rl xint (int) : 4 +DMTest...ReaderAlg INFO ts xint (int) : 600 +DMTest...ReaderAlg INFO s3 604 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #0 18 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events processed so far <<<=== -DMTest::CondRea... INFO Event 19 LBN 6 -DMTest::CondRea... INFO xint xint (int) : 70 -DMTest::CondRea... INFO scond 7000 -DMTest::CondRea... INFO s2 300 -DMTest::CondRea... INFO rl xint (int) : 4 -DMTest::CondRea... INFO ts xint (int) : 600 -DMTest::CondRea... INFO s3 604 +DMTest...ReaderAlg INFO Event 19 LBN 6 +DMTest...ReaderAlg INFO xint xint (int) : 70 +DMTest...ReaderAlg INFO scond 7000 +DMTest...ReaderAlg INFO s2 300 +DMTest...ReaderAlg INFO rl xint (int) : 4 +DMTest...ReaderAlg INFO ts xint (int) : 600 +DMTest...ReaderAlg INFO s3 604 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== -DMTest::CondRea... INFO Event 20 LBN 6 -DMTest::CondRea... INFO xint xint (int) : 70 -DMTest::CondRea... INFO scond 7000 -DMTest::CondRea... INFO s2 300 -DMTest::CondRea... INFO rl xint (int) : 4 -DMTest::CondRea... INFO ts xint (int) : 700 -DMTest::CondRea... INFO s3 704 +DMTest...ReaderAlg INFO Event 20 LBN 6 +DMTest...ReaderAlg INFO xint xint (int) : 70 +DMTest...ReaderAlg INFO scond 7000 +DMTest...ReaderAlg INFO s2 300 +DMTest...ReaderAlg INFO rl xint (int) : 4 +DMTest...ReaderAlg INFO ts xint (int) : 700 +DMTest...ReaderAlg INFO s3 704 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #21, run #0 20 events processed so far <<<=== -DMTest::CondRea... INFO Event 21 LBN 6 -DMTest::CondRea... INFO xint xint (int) : 70 -DMTest::CondRea... INFO scond 7000 -DMTest::CondRea... INFO s2 300 -DMTest::CondRea... INFO rl xint (int) : 4 -DMTest::CondRea... INFO ts xint (int) : 700 -DMTest::CondRea... INFO s3 704 +DMTest...ReaderAlg INFO Event 21 LBN 6 +DMTest...ReaderAlg INFO xint xint (int) : 70 +DMTest...ReaderAlg INFO scond 7000 +DMTest...ReaderAlg INFO s2 300 +DMTest...ReaderAlg INFO rl xint (int) : 4 +DMTest...ReaderAlg INFO ts xint (int) : 700 +DMTest...ReaderAlg INFO s3 704 AthenaEventLoopMgr INFO ===>>> done processing event #21, run #0 21 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #22, run #0 21 events processed so far <<<=== -DMTest::CondRea... INFO Event 22 LBN 7 -DMTest::CondRea... INFO xint xint (int) : 80 -DMTest::CondRea... INFO scond 8000 -DMTest::CondRea... INFO s2 300 -DMTest::CondRea... INFO rl xint (int) : 5 -DMTest::CondRea... INFO ts xint (int) : 700 -DMTest::CondRea... INFO s3 705 +DMTest...ReaderAlg INFO Event 22 LBN 7 +DMTest...ReaderAlg INFO xint xint (int) : 80 +DMTest...ReaderAlg INFO scond 8000 +DMTest...ReaderAlg INFO s2 300 +DMTest...ReaderAlg INFO rl xint (int) : 5 +DMTest...ReaderAlg INFO ts xint (int) : 700 +DMTest...ReaderAlg INFO s3 705 AthenaEventLoopMgr INFO ===>>> done processing event #22, run #0 22 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #23, run #0 22 events processed so far <<<=== -DMTest::CondRea... INFO Event 23 LBN 7 -DMTest::CondRea... INFO xint xint (int) : 80 -DMTest::CondRea... INFO scond 8000 -DMTest::CondRea... INFO s2 300 -DMTest::CondRea... INFO rl xint (int) : 5 -DMTest::CondRea... INFO ts xint (int) : 800 -DMTest::CondRea... INFO s3 805 +DMTest...ReaderAlg INFO Event 23 LBN 7 +DMTest...ReaderAlg INFO xint xint (int) : 80 +DMTest...ReaderAlg INFO scond 8000 +DMTest...ReaderAlg INFO s2 300 +DMTest...ReaderAlg INFO rl xint (int) : 5 +DMTest...ReaderAlg INFO ts xint (int) : 800 +DMTest...ReaderAlg INFO s3 805 AthenaEventLoopMgr INFO ===>>> done processing event #23, run #0 23 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #24, run #0 23 events processed so far <<<=== -DMTest::CondRea... INFO Event 24 LBN 7 -DMTest::CondRea... INFO xint xint (int) : 80 -DMTest::CondRea... INFO scond 8000 -DMTest::CondRea... INFO s2 300 -DMTest::CondRea... INFO rl xint (int) : 5 -DMTest::CondRea... INFO ts xint (int) : 800 -DMTest::CondRea... INFO s3 805 +DMTest...ReaderAlg INFO Event 24 LBN 7 +DMTest...ReaderAlg INFO xint xint (int) : 80 +DMTest...ReaderAlg INFO scond 8000 +DMTest...ReaderAlg INFO s2 300 +DMTest...ReaderAlg INFO rl xint (int) : 5 +DMTest...ReaderAlg INFO ts xint (int) : 800 +DMTest...ReaderAlg INFO s3 805 AthenaEventLoopMgr INFO ===>>> done processing event #24, run #0 24 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #25, run #0 24 events processed so far <<<=== -DMTest::CondRea... INFO Event 25 LBN 8 -DMTest::CondRea... INFO xint xint (int) : 90 -DMTest::CondRea... INFO scond 9000 -DMTest::CondRea... INFO s2 400 -DMTest::CondRea... INFO rl xint (int) : 6 -DMTest::CondRea... INFO ts xint (int) : 800 -DMTest::CondRea... INFO s3 806 +DMTest...ReaderAlg INFO Event 25 LBN 8 +DMTest...ReaderAlg INFO xint xint (int) : 90 +DMTest...ReaderAlg INFO scond 9000 +DMTest...ReaderAlg INFO s2 400 +DMTest...ReaderAlg INFO rl xint (int) : 6 +DMTest...ReaderAlg INFO ts xint (int) : 800 +DMTest...ReaderAlg INFO s3 806 AthenaEventLoopMgr INFO ===>>> done processing event #25, run #0 25 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #26, run #0 25 events processed so far <<<=== -DMTest::CondRea... INFO Event 26 LBN 8 -DMTest::CondRea... INFO xint xint (int) : 90 -DMTest::CondRea... INFO scond 9000 -DMTest::CondRea... INFO s2 400 -DMTest::CondRea... INFO rl xint (int) : 6 -DMTest::CondRea... INFO ts xint (int) : 800 -DMTest::CondRea... INFO s3 806 +DMTest...ReaderAlg INFO Event 26 LBN 8 +DMTest...ReaderAlg INFO xint xint (int) : 90 +DMTest...ReaderAlg INFO scond 9000 +DMTest...ReaderAlg INFO s2 400 +DMTest...ReaderAlg INFO rl xint (int) : 6 +DMTest...ReaderAlg INFO ts xint (int) : 800 +DMTest...ReaderAlg INFO s3 806 AthenaEventLoopMgr INFO ===>>> done processing event #26, run #0 26 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #27, run #0 26 events processed so far <<<=== -DMTest::CondRea... INFO Event 27 LBN 8 -DMTest::CondRea... INFO xint xint (int) : 90 -DMTest::CondRea... INFO scond 9000 -DMTest::CondRea... INFO s2 400 -DMTest::CondRea... INFO rl xint (int) : 6 -DMTest::CondRea... INFO ts xint (int) : 900 -DMTest::CondRea... INFO s3 906 +DMTest...ReaderAlg INFO Event 27 LBN 8 +DMTest...ReaderAlg INFO xint xint (int) : 90 +DMTest...ReaderAlg INFO scond 9000 +DMTest...ReaderAlg INFO s2 400 +DMTest...ReaderAlg INFO rl xint (int) : 6 +DMTest...ReaderAlg INFO ts xint (int) : 900 +DMTest...ReaderAlg INFO s3 906 AthenaEventLoopMgr INFO ===>>> done processing event #27, run #0 27 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #28, run #0 27 events processed so far <<<=== -DMTest::CondRea... INFO Event 28 LBN 9 -DMTest::CondRea... INFO xint xint (int) : 100 -DMTest::CondRea... INFO scond 10000 -DMTest::CondRea... INFO s2 400 -DMTest::CondRea... INFO rl xint (int) : 7 -DMTest::CondRea... INFO ts xint (int) : 900 -DMTest::CondRea... INFO s3 907 +DMTest...ReaderAlg INFO Event 28 LBN 9 +DMTest...ReaderAlg INFO xint xint (int) : 100 +DMTest...ReaderAlg INFO scond 10000 +DMTest...ReaderAlg INFO s2 400 +DMTest...ReaderAlg INFO rl xint (int) : 7 +DMTest...ReaderAlg INFO ts xint (int) : 900 +DMTest...ReaderAlg INFO s3 907 AthenaEventLoopMgr INFO ===>>> done processing event #28, run #0 28 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #29, run #0 28 events processed so far <<<=== -DMTest::CondRea... INFO Event 29 LBN 9 -DMTest::CondRea... INFO xint xint (int) : 100 -DMTest::CondRea... INFO scond 10000 -DMTest::CondRea... INFO s2 400 -DMTest::CondRea... INFO rl xint (int) : 7 -DMTest::CondRea... INFO ts xint (int) : 900 -DMTest::CondRea... INFO s3 907 +DMTest...ReaderAlg INFO Event 29 LBN 9 +DMTest...ReaderAlg INFO xint xint (int) : 100 +DMTest...ReaderAlg INFO scond 10000 +DMTest...ReaderAlg INFO s2 400 +DMTest...ReaderAlg INFO rl xint (int) : 7 +DMTest...ReaderAlg INFO ts xint (int) : 900 +DMTest...ReaderAlg INFO s3 907 AthenaEventLoopMgr INFO ===>>> done processing event #29, run #0 29 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #30, run #0 29 events processed so far <<<=== -DMTest::CondRea... INFO Event 30 LBN 9 -DMTest::CondRea... INFO xint xint (int) : 100 -DMTest::CondRea... INFO scond 10000 -DMTest::CondRea... INFO s2 400 -DMTest::CondRea... INFO rl xint (int) : 7 -DMTest::CondRea... INFO ts xint (int) : 900 -DMTest::CondRea... INFO s3 907 +DMTest...ReaderAlg INFO Event 30 LBN 9 +DMTest...ReaderAlg INFO xint xint (int) : 100 +DMTest...ReaderAlg INFO scond 10000 +DMTest...ReaderAlg INFO s2 400 +DMTest...ReaderAlg INFO rl xint (int) : 7 +DMTest...ReaderAlg INFO ts xint (int) : 900 +DMTest...ReaderAlg INFO s3 907 AthenaEventLoopMgr INFO ===>>> done processing event #30, run #0 30 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully +Chron...finalize() INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/CondReaderMT.ref b/Control/DataModelTest/DataModelRunTests/share/CondReaderMT.ref index c0a240cb7dea1c91165cd1a5a067f4ca95ebd75d..a365e456482898fe687bd2ba590a5ae49c86a0cc 100644 --- a/Control/DataModelTest/DataModelRunTests/share/CondReaderMT.ref +++ b/Control/DataModelTest/DataModelRunTests/share/CondReaderMT.ref @@ -1,44 +1,40 @@ -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO configuring AthenaHive with [1] concurrent threads and [1] concurrent events -Py:AlgScheduler INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 1 threads -Py:IOVDbSvc.CondDB INFO Setting up conditions DB access to instance OFLP200 -MessageSvc INFO Activating in a separate thread ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -MetaDataSvc INFO Initializing MetaDataSvc -IOVDbFolder INFO Read from meta data only for folder /TagInfo -AthenaHiveEventLoopMgr INFO Initializing AthenaHiveEventLoopMgr -IOVSvc 0 INFO No IOVSvcTool associated with store "StoreGateSvc" -PyComponentMgr 0 INFO Initializing PyComponentMgr... -LoadReadDicts 0 INFO Initializing LoadReadDicts... -CondInputLoader 0 INFO Adding base classes: +Athena...ntLoopMgr INFO Initializing AthenaHiveEventLoopMgr +IOVDbFolder INFO Read from meta data only for folder /TagInfo +MetaDataSvc INFO Initializing MetaDataSvc +EventInfoCnvAlg 0 INFO Initializing EventInfoCnvAlg +IOVSvc 0 INFO No IOVSvcTool associated with store "StoreGateSvc" +EventI...foCnvTool 0 INFO Beam spot information not available +EventI...foCnvTool 0 INFO Will not fill beam spot information into xAOD::EventInfo +PyComponentMgr 0 INFO Initializing PyComponentMgr... +LoadReadDicts 0 INFO Initializing LoadReadDicts... +AthDictLoaderSvc 0 INFO in initialize... +AthDictLoaderSvc 0 INFO acquired Dso-registry +CondInputLoader 0 INFO Adding base classes: + ( 'AthenaAttributeList' , 'ConditionStore+/DMTest/RLTest' ) -> + ( 'AthenaAttributeList' , 'ConditionStore+/DMTest/TSTest' ) -> + ( 'AthenaAttributeList' , 'ConditionStore+/DMTest/TestAttrList' ) -> + ( 'DMTest::S2' , 'ConditionStore+/DMTest/S2' ) -> DMTest::S1 (243020043) -CondInputLoader 0 INFO Will create WriteCondHandle dependencies for the following DataObjects: +CondInputLoader 0 INFO Will create WriteCondHandle dependencies for the following DataObjects: + ( 'AthenaAttributeList' , 'ConditionStore+/DMTest/RLTest' ) + ( 'AthenaAttributeList' , 'ConditionStore+/DMTest/TSTest' ) + ( 'AthenaAttributeList' , 'ConditionStore+/DMTest/TestAttrList' ) + ( 'DMTest::S1' , 'ConditionStore+/DMTest/S2' ) + ( 'DMTest::S2' , 'ConditionStore+/DMTest/S2' ) -ThreadPoolSvc 0 INFO no thread init tools attached -AvalancheSchedulerSvc 0 INFO Activating scheduler in a separate thread -AvalancheSchedulerSvc 0 INFO Found 13 algorithms -AvalancheSchedulerSvc 0 INFO Data Dependencies for Algorithms: +ThreadPoolSvc 0 INFO no thread init tools attached +Avalan...edulerSvc 0 INFO Activating scheduler in a separate thread +Avalan...edulerSvc 0 INFO Found 13 algorithms +Avalan...edulerSvc 0 INFO Data Dependencies for Algorithms: BeginIncFiringAlg none IncidentProcAlg1 none - xAODMaker::EventInfoCnvAlg + SGInputLoader + none + EventInfoCnvAlg o INPUT ( 'EventInfo' , 'StoreGateSvc+McEventInfo' ) o OUTPUT ( 'SG::AuxElement' , 'StoreGateSvc+EventInfo' ) - o OUTPUT ( 'SG::AuxVectorBase' , 'StoreGateSvc+PileupEventInfo' ) o OUTPUT ( 'xAOD::EventInfo' , 'StoreGateSvc+EventInfo' ) - o OUTPUT ( 'xAOD::EventInfoContainer' , 'StoreGateSvc+PileupEventInfo' ) - SGInputLoader - none LoadReadDicts none DMTest::CondReaderAlg @@ -71,304 +67,304 @@ AvalancheSchedulerSvc 0 INFO Data Depe none IncidentProcAlg3 none -AvalancheSchedulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm -AvalancheSchedulerSvc 0 INFO o ( 'EventInfo' , 'StoreGateSvc+McEventInfo' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODMaker::EventInfoCnvAlg -PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules -PrecedenceRulesGraph 0 INFO CondSvc found. DF precedence rules will be augmented with 'Conditions' -PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully -AvalancheSchedulerSvc 0 INFO Concurrency level information: -AvalancheSchedulerSvc 0 INFO o Number of events in flight: 1 -AvalancheSchedulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 -AvalancheSchedulerSvc 0 INFO Task scheduling settings: -AvalancheSchedulerSvc 0 INFO o Avalanche generation mode: disabled -AvalancheSchedulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled -AvalancheSchedulerSvc 0 INFO o Scheduling of condition tasks: disabled -EventSelector 0 INFO Enter McEventSelector Initialization -AthenaHiveEventLoopMgr 0 INFO Setup EventSelector service EventSelector -ApplicationMgr 0 INFO Application Manager Initialized successfully -CondInputLoader 0 INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/DMTest/RLTest' -CondInputLoader 0 INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/DMTest/TSTest' -CondInputLoader 0 INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/DMTest/TestAttrList' -CondInputLoader 0 INFO created CondCont<DMTest::S2> with key 'ConditionStore+/DMTest/S2' -ApplicationMgr 0 INFO Application Manager Started successfully -AthenaHiveEventLoopMgr 0 INFO Starting loop on events -EventPersistencySvc 0 0 INFO Added successfully Conversion service:McCnvSvc -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== -DMTest::CondReaderAlg 0 0 INFO Event 1 LBN 0 -DMTest::CondReaderAlg 0 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 0 0 INFO scond 1000 -DMTest::CondReaderAlg 0 0 INFO s2 0 -DMTest::CondReaderAlg 0 0 INFO rl xint (int) : 1 -DMTest::CondReaderAlg 0 0 INFO ts xint (int) : 100 -DMTest::CondReaderAlg 0 0 INFO s3 101 -AthenaHiveEventLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== -AthenaHiveEventLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== -DMTest::CondReaderAlg 1 0 INFO Event 2 LBN 0 -DMTest::CondReaderAlg 1 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 1 0 INFO scond 1000 -DMTest::CondReaderAlg 1 0 INFO s2 0 -DMTest::CondReaderAlg 1 0 INFO rl xint (int) : 1 -DMTest::CondReaderAlg 1 0 INFO ts xint (int) : 100 -DMTest::CondReaderAlg 1 0 INFO s3 101 -AthenaHiveEventLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== -AthenaHiveEventLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== -DMTest::CondReaderAlg 2 0 INFO Event 3 LBN 0 -DMTest::CondReaderAlg 2 0 INFO xint xint (int) : 10 -DMTest::CondReaderAlg 2 0 INFO scond 1000 -DMTest::CondReaderAlg 2 0 INFO s2 0 -DMTest::CondReaderAlg 2 0 INFO rl xint (int) : 1 -DMTest::CondReaderAlg 2 0 INFO ts xint (int) : 100 -DMTest::CondReaderAlg 2 0 INFO s3 101 -AthenaHiveEventLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== -AthenaHiveEventLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== -DMTest::CondReaderAlg 3 0 INFO Event 4 LBN 1 -DMTest::CondReaderAlg 3 0 INFO xint xint (int) : 20 -DMTest::CondReaderAlg 3 0 INFO scond 2000 -DMTest::CondReaderAlg 3 0 INFO s2 0 -DMTest::CondReaderAlg 3 0 INFO rl xint (int) : 2 -DMTest::CondReaderAlg 3 0 INFO ts xint (int) : 200 -DMTest::CondReaderAlg 3 0 INFO s3 202 -AthenaHiveEventLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== -AthenaHiveEventLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== -DMTest::CondReaderAlg 4 0 INFO Event 5 LBN 1 -DMTest::CondReaderAlg 4 0 INFO xint xint (int) : 20 -DMTest::CondReaderAlg 4 0 INFO scond 2000 -DMTest::CondReaderAlg 4 0 INFO s2 0 -DMTest::CondReaderAlg 4 0 INFO rl xint (int) : 2 -DMTest::CondReaderAlg 4 0 INFO ts xint (int) : 200 -DMTest::CondReaderAlg 4 0 INFO s3 202 -AthenaHiveEventLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== -AthenaHiveEventLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== -DMTest::CondReaderAlg 5 0 INFO Event 6 LBN 1 -DMTest::CondReaderAlg 5 0 INFO xint xint (int) : 20 -DMTest::CondReaderAlg 5 0 INFO scond 2000 -DMTest::CondReaderAlg 5 0 INFO s2 0 -DMTest::CondReaderAlg 5 0 INFO rl xint (int) : 2 -DMTest::CondReaderAlg 5 0 INFO ts xint (int) : 200 -DMTest::CondReaderAlg 5 0 INFO s3 202 -AthenaHiveEventLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== -AthenaHiveEventLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== -DMTest::CondReaderAlg 6 0 INFO Event 7 LBN 2 -DMTest::CondReaderAlg 6 0 INFO xint xint (int) : 30 -DMTest::CondReaderAlg 6 0 INFO scond 3000 -DMTest::CondReaderAlg 6 0 INFO s2 100 -DMTest::CondReaderAlg 6 0 INFO rl xint (int) : 2 -DMTest::CondReaderAlg 6 0 INFO ts xint (int) : 300 -DMTest::CondReaderAlg 6 0 INFO s3 302 -AthenaHiveEventLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== -AthenaHiveEventLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== -DMTest::CondReaderAlg 7 0 INFO Event 8 LBN 2 -DMTest::CondReaderAlg 7 0 INFO xint xint (int) : 30 -DMTest::CondReaderAlg 7 0 INFO scond 3000 -DMTest::CondReaderAlg 7 0 INFO s2 100 -DMTest::CondReaderAlg 7 0 INFO rl xint (int) : 2 -DMTest::CondReaderAlg 7 0 INFO ts xint (int) : 400 -DMTest::CondReaderAlg 7 0 INFO s3 402 -AthenaHiveEventLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== -AthenaHiveEventLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== -DMTest::CondReaderAlg 8 0 INFO Event 9 LBN 2 -DMTest::CondReaderAlg 8 0 INFO xint xint (int) : 30 -DMTest::CondReaderAlg 8 0 INFO scond 3000 -DMTest::CondReaderAlg 8 0 INFO s2 100 -DMTest::CondReaderAlg 8 0 INFO rl xint (int) : 2 -DMTest::CondReaderAlg 8 0 INFO ts xint (int) : 400 -DMTest::CondReaderAlg 8 0 INFO s3 402 -AthenaHiveEventLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== -AthenaHiveEventLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== -DMTest::CondReaderAlg 9 0 INFO Event 10 LBN 3 -DMTest::CondReaderAlg 9 0 INFO xint xint (int) : 40 -DMTest::CondReaderAlg 9 0 INFO scond 4000 -DMTest::CondReaderAlg 9 0 INFO s2 100 -DMTest::CondReaderAlg 9 0 INFO rl xint (int) : 3 -DMTest::CondReaderAlg 9 0 INFO ts xint (int) : 400 -DMTest::CondReaderAlg 9 0 INFO s3 403 -AthenaHiveEventLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== -AthenaHiveEventLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== -DMTest::CondReaderAlg 10 0 INFO Event 11 LBN 3 -DMTest::CondReaderAlg 10 0 INFO xint xint (int) : 40 -DMTest::CondReaderAlg 10 0 INFO scond 4000 -DMTest::CondReaderAlg 10 0 INFO s2 100 -DMTest::CondReaderAlg 10 0 INFO rl xint (int) : 3 -DMTest::CondReaderAlg 10 0 INFO ts xint (int) : 500 -DMTest::CondReaderAlg 10 0 INFO s3 503 -AthenaHiveEventLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== -AthenaHiveEventLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== -DMTest::CondReaderAlg 11 0 INFO Event 12 LBN 3 -DMTest::CondReaderAlg 11 0 INFO xint xint (int) : 40 -DMTest::CondReaderAlg 11 0 INFO scond 4000 -DMTest::CondReaderAlg 11 0 INFO s2 100 -DMTest::CondReaderAlg 11 0 INFO rl xint (int) : 3 -DMTest::CondReaderAlg 11 0 INFO ts xint (int) : 500 -DMTest::CondReaderAlg 11 0 INFO s3 503 -AthenaHiveEventLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== -AthenaHiveEventLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== -DMTest::CondReaderAlg 12 0 INFO Event 13 LBN 4 -DMTest::CondReaderAlg 12 0 INFO xint xint (int) : 50 -DMTest::CondReaderAlg 12 0 INFO scond 5000 -DMTest::CondReaderAlg 12 0 INFO s2 200 -DMTest::CondReaderAlg 12 0 INFO rl xint (int) : 4 -DMTest::CondReaderAlg 12 0 INFO ts xint (int) : 500 -DMTest::CondReaderAlg 12 0 INFO s3 504 -AthenaHiveEventLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== -AthenaHiveEventLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== -DMTest::CondReaderAlg 13 0 INFO Event 14 LBN 4 -DMTest::CondReaderAlg 13 0 INFO xint xint (int) : 50 -DMTest::CondReaderAlg 13 0 INFO scond 5000 -DMTest::CondReaderAlg 13 0 INFO s2 200 -DMTest::CondReaderAlg 13 0 INFO rl xint (int) : 4 -DMTest::CondReaderAlg 13 0 INFO ts xint (int) : 500 -DMTest::CondReaderAlg 13 0 INFO s3 504 -AthenaHiveEventLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== -AthenaHiveEventLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== -DMTest::CondReaderAlg 14 0 INFO Event 15 LBN 4 -DMTest::CondReaderAlg 14 0 INFO xint xint (int) : 50 -DMTest::CondReaderAlg 14 0 INFO scond 5000 -DMTest::CondReaderAlg 14 0 INFO s2 200 -DMTest::CondReaderAlg 14 0 INFO rl xint (int) : 4 -DMTest::CondReaderAlg 14 0 INFO ts xint (int) : 500 -DMTest::CondReaderAlg 14 0 INFO s3 504 -AthenaHiveEventLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== -AthenaHiveEventLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== -DMTest::CondReaderAlg 15 0 INFO Event 16 LBN 5 -DMTest::CondReaderAlg 15 0 INFO xint xint (int) : 60 -DMTest::CondReaderAlg 15 0 INFO scond 6000 -DMTest::CondReaderAlg 15 0 INFO s2 200 -DMTest::CondReaderAlg 15 0 INFO rl xint (int) : 4 -DMTest::CondReaderAlg 15 0 INFO ts xint (int) : 500 -DMTest::CondReaderAlg 15 0 INFO s3 504 -AthenaHiveEventLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== -AthenaHiveEventLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== -DMTest::CondReaderAlg 16 0 INFO Event 17 LBN 5 -DMTest::CondReaderAlg 16 0 INFO xint xint (int) : 60 -DMTest::CondReaderAlg 16 0 INFO scond 6000 -DMTest::CondReaderAlg 16 0 INFO s2 200 -DMTest::CondReaderAlg 16 0 INFO rl xint (int) : 4 -DMTest::CondReaderAlg 16 0 INFO ts xint (int) : 500 -DMTest::CondReaderAlg 16 0 INFO s3 504 -AthenaHiveEventLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== -AthenaHiveEventLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== -DMTest::CondReaderAlg 17 0 INFO Event 18 LBN 5 -DMTest::CondReaderAlg 17 0 INFO xint xint (int) : 60 -DMTest::CondReaderAlg 17 0 INFO scond 6000 -DMTest::CondReaderAlg 17 0 INFO s2 200 -DMTest::CondReaderAlg 17 0 INFO rl xint (int) : 4 -DMTest::CondReaderAlg 17 0 INFO ts xint (int) : 600 -DMTest::CondReaderAlg 17 0 INFO s3 604 -AthenaHiveEventLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== -AthenaHiveEventLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== -DMTest::CondReaderAlg 18 0 INFO Event 19 LBN 6 -DMTest::CondReaderAlg 18 0 INFO xint xint (int) : 70 -DMTest::CondReaderAlg 18 0 INFO scond 7000 -DMTest::CondReaderAlg 18 0 INFO s2 300 -DMTest::CondReaderAlg 18 0 INFO rl xint (int) : 4 -DMTest::CondReaderAlg 18 0 INFO ts xint (int) : 600 -DMTest::CondReaderAlg 18 0 INFO s3 604 -AthenaHiveEventLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== -AthenaHiveEventLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== -DMTest::CondReaderAlg 19 0 INFO Event 20 LBN 6 -DMTest::CondReaderAlg 19 0 INFO xint xint (int) : 70 -DMTest::CondReaderAlg 19 0 INFO scond 7000 -DMTest::CondReaderAlg 19 0 INFO s2 300 -DMTest::CondReaderAlg 19 0 INFO rl xint (int) : 4 -DMTest::CondReaderAlg 19 0 INFO ts xint (int) : 700 -DMTest::CondReaderAlg 19 0 INFO s3 704 -AthenaHiveEventLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== -AthenaHiveEventLoopMgr 20 0 INFO ===>>> start processing event #21, run #0 on slot 0, 20 events processed so far <<<=== -DMTest::CondReaderAlg 20 0 INFO Event 21 LBN 6 -DMTest::CondReaderAlg 20 0 INFO xint xint (int) : 70 -DMTest::CondReaderAlg 20 0 INFO scond 7000 -DMTest::CondReaderAlg 20 0 INFO s2 300 -DMTest::CondReaderAlg 20 0 INFO rl xint (int) : 4 -DMTest::CondReaderAlg 20 0 INFO ts xint (int) : 700 -DMTest::CondReaderAlg 20 0 INFO s3 704 -AthenaHiveEventLoopMgr 20 0 INFO ===>>> done processing event #21, run #0 on slot 0, 21 events processed so far <<<=== -AthenaHiveEventLoopMgr 21 0 INFO ===>>> start processing event #22, run #0 on slot 0, 21 events processed so far <<<=== -DMTest::CondReaderAlg 21 0 INFO Event 22 LBN 7 -DMTest::CondReaderAlg 21 0 INFO xint xint (int) : 80 -DMTest::CondReaderAlg 21 0 INFO scond 8000 -DMTest::CondReaderAlg 21 0 INFO s2 300 -DMTest::CondReaderAlg 21 0 INFO rl xint (int) : 5 -DMTest::CondReaderAlg 21 0 INFO ts xint (int) : 700 -DMTest::CondReaderAlg 21 0 INFO s3 705 -AthenaHiveEventLoopMgr 21 0 INFO ===>>> done processing event #22, run #0 on slot 0, 22 events processed so far <<<=== -AthenaHiveEventLoopMgr 22 0 INFO ===>>> start processing event #23, run #0 on slot 0, 22 events processed so far <<<=== -DMTest::CondReaderAlg 22 0 INFO Event 23 LBN 7 -DMTest::CondReaderAlg 22 0 INFO xint xint (int) : 80 -DMTest::CondReaderAlg 22 0 INFO scond 8000 -DMTest::CondReaderAlg 22 0 INFO s2 300 -DMTest::CondReaderAlg 22 0 INFO rl xint (int) : 5 -DMTest::CondReaderAlg 22 0 INFO ts xint (int) : 800 -DMTest::CondReaderAlg 22 0 INFO s3 805 -AthenaHiveEventLoopMgr 22 0 INFO ===>>> done processing event #23, run #0 on slot 0, 23 events processed so far <<<=== -AthenaHiveEventLoopMgr 23 0 INFO ===>>> start processing event #24, run #0 on slot 0, 23 events processed so far <<<=== -DMTest::CondReaderAlg 23 0 INFO Event 24 LBN 7 -DMTest::CondReaderAlg 23 0 INFO xint xint (int) : 80 -DMTest::CondReaderAlg 23 0 INFO scond 8000 -DMTest::CondReaderAlg 23 0 INFO s2 300 -DMTest::CondReaderAlg 23 0 INFO rl xint (int) : 5 -DMTest::CondReaderAlg 23 0 INFO ts xint (int) : 800 -DMTest::CondReaderAlg 23 0 INFO s3 805 -AthenaHiveEventLoopMgr 23 0 INFO ===>>> done processing event #24, run #0 on slot 0, 24 events processed so far <<<=== -AthenaHiveEventLoopMgr 24 0 INFO ===>>> start processing event #25, run #0 on slot 0, 24 events processed so far <<<=== -DMTest::CondReaderAlg 24 0 INFO Event 25 LBN 8 -DMTest::CondReaderAlg 24 0 INFO xint xint (int) : 90 -DMTest::CondReaderAlg 24 0 INFO scond 9000 -DMTest::CondReaderAlg 24 0 INFO s2 400 -DMTest::CondReaderAlg 24 0 INFO rl xint (int) : 6 -DMTest::CondReaderAlg 24 0 INFO ts xint (int) : 800 -DMTest::CondReaderAlg 24 0 INFO s3 806 -AthenaHiveEventLoopMgr 24 0 INFO ===>>> done processing event #25, run #0 on slot 0, 25 events processed so far <<<=== -AthenaHiveEventLoopMgr 25 0 INFO ===>>> start processing event #26, run #0 on slot 0, 25 events processed so far <<<=== -DMTest::CondReaderAlg 25 0 INFO Event 26 LBN 8 -DMTest::CondReaderAlg 25 0 INFO xint xint (int) : 90 -DMTest::CondReaderAlg 25 0 INFO scond 9000 -DMTest::CondReaderAlg 25 0 INFO s2 400 -DMTest::CondReaderAlg 25 0 INFO rl xint (int) : 6 -DMTest::CondReaderAlg 25 0 INFO ts xint (int) : 800 -DMTest::CondReaderAlg 25 0 INFO s3 806 -AthenaHiveEventLoopMgr 25 0 INFO ===>>> done processing event #26, run #0 on slot 0, 26 events processed so far <<<=== -AthenaHiveEventLoopMgr 26 0 INFO ===>>> start processing event #27, run #0 on slot 0, 26 events processed so far <<<=== -DMTest::CondReaderAlg 26 0 INFO Event 27 LBN 8 -DMTest::CondReaderAlg 26 0 INFO xint xint (int) : 90 -DMTest::CondReaderAlg 26 0 INFO scond 9000 -DMTest::CondReaderAlg 26 0 INFO s2 400 -DMTest::CondReaderAlg 26 0 INFO rl xint (int) : 6 -DMTest::CondReaderAlg 26 0 INFO ts xint (int) : 900 -DMTest::CondReaderAlg 26 0 INFO s3 906 -AthenaHiveEventLoopMgr 26 0 INFO ===>>> done processing event #27, run #0 on slot 0, 27 events processed so far <<<=== -AthenaHiveEventLoopMgr 27 0 INFO ===>>> start processing event #28, run #0 on slot 0, 27 events processed so far <<<=== -DMTest::CondReaderAlg 27 0 INFO Event 28 LBN 9 -DMTest::CondReaderAlg 27 0 INFO xint xint (int) : 100 -DMTest::CondReaderAlg 27 0 INFO scond 10000 -DMTest::CondReaderAlg 27 0 INFO s2 400 -DMTest::CondReaderAlg 27 0 INFO rl xint (int) : 7 -DMTest::CondReaderAlg 27 0 INFO ts xint (int) : 900 -DMTest::CondReaderAlg 27 0 INFO s3 907 -AthenaHiveEventLoopMgr 27 0 INFO ===>>> done processing event #28, run #0 on slot 0, 28 events processed so far <<<=== -AthenaHiveEventLoopMgr 28 0 INFO ===>>> start processing event #29, run #0 on slot 0, 28 events processed so far <<<=== -DMTest::CondReaderAlg 28 0 INFO Event 29 LBN 9 -DMTest::CondReaderAlg 28 0 INFO xint xint (int) : 100 -DMTest::CondReaderAlg 28 0 INFO scond 10000 -DMTest::CondReaderAlg 28 0 INFO s2 400 -DMTest::CondReaderAlg 28 0 INFO rl xint (int) : 7 -DMTest::CondReaderAlg 28 0 INFO ts xint (int) : 900 -DMTest::CondReaderAlg 28 0 INFO s3 907 -AthenaHiveEventLoopMgr 28 0 INFO ===>>> done processing event #29, run #0 on slot 0, 29 events processed so far <<<=== -AthenaHiveEventLoopMgr 29 0 INFO ===>>> start processing event #30, run #0 on slot 0, 29 events processed so far <<<=== -DMTest::CondReaderAlg 29 0 INFO Event 30 LBN 9 -DMTest::CondReaderAlg 29 0 INFO xint xint (int) : 100 -DMTest::CondReaderAlg 29 0 INFO scond 10000 -DMTest::CondReaderAlg 29 0 INFO s2 400 -DMTest::CondReaderAlg 29 0 INFO rl xint (int) : 7 -DMTest::CondReaderAlg 29 0 INFO ts xint (int) : 900 -DMTest::CondReaderAlg 29 0 INFO s3 907 -AthenaHiveEventLoopMgr 29 0 INFO ===>>> done processing event #30, run #0 on slot 0, 30 events processed so far <<<=== -ApplicationMgr INFO Application Manager Stopped successfully -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.finalize() INFO Service finalized successfully -ApplicationMgr INFO Application Manager Finalized successfully -ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +Avalan...edulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm +Avalan...edulerSvc 0 INFO o ( 'EventInfo' , 'StoreGateSvc+McEventInfo' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * EventInfoCnvAlg +PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules +Preced...ulesGraph 0 INFO CondSvc found. DF precedence rules will be augmented with 'Conditions' +PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully +Avalan...edulerSvc 0 INFO Concurrency level information: +Avalan...edulerSvc 0 INFO o Number of events in flight: 1 +Avalan...edulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 +Avalan...edulerSvc 0 INFO Task scheduling settings: +Avalan...edulerSvc 0 INFO o Avalanche generation mode: disabled +Avalan...edulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled +Avalan...edulerSvc 0 INFO o Scheduling of condition tasks: disabled +EventSelector 0 INFO Enter McEventSelector Initialization +Athena...ntLoopMgr 0 INFO Setup EventSelector service EventSelector +ApplicationMgr 0 INFO Application Manager Initialized successfully +CondInputLoader 0 INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/DMTest/RLTest' +CondInputLoader 0 INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/DMTest/TSTest' +CondInputLoader 0 INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/DMTest/TestAttrList' +CondInputLoader 0 INFO created CondCont<DMTest::S2> with key 'ConditionStore+/DMTest/S2' +ApplicationMgr 0 INFO Application Manager Started successfully +Athena...ntLoopMgr 0 INFO Starting loop on events +EventP...stencySvc 0 0 INFO Added successfully Conversion service:McCnvSvc +Athena...ntLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== +Athena...ntLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== +DMTest...ReaderAlg 0 0 INFO Event 1 LBN 0 +DMTest...ReaderAlg 0 0 INFO xint xint (int) : 10 +DMTest...ReaderAlg 0 0 INFO scond 1000 +DMTest...ReaderAlg 0 0 INFO s2 0 +DMTest...ReaderAlg 0 0 INFO rl xint (int) : 1 +DMTest...ReaderAlg 0 0 INFO ts xint (int) : 100 +DMTest...ReaderAlg 0 0 INFO s3 101 +Athena...ntLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== +Athena...ntLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== +DMTest...ReaderAlg 1 0 INFO Event 2 LBN 0 +DMTest...ReaderAlg 1 0 INFO xint xint (int) : 10 +DMTest...ReaderAlg 1 0 INFO scond 1000 +DMTest...ReaderAlg 1 0 INFO s2 0 +DMTest...ReaderAlg 1 0 INFO rl xint (int) : 1 +DMTest...ReaderAlg 1 0 INFO ts xint (int) : 100 +DMTest...ReaderAlg 1 0 INFO s3 101 +Athena...ntLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== +Athena...ntLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== +DMTest...ReaderAlg 2 0 INFO Event 3 LBN 0 +DMTest...ReaderAlg 2 0 INFO xint xint (int) : 10 +DMTest...ReaderAlg 2 0 INFO scond 1000 +DMTest...ReaderAlg 2 0 INFO s2 0 +DMTest...ReaderAlg 2 0 INFO rl xint (int) : 1 +DMTest...ReaderAlg 2 0 INFO ts xint (int) : 100 +DMTest...ReaderAlg 2 0 INFO s3 101 +Athena...ntLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== +Athena...ntLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== +DMTest...ReaderAlg 3 0 INFO Event 4 LBN 1 +DMTest...ReaderAlg 3 0 INFO xint xint (int) : 20 +DMTest...ReaderAlg 3 0 INFO scond 2000 +DMTest...ReaderAlg 3 0 INFO s2 0 +DMTest...ReaderAlg 3 0 INFO rl xint (int) : 2 +DMTest...ReaderAlg 3 0 INFO ts xint (int) : 200 +DMTest...ReaderAlg 3 0 INFO s3 202 +Athena...ntLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== +Athena...ntLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== +DMTest...ReaderAlg 4 0 INFO Event 5 LBN 1 +DMTest...ReaderAlg 4 0 INFO xint xint (int) : 20 +DMTest...ReaderAlg 4 0 INFO scond 2000 +DMTest...ReaderAlg 4 0 INFO s2 0 +DMTest...ReaderAlg 4 0 INFO rl xint (int) : 2 +DMTest...ReaderAlg 4 0 INFO ts xint (int) : 200 +DMTest...ReaderAlg 4 0 INFO s3 202 +Athena...ntLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== +Athena...ntLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== +DMTest...ReaderAlg 5 0 INFO Event 6 LBN 1 +DMTest...ReaderAlg 5 0 INFO xint xint (int) : 20 +DMTest...ReaderAlg 5 0 INFO scond 2000 +DMTest...ReaderAlg 5 0 INFO s2 0 +DMTest...ReaderAlg 5 0 INFO rl xint (int) : 2 +DMTest...ReaderAlg 5 0 INFO ts xint (int) : 200 +DMTest...ReaderAlg 5 0 INFO s3 202 +Athena...ntLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== +Athena...ntLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== +DMTest...ReaderAlg 6 0 INFO Event 7 LBN 2 +DMTest...ReaderAlg 6 0 INFO xint xint (int) : 30 +DMTest...ReaderAlg 6 0 INFO scond 3000 +DMTest...ReaderAlg 6 0 INFO s2 100 +DMTest...ReaderAlg 6 0 INFO rl xint (int) : 2 +DMTest...ReaderAlg 6 0 INFO ts xint (int) : 300 +DMTest...ReaderAlg 6 0 INFO s3 302 +Athena...ntLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== +Athena...ntLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== +DMTest...ReaderAlg 7 0 INFO Event 8 LBN 2 +DMTest...ReaderAlg 7 0 INFO xint xint (int) : 30 +DMTest...ReaderAlg 7 0 INFO scond 3000 +DMTest...ReaderAlg 7 0 INFO s2 100 +DMTest...ReaderAlg 7 0 INFO rl xint (int) : 2 +DMTest...ReaderAlg 7 0 INFO ts xint (int) : 400 +DMTest...ReaderAlg 7 0 INFO s3 402 +Athena...ntLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== +Athena...ntLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== +DMTest...ReaderAlg 8 0 INFO Event 9 LBN 2 +DMTest...ReaderAlg 8 0 INFO xint xint (int) : 30 +DMTest...ReaderAlg 8 0 INFO scond 3000 +DMTest...ReaderAlg 8 0 INFO s2 100 +DMTest...ReaderAlg 8 0 INFO rl xint (int) : 2 +DMTest...ReaderAlg 8 0 INFO ts xint (int) : 400 +DMTest...ReaderAlg 8 0 INFO s3 402 +Athena...ntLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== +Athena...ntLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== +DMTest...ReaderAlg 9 0 INFO Event 10 LBN 3 +DMTest...ReaderAlg 9 0 INFO xint xint (int) : 40 +DMTest...ReaderAlg 9 0 INFO scond 4000 +DMTest...ReaderAlg 9 0 INFO s2 100 +DMTest...ReaderAlg 9 0 INFO rl xint (int) : 3 +DMTest...ReaderAlg 9 0 INFO ts xint (int) : 400 +DMTest...ReaderAlg 9 0 INFO s3 403 +Athena...ntLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== +Athena...ntLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== +DMTest...ReaderAlg 10 0 INFO Event 11 LBN 3 +DMTest...ReaderAlg 10 0 INFO xint xint (int) : 40 +DMTest...ReaderAlg 10 0 INFO scond 4000 +DMTest...ReaderAlg 10 0 INFO s2 100 +DMTest...ReaderAlg 10 0 INFO rl xint (int) : 3 +DMTest...ReaderAlg 10 0 INFO ts xint (int) : 500 +DMTest...ReaderAlg 10 0 INFO s3 503 +Athena...ntLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== +Athena...ntLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== +DMTest...ReaderAlg 11 0 INFO Event 12 LBN 3 +DMTest...ReaderAlg 11 0 INFO xint xint (int) : 40 +DMTest...ReaderAlg 11 0 INFO scond 4000 +DMTest...ReaderAlg 11 0 INFO s2 100 +DMTest...ReaderAlg 11 0 INFO rl xint (int) : 3 +DMTest...ReaderAlg 11 0 INFO ts xint (int) : 500 +DMTest...ReaderAlg 11 0 INFO s3 503 +Athena...ntLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== +Athena...ntLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== +DMTest...ReaderAlg 12 0 INFO Event 13 LBN 4 +DMTest...ReaderAlg 12 0 INFO xint xint (int) : 50 +DMTest...ReaderAlg 12 0 INFO scond 5000 +DMTest...ReaderAlg 12 0 INFO s2 200 +DMTest...ReaderAlg 12 0 INFO rl xint (int) : 4 +DMTest...ReaderAlg 12 0 INFO ts xint (int) : 500 +DMTest...ReaderAlg 12 0 INFO s3 504 +Athena...ntLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== +Athena...ntLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== +DMTest...ReaderAlg 13 0 INFO Event 14 LBN 4 +DMTest...ReaderAlg 13 0 INFO xint xint (int) : 50 +DMTest...ReaderAlg 13 0 INFO scond 5000 +DMTest...ReaderAlg 13 0 INFO s2 200 +DMTest...ReaderAlg 13 0 INFO rl xint (int) : 4 +DMTest...ReaderAlg 13 0 INFO ts xint (int) : 500 +DMTest...ReaderAlg 13 0 INFO s3 504 +Athena...ntLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== +Athena...ntLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== +DMTest...ReaderAlg 14 0 INFO Event 15 LBN 4 +DMTest...ReaderAlg 14 0 INFO xint xint (int) : 50 +DMTest...ReaderAlg 14 0 INFO scond 5000 +DMTest...ReaderAlg 14 0 INFO s2 200 +DMTest...ReaderAlg 14 0 INFO rl xint (int) : 4 +DMTest...ReaderAlg 14 0 INFO ts xint (int) : 500 +DMTest...ReaderAlg 14 0 INFO s3 504 +Athena...ntLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== +Athena...ntLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== +DMTest...ReaderAlg 15 0 INFO Event 16 LBN 5 +DMTest...ReaderAlg 15 0 INFO xint xint (int) : 60 +DMTest...ReaderAlg 15 0 INFO scond 6000 +DMTest...ReaderAlg 15 0 INFO s2 200 +DMTest...ReaderAlg 15 0 INFO rl xint (int) : 4 +DMTest...ReaderAlg 15 0 INFO ts xint (int) : 500 +DMTest...ReaderAlg 15 0 INFO s3 504 +Athena...ntLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== +Athena...ntLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== +DMTest...ReaderAlg 16 0 INFO Event 17 LBN 5 +DMTest...ReaderAlg 16 0 INFO xint xint (int) : 60 +DMTest...ReaderAlg 16 0 INFO scond 6000 +DMTest...ReaderAlg 16 0 INFO s2 200 +DMTest...ReaderAlg 16 0 INFO rl xint (int) : 4 +DMTest...ReaderAlg 16 0 INFO ts xint (int) : 500 +DMTest...ReaderAlg 16 0 INFO s3 504 +Athena...ntLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== +Athena...ntLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== +DMTest...ReaderAlg 17 0 INFO Event 18 LBN 5 +DMTest...ReaderAlg 17 0 INFO xint xint (int) : 60 +DMTest...ReaderAlg 17 0 INFO scond 6000 +DMTest...ReaderAlg 17 0 INFO s2 200 +DMTest...ReaderAlg 17 0 INFO rl xint (int) : 4 +DMTest...ReaderAlg 17 0 INFO ts xint (int) : 600 +DMTest...ReaderAlg 17 0 INFO s3 604 +Athena...ntLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== +Athena...ntLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== +DMTest...ReaderAlg 18 0 INFO Event 19 LBN 6 +DMTest...ReaderAlg 18 0 INFO xint xint (int) : 70 +DMTest...ReaderAlg 18 0 INFO scond 7000 +DMTest...ReaderAlg 18 0 INFO s2 300 +DMTest...ReaderAlg 18 0 INFO rl xint (int) : 4 +DMTest...ReaderAlg 18 0 INFO ts xint (int) : 600 +DMTest...ReaderAlg 18 0 INFO s3 604 +Athena...ntLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== +Athena...ntLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== +DMTest...ReaderAlg 19 0 INFO Event 20 LBN 6 +DMTest...ReaderAlg 19 0 INFO xint xint (int) : 70 +DMTest...ReaderAlg 19 0 INFO scond 7000 +DMTest...ReaderAlg 19 0 INFO s2 300 +DMTest...ReaderAlg 19 0 INFO rl xint (int) : 4 +DMTest...ReaderAlg 19 0 INFO ts xint (int) : 700 +DMTest...ReaderAlg 19 0 INFO s3 704 +Athena...ntLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== +Athena...ntLoopMgr 20 0 INFO ===>>> start processing event #21, run #0 on slot 0, 20 events processed so far <<<=== +DMTest...ReaderAlg 20 0 INFO Event 21 LBN 6 +DMTest...ReaderAlg 20 0 INFO xint xint (int) : 70 +DMTest...ReaderAlg 20 0 INFO scond 7000 +DMTest...ReaderAlg 20 0 INFO s2 300 +DMTest...ReaderAlg 20 0 INFO rl xint (int) : 4 +DMTest...ReaderAlg 20 0 INFO ts xint (int) : 700 +DMTest...ReaderAlg 20 0 INFO s3 704 +Athena...ntLoopMgr 20 0 INFO ===>>> done processing event #21, run #0 on slot 0, 21 events processed so far <<<=== +Athena...ntLoopMgr 21 0 INFO ===>>> start processing event #22, run #0 on slot 0, 21 events processed so far <<<=== +DMTest...ReaderAlg 21 0 INFO Event 22 LBN 7 +DMTest...ReaderAlg 21 0 INFO xint xint (int) : 80 +DMTest...ReaderAlg 21 0 INFO scond 8000 +DMTest...ReaderAlg 21 0 INFO s2 300 +DMTest...ReaderAlg 21 0 INFO rl xint (int) : 5 +DMTest...ReaderAlg 21 0 INFO ts xint (int) : 700 +DMTest...ReaderAlg 21 0 INFO s3 705 +Athena...ntLoopMgr 21 0 INFO ===>>> done processing event #22, run #0 on slot 0, 22 events processed so far <<<=== +Athena...ntLoopMgr 22 0 INFO ===>>> start processing event #23, run #0 on slot 0, 22 events processed so far <<<=== +DMTest...ReaderAlg 22 0 INFO Event 23 LBN 7 +DMTest...ReaderAlg 22 0 INFO xint xint (int) : 80 +DMTest...ReaderAlg 22 0 INFO scond 8000 +DMTest...ReaderAlg 22 0 INFO s2 300 +DMTest...ReaderAlg 22 0 INFO rl xint (int) : 5 +DMTest...ReaderAlg 22 0 INFO ts xint (int) : 800 +DMTest...ReaderAlg 22 0 INFO s3 805 +Athena...ntLoopMgr 22 0 INFO ===>>> done processing event #23, run #0 on slot 0, 23 events processed so far <<<=== +Athena...ntLoopMgr 23 0 INFO ===>>> start processing event #24, run #0 on slot 0, 23 events processed so far <<<=== +DMTest...ReaderAlg 23 0 INFO Event 24 LBN 7 +DMTest...ReaderAlg 23 0 INFO xint xint (int) : 80 +DMTest...ReaderAlg 23 0 INFO scond 8000 +DMTest...ReaderAlg 23 0 INFO s2 300 +DMTest...ReaderAlg 23 0 INFO rl xint (int) : 5 +DMTest...ReaderAlg 23 0 INFO ts xint (int) : 800 +DMTest...ReaderAlg 23 0 INFO s3 805 +Athena...ntLoopMgr 23 0 INFO ===>>> done processing event #24, run #0 on slot 0, 24 events processed so far <<<=== +Athena...ntLoopMgr 24 0 INFO ===>>> start processing event #25, run #0 on slot 0, 24 events processed so far <<<=== +DMTest...ReaderAlg 24 0 INFO Event 25 LBN 8 +DMTest...ReaderAlg 24 0 INFO xint xint (int) : 90 +DMTest...ReaderAlg 24 0 INFO scond 9000 +DMTest...ReaderAlg 24 0 INFO s2 400 +DMTest...ReaderAlg 24 0 INFO rl xint (int) : 6 +DMTest...ReaderAlg 24 0 INFO ts xint (int) : 800 +DMTest...ReaderAlg 24 0 INFO s3 806 +Athena...ntLoopMgr 24 0 INFO ===>>> done processing event #25, run #0 on slot 0, 25 events processed so far <<<=== +Athena...ntLoopMgr 25 0 INFO ===>>> start processing event #26, run #0 on slot 0, 25 events processed so far <<<=== +DMTest...ReaderAlg 25 0 INFO Event 26 LBN 8 +DMTest...ReaderAlg 25 0 INFO xint xint (int) : 90 +DMTest...ReaderAlg 25 0 INFO scond 9000 +DMTest...ReaderAlg 25 0 INFO s2 400 +DMTest...ReaderAlg 25 0 INFO rl xint (int) : 6 +DMTest...ReaderAlg 25 0 INFO ts xint (int) : 800 +DMTest...ReaderAlg 25 0 INFO s3 806 +Athena...ntLoopMgr 25 0 INFO ===>>> done processing event #26, run #0 on slot 0, 26 events processed so far <<<=== +Athena...ntLoopMgr 26 0 INFO ===>>> start processing event #27, run #0 on slot 0, 26 events processed so far <<<=== +DMTest...ReaderAlg 26 0 INFO Event 27 LBN 8 +DMTest...ReaderAlg 26 0 INFO xint xint (int) : 90 +DMTest...ReaderAlg 26 0 INFO scond 9000 +DMTest...ReaderAlg 26 0 INFO s2 400 +DMTest...ReaderAlg 26 0 INFO rl xint (int) : 6 +DMTest...ReaderAlg 26 0 INFO ts xint (int) : 900 +DMTest...ReaderAlg 26 0 INFO s3 906 +Athena...ntLoopMgr 26 0 INFO ===>>> done processing event #27, run #0 on slot 0, 27 events processed so far <<<=== +Athena...ntLoopMgr 27 0 INFO ===>>> start processing event #28, run #0 on slot 0, 27 events processed so far <<<=== +DMTest...ReaderAlg 27 0 INFO Event 28 LBN 9 +DMTest...ReaderAlg 27 0 INFO xint xint (int) : 100 +DMTest...ReaderAlg 27 0 INFO scond 10000 +DMTest...ReaderAlg 27 0 INFO s2 400 +DMTest...ReaderAlg 27 0 INFO rl xint (int) : 7 +DMTest...ReaderAlg 27 0 INFO ts xint (int) : 900 +DMTest...ReaderAlg 27 0 INFO s3 907 +Athena...ntLoopMgr 27 0 INFO ===>>> done processing event #28, run #0 on slot 0, 28 events processed so far <<<=== +Athena...ntLoopMgr 28 0 INFO ===>>> start processing event #29, run #0 on slot 0, 28 events processed so far <<<=== +DMTest...ReaderAlg 28 0 INFO Event 29 LBN 9 +DMTest...ReaderAlg 28 0 INFO xint xint (int) : 100 +DMTest...ReaderAlg 28 0 INFO scond 10000 +DMTest...ReaderAlg 28 0 INFO s2 400 +DMTest...ReaderAlg 28 0 INFO rl xint (int) : 7 +DMTest...ReaderAlg 28 0 INFO ts xint (int) : 900 +DMTest...ReaderAlg 28 0 INFO s3 907 +Athena...ntLoopMgr 28 0 INFO ===>>> done processing event #29, run #0 on slot 0, 29 events processed so far <<<=== +Athena...ntLoopMgr 29 0 INFO ===>>> start processing event #30, run #0 on slot 0, 29 events processed so far <<<=== +DMTest...ReaderAlg 29 0 INFO Event 30 LBN 9 +DMTest...ReaderAlg 29 0 INFO xint xint (int) : 100 +DMTest...ReaderAlg 29 0 INFO scond 10000 +DMTest...ReaderAlg 29 0 INFO s2 400 +DMTest...ReaderAlg 29 0 INFO rl xint (int) : 7 +DMTest...ReaderAlg 29 0 INFO ts xint (int) : 900 +DMTest...ReaderAlg 29 0 INFO s3 907 +Athena...ntLoopMgr 29 0 INFO ===>>> done processing event #30, run #0 on slot 0, 30 events processed so far <<<=== +ApplicationMgr INFO Application Manager Stopped successfully +AthDictLoaderSvc INFO in finalize... +ToolSvc INFO Removing all tools created by ToolSvc +Chron...finalize() INFO Service finalized successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/CondReaderMT_jo.py b/Control/DataModelTest/DataModelRunTests/share/CondReaderMT_jo.py deleted file mode 100644 index 1386ff677679c3e78322ec1b14f22068a613c2bc..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/CondReaderMT_jo.py +++ /dev/null @@ -1,10 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/CondReaderMT_jo.py -# Author: snyder@bnl.gov -# Date: Jul 2017 -# Purpose: Test conditions reading in hive. -# - -include ('DataModelRunTests/CondReader_jo.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/CondReader_jo.py b/Control/DataModelTest/DataModelRunTests/share/CondReader_jo.py deleted file mode 100644 index c06b791a0555352dc3e5ee4d211d9728fbeac0e3..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/CondReader_jo.py +++ /dev/null @@ -1,94 +0,0 @@ -# -# $Id$ -# -# File: share/CondReader_jo.py -# Author: snyder@bnl.gov -# Date: Jul 2017 -# Purpose: Test conditions handling. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixGeneratorJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -include( "AthenaPoolCnvSvc/AthenaPool_jobOptions.py" ) - -include ('DataModelRunTests/loadReadDicts.py') - - -#-------------------------------------------------------------- -# Conditions setup. -#-------------------------------------------------------------- - -from IOVSvc.IOVSvcConf import CondSvc -svcMgr += CondSvc() - -from AthenaCommon.AlgSequence import AthSequencer -condSeq = AthSequencer("AthCondSeq") - -import StoreGate.StoreGateConf as StoreGateConf -svcMgr += StoreGateConf.StoreGateSvc("ConditionStore") - -from IOVDbSvc.CondDB import conddb -conddb.addFolder ('condtest.db', '/DMTest/TestAttrList <tag>AttrList_noTag</tag>', - className='AthenaAttributeList') -conddb.addFolder ('condtest.db', '/DMTest/S2 <tag>S2_noTag</tag>', - className='DMTest::S2') -conddb.addFolder ('condtest.db', '/DMTest/RLTest <tag>RL_noTag</tag>', - className='AthenaAttributeList') -conddb.addFolder ('condtest.db', '/DMTest/TSTest <tag>TS_noTag</tag>', - className='AthenaAttributeList') - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 30 - - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- - - -from AthenaCommon.ConcurrencyFlags import jobproperties as jp -nThreads = jp.ConcurrencyFlags.NumThreads() -if nThreads >= 1: - from AthenaCommon.AlgScheduler import AlgScheduler - AlgScheduler.ShowDataDependencies (True) - - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__CondReaderAlg, DMTest__CondAlg1, DMTest__CondAlg2 -topSequence += DMTest__CondReaderAlg (RLTestKey = '/DMTest/RLTest', - TSTestKey = '/DMTest/TSTest', - S3Key = 'scond3') - - -from AthenaCommon.AlgSequence import AthSequencer -condSequence = AthSequencer("AthCondSeq") -condSequence += DMTest__CondAlg1() -condSequence += DMTest__CondAlg2() - - -# Increment LBN every three events, TS each event. -from McEventSelector import McEventSelectorConf -svcMgr+=McEventSelectorConf.McEventSelector('EventSelector', - EventsPerLB=3, - TimeStampInterval=1) - -from PoolSvc import PoolSvcConf -PoolSvc = PoolSvcConf.PoolSvc() -PoolSvc.ReadCatalog = ["file:CondWriter_catalog.xml"] - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/CondWriter.ref b/Control/DataModelTest/DataModelRunTests/share/CondWriter.ref index 9d4d82892ff1545591be083d9863bb17d593885b..050fc9ba9e087c97f525679ec6d36b6b23d8eace 100644 --- a/Control/DataModelTest/DataModelRunTests/share/CondWriter.ref +++ b/Control/DataModelTest/DataModelRunTests/share/CondWriter.ref @@ -1,18 +1,22 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully +AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr +IOVDbFolder INFO Read from meta data only for folder /TagInfo +MetaDataSvc INFO Initializing MetaDataSvc AthDictLoaderSvc INFO in initialize... AthDictLoaderSvc INFO acquired Dso-registry -MetaDataSvc INFO Initializing MetaDataSvc -IOVDbFolder INFO Read from meta data only for folder /TagInfo -AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr +CondInputLoader INFO Adding base classes: +CondInputLoader INFO Will create WriteCondHandle dependencies for the following DataObjects: +EventInfoCnvAlg INFO Initializing EventInfoCnvAlg +EventI...foCnvTool INFO Beam spot information not available +EventI...foCnvTool INFO Will not fill beam spot information into xAOD::EventInfo PyComponentMgr INFO Initializing PyComponentMgr... LoadWriteDicts INFO Initializing LoadWriteDicts... -DMTest::CondWri... INFO Initializing DMTest::CondWriterAlg.CondStream +DMTes...CondStream INFO Initializing DMTest::CondWriterAlg.CondStream EventSelector INFO Enter McEventSelector Initialization AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully -EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventP...stencySvc INFO Added successfully Conversion service:McCnvSvc AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== @@ -76,10 +80,8 @@ AthenaEventLoopMgr INFO ===>>> done processing event #29, run #0 29 events AthenaEventLoopMgr INFO ===>>> start processing event #30, run #0 29 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #30, run #0 30 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'CondWriter_catalog.xml' does not exist. New file created. AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/CondWriter_jo.py b/Control/DataModelTest/DataModelRunTests/share/CondWriter_jo.py deleted file mode 100644 index 77fd30e8d757880a7732420c13347c15b13ff6e1..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/CondWriter_jo.py +++ /dev/null @@ -1,86 +0,0 @@ -# -# $Id$ -# -# File: share/CondWriter_jo.py -# Author: snyder@bnl.gov -# Date: Jul 2017 -# Purpose: Write some conditions objects for testing purposes. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixGeneratorJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool - -include ('DataModelRunTests/loadWriteDicts.py') - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 30 - -# -# For purposes of this test, we assume that timestamp (in sec) matches -# the event number (starting with 0) and that LBN counts every 3 events. -# -# We write four folders: -# /DMTest/TestAttrList (runlbn): -# Attribute list. New IOV for every LBN. xint=(lbn+1)*10 -# /DMTest/S2 (runlbn): -# DMTest::S2. New IOV for every 2 LBNs. payload: lbn*50 -# /DMTest/RLTest (runlbn): -# Attribute list, defined as below. -# /DMTest/TSTest (timestamp): -# Attribute list, defined as below. - -# lbn: 0..1..2..3..4..5..6..7..8..9.. -# -# lbn iov: 1..2.....3..4........5..6..7.. -# ts iov: 1..2..34..5......6.7..8...9... * 100 -# -# event: 11111111112222222222 -# (ts) 012345678901234567890123456789 - -#-------------------------------------------------------------- -# Output options -#-------------------------------------------------------------- - - -from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool -condstream = AthenaOutputStreamTool ('CondStream', - OutputFile = 'condtest.pool.root') - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__CondWriterAlg -topSequence += DMTest__CondWriterAlg (Streamer = condstream) - - -# Configure conditions DB output to local sqlite file. -try: - os.remove('condtest.db') -except OSError: - pass -try: - os.remove('condtest.pool.root') -except OSError: - pass -import IOVDbSvc.IOVDb -svcMgr.IOVDbSvc.dbConnection = "sqlite://;schema=condtest.db;dbname=OFLP200" - - -# Avoid races when running tests in parallel. -FILECATALOG = 'CondWriter_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead.ref b/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead.ref index b11a62be1edf25c3a40f2925870d153f7f16305d..1a5804de290915e144b31783aaa63b2f2454f19f 100644 --- a/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead.ref +++ b/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead.ref @@ -1,16 +1,14 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... -MetaDataSvc INFO Initializing MetaDataSvc +DecisionSvc INFO Inserting stream: OutputStreamStream1 with no Algs +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +Output...ream1Tool INFO Initializing OutputStreamStream1.StreamStream1Tool +Output...amStream1 INFO Data output: SimplePoolFile2.root +Output...amStream1 INFO ../O reinitialization... EventSelector INFO EventSelection with query -DecisionSvc INFO Inserting stream: Stream1 with no Algs -Stream1.Stream1... INFO Initializing Stream1.Stream1Tool -Stream1 INFO Data output: SimplePoolFile2.root -Stream1 INFO ../O reinitialization... AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully @@ -27,6 +25,7 @@ DMTestRead INFO dder as DataVector<DMTest::D>: 301 302 303 304 305 306 DMTestRead INFO elvec: 1 4 7 10 102 105 108 DMTestRead INFO elv_remap: 101 102 103 104 105 106 107 108 109 110 201 202 203 204 205 206 207 208 209 210 DMTestRead INFO elv_remap v2: 101 102 103 104 105 106 107 108 109 110 201 202 203 204 205 206 207 208 209 210 +MetaDataSvc INFO Initializing MetaDataSvc AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 2 3 4 5 6 7 8 9 10 11 @@ -275,12 +274,10 @@ DMTestRead INFO elvec: 20 23 26 29 121 124 127 DMTestRead INFO elv_remap: 120 121 122 123 124 125 126 127 128 129 220 221 222 223 224 225 226 227 228 229 DMTestRead INFO elv_remap v2: 120 121 122 123 124 125 126 127 128 129 220 221 222 223 224 225 226 227 228 229 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -Stream1 INFO Metadata records written: 21 +Output...amStream1 INFO Metadata records written: 21 ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'DataModelTestRead_catalog.xml' does not exist. New file created. AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead2.ref b/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead2.ref index 257d0d0e14c30f281b4a4add048c0068d8f7bf37..8230a18e69dae849a9419599c804ca8a89cb4d3a 100644 --- a/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead2.ref +++ b/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead2.ref @@ -1,11 +1,7 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... -MetaDataSvc INFO Initializing MetaDataSvc EventSelector INFO EventSelection with query AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully @@ -14,12 +10,12 @@ AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 1 2 3 4 5 6 7 8 9 10 DMTestRead INFO bder as DMTest::BDer: 101 102 103 104 105 106 107 108 109 110 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 201 202 203 204 205 206 207 208 209 210 +DMTestRead INFO dder as DMTest::DDer: 301 302 303 304 305 306 307 308 309 310 DMTestRead INFO bder as DataVector<DMTest::B>: 101 102 103 104 105 106 107 108 109 110 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 202 203 204 205 206 207 208 209 210 211 +DMTestRead INFO dder as DataVector<DMTest::B>: 302 303 304 305 306 307 308 309 310 311 +DMTestRead INFO dder as DataVector<DMTest::D>: 301 302 303 304 305 306 307 308 309 310 DMTestRead INFO elvec: 1 4 7 10 102 105 108 DMTestRead INFO elv_remap: 101 102 103 104 105 106 107 108 109 110 201 202 203 204 205 206 207 208 209 210 DMTestRead INFO elv_remap v2: 101 102 103 104 105 106 107 108 109 110 201 202 203 204 205 206 207 208 209 210 @@ -27,12 +23,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events pr AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 2 3 4 5 6 7 8 9 10 11 DMTestRead INFO bder as DMTest::BDer: 102 103 104 105 106 107 108 109 110 111 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 202 203 204 205 206 207 208 209 210 211 +DMTestRead INFO dder as DMTest::DDer: 302 303 304 305 306 307 308 309 310 311 DMTestRead INFO bder as DataVector<DMTest::B>: 102 103 104 105 106 107 108 109 110 111 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 203 204 205 206 207 208 209 210 211 212 +DMTestRead INFO dder as DataVector<DMTest::B>: 303 304 305 306 307 308 309 310 311 312 +DMTestRead INFO dder as DataVector<DMTest::D>: 302 303 304 305 306 307 308 309 310 311 DMTestRead INFO elvec: 2 5 8 11 103 106 109 DMTestRead INFO elv_remap: 102 103 104 105 106 107 108 109 110 111 202 203 204 205 206 207 208 209 210 211 DMTestRead INFO elv_remap v2: 102 103 104 105 106 107 108 109 110 111 202 203 204 205 206 207 208 209 210 211 @@ -40,12 +36,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events pr AthenaEventLoopMgr INFO ===>>> start processing event #3, run #0 2 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 3 4 5 6 7 8 9 10 11 12 DMTestRead INFO bder as DMTest::BDer: 103 104 105 106 107 108 109 110 111 112 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 203 204 205 206 207 208 209 210 211 212 +DMTestRead INFO dder as DMTest::DDer: 303 304 305 306 307 308 309 310 311 312 DMTestRead INFO bder as DataVector<DMTest::B>: 103 104 105 106 107 108 109 110 111 112 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 204 205 206 207 208 209 210 211 212 213 +DMTestRead INFO dder as DataVector<DMTest::B>: 304 305 306 307 308 309 310 311 312 313 +DMTestRead INFO dder as DataVector<DMTest::D>: 303 304 305 306 307 308 309 310 311 312 DMTestRead INFO elvec: 3 6 9 12 104 107 110 DMTestRead INFO elv_remap: 103 104 105 106 107 108 109 110 111 112 203 204 205 206 207 208 209 210 211 212 DMTestRead INFO elv_remap v2: 103 104 105 106 107 108 109 110 111 112 203 204 205 206 207 208 209 210 211 212 @@ -53,12 +49,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #3, run #0 3 events pr AthenaEventLoopMgr INFO ===>>> start processing event #4, run #0 3 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 4 5 6 7 8 9 10 11 12 13 DMTestRead INFO bder as DMTest::BDer: 104 105 106 107 108 109 110 111 112 113 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 204 205 206 207 208 209 210 211 212 213 +DMTestRead INFO dder as DMTest::DDer: 304 305 306 307 308 309 310 311 312 313 DMTestRead INFO bder as DataVector<DMTest::B>: 104 105 106 107 108 109 110 111 112 113 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 205 206 207 208 209 210 211 212 213 214 +DMTestRead INFO dder as DataVector<DMTest::B>: 305 306 307 308 309 310 311 312 313 314 +DMTestRead INFO dder as DataVector<DMTest::D>: 304 305 306 307 308 309 310 311 312 313 DMTestRead INFO elvec: 4 7 10 13 105 108 111 DMTestRead INFO elv_remap: 104 105 106 107 108 109 110 111 112 113 204 205 206 207 208 209 210 211 212 213 DMTestRead INFO elv_remap v2: 104 105 106 107 108 109 110 111 112 113 204 205 206 207 208 209 210 211 212 213 @@ -66,12 +62,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #4, run #0 4 events pr AthenaEventLoopMgr INFO ===>>> start processing event #5, run #0 4 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 5 6 7 8 9 10 11 12 13 14 DMTestRead INFO bder as DMTest::BDer: 105 106 107 108 109 110 111 112 113 114 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 205 206 207 208 209 210 211 212 213 214 +DMTestRead INFO dder as DMTest::DDer: 305 306 307 308 309 310 311 312 313 314 DMTestRead INFO bder as DataVector<DMTest::B>: 105 106 107 108 109 110 111 112 113 114 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 206 207 208 209 210 211 212 213 214 215 +DMTestRead INFO dder as DataVector<DMTest::B>: 306 307 308 309 310 311 312 313 314 315 +DMTestRead INFO dder as DataVector<DMTest::D>: 305 306 307 308 309 310 311 312 313 314 DMTestRead INFO elvec: 5 8 11 14 106 109 112 DMTestRead INFO elv_remap: 105 106 107 108 109 110 111 112 113 114 205 206 207 208 209 210 211 212 213 214 DMTestRead INFO elv_remap v2: 105 106 107 108 109 110 111 112 113 114 205 206 207 208 209 210 211 212 213 214 @@ -79,12 +75,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #5, run #0 5 events pr AthenaEventLoopMgr INFO ===>>> start processing event #6, run #0 5 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 6 7 8 9 10 11 12 13 14 15 DMTestRead INFO bder as DMTest::BDer: 106 107 108 109 110 111 112 113 114 115 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 206 207 208 209 210 211 212 213 214 215 +DMTestRead INFO dder as DMTest::DDer: 306 307 308 309 310 311 312 313 314 315 DMTestRead INFO bder as DataVector<DMTest::B>: 106 107 108 109 110 111 112 113 114 115 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 207 208 209 210 211 212 213 214 215 216 +DMTestRead INFO dder as DataVector<DMTest::B>: 307 308 309 310 311 312 313 314 315 316 +DMTestRead INFO dder as DataVector<DMTest::D>: 306 307 308 309 310 311 312 313 314 315 DMTestRead INFO elvec: 6 9 12 15 107 110 113 DMTestRead INFO elv_remap: 106 107 108 109 110 111 112 113 114 115 206 207 208 209 210 211 212 213 214 215 DMTestRead INFO elv_remap v2: 106 107 108 109 110 111 112 113 114 115 206 207 208 209 210 211 212 213 214 215 @@ -92,12 +88,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #6, run #0 6 events pr AthenaEventLoopMgr INFO ===>>> start processing event #7, run #0 6 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 7 8 9 10 11 12 13 14 15 16 DMTestRead INFO bder as DMTest::BDer: 107 108 109 110 111 112 113 114 115 116 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 207 208 209 210 211 212 213 214 215 216 +DMTestRead INFO dder as DMTest::DDer: 307 308 309 310 311 312 313 314 315 316 DMTestRead INFO bder as DataVector<DMTest::B>: 107 108 109 110 111 112 113 114 115 116 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 208 209 210 211 212 213 214 215 216 217 +DMTestRead INFO dder as DataVector<DMTest::B>: 308 309 310 311 312 313 314 315 316 317 +DMTestRead INFO dder as DataVector<DMTest::D>: 307 308 309 310 311 312 313 314 315 316 DMTestRead INFO elvec: 7 10 13 16 108 111 114 DMTestRead INFO elv_remap: 107 108 109 110 111 112 113 114 115 116 207 208 209 210 211 212 213 214 215 216 DMTestRead INFO elv_remap v2: 107 108 109 110 111 112 113 114 115 116 207 208 209 210 211 212 213 214 215 216 @@ -105,12 +101,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #7, run #0 7 events pr AthenaEventLoopMgr INFO ===>>> start processing event #8, run #0 7 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 8 9 10 11 12 13 14 15 16 17 DMTestRead INFO bder as DMTest::BDer: 108 109 110 111 112 113 114 115 116 117 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 208 209 210 211 212 213 214 215 216 217 +DMTestRead INFO dder as DMTest::DDer: 308 309 310 311 312 313 314 315 316 317 DMTestRead INFO bder as DataVector<DMTest::B>: 108 109 110 111 112 113 114 115 116 117 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 209 210 211 212 213 214 215 216 217 218 +DMTestRead INFO dder as DataVector<DMTest::B>: 309 310 311 312 313 314 315 316 317 318 +DMTestRead INFO dder as DataVector<DMTest::D>: 308 309 310 311 312 313 314 315 316 317 DMTestRead INFO elvec: 8 11 14 17 109 112 115 DMTestRead INFO elv_remap: 108 109 110 111 112 113 114 115 116 117 208 209 210 211 212 213 214 215 216 217 DMTestRead INFO elv_remap v2: 108 109 110 111 112 113 114 115 116 117 208 209 210 211 212 213 214 215 216 217 @@ -118,12 +114,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #8, run #0 8 events pr AthenaEventLoopMgr INFO ===>>> start processing event #9, run #0 8 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 9 10 11 12 13 14 15 16 17 18 DMTestRead INFO bder as DMTest::BDer: 109 110 111 112 113 114 115 116 117 118 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 209 210 211 212 213 214 215 216 217 218 +DMTestRead INFO dder as DMTest::DDer: 309 310 311 312 313 314 315 316 317 318 DMTestRead INFO bder as DataVector<DMTest::B>: 109 110 111 112 113 114 115 116 117 118 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 210 211 212 213 214 215 216 217 218 219 +DMTestRead INFO dder as DataVector<DMTest::B>: 310 311 312 313 314 315 316 317 318 319 +DMTestRead INFO dder as DataVector<DMTest::D>: 309 310 311 312 313 314 315 316 317 318 DMTestRead INFO elvec: 9 12 15 18 110 113 116 DMTestRead INFO elv_remap: 109 110 111 112 113 114 115 116 117 118 209 210 211 212 213 214 215 216 217 218 DMTestRead INFO elv_remap v2: 109 110 111 112 113 114 115 116 117 118 209 210 211 212 213 214 215 216 217 218 @@ -131,12 +127,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #9, run #0 9 events pr AthenaEventLoopMgr INFO ===>>> start processing event #10, run #0 9 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 10 11 12 13 14 15 16 17 18 19 DMTestRead INFO bder as DMTest::BDer: 110 111 112 113 114 115 116 117 118 119 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 210 211 212 213 214 215 216 217 218 219 +DMTestRead INFO dder as DMTest::DDer: 310 311 312 313 314 315 316 317 318 319 DMTestRead INFO bder as DataVector<DMTest::B>: 110 111 112 113 114 115 116 117 118 119 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 211 212 213 214 215 216 217 218 219 220 +DMTestRead INFO dder as DataVector<DMTest::B>: 311 312 313 314 315 316 317 318 319 320 +DMTestRead INFO dder as DataVector<DMTest::D>: 310 311 312 313 314 315 316 317 318 319 DMTestRead INFO elvec: 10 13 16 19 111 114 117 DMTestRead INFO elv_remap: 110 111 112 113 114 115 116 117 118 119 210 211 212 213 214 215 216 217 218 219 DMTestRead INFO elv_remap v2: 110 111 112 113 114 115 116 117 118 119 210 211 212 213 214 215 216 217 218 219 @@ -144,12 +140,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #10, run #0 10 events AthenaEventLoopMgr INFO ===>>> start processing event #11, run #0 10 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 11 12 13 14 15 16 17 18 19 20 DMTestRead INFO bder as DMTest::BDer: 111 112 113 114 115 116 117 118 119 120 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 211 212 213 214 215 216 217 218 219 220 +DMTestRead INFO dder as DMTest::DDer: 311 312 313 314 315 316 317 318 319 320 DMTestRead INFO bder as DataVector<DMTest::B>: 111 112 113 114 115 116 117 118 119 120 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 212 213 214 215 216 217 218 219 220 221 +DMTestRead INFO dder as DataVector<DMTest::B>: 312 313 314 315 316 317 318 319 320 321 +DMTestRead INFO dder as DataVector<DMTest::D>: 311 312 313 314 315 316 317 318 319 320 DMTestRead INFO elvec: 11 14 17 20 112 115 118 DMTestRead INFO elv_remap: 111 112 113 114 115 116 117 118 119 120 211 212 213 214 215 216 217 218 219 220 DMTestRead INFO elv_remap v2: 111 112 113 114 115 116 117 118 119 120 211 212 213 214 215 216 217 218 219 220 @@ -157,12 +153,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #11, run #0 11 events AthenaEventLoopMgr INFO ===>>> start processing event #12, run #0 11 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 12 13 14 15 16 17 18 19 20 21 DMTestRead INFO bder as DMTest::BDer: 112 113 114 115 116 117 118 119 120 121 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 212 213 214 215 216 217 218 219 220 221 +DMTestRead INFO dder as DMTest::DDer: 312 313 314 315 316 317 318 319 320 321 DMTestRead INFO bder as DataVector<DMTest::B>: 112 113 114 115 116 117 118 119 120 121 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 213 214 215 216 217 218 219 220 221 222 +DMTestRead INFO dder as DataVector<DMTest::B>: 313 314 315 316 317 318 319 320 321 322 +DMTestRead INFO dder as DataVector<DMTest::D>: 312 313 314 315 316 317 318 319 320 321 DMTestRead INFO elvec: 12 15 18 21 113 116 119 DMTestRead INFO elv_remap: 112 113 114 115 116 117 118 119 120 121 212 213 214 215 216 217 218 219 220 221 DMTestRead INFO elv_remap v2: 112 113 114 115 116 117 118 119 120 121 212 213 214 215 216 217 218 219 220 221 @@ -170,12 +166,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #12, run #0 12 events AthenaEventLoopMgr INFO ===>>> start processing event #13, run #0 12 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 13 14 15 16 17 18 19 20 21 22 DMTestRead INFO bder as DMTest::BDer: 113 114 115 116 117 118 119 120 121 122 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 213 214 215 216 217 218 219 220 221 222 +DMTestRead INFO dder as DMTest::DDer: 313 314 315 316 317 318 319 320 321 322 DMTestRead INFO bder as DataVector<DMTest::B>: 113 114 115 116 117 118 119 120 121 122 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 214 215 216 217 218 219 220 221 222 223 +DMTestRead INFO dder as DataVector<DMTest::B>: 314 315 316 317 318 319 320 321 322 323 +DMTestRead INFO dder as DataVector<DMTest::D>: 313 314 315 316 317 318 319 320 321 322 DMTestRead INFO elvec: 13 16 19 22 114 117 120 DMTestRead INFO elv_remap: 113 114 115 116 117 118 119 120 121 122 213 214 215 216 217 218 219 220 221 222 DMTestRead INFO elv_remap v2: 113 114 115 116 117 118 119 120 121 122 213 214 215 216 217 218 219 220 221 222 @@ -183,12 +179,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #13, run #0 13 events AthenaEventLoopMgr INFO ===>>> start processing event #14, run #0 13 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 14 15 16 17 18 19 20 21 22 23 DMTestRead INFO bder as DMTest::BDer: 114 115 116 117 118 119 120 121 122 123 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 214 215 216 217 218 219 220 221 222 223 +DMTestRead INFO dder as DMTest::DDer: 314 315 316 317 318 319 320 321 322 323 DMTestRead INFO bder as DataVector<DMTest::B>: 114 115 116 117 118 119 120 121 122 123 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 215 216 217 218 219 220 221 222 223 224 +DMTestRead INFO dder as DataVector<DMTest::B>: 315 316 317 318 319 320 321 322 323 324 +DMTestRead INFO dder as DataVector<DMTest::D>: 314 315 316 317 318 319 320 321 322 323 DMTestRead INFO elvec: 14 17 20 23 115 118 121 DMTestRead INFO elv_remap: 114 115 116 117 118 119 120 121 122 123 214 215 216 217 218 219 220 221 222 223 DMTestRead INFO elv_remap v2: 114 115 116 117 118 119 120 121 122 123 214 215 216 217 218 219 220 221 222 223 @@ -196,12 +192,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #14, run #0 14 events AthenaEventLoopMgr INFO ===>>> start processing event #15, run #0 14 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 15 16 17 18 19 20 21 22 23 24 DMTestRead INFO bder as DMTest::BDer: 115 116 117 118 119 120 121 122 123 124 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 215 216 217 218 219 220 221 222 223 224 +DMTestRead INFO dder as DMTest::DDer: 315 316 317 318 319 320 321 322 323 324 DMTestRead INFO bder as DataVector<DMTest::B>: 115 116 117 118 119 120 121 122 123 124 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 216 217 218 219 220 221 222 223 224 225 +DMTestRead INFO dder as DataVector<DMTest::B>: 316 317 318 319 320 321 322 323 324 325 +DMTestRead INFO dder as DataVector<DMTest::D>: 315 316 317 318 319 320 321 322 323 324 DMTestRead INFO elvec: 15 18 21 24 116 119 122 DMTestRead INFO elv_remap: 115 116 117 118 119 120 121 122 123 124 215 216 217 218 219 220 221 222 223 224 DMTestRead INFO elv_remap v2: 115 116 117 118 119 120 121 122 123 124 215 216 217 218 219 220 221 222 223 224 @@ -209,12 +205,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #15, run #0 15 events AthenaEventLoopMgr INFO ===>>> start processing event #16, run #0 15 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 16 17 18 19 20 21 22 23 24 25 DMTestRead INFO bder as DMTest::BDer: 116 117 118 119 120 121 122 123 124 125 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 216 217 218 219 220 221 222 223 224 225 +DMTestRead INFO dder as DMTest::DDer: 316 317 318 319 320 321 322 323 324 325 DMTestRead INFO bder as DataVector<DMTest::B>: 116 117 118 119 120 121 122 123 124 125 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 217 218 219 220 221 222 223 224 225 226 +DMTestRead INFO dder as DataVector<DMTest::B>: 317 318 319 320 321 322 323 324 325 326 +DMTestRead INFO dder as DataVector<DMTest::D>: 316 317 318 319 320 321 322 323 324 325 DMTestRead INFO elvec: 16 19 22 25 117 120 123 DMTestRead INFO elv_remap: 116 117 118 119 120 121 122 123 124 125 216 217 218 219 220 221 222 223 224 225 DMTestRead INFO elv_remap v2: 116 117 118 119 120 121 122 123 124 125 216 217 218 219 220 221 222 223 224 225 @@ -222,12 +218,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #16, run #0 16 events AthenaEventLoopMgr INFO ===>>> start processing event #17, run #0 16 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 17 18 19 20 21 22 23 24 25 26 DMTestRead INFO bder as DMTest::BDer: 117 118 119 120 121 122 123 124 125 126 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 217 218 219 220 221 222 223 224 225 226 +DMTestRead INFO dder as DMTest::DDer: 317 318 319 320 321 322 323 324 325 326 DMTestRead INFO bder as DataVector<DMTest::B>: 117 118 119 120 121 122 123 124 125 126 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 218 219 220 221 222 223 224 225 226 227 +DMTestRead INFO dder as DataVector<DMTest::B>: 318 319 320 321 322 323 324 325 326 327 +DMTestRead INFO dder as DataVector<DMTest::D>: 317 318 319 320 321 322 323 324 325 326 DMTestRead INFO elvec: 17 20 23 26 118 121 124 DMTestRead INFO elv_remap: 117 118 119 120 121 122 123 124 125 126 217 218 219 220 221 222 223 224 225 226 DMTestRead INFO elv_remap v2: 117 118 119 120 121 122 123 124 125 126 217 218 219 220 221 222 223 224 225 226 @@ -235,12 +231,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #17, run #0 17 events AthenaEventLoopMgr INFO ===>>> start processing event #18, run #0 17 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 18 19 20 21 22 23 24 25 26 27 DMTestRead INFO bder as DMTest::BDer: 118 119 120 121 122 123 124 125 126 127 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 218 219 220 221 222 223 224 225 226 227 +DMTestRead INFO dder as DMTest::DDer: 318 319 320 321 322 323 324 325 326 327 DMTestRead INFO bder as DataVector<DMTest::B>: 118 119 120 121 122 123 124 125 126 127 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 219 220 221 222 223 224 225 226 227 228 +DMTestRead INFO dder as DataVector<DMTest::B>: 319 320 321 322 323 324 325 326 327 328 +DMTestRead INFO dder as DataVector<DMTest::D>: 318 319 320 321 322 323 324 325 326 327 DMTestRead INFO elvec: 18 21 24 27 119 122 125 DMTestRead INFO elv_remap: 118 119 120 121 122 123 124 125 126 127 218 219 220 221 222 223 224 225 226 227 DMTestRead INFO elv_remap v2: 118 119 120 121 122 123 124 125 126 127 218 219 220 221 222 223 224 225 226 227 @@ -248,12 +244,12 @@ AthenaEventLoopMgr INFO ===>>> done processing event #18, run #0 18 events AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 19 20 21 22 23 24 25 26 27 28 DMTestRead INFO bder as DMTest::BDer: 119 120 121 122 123 124 125 126 127 128 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 219 220 221 222 223 224 225 226 227 228 +DMTestRead INFO dder as DMTest::DDer: 319 320 321 322 323 324 325 326 327 328 DMTestRead INFO bder as DataVector<DMTest::B>: 119 120 121 122 123 124 125 126 127 128 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 220 221 222 223 224 225 226 227 228 229 +DMTestRead INFO dder as DataVector<DMTest::B>: 320 321 322 323 324 325 326 327 328 329 +DMTestRead INFO dder as DataVector<DMTest::D>: 319 320 321 322 323 324 325 326 327 328 DMTestRead INFO elvec: 19 22 25 28 120 123 126 DMTestRead INFO elv_remap: 119 120 121 122 123 124 125 126 127 128 219 220 221 222 223 224 225 226 227 228 DMTestRead INFO elv_remap v2: 119 120 121 122 123 124 125 126 127 128 219 220 221 222 223 224 225 226 227 228 @@ -261,21 +257,17 @@ AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== DMTestRead INFO bvec as DataVector<DMTest::B>: 20 21 22 23 24 25 26 27 28 29 DMTestRead INFO bder as DMTest::BDer: 120 121 122 123 124 125 126 127 128 129 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::D>: 220 221 222 223 224 225 226 227 228 229 +DMTestRead INFO dder as DMTest::DDer: 320 321 322 323 324 325 326 327 328 329 DMTestRead INFO bder as DataVector<DMTest::B>: 120 121 122 123 124 125 126 127 128 129 -DMTestRead INFO dvec not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. -DMTestRead INFO dder not in SG; ignored. +DMTestRead INFO dvec as DataVector<DMTest::B>: 221 222 223 224 225 226 227 228 229 230 +DMTestRead INFO dder as DataVector<DMTest::B>: 321 322 323 324 325 326 327 328 329 330 +DMTestRead INFO dder as DataVector<DMTest::D>: 320 321 322 323 324 325 326 327 328 329 DMTestRead INFO elvec: 20 23 26 29 121 124 127 DMTestRead INFO elv_remap: 120 121 122 123 124 125 126 127 128 129 220 221 222 223 224 225 226 227 228 229 DMTestRead INFO elv_remap v2: 120 121 122 123 124 125 126 127 128 129 220 221 222 223 224 225 226 227 228 229 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'DataModelTestRead2_catalog.xml' does not exist. New file created. -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead2_jo.py b/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead2_jo.py deleted file mode 100755 index 7ba8c8668f8b1731671b15ecd3a243fc5127c80d..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead2_jo.py +++ /dev/null @@ -1,52 +0,0 @@ -# -# $Id: DataModelTestRead2_jo.py,v 1.4 2009-03-22 16:14:20 ssnyder Exp $ -# -# File: share/DataModelTestRead2_jo.py -# Author: snyder@bnl.gov -# Date: Nov 2005 -# Purpose: Test DataVector backwards compatibility. -# Read back new-style DataVectors. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "SimplePoolFile2.root" ] - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from DataModelTestDataRead.DataModelTestDataReadConf import DMTest__DMTestRead -topSequence += DMTest__DMTestRead ("DMTestRead") - - -# Avoid races when running tests in parallel. -FILECATALOG = 'DataModelTestRead2_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead_jo.py b/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead_jo.py deleted file mode 100755 index 06a319a29f8c61924a55af4234432d8e7e6a6f4f..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead_jo.py +++ /dev/null @@ -1,78 +0,0 @@ -# -# $Id: DataModelTestRead_jo.py,v 1.9 2009-03-22 16:14:20 ssnyder Exp $ -# -# File: share/DataModelTestRead_jo.py -# Author: snyder@bnl.gov -# Date: Nov 2005 -# Purpose: Test DataVector backwards compatibility. -# We read old-style DataVectors as new-style, -# then write them out again new-style. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "SimplePoolFile.root" ] - -#-------------------------------------------------------------- -# Define output -#-------------------------------------------------------------- -# ItemList: -include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" ) -fullItemList+=["DataVector<DMTest::B>#bvec"] -fullItemList+=["DataVector<DMTest::B>#b3"] -fullItemList+=["DMTest::BDer#bder"] -# The auxdata-related changes in AthContainers expose a bug in root 5.34; -# I/O crashes when trying to write objects of these types. -# This appears to be resolved in root 6. -# For now, just avoid doing this. -#fullItemList+=["DataVector<DMTest::D>#dvec"] -#fullItemList+=["DMTest::DDer#dder"] -fullItemList+=["DMTest::ELVec#elvec"] -fullItemList+=["DMTest::ELVec#elv_remap"] - -# Stream's output file -from OutputStreamAthenaPool.CreateOutputStreams import createOutputStream -Stream1 = createOutputStream( "Stream1", noTag = True ) -Stream1.OutputFile = "SimplePoolFile2.root" -# List of DO's to write out -Stream1.ItemList += fullItemList - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from DataModelTestDataRead.DataModelTestDataReadConf import DMTest__DMTestRead -topSequence += DMTest__DMTestRead ("DMTestRead") - - -# Avoid races when running tests in parallel. -FILECATALOG = 'DataModelTestRead_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/DataModelTestWrite.ref b/Control/DataModelTest/DataModelRunTests/share/DataModelTestWrite.ref index 988793f81e9035d29a8759febec61cfcbb983879..f622f30399c9392eb8c1cdb62b7767b4c0aac40c 100644 --- a/Control/DataModelTest/DataModelRunTests/share/DataModelTestWrite.ref +++ b/Control/DataModelTest/DataModelRunTests/share/DataModelTestWrite.ref @@ -1,22 +1,24 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -MetaDataSvc INFO Initializing MetaDataSvc +EventInfoCnvAlg INFO Initializing EventInfoCnvAlg +EventI...foCnvTool INFO Beam spot information not available +EventI...foCnvTool INFO Will not fill beam spot information into xAOD::EventInfo PyComponentMgr INFO Initializing PyComponentMgr... LoadWriteDicts INFO Initializing LoadWriteDicts... -DecisionSvc INFO Inserting stream: Stream1 with no Algs -Stream1.Stream1... INFO Initializing Stream1.Stream1Tool -Stream1 INFO Data output: SimplePoolFile.root -Stream1 INFO ../O reinitialization... +DecisionSvc INFO Inserting stream: OutputStreamStream1 with no Algs +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +Output...ream1Tool INFO Initializing OutputStreamStream1.StreamStream1Tool +Output...amStream1 INFO Data output: SimplePoolFile.root +Output...amStream1 INFO ../O reinitialization... EventSelector INFO Enter McEventSelector Initialization AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully -EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventP...stencySvc INFO Added successfully Conversion service:McCnvSvc AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== +MetaDataSvc INFO Initializing MetaDataSvc AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== @@ -56,12 +58,10 @@ AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -Stream1 INFO Metadata records written: 21 +Output...amStream1 INFO Metadata records written: 21 ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'DataModelTestWrite_catalog.xml' does not exist. New file created. AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/DataModelTestWrite_jo.py b/Control/DataModelTest/DataModelRunTests/share/DataModelTestWrite_jo.py deleted file mode 100755 index 57590559eb814ad9facc09d85e71f2f3e3d989f9..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/DataModelTestWrite_jo.py +++ /dev/null @@ -1,67 +0,0 @@ -# -# $Id: DataModelTestWrite_jo.py,v 1.7 2009-03-22 16:14:20 ssnyder Exp $ -# -# File: share/DataModelTestWrite_jo.py -# Author: snyder@bnl.gov -# Date: Nov 2005 -# Purpose: Test writing (old-style) DataVector objects. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixGeneratorJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool - -include ('DataModelRunTests/loadWriteDicts.py') - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- - -from DataModelTestDataWrite.DataModelTestDataWriteConf import DMTest__DMTestWrite -topSequence += DMTest__DMTestWrite ("DMTestWrite") - -#-------------------------------------------------------------- -# Output options -#-------------------------------------------------------------- -# ItemList: -include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" ) -fullItemList+=["DataVector<DMTest::B>#bvec"] -fullItemList+=["DataVector<DMTest::B>#b3"] -fullItemList+=["DMTest::BDer#bder"] -fullItemList+=["DataVector<DMTest::D>#dvec"] -fullItemList+=["DMTest::DDer#dder"] -fullItemList+=["DMTest::ELVec#elvec"] -fullItemList+=["DMTest::ELVec#elv_remap"] - -# Stream's output file -from OutputStreamAthenaPool.CreateOutputStreams import createOutputStream -Stream1 = createOutputStream( "Stream1", noTag = True ) -Stream1.OutputFile = "SimplePoolFile.root" -# List of DO's to write out -Stream1.ItemList += fullItemList - -# Avoid races when running tests in parallel. -FILECATALOG = 'DataModelTestWrite_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/commonTrailer.py b/Control/DataModelTest/DataModelRunTests/share/commonTrailer.py deleted file mode 100644 index 7e1893035fb8f0b192a3f51b45d3569f80210728..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/commonTrailer.py +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration. - -#-------------------------------------------------------------- -# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL ) -#-------------------------------------------------------------- -svcMgr.MessageSvc.OutputLevel = 3 -svcMgr.MessageSvc.debugLimit = 100000 -svcMgr.ClassIDSvc.OutputLevel = 3 - -# No stats printout -from GaudiCommonSvc import GaudiCommonSvcConf -ChronoStatSvc = GaudiCommonSvcConf.ChronoStatSvc() -ChronoStatSvc.ChronoPrintOutTable = FALSE -ChronoStatSvc.PrintUserTime = FALSE -ChronoStatSvc.StatPrintOutTable = FALSE - -include ('DataModelRunTests/setCatalog.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/loadReadDicts.py b/Control/DataModelTest/DataModelRunTests/share/loadReadDicts.py deleted file mode 100644 index fa92c29f085f6351df69b95bbaa2f611d11f416e..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/loadReadDicts.py +++ /dev/null @@ -1,33 +0,0 @@ -# -# Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration. -# -# -# File: DataModelRunTests/share/loadReadDicts.py -# Author: snyder@bnl.gov -# Date: Oct 2018 -# Purpose: Helper to load dictionaries for DataModelTests. -# - -# Arrange to get dictionaries loaded for read tests. -# Do this as an algorithm so we can defer it to initialize(). -# In some cases, loading DSOs during initial python processing -# can cause component loading to fail. - - -from AthenaPython.PyAthenaComps import Alg, StatusCode -class LoadReadDicts (Alg): - def initialize (self): - import ROOT - ROOT.gROOT.SetBatch(True) - import cppyy - cppyy.load_library("libDataModelTestDataCommonDict") - cppyy.load_library("libDataModelTestDataReadDict") - ROOT.DMTest.B - ROOT.gROOT.GetClass('DMTest::HAuxContainer_v1') - ROOT.gROOT.GetClass('DataVector<DMTest::H_v1>') - ROOT.gROOT.GetClass('DMTest::HView_v1') - ROOT.DMTest.setConverterLibrary ('libDataModelTestDataReadCnvPoolCnv.so') - ROOT.DMTest.setTrigConverterLibrary ('libDataModelTestDataReadSerCnv.so') - return StatusCode.Success - -topSequence += LoadReadDicts ('LoadReadDicts') diff --git a/Control/DataModelTest/DataModelRunTests/share/loadWriteDicts.py b/Control/DataModelTest/DataModelRunTests/share/loadWriteDicts.py deleted file mode 100644 index e39536423b0ea02cb67560fd822e098137c13748..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/loadWriteDicts.py +++ /dev/null @@ -1,32 +0,0 @@ -# -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration. -# -# -# File: DataModelRunTests/share/loadWriteDicts.py -# Author: snyder@bnl.gov -# Date: Oct 2018 -# Purpose: Helper to load dictionaries for DataModelTests. -# - -# Arrange to get dictionaries loaded for write tests. -# Do this as an algorithm so we can defer it to initialize(). -# In some cases, loading DSOs during initial python processing -# can cause component loading to fail. - - -from AthenaPython.PyAthenaComps import Alg, StatusCode -class LoadWriteDicts (Alg): - def initialize (self): - import ROOT - ROOT.gROOT.SetBatch(True) - import cppyy - cppyy.load_library("libDataModelTestDataCommonDict") - cppyy.load_library("libDataModelTestDataWriteDict") - cppyy.load_library("libDataModelTestDataWriteCnvDict") - ROOT.DMTest.B - ROOT.DMTest.setConverterLibrary ('libDataModelTestDataWriteCnvPoolCnv.so') - ROOT.DMTest.setTrigConverterLibrary ('libDataModelTestDataWriteSerCnv.so') - return StatusCode.Success - -topSequence += LoadWriteDicts ('LoadWriteDicts') - diff --git a/Control/DataModelTest/DataModelRunTests/share/setCatalog.py b/Control/DataModelTest/DataModelRunTests/share/setCatalog.py deleted file mode 100644 index 83411a13e516ee1f25321d0ca6be8b72be48aa23..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/setCatalog.py +++ /dev/null @@ -1,23 +0,0 @@ -# -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration. -# -# -# File: DataModelRunTests/share/setCatalog.py -# Author: snyder@bnl.gov -# Date: Mar 2018 -# Purpose: Helper to set the file catalog being written. -# -# Needed to avoid races when running tests in parallel. -# - -if 'FILECATALOG' in globals(): - from PoolSvc import PoolSvcConf - PoolSvc = PoolSvcConf.PoolSvc() - PoolSvc.WriteCatalog = 'file:' + FILECATALOG - - import os - try: - os.remove (FILECATALOG) - except OSError: - pass - diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1.ref index 70e2b740feb87d4fda3d2c307ae12c0cc5d9b877..af3e539eea09449e15aee06f84314dde34dc10d1 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1.ref @@ -1,217 +1,216 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr +EventInfoCnvAlg INFO Initializing EventInfoCnvAlg +EventI...foCnvTool INFO Beam spot information not available +EventI...foCnvTool INFO Will not fill beam spot information into xAOD::EventInfo EventSelector INFO Enter McEventSelector Initialization AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully -EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventP...stencySvc INFO Added successfully Conversion service:McCnvSvc AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 801 802 803 804 805 806 807 808 809 810 xAODTestReadDecor INFO cinfo.dInt1: 6000 xAODTestReadDecor INFO cinfo.dInt1Base: 6001 xAODTestReadDecor INFO cinfo.dInt1: 6000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 801 802 803 804 805 806 807 808 809 810 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 6000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 6001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 6000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 801 802 803 804 805 806 807 808 809 810 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 6000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 6001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 6000 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 xAODTestReadDecor INFO cinfo.dInt1: 9000 xAODTestReadDecor INFO cinfo.dInt1Base: 9001 xAODTestReadDecor INFO cinfo.dInt1: 9000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 9000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 9001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 9000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 9000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 9001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 9000 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #3, run #0 2 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 xAODTestReadDecor INFO cinfo.dInt1: 12000 xAODTestReadDecor INFO cinfo.dInt1Base: 12001 xAODTestReadDecor INFO cinfo.dInt1: 12000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 12000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 12001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 12000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 12000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 12001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 12000 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #0 3 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #4, run #0 3 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: xAODTestReadDecor INFO cinfo.dInt1: 15000 xAODTestReadDecor INFO cinfo.dInt1Base: 15001 xAODTestReadDecor INFO cinfo.dInt1: 15000 -xAODTestReadDec... INFO scopy_cvec.dInt1: -xAODTestReadDec... INFO scopy_cinfo.dInt1: 15000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 15001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 15000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 15000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 15001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 15000 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #0 4 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #5, run #0 4 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 xAODTestReadDecor INFO cinfo.dInt1: 18000 xAODTestReadDecor INFO cinfo.dInt1Base: 18001 xAODTestReadDecor INFO cinfo.dInt1: 18000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 18000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 18001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 18000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 18000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 18001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 18000 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #0 5 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #6, run #0 5 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 xAODTestReadDecor INFO cinfo.dInt1: 21000 xAODTestReadDecor INFO cinfo.dInt1Base: 21001 xAODTestReadDecor INFO cinfo.dInt1: 21000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 21000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 21001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 21000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 21000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 21001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 21000 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #0 6 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #7, run #0 6 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 xAODTestReadDecor INFO cinfo.dInt1: 24000 xAODTestReadDecor INFO cinfo.dInt1Base: 24001 xAODTestReadDecor INFO cinfo.dInt1: 24000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 24000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 24001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 24000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 24000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 24001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 24000 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #0 7 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #8, run #0 7 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 xAODTestReadDecor INFO cinfo.dInt1: 27000 xAODTestReadDecor INFO cinfo.dInt1Base: 27001 xAODTestReadDecor INFO cinfo.dInt1: 27000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 27000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 27001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 27000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 27000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 27001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 27000 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #0 8 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #9, run #0 8 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 xAODTestReadDecor INFO cinfo.dInt1: 30000 xAODTestReadDecor INFO cinfo.dInt1Base: 30001 xAODTestReadDecor INFO cinfo.dInt1: 30000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 30000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 30001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 30000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 30000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 30001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 30000 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #0 9 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #10, run #0 9 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 xAODTestReadDecor INFO cinfo.dInt1: 33000 xAODTestReadDecor INFO cinfo.dInt1Base: 33001 xAODTestReadDecor INFO cinfo.dInt1: 33000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 33000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 33001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 33000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 33000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 33001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 33000 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #0 10 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #11, run #0 10 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 xAODTestReadDecor INFO cinfo.dInt1: 36000 xAODTestReadDecor INFO cinfo.dInt1Base: 36001 xAODTestReadDecor INFO cinfo.dInt1: 36000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 36000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 36001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 36000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 36000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 36001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 36000 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #0 11 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #12, run #0 11 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 xAODTestReadDecor INFO cinfo.dInt1: 39000 xAODTestReadDecor INFO cinfo.dInt1Base: 39001 xAODTestReadDecor INFO cinfo.dInt1: 39000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 39000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 39001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 39000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 39000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 39001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 39000 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #0 12 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #13, run #0 12 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 xAODTestReadDecor INFO cinfo.dInt1: 42000 xAODTestReadDecor INFO cinfo.dInt1Base: 42001 xAODTestReadDecor INFO cinfo.dInt1: 42000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 42000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 42001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 42000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 42000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 42001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 42000 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #0 13 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #14, run #0 13 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 xAODTestReadDecor INFO cinfo.dInt1: 45000 xAODTestReadDecor INFO cinfo.dInt1Base: 45001 xAODTestReadDecor INFO cinfo.dInt1: 45000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 45000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 45001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 45000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 45000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 45001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 45000 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #0 14 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #15, run #0 14 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 xAODTestReadDecor INFO cinfo.dInt1: 48000 xAODTestReadDecor INFO cinfo.dInt1Base: 48001 xAODTestReadDecor INFO cinfo.dInt1: 48000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 48000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 48001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 48000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 48000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 48001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 48000 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #0 15 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #16, run #0 15 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 xAODTestReadDecor INFO cinfo.dInt1: 51000 xAODTestReadDecor INFO cinfo.dInt1Base: 51001 xAODTestReadDecor INFO cinfo.dInt1: 51000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 51000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 51001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 51000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 51000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 51001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 51000 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #0 16 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #17, run #0 16 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 xAODTestReadDecor INFO cinfo.dInt1: 54000 xAODTestReadDecor INFO cinfo.dInt1Base: 54001 xAODTestReadDecor INFO cinfo.dInt1: 54000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 54000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 54001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 54000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 54000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 54001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 54000 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #0 17 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #18, run #0 17 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 xAODTestReadDecor INFO cinfo.dInt1: 57000 xAODTestReadDecor INFO cinfo.dInt1Base: 57001 xAODTestReadDecor INFO cinfo.dInt1: 57000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 57000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 57001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 57000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 57000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 57001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 57000 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #0 18 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 xAODTestReadDecor INFO cinfo.dInt1: 60000 xAODTestReadDecor INFO cinfo.dInt1Base: 60001 xAODTestReadDecor INFO cinfo.dInt1: 60000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 60000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 60001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 60000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 60000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 60001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 60000 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== xAODTestReadDecor INFO cvec.dInt1: 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 xAODTestReadDecor INFO cinfo.dInt1: 63000 xAODTestReadDecor INFO cinfo.dInt1Base: 63001 xAODTestReadDecor INFO cinfo.dInt1: 63000 -xAODTestReadDec... INFO scopy_cvec.dInt1: 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 63000 -xAODTestReadDec... INFO scopy_cinfo.dInt1Base: 63001 -xAODTestReadDec... INFO scopy_cinfo.dInt1: 63000 +xAODTe...ecorSCopy INFO scopy_cvec.dInt1: 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 63000 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1Base: 63001 +xAODTe...ecorSCopy INFO scopy_cinfo.dInt1: 63000 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully -AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1MT.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1MT.ref index e633af538979e28b14f20cae264a38e844a227f6..01f26305856f37cd3ddd9d69229e9f2da4112e1e 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1MT.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1MT.ref @@ -1,53 +1,22 @@ -Mon Oct 3 17:45:47 CEST 2022 -Preloading tcmalloc_minimal.so -Py:Athena INFO including file "AthenaCommon/Preparation.py" -Py:Athena INFO using release [WorkDir-23.0.7] [x86_64-centos7-gcc11-dbg] [atlas-work3/c3841a47532] -- built on [2022-10-03T1648] -Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO configuring AthenaHive with [1] concurrent threads and [1] concurrent events -Py:AlgScheduler INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 1 threads -Py:Athena INFO including file "AthenaCommon/Execution.py" -Py:Athena INFO including file "DataModelRunTests/xAODTestDecorHandle1MT_jo.py" -Py:Athena INFO including file "DataModelRunTests/xAODTestDecorHandle1_jo.py" -Py:Athena INFO including file "DataModelRunTests/commonTrailer.py" -Py:Athena INFO including file "DataModelRunTests/setCatalog.py" -Py:Athena INFO including file "AthenaCommon/runbatch.py" -Py:ConfigurableDb INFO Read module info for 5134 configurables from 31 genConfDb files -Py:ConfigurableDb INFO No duplicates have been found: that's good ! -MessageSvc INFO Activating in a separate thread -ApplicationMgr SUCCESS -==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v36r6) - running on lxplus782.cern.ch on Mon Oct 3 17:46:09 2022 -==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 3092 CLIDRegistry entries for module ALL -CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 14(Alarm clock) 6(Aborted) -AthenaHiveEventLoopMgr INFO Initializing AthenaHiveEventLoopMgr -ClassIDSvc 0 INFO getRegistryEntries: read 1273 CLIDRegistry entries for module ALL -ClassIDSvc 0 INFO getRegistryEntries: read 1606 CLIDRegistry entries for module ALL -ClassIDSvc 0 INFO getRegistryEntries: read 6088 CLIDRegistry entries for module ALL -xAODMaker::EventInfoCnvAlg 0 INFO Initializing xAODMaker::EventInfoCnvAlg -xAODMaker::EventInfoCnvAlg.EventInfoCnvTool 0 INFO Beam spot information not available -xAODMaker::EventInfoCnvAlg.EventInfoCnvTool 0 INFO Will not fill beam spot information into xAOD::EventInfo -ThreadPoolSvc 0 INFO no thread init tools attached -AvalancheSchedulerSvc 0 INFO Activating scheduler in a separate thread -AvalancheSchedulerSvc 0 INFO Found 15 algorithms -AvalancheSchedulerSvc 0 INFO Data Dependencies for Algorithms: +Athena...ntLoopMgr INFO Initializing AthenaHiveEventLoopMgr +EventInfoCnvAlg 0 INFO Initializing EventInfoCnvAlg +EventI...foCnvTool 0 INFO Beam spot information not available +EventI...foCnvTool 0 INFO Will not fill beam spot information into xAOD::EventInfo +ThreadPoolSvc 0 INFO no thread init tools attached +Avalan...edulerSvc 0 INFO Activating scheduler in a separate thread +Avalan...edulerSvc 0 INFO Found 15 algorithms +Avalan...edulerSvc 0 INFO Data Dependencies for Algorithms: BeginIncFiringAlg none IncidentProcAlg1 none - xAODMaker::EventInfoCnvAlg + SGInputLoader + none + EventInfoCnvAlg o INPUT ( 'EventInfo' , 'StoreGateSvc+McEventInfo' ) o OUTPUT ( 'SG::AuxElement' , 'StoreGateSvc+EventInfo' ) - o OUTPUT ( 'SG::AuxVectorBase' , 'StoreGateSvc+PileupEventInfo' ) o OUTPUT ( 'xAOD::EventInfo' , 'StoreGateSvc+EventInfo' ) - o OUTPUT ( 'xAOD::EventInfoContainer' , 'StoreGateSvc+PileupEventInfo' ) - SGInputLoader - none xAODTestWriteCVec o OUTPUT ( 'DMTest::CVec' , 'StoreGateSvc+cvec' ) o OUTPUT ( 'DMTest::CVec' , 'StoreGateSvc+cvec.dtest' ) @@ -111,236 +80,230 @@ AvalancheSchedulerSvc 0 INFO Data Depe none IncidentProcAlg3 none -AvalancheSchedulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm -AvalancheSchedulerSvc 0 INFO o ( 'EventInfo' , 'StoreGateSvc+McEventInfo' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODMaker::EventInfoCnvAlg -AvalancheSchedulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+scopy_cinfo.dInt1Base' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadDecorSCopy -PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules -PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully -AvalancheSchedulerSvc 0 INFO Concurrency level information: -AvalancheSchedulerSvc 0 INFO o Number of events in flight: 1 -AvalancheSchedulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 -AvalancheSchedulerSvc 0 INFO Task scheduling settings: -AvalancheSchedulerSvc 0 INFO o Avalanche generation mode: disabled -AvalancheSchedulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled -AvalancheSchedulerSvc 0 INFO o Scheduling of condition tasks: disabled -EventSelector 0 INFO Enter McEventSelector Initialization -AthenaHiveEventLoopMgr 0 INFO Setup EventSelector service EventSelector -ApplicationMgr 0 INFO Application Manager Initialized successfully -ApplicationMgr 0 INFO Application Manager Started successfully -AthenaHiveEventLoopMgr 0 INFO Starting loop on events -EventPersistencySvc 0 0 INFO Added successfully Conversion service:McCnvSvc -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== -ClassIDSvc 0 0 INFO getRegistryEntries: read 110 CLIDRegistry entries for module ALL -SGInputLoader 0 0 WARNING unable to find proxy for ( 'SG::AuxElement' , 'StoreGateSvc+scopy_cinfo' ) -xAODTestReadDecor 0 0 INFO cvec.dInt1: 801 802 803 804 805 806 807 808 809 810 -xAODTestReadDecor 0 0 INFO cinfo.dInt1: 6000 -xAODTestReadDecor 0 0 INFO cinfo.dInt1Base: 6001 -xAODTestReadDecor 0 0 INFO cinfo.dInt1: 6000 -xAODTestReadDecorSCopy 0 0 INFO scopy_cvec.dInt1: 801 802 803 804 805 806 807 808 809 810 -xAODTestReadDecorSCopy 0 0 INFO scopy_cinfo.dInt1: 6000 -xAODTestReadDecorSCopy 0 0 INFO scopy_cinfo.dInt1Base: 6001 -xAODTestReadDecorSCopy 0 0 INFO scopy_cinfo.dInt1: 6000 -AthenaHiveEventLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== -AthenaHiveEventLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== -xAODTestReadDecor 1 0 INFO cvec.dInt1: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 -xAODTestReadDecor 1 0 INFO cinfo.dInt1: 9000 -xAODTestReadDecor 1 0 INFO cinfo.dInt1Base: 9001 -xAODTestReadDecor 1 0 INFO cinfo.dInt1: 9000 -xAODTestReadDecorSCopy 1 0 INFO scopy_cvec.dInt1: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 -xAODTestReadDecorSCopy 1 0 INFO scopy_cinfo.dInt1: 9000 -xAODTestReadDecorSCopy 1 0 INFO scopy_cinfo.dInt1Base: 9001 -xAODTestReadDecorSCopy 1 0 INFO scopy_cinfo.dInt1: 9000 -AthenaHiveEventLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== -AthenaHiveEventLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== -xAODTestReadDecor 2 0 INFO cvec.dInt1: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 -xAODTestReadDecor 2 0 INFO cinfo.dInt1: 12000 -xAODTestReadDecor 2 0 INFO cinfo.dInt1Base: 12001 -xAODTestReadDecor 2 0 INFO cinfo.dInt1: 12000 -xAODTestReadDecorSCopy 2 0 INFO scopy_cvec.dInt1: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 -xAODTestReadDecorSCopy 2 0 INFO scopy_cinfo.dInt1: 12000 -xAODTestReadDecorSCopy 2 0 INFO scopy_cinfo.dInt1Base: 12001 -xAODTestReadDecorSCopy 2 0 INFO scopy_cinfo.dInt1: 12000 -AthenaHiveEventLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== -AthenaHiveEventLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== -xAODTestReadDecor 3 0 INFO cvec.dInt1: -xAODTestReadDecor 3 0 INFO cinfo.dInt1: 15000 -xAODTestReadDecor 3 0 INFO cinfo.dInt1Base: 15001 -xAODTestReadDecor 3 0 INFO cinfo.dInt1: 15000 -xAODTestReadDecorSCopy 3 0 INFO scopy_cvec.dInt1: -xAODTestReadDecorSCopy 3 0 INFO scopy_cinfo.dInt1: 15000 -xAODTestReadDecorSCopy 3 0 INFO scopy_cinfo.dInt1Base: 15001 -xAODTestReadDecorSCopy 3 0 INFO scopy_cinfo.dInt1: 15000 -AthenaHiveEventLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== -AthenaHiveEventLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== -xAODTestReadDecor 4 0 INFO cvec.dInt1: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 -xAODTestReadDecor 4 0 INFO cinfo.dInt1: 18000 -xAODTestReadDecor 4 0 INFO cinfo.dInt1Base: 18001 -xAODTestReadDecor 4 0 INFO cinfo.dInt1: 18000 -xAODTestReadDecorSCopy 4 0 INFO scopy_cvec.dInt1: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 -xAODTestReadDecorSCopy 4 0 INFO scopy_cinfo.dInt1: 18000 -xAODTestReadDecorSCopy 4 0 INFO scopy_cinfo.dInt1Base: 18001 -xAODTestReadDecorSCopy 4 0 INFO scopy_cinfo.dInt1: 18000 -AthenaHiveEventLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== -AthenaHiveEventLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== -xAODTestReadDecor 5 0 INFO cvec.dInt1: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 -xAODTestReadDecor 5 0 INFO cinfo.dInt1: 21000 -xAODTestReadDecor 5 0 INFO cinfo.dInt1Base: 21001 -xAODTestReadDecor 5 0 INFO cinfo.dInt1: 21000 -xAODTestReadDecorSCopy 5 0 INFO scopy_cvec.dInt1: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 -xAODTestReadDecorSCopy 5 0 INFO scopy_cinfo.dInt1: 21000 -xAODTestReadDecorSCopy 5 0 INFO scopy_cinfo.dInt1Base: 21001 -xAODTestReadDecorSCopy 5 0 INFO scopy_cinfo.dInt1: 21000 -AthenaHiveEventLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== -AthenaHiveEventLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== -xAODTestReadDecor 6 0 INFO cvec.dInt1: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 -xAODTestReadDecor 6 0 INFO cinfo.dInt1: 24000 -xAODTestReadDecor 6 0 INFO cinfo.dInt1Base: 24001 -xAODTestReadDecor 6 0 INFO cinfo.dInt1: 24000 -xAODTestReadDecorSCopy 6 0 INFO scopy_cvec.dInt1: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 -xAODTestReadDecorSCopy 6 0 INFO scopy_cinfo.dInt1: 24000 -xAODTestReadDecorSCopy 6 0 INFO scopy_cinfo.dInt1Base: 24001 -xAODTestReadDecorSCopy 6 0 INFO scopy_cinfo.dInt1: 24000 -AthenaHiveEventLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== -AthenaHiveEventLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== -xAODTestReadDecor 7 0 INFO cvec.dInt1: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 -xAODTestReadDecor 7 0 INFO cinfo.dInt1: 27000 -xAODTestReadDecor 7 0 INFO cinfo.dInt1Base: 27001 -xAODTestReadDecor 7 0 INFO cinfo.dInt1: 27000 -xAODTestReadDecorSCopy 7 0 INFO scopy_cvec.dInt1: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 -xAODTestReadDecorSCopy 7 0 INFO scopy_cinfo.dInt1: 27000 -xAODTestReadDecorSCopy 7 0 INFO scopy_cinfo.dInt1Base: 27001 -xAODTestReadDecorSCopy 7 0 INFO scopy_cinfo.dInt1: 27000 -AthenaHiveEventLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== -AthenaHiveEventLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== -xAODTestReadDecor 8 0 INFO cvec.dInt1: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 -xAODTestReadDecor 8 0 INFO cinfo.dInt1: 30000 -xAODTestReadDecor 8 0 INFO cinfo.dInt1Base: 30001 -xAODTestReadDecor 8 0 INFO cinfo.dInt1: 30000 -xAODTestReadDecorSCopy 8 0 INFO scopy_cvec.dInt1: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 -xAODTestReadDecorSCopy 8 0 INFO scopy_cinfo.dInt1: 30000 -xAODTestReadDecorSCopy 8 0 INFO scopy_cinfo.dInt1Base: 30001 -xAODTestReadDecorSCopy 8 0 INFO scopy_cinfo.dInt1: 30000 -AthenaHiveEventLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== -AthenaHiveEventLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== -xAODTestReadDecor 9 0 INFO cvec.dInt1: 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 -xAODTestReadDecor 9 0 INFO cinfo.dInt1: 33000 -xAODTestReadDecor 9 0 INFO cinfo.dInt1Base: 33001 -xAODTestReadDecor 9 0 INFO cinfo.dInt1: 33000 -xAODTestReadDecorSCopy 9 0 INFO scopy_cvec.dInt1: 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 -xAODTestReadDecorSCopy 9 0 INFO scopy_cinfo.dInt1: 33000 -xAODTestReadDecorSCopy 9 0 INFO scopy_cinfo.dInt1Base: 33001 -xAODTestReadDecorSCopy 9 0 INFO scopy_cinfo.dInt1: 33000 -AthenaHiveEventLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== -AthenaHiveEventLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== -xAODTestReadDecor 10 0 INFO cvec.dInt1: 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 -xAODTestReadDecor 10 0 INFO cinfo.dInt1: 36000 -xAODTestReadDecor 10 0 INFO cinfo.dInt1Base: 36001 -xAODTestReadDecor 10 0 INFO cinfo.dInt1: 36000 -xAODTestReadDecorSCopy 10 0 INFO scopy_cvec.dInt1: 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 -xAODTestReadDecorSCopy 10 0 INFO scopy_cinfo.dInt1: 36000 -xAODTestReadDecorSCopy 10 0 INFO scopy_cinfo.dInt1Base: 36001 -xAODTestReadDecorSCopy 10 0 INFO scopy_cinfo.dInt1: 36000 -AthenaHiveEventLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== -AthenaHiveEventLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== -xAODTestReadDecor 11 0 INFO cvec.dInt1: 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 -xAODTestReadDecor 11 0 INFO cinfo.dInt1: 39000 -xAODTestReadDecor 11 0 INFO cinfo.dInt1Base: 39001 -xAODTestReadDecor 11 0 INFO cinfo.dInt1: 39000 -xAODTestReadDecorSCopy 11 0 INFO scopy_cvec.dInt1: 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 -xAODTestReadDecorSCopy 11 0 INFO scopy_cinfo.dInt1: 39000 -xAODTestReadDecorSCopy 11 0 INFO scopy_cinfo.dInt1Base: 39001 -xAODTestReadDecorSCopy 11 0 INFO scopy_cinfo.dInt1: 39000 -AthenaHiveEventLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== -AthenaHiveEventLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== -xAODTestReadDecor 12 0 INFO cvec.dInt1: 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 -xAODTestReadDecor 12 0 INFO cinfo.dInt1: 42000 -xAODTestReadDecor 12 0 INFO cinfo.dInt1Base: 42001 -xAODTestReadDecor 12 0 INFO cinfo.dInt1: 42000 -xAODTestReadDecorSCopy 12 0 INFO scopy_cvec.dInt1: 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 -xAODTestReadDecorSCopy 12 0 INFO scopy_cinfo.dInt1: 42000 -xAODTestReadDecorSCopy 12 0 INFO scopy_cinfo.dInt1Base: 42001 -xAODTestReadDecorSCopy 12 0 INFO scopy_cinfo.dInt1: 42000 -AthenaHiveEventLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== -AthenaHiveEventLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== -xAODTestReadDecor 13 0 INFO cvec.dInt1: 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 -xAODTestReadDecor 13 0 INFO cinfo.dInt1: 45000 -xAODTestReadDecor 13 0 INFO cinfo.dInt1Base: 45001 -xAODTestReadDecor 13 0 INFO cinfo.dInt1: 45000 -xAODTestReadDecorSCopy 13 0 INFO scopy_cvec.dInt1: 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 -xAODTestReadDecorSCopy 13 0 INFO scopy_cinfo.dInt1: 45000 -xAODTestReadDecorSCopy 13 0 INFO scopy_cinfo.dInt1Base: 45001 -xAODTestReadDecorSCopy 13 0 INFO scopy_cinfo.dInt1: 45000 -AthenaHiveEventLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== -AthenaHiveEventLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== -xAODTestReadDecor 14 0 INFO cvec.dInt1: 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 -xAODTestReadDecor 14 0 INFO cinfo.dInt1: 48000 -xAODTestReadDecor 14 0 INFO cinfo.dInt1Base: 48001 -xAODTestReadDecor 14 0 INFO cinfo.dInt1: 48000 -xAODTestReadDecorSCopy 14 0 INFO scopy_cvec.dInt1: 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 -xAODTestReadDecorSCopy 14 0 INFO scopy_cinfo.dInt1: 48000 -xAODTestReadDecorSCopy 14 0 INFO scopy_cinfo.dInt1Base: 48001 -xAODTestReadDecorSCopy 14 0 INFO scopy_cinfo.dInt1: 48000 -AthenaHiveEventLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== -AthenaHiveEventLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== -xAODTestReadDecor 15 0 INFO cvec.dInt1: 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 -xAODTestReadDecor 15 0 INFO cinfo.dInt1: 51000 -xAODTestReadDecor 15 0 INFO cinfo.dInt1Base: 51001 -xAODTestReadDecor 15 0 INFO cinfo.dInt1: 51000 -xAODTestReadDecorSCopy 15 0 INFO scopy_cvec.dInt1: 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 -xAODTestReadDecorSCopy 15 0 INFO scopy_cinfo.dInt1: 51000 -xAODTestReadDecorSCopy 15 0 INFO scopy_cinfo.dInt1Base: 51001 -xAODTestReadDecorSCopy 15 0 INFO scopy_cinfo.dInt1: 51000 -AthenaHiveEventLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== -AthenaHiveEventLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== -xAODTestReadDecor 16 0 INFO cvec.dInt1: 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 -xAODTestReadDecor 16 0 INFO cinfo.dInt1: 54000 -xAODTestReadDecor 16 0 INFO cinfo.dInt1Base: 54001 -xAODTestReadDecor 16 0 INFO cinfo.dInt1: 54000 -xAODTestReadDecorSCopy 16 0 INFO scopy_cvec.dInt1: 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 -xAODTestReadDecorSCopy 16 0 INFO scopy_cinfo.dInt1: 54000 -xAODTestReadDecorSCopy 16 0 INFO scopy_cinfo.dInt1Base: 54001 -xAODTestReadDecorSCopy 16 0 INFO scopy_cinfo.dInt1: 54000 -AthenaHiveEventLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== -AthenaHiveEventLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== -xAODTestReadDecor 17 0 INFO cvec.dInt1: 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 -xAODTestReadDecor 17 0 INFO cinfo.dInt1: 57000 -xAODTestReadDecor 17 0 INFO cinfo.dInt1Base: 57001 -xAODTestReadDecor 17 0 INFO cinfo.dInt1: 57000 -xAODTestReadDecorSCopy 17 0 INFO scopy_cvec.dInt1: 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 -xAODTestReadDecorSCopy 17 0 INFO scopy_cinfo.dInt1: 57000 -xAODTestReadDecorSCopy 17 0 INFO scopy_cinfo.dInt1Base: 57001 -xAODTestReadDecorSCopy 17 0 INFO scopy_cinfo.dInt1: 57000 -AthenaHiveEventLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== -AthenaHiveEventLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== -xAODTestReadDecor 18 0 INFO cvec.dInt1: 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 -xAODTestReadDecor 18 0 INFO cinfo.dInt1: 60000 -xAODTestReadDecor 18 0 INFO cinfo.dInt1Base: 60001 -xAODTestReadDecor 18 0 INFO cinfo.dInt1: 60000 -xAODTestReadDecorSCopy 18 0 INFO scopy_cvec.dInt1: 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 -xAODTestReadDecorSCopy 18 0 INFO scopy_cinfo.dInt1: 60000 -xAODTestReadDecorSCopy 18 0 INFO scopy_cinfo.dInt1Base: 60001 -xAODTestReadDecorSCopy 18 0 INFO scopy_cinfo.dInt1: 60000 -AthenaHiveEventLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== -AthenaHiveEventLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== -xAODTestReadDecor 19 0 INFO cvec.dInt1: 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 -xAODTestReadDecor 19 0 INFO cinfo.dInt1: 63000 -xAODTestReadDecor 19 0 INFO cinfo.dInt1Base: 63001 -xAODTestReadDecor 19 0 INFO cinfo.dInt1: 63000 -xAODTestReadDecorSCopy 19 0 INFO scopy_cvec.dInt1: 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 -xAODTestReadDecorSCopy 19 0 INFO scopy_cinfo.dInt1: 63000 -xAODTestReadDecorSCopy 19 0 INFO scopy_cinfo.dInt1Base: 63001 -xAODTestReadDecorSCopy 19 0 INFO scopy_cinfo.dInt1: 63000 -AthenaHiveEventLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== -AthenaHiveEventLoopMgr 19 0 INFO ---> Loop Finished (seconds): 0.25345 -ApplicationMgr INFO Application Manager Stopped successfully -SGInputLoader INFO Finalizing SGInputLoader... -AvalancheSchedulerSvc INFO Joining Scheduler thread -EventDataSvc INFO Finalizing EventDataSvc -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ApplicationMgr INFO Application Manager Finalized successfully -ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +Avalan...edulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm +Avalan...edulerSvc 0 INFO o ( 'EventInfo' , 'StoreGateSvc+McEventInfo' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * EventInfoCnvAlg +Avalan...edulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+scopy_cinfo.dInt1Base' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadDecorSCopy +PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules +PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully +Avalan...edulerSvc 0 INFO Concurrency level information: +Avalan...edulerSvc 0 INFO o Number of events in flight: 1 +Avalan...edulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 +Avalan...edulerSvc 0 INFO Task scheduling settings: +Avalan...edulerSvc 0 INFO o Avalanche generation mode: disabled +Avalan...edulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled +Avalan...edulerSvc 0 INFO o Scheduling of condition tasks: disabled +EventSelector 0 INFO Enter McEventSelector Initialization +Athena...ntLoopMgr 0 INFO Setup EventSelector service EventSelector +ApplicationMgr 0 INFO Application Manager Initialized successfully +ApplicationMgr 0 INFO Application Manager Started successfully +Athena...ntLoopMgr 0 INFO Starting loop on events +EventP...stencySvc 0 0 INFO Added successfully Conversion service:McCnvSvc +Athena...ntLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== +Athena...ntLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== +SGInputLoader 0 0 WARNING unable to find proxy for ( 'SG::AuxElement' , 'StoreGateSvc+scopy_cinfo' ) +xAODTestReadDecor 0 0 INFO cvec.dInt1: 801 802 803 804 805 806 807 808 809 810 +xAODTestReadDecor 0 0 INFO cinfo.dInt1: 6000 +xAODTestReadDecor 0 0 INFO cinfo.dInt1Base: 6001 +xAODTestReadDecor 0 0 INFO cinfo.dInt1: 6000 +xAODTe...ecorSCopy 0 0 INFO scopy_cvec.dInt1: 801 802 803 804 805 806 807 808 809 810 +xAODTe...ecorSCopy 0 0 INFO scopy_cinfo.dInt1: 6000 +xAODTe...ecorSCopy 0 0 INFO scopy_cinfo.dInt1Base: 6001 +xAODTe...ecorSCopy 0 0 INFO scopy_cinfo.dInt1: 6000 +Athena...ntLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== +Athena...ntLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== +xAODTestReadDecor 1 0 INFO cvec.dInt1: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 +xAODTestReadDecor 1 0 INFO cinfo.dInt1: 9000 +xAODTestReadDecor 1 0 INFO cinfo.dInt1Base: 9001 +xAODTestReadDecor 1 0 INFO cinfo.dInt1: 9000 +xAODTe...ecorSCopy 1 0 INFO scopy_cvec.dInt1: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 +xAODTe...ecorSCopy 1 0 INFO scopy_cinfo.dInt1: 9000 +xAODTe...ecorSCopy 1 0 INFO scopy_cinfo.dInt1Base: 9001 +xAODTe...ecorSCopy 1 0 INFO scopy_cinfo.dInt1: 9000 +Athena...ntLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== +Athena...ntLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== +xAODTestReadDecor 2 0 INFO cvec.dInt1: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 +xAODTestReadDecor 2 0 INFO cinfo.dInt1: 12000 +xAODTestReadDecor 2 0 INFO cinfo.dInt1Base: 12001 +xAODTestReadDecor 2 0 INFO cinfo.dInt1: 12000 +xAODTe...ecorSCopy 2 0 INFO scopy_cvec.dInt1: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 +xAODTe...ecorSCopy 2 0 INFO scopy_cinfo.dInt1: 12000 +xAODTe...ecorSCopy 2 0 INFO scopy_cinfo.dInt1Base: 12001 +xAODTe...ecorSCopy 2 0 INFO scopy_cinfo.dInt1: 12000 +Athena...ntLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== +Athena...ntLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== +xAODTestReadDecor 3 0 INFO cvec.dInt1: +xAODTestReadDecor 3 0 INFO cinfo.dInt1: 15000 +xAODTestReadDecor 3 0 INFO cinfo.dInt1Base: 15001 +xAODTestReadDecor 3 0 INFO cinfo.dInt1: 15000 +xAODTe...ecorSCopy 3 0 INFO scopy_cvec.dInt1: +xAODTe...ecorSCopy 3 0 INFO scopy_cinfo.dInt1: 15000 +xAODTe...ecorSCopy 3 0 INFO scopy_cinfo.dInt1Base: 15001 +xAODTe...ecorSCopy 3 0 INFO scopy_cinfo.dInt1: 15000 +Athena...ntLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== +Athena...ntLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== +xAODTestReadDecor 4 0 INFO cvec.dInt1: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 +xAODTestReadDecor 4 0 INFO cinfo.dInt1: 18000 +xAODTestReadDecor 4 0 INFO cinfo.dInt1Base: 18001 +xAODTestReadDecor 4 0 INFO cinfo.dInt1: 18000 +xAODTe...ecorSCopy 4 0 INFO scopy_cvec.dInt1: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 +xAODTe...ecorSCopy 4 0 INFO scopy_cinfo.dInt1: 18000 +xAODTe...ecorSCopy 4 0 INFO scopy_cinfo.dInt1Base: 18001 +xAODTe...ecorSCopy 4 0 INFO scopy_cinfo.dInt1: 18000 +Athena...ntLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== +Athena...ntLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== +xAODTestReadDecor 5 0 INFO cvec.dInt1: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 +xAODTestReadDecor 5 0 INFO cinfo.dInt1: 21000 +xAODTestReadDecor 5 0 INFO cinfo.dInt1Base: 21001 +xAODTestReadDecor 5 0 INFO cinfo.dInt1: 21000 +xAODTe...ecorSCopy 5 0 INFO scopy_cvec.dInt1: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 +xAODTe...ecorSCopy 5 0 INFO scopy_cinfo.dInt1: 21000 +xAODTe...ecorSCopy 5 0 INFO scopy_cinfo.dInt1Base: 21001 +xAODTe...ecorSCopy 5 0 INFO scopy_cinfo.dInt1: 21000 +Athena...ntLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== +Athena...ntLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== +xAODTestReadDecor 6 0 INFO cvec.dInt1: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 +xAODTestReadDecor 6 0 INFO cinfo.dInt1: 24000 +xAODTestReadDecor 6 0 INFO cinfo.dInt1Base: 24001 +xAODTestReadDecor 6 0 INFO cinfo.dInt1: 24000 +xAODTe...ecorSCopy 6 0 INFO scopy_cvec.dInt1: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 +xAODTe...ecorSCopy 6 0 INFO scopy_cinfo.dInt1: 24000 +xAODTe...ecorSCopy 6 0 INFO scopy_cinfo.dInt1Base: 24001 +xAODTe...ecorSCopy 6 0 INFO scopy_cinfo.dInt1: 24000 +Athena...ntLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== +Athena...ntLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== +xAODTestReadDecor 7 0 INFO cvec.dInt1: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 +xAODTestReadDecor 7 0 INFO cinfo.dInt1: 27000 +xAODTestReadDecor 7 0 INFO cinfo.dInt1Base: 27001 +xAODTestReadDecor 7 0 INFO cinfo.dInt1: 27000 +xAODTe...ecorSCopy 7 0 INFO scopy_cvec.dInt1: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 +xAODTe...ecorSCopy 7 0 INFO scopy_cinfo.dInt1: 27000 +xAODTe...ecorSCopy 7 0 INFO scopy_cinfo.dInt1Base: 27001 +xAODTe...ecorSCopy 7 0 INFO scopy_cinfo.dInt1: 27000 +Athena...ntLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== +Athena...ntLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== +xAODTestReadDecor 8 0 INFO cvec.dInt1: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 +xAODTestReadDecor 8 0 INFO cinfo.dInt1: 30000 +xAODTestReadDecor 8 0 INFO cinfo.dInt1Base: 30001 +xAODTestReadDecor 8 0 INFO cinfo.dInt1: 30000 +xAODTe...ecorSCopy 8 0 INFO scopy_cvec.dInt1: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 +xAODTe...ecorSCopy 8 0 INFO scopy_cinfo.dInt1: 30000 +xAODTe...ecorSCopy 8 0 INFO scopy_cinfo.dInt1Base: 30001 +xAODTe...ecorSCopy 8 0 INFO scopy_cinfo.dInt1: 30000 +Athena...ntLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== +Athena...ntLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== +xAODTestReadDecor 9 0 INFO cvec.dInt1: 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 +xAODTestReadDecor 9 0 INFO cinfo.dInt1: 33000 +xAODTestReadDecor 9 0 INFO cinfo.dInt1Base: 33001 +xAODTestReadDecor 9 0 INFO cinfo.dInt1: 33000 +xAODTe...ecorSCopy 9 0 INFO scopy_cvec.dInt1: 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 +xAODTe...ecorSCopy 9 0 INFO scopy_cinfo.dInt1: 33000 +xAODTe...ecorSCopy 9 0 INFO scopy_cinfo.dInt1Base: 33001 +xAODTe...ecorSCopy 9 0 INFO scopy_cinfo.dInt1: 33000 +Athena...ntLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== +Athena...ntLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== +xAODTestReadDecor 10 0 INFO cvec.dInt1: 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 +xAODTestReadDecor 10 0 INFO cinfo.dInt1: 36000 +xAODTestReadDecor 10 0 INFO cinfo.dInt1Base: 36001 +xAODTestReadDecor 10 0 INFO cinfo.dInt1: 36000 +xAODTe...ecorSCopy 10 0 INFO scopy_cvec.dInt1: 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 +xAODTe...ecorSCopy 10 0 INFO scopy_cinfo.dInt1: 36000 +xAODTe...ecorSCopy 10 0 INFO scopy_cinfo.dInt1Base: 36001 +xAODTe...ecorSCopy 10 0 INFO scopy_cinfo.dInt1: 36000 +Athena...ntLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== +Athena...ntLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== +xAODTestReadDecor 11 0 INFO cvec.dInt1: 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 +xAODTestReadDecor 11 0 INFO cinfo.dInt1: 39000 +xAODTestReadDecor 11 0 INFO cinfo.dInt1Base: 39001 +xAODTestReadDecor 11 0 INFO cinfo.dInt1: 39000 +xAODTe...ecorSCopy 11 0 INFO scopy_cvec.dInt1: 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 +xAODTe...ecorSCopy 11 0 INFO scopy_cinfo.dInt1: 39000 +xAODTe...ecorSCopy 11 0 INFO scopy_cinfo.dInt1Base: 39001 +xAODTe...ecorSCopy 11 0 INFO scopy_cinfo.dInt1: 39000 +Athena...ntLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== +Athena...ntLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== +xAODTestReadDecor 12 0 INFO cvec.dInt1: 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 +xAODTestReadDecor 12 0 INFO cinfo.dInt1: 42000 +xAODTestReadDecor 12 0 INFO cinfo.dInt1Base: 42001 +xAODTestReadDecor 12 0 INFO cinfo.dInt1: 42000 +xAODTe...ecorSCopy 12 0 INFO scopy_cvec.dInt1: 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 +xAODTe...ecorSCopy 12 0 INFO scopy_cinfo.dInt1: 42000 +xAODTe...ecorSCopy 12 0 INFO scopy_cinfo.dInt1Base: 42001 +xAODTe...ecorSCopy 12 0 INFO scopy_cinfo.dInt1: 42000 +Athena...ntLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== +Athena...ntLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== +xAODTestReadDecor 13 0 INFO cvec.dInt1: 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 +xAODTestReadDecor 13 0 INFO cinfo.dInt1: 45000 +xAODTestReadDecor 13 0 INFO cinfo.dInt1Base: 45001 +xAODTestReadDecor 13 0 INFO cinfo.dInt1: 45000 +xAODTe...ecorSCopy 13 0 INFO scopy_cvec.dInt1: 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 +xAODTe...ecorSCopy 13 0 INFO scopy_cinfo.dInt1: 45000 +xAODTe...ecorSCopy 13 0 INFO scopy_cinfo.dInt1Base: 45001 +xAODTe...ecorSCopy 13 0 INFO scopy_cinfo.dInt1: 45000 +Athena...ntLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== +Athena...ntLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== +xAODTestReadDecor 14 0 INFO cvec.dInt1: 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 +xAODTestReadDecor 14 0 INFO cinfo.dInt1: 48000 +xAODTestReadDecor 14 0 INFO cinfo.dInt1Base: 48001 +xAODTestReadDecor 14 0 INFO cinfo.dInt1: 48000 +xAODTe...ecorSCopy 14 0 INFO scopy_cvec.dInt1: 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 +xAODTe...ecorSCopy 14 0 INFO scopy_cinfo.dInt1: 48000 +xAODTe...ecorSCopy 14 0 INFO scopy_cinfo.dInt1Base: 48001 +xAODTe...ecorSCopy 14 0 INFO scopy_cinfo.dInt1: 48000 +Athena...ntLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== +Athena...ntLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== +xAODTestReadDecor 15 0 INFO cvec.dInt1: 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 +xAODTestReadDecor 15 0 INFO cinfo.dInt1: 51000 +xAODTestReadDecor 15 0 INFO cinfo.dInt1Base: 51001 +xAODTestReadDecor 15 0 INFO cinfo.dInt1: 51000 +xAODTe...ecorSCopy 15 0 INFO scopy_cvec.dInt1: 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 +xAODTe...ecorSCopy 15 0 INFO scopy_cinfo.dInt1: 51000 +xAODTe...ecorSCopy 15 0 INFO scopy_cinfo.dInt1Base: 51001 +xAODTe...ecorSCopy 15 0 INFO scopy_cinfo.dInt1: 51000 +Athena...ntLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== +Athena...ntLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== +xAODTestReadDecor 16 0 INFO cvec.dInt1: 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 +xAODTestReadDecor 16 0 INFO cinfo.dInt1: 54000 +xAODTestReadDecor 16 0 INFO cinfo.dInt1Base: 54001 +xAODTestReadDecor 16 0 INFO cinfo.dInt1: 54000 +xAODTe...ecorSCopy 16 0 INFO scopy_cvec.dInt1: 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 +xAODTe...ecorSCopy 16 0 INFO scopy_cinfo.dInt1: 54000 +xAODTe...ecorSCopy 16 0 INFO scopy_cinfo.dInt1Base: 54001 +xAODTe...ecorSCopy 16 0 INFO scopy_cinfo.dInt1: 54000 +Athena...ntLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== +Athena...ntLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== +xAODTestReadDecor 17 0 INFO cvec.dInt1: 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 +xAODTestReadDecor 17 0 INFO cinfo.dInt1: 57000 +xAODTestReadDecor 17 0 INFO cinfo.dInt1Base: 57001 +xAODTestReadDecor 17 0 INFO cinfo.dInt1: 57000 +xAODTe...ecorSCopy 17 0 INFO scopy_cvec.dInt1: 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 +xAODTe...ecorSCopy 17 0 INFO scopy_cinfo.dInt1: 57000 +xAODTe...ecorSCopy 17 0 INFO scopy_cinfo.dInt1Base: 57001 +xAODTe...ecorSCopy 17 0 INFO scopy_cinfo.dInt1: 57000 +Athena...ntLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== +Athena...ntLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== +xAODTestReadDecor 18 0 INFO cvec.dInt1: 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 +xAODTestReadDecor 18 0 INFO cinfo.dInt1: 60000 +xAODTestReadDecor 18 0 INFO cinfo.dInt1Base: 60001 +xAODTestReadDecor 18 0 INFO cinfo.dInt1: 60000 +xAODTe...ecorSCopy 18 0 INFO scopy_cvec.dInt1: 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 +xAODTe...ecorSCopy 18 0 INFO scopy_cinfo.dInt1: 60000 +xAODTe...ecorSCopy 18 0 INFO scopy_cinfo.dInt1Base: 60001 +xAODTe...ecorSCopy 18 0 INFO scopy_cinfo.dInt1: 60000 +Athena...ntLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== +Athena...ntLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== +xAODTestReadDecor 19 0 INFO cvec.dInt1: 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 +xAODTestReadDecor 19 0 INFO cinfo.dInt1: 63000 +xAODTestReadDecor 19 0 INFO cinfo.dInt1Base: 63001 +xAODTestReadDecor 19 0 INFO cinfo.dInt1: 63000 +xAODTe...ecorSCopy 19 0 INFO scopy_cvec.dInt1: 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 +xAODTe...ecorSCopy 19 0 INFO scopy_cinfo.dInt1: 63000 +xAODTe...ecorSCopy 19 0 INFO scopy_cinfo.dInt1Base: 63001 +xAODTe...ecorSCopy 19 0 INFO scopy_cinfo.dInt1: 63000 +Athena...ntLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== +ApplicationMgr INFO Application Manager Stopped successfully +ToolSvc INFO Removing all tools created by ToolSvc +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1MT_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1MT_jo.py deleted file mode 100644 index 03b067979b005cc28c9c174af8a013c9db02ed8b..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1MT_jo.py +++ /dev/null @@ -1,10 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODTestDecorHandle1MT_jo.py -# Author: snyder@bnl.gov -# Date: Apr 2017 -# Purpose: Test decoration handles and hive. -# - -include ('DataModelRunTests/xAODTestDecorHandle1_jo.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1_jo.py deleted file mode 100644 index 32b90501e9bd4eb49230df7706faa54bf3cfede7..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle1_jo.py +++ /dev/null @@ -1,60 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODTestDecorHandle1_jo.py -# Author: snyder@bnl.gov -# Date: Apr 2017 -# Purpose: Test decoration handles and hive. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixGeneratorJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- - -from AthenaCommon.ConcurrencyFlags import jobproperties as jp -nThreads = jp.ConcurrencyFlags.NumThreads() -if nThreads >= 1: - from AthenaCommon.AlgScheduler import AlgScheduler - AlgScheduler.ShowDataDependencies (True) - - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestWriteCVec, \ - DMTest__xAODTestWriteCInfo, \ - DMTest__xAODTestDecor, \ - DMTest__xAODTestReadDecor, \ - DMTest__xAODTestShallowCopy -from DataModelTestDataWrite.DataModelTestDataWriteConf import \ - DMTest__xAODTestWrite -topSequence += DMTest__xAODTestWriteCVec ("xAODTestWriteCVec") -topSequence += DMTest__xAODTestWriteCInfo ("xAODTestWriteCInfo") -topSequence += DMTest__xAODTestWrite ("xAODTestWrite") -topSequence += DMTest__xAODTestDecor ("xAODTestDecor") -topSequence += DMTest__xAODTestReadDecor ("xAODTestReadDecor") - -topSequence += DMTest__xAODTestShallowCopy ("xAODTestShallowCopy", - CVecWDReadKey = '', - CTrigReadKey = '') -topSequence += DMTest__xAODTestReadDecor ("xAODTestReadDecorSCopy", - ReadPrefix = "scopy_") - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2.ref index cd2db00d026b5921bfb317dd40077d984bb39153..1e243a683bbd082fc94e3d2e8a99f3a39b809095 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2.ref @@ -1,11 +1,7 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... -MetaDataSvc INFO Initializing MetaDataSvc EventSelector INFO EventSelection with query AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully @@ -132,10 +128,6 @@ xAODTestReadDecor INFO cinfo.dInt1Base: 63001 xAODTestReadDecor INFO cinfo.dInt1: 63000 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestDecorHandle2_catalog.xml' does not exist. New file created. -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2MT.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2MT.ref index e407301f85806875d99dfa8686598bdc0f37fcb4..22094397c3661fba8908a2756efa7bd8845e55eb 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2MT.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2MT.ref @@ -1,19 +1,11 @@ -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO configuring AthenaHive with [1] concurrent threads and [1] concurrent events -Py:AlgScheduler INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 1 threads -MessageSvc INFO Activating in a separate thread ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -AthenaHiveEventLoopMgr INFO Initializing AthenaHiveEventLoopMgr -MetaDataSvc INFO Initializing MetaDataSvc -EventSelector INFO EventSelection with query -PyComponentMgr 0 INFO Initializing PyComponentMgr... -LoadReadDicts 0 INFO Initializing LoadReadDicts... -ThreadPoolSvc 0 INFO no thread init tools attached -AvalancheSchedulerSvc 0 INFO Activating scheduler in a separate thread -AvalancheSchedulerSvc 0 INFO Found 9 algorithms -AvalancheSchedulerSvc 0 INFO Data Dependencies for Algorithms: +Athena...ntLoopMgr INFO Initializing AthenaHiveEventLoopMgr +PyComponentMgr 0 INFO Initializing PyComponentMgr... +LoadReadDicts 0 INFO Initializing LoadReadDicts... +ThreadPoolSvc 0 INFO no thread init tools attached +Avalan...edulerSvc 0 INFO Activating scheduler in a separate thread +Avalan...edulerSvc 0 INFO Found 9 algorithms +Avalan...edulerSvc 0 INFO Data Dependencies for Algorithms: BeginIncFiringAlg none IncidentProcAlg1 @@ -34,152 +26,149 @@ AvalancheSchedulerSvc 0 INFO Data Depe none IncidentProcAlg3 none -AvalancheSchedulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+cvec.dInt1' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadDecor -AvalancheSchedulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+cinfo.dInt1' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadDecor -AvalancheSchedulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+cinfo.dInt1Base' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadDecor -PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules -PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully -AvalancheSchedulerSvc 0 INFO Concurrency level information: -AvalancheSchedulerSvc 0 INFO o Number of events in flight: 1 -AvalancheSchedulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 -AvalancheSchedulerSvc 0 INFO Task scheduling settings: -AvalancheSchedulerSvc 0 INFO o Avalanche generation mode: disabled -AvalancheSchedulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled -AvalancheSchedulerSvc 0 INFO o Scheduling of condition tasks: disabled -AthenaHiveEventLoopMgr 0 INFO Setup EventSelector service EventSelector -ApplicationMgr 0 INFO Application Manager Initialized successfully -ApplicationMgr 0 INFO Application Manager Started successfully -AthenaHiveEventLoopMgr 0 INFO Starting loop on events -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== -xAODTestReadDecor 0 0 INFO cvec.dInt1: 801 802 803 804 805 806 807 808 809 810 -xAODTestReadDecor 0 0 INFO cinfo.dInt1: 6000 -xAODTestReadDecor 0 0 INFO cinfo.dInt1Base: 6001 -xAODTestReadDecor 0 0 INFO cinfo.dInt1: 6000 -AthenaHiveEventLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== -AthenaHiveEventLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== -xAODTestReadDecor 1 0 INFO cvec.dInt1: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 -xAODTestReadDecor 1 0 INFO cinfo.dInt1: 9000 -xAODTestReadDecor 1 0 INFO cinfo.dInt1Base: 9001 -xAODTestReadDecor 1 0 INFO cinfo.dInt1: 9000 -AthenaHiveEventLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== -AthenaHiveEventLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== -xAODTestReadDecor 2 0 INFO cvec.dInt1: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 -xAODTestReadDecor 2 0 INFO cinfo.dInt1: 12000 -xAODTestReadDecor 2 0 INFO cinfo.dInt1Base: 12001 -xAODTestReadDecor 2 0 INFO cinfo.dInt1: 12000 -AthenaHiveEventLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== -AthenaHiveEventLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== -xAODTestReadDecor 3 0 INFO cvec.dInt1: -xAODTestReadDecor 3 0 INFO cinfo.dInt1: 15000 -xAODTestReadDecor 3 0 INFO cinfo.dInt1Base: 15001 -xAODTestReadDecor 3 0 INFO cinfo.dInt1: 15000 -AthenaHiveEventLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== -AthenaHiveEventLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== -xAODTestReadDecor 4 0 INFO cvec.dInt1: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 -xAODTestReadDecor 4 0 INFO cinfo.dInt1: 18000 -xAODTestReadDecor 4 0 INFO cinfo.dInt1Base: 18001 -xAODTestReadDecor 4 0 INFO cinfo.dInt1: 18000 -AthenaHiveEventLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== -AthenaHiveEventLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== -xAODTestReadDecor 5 0 INFO cvec.dInt1: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 -xAODTestReadDecor 5 0 INFO cinfo.dInt1: 21000 -xAODTestReadDecor 5 0 INFO cinfo.dInt1Base: 21001 -xAODTestReadDecor 5 0 INFO cinfo.dInt1: 21000 -AthenaHiveEventLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== -AthenaHiveEventLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== -xAODTestReadDecor 6 0 INFO cvec.dInt1: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 -xAODTestReadDecor 6 0 INFO cinfo.dInt1: 24000 -xAODTestReadDecor 6 0 INFO cinfo.dInt1Base: 24001 -xAODTestReadDecor 6 0 INFO cinfo.dInt1: 24000 -AthenaHiveEventLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== -AthenaHiveEventLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== -xAODTestReadDecor 7 0 INFO cvec.dInt1: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 -xAODTestReadDecor 7 0 INFO cinfo.dInt1: 27000 -xAODTestReadDecor 7 0 INFO cinfo.dInt1Base: 27001 -xAODTestReadDecor 7 0 INFO cinfo.dInt1: 27000 -AthenaHiveEventLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== -AthenaHiveEventLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== -xAODTestReadDecor 8 0 INFO cvec.dInt1: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 -xAODTestReadDecor 8 0 INFO cinfo.dInt1: 30000 -xAODTestReadDecor 8 0 INFO cinfo.dInt1Base: 30001 -xAODTestReadDecor 8 0 INFO cinfo.dInt1: 30000 -AthenaHiveEventLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== -AthenaHiveEventLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== -xAODTestReadDecor 9 0 INFO cvec.dInt1: 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 -xAODTestReadDecor 9 0 INFO cinfo.dInt1: 33000 -xAODTestReadDecor 9 0 INFO cinfo.dInt1Base: 33001 -xAODTestReadDecor 9 0 INFO cinfo.dInt1: 33000 -AthenaHiveEventLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== -AthenaHiveEventLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== -xAODTestReadDecor 10 0 INFO cvec.dInt1: 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 -xAODTestReadDecor 10 0 INFO cinfo.dInt1: 36000 -xAODTestReadDecor 10 0 INFO cinfo.dInt1Base: 36001 -xAODTestReadDecor 10 0 INFO cinfo.dInt1: 36000 -AthenaHiveEventLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== -AthenaHiveEventLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== -xAODTestReadDecor 11 0 INFO cvec.dInt1: 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 -xAODTestReadDecor 11 0 INFO cinfo.dInt1: 39000 -xAODTestReadDecor 11 0 INFO cinfo.dInt1Base: 39001 -xAODTestReadDecor 11 0 INFO cinfo.dInt1: 39000 -AthenaHiveEventLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== -AthenaHiveEventLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== -xAODTestReadDecor 12 0 INFO cvec.dInt1: 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 -xAODTestReadDecor 12 0 INFO cinfo.dInt1: 42000 -xAODTestReadDecor 12 0 INFO cinfo.dInt1Base: 42001 -xAODTestReadDecor 12 0 INFO cinfo.dInt1: 42000 -AthenaHiveEventLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== -AthenaHiveEventLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== -xAODTestReadDecor 13 0 INFO cvec.dInt1: 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 -xAODTestReadDecor 13 0 INFO cinfo.dInt1: 45000 -xAODTestReadDecor 13 0 INFO cinfo.dInt1Base: 45001 -xAODTestReadDecor 13 0 INFO cinfo.dInt1: 45000 -AthenaHiveEventLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== -AthenaHiveEventLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== -xAODTestReadDecor 14 0 INFO cvec.dInt1: 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 -xAODTestReadDecor 14 0 INFO cinfo.dInt1: 48000 -xAODTestReadDecor 14 0 INFO cinfo.dInt1Base: 48001 -xAODTestReadDecor 14 0 INFO cinfo.dInt1: 48000 -AthenaHiveEventLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== -AthenaHiveEventLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== -xAODTestReadDecor 15 0 INFO cvec.dInt1: 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 -xAODTestReadDecor 15 0 INFO cinfo.dInt1: 51000 -xAODTestReadDecor 15 0 INFO cinfo.dInt1Base: 51001 -xAODTestReadDecor 15 0 INFO cinfo.dInt1: 51000 -AthenaHiveEventLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== -AthenaHiveEventLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== -xAODTestReadDecor 16 0 INFO cvec.dInt1: 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 -xAODTestReadDecor 16 0 INFO cinfo.dInt1: 54000 -xAODTestReadDecor 16 0 INFO cinfo.dInt1Base: 54001 -xAODTestReadDecor 16 0 INFO cinfo.dInt1: 54000 -AthenaHiveEventLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== -AthenaHiveEventLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== -xAODTestReadDecor 17 0 INFO cvec.dInt1: 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 -xAODTestReadDecor 17 0 INFO cinfo.dInt1: 57000 -xAODTestReadDecor 17 0 INFO cinfo.dInt1Base: 57001 -xAODTestReadDecor 17 0 INFO cinfo.dInt1: 57000 -AthenaHiveEventLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== -AthenaHiveEventLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== -xAODTestReadDecor 18 0 INFO cvec.dInt1: 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 -xAODTestReadDecor 18 0 INFO cinfo.dInt1: 60000 -xAODTestReadDecor 18 0 INFO cinfo.dInt1Base: 60001 -xAODTestReadDecor 18 0 INFO cinfo.dInt1: 60000 -AthenaHiveEventLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== -AthenaHiveEventLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== -xAODTestReadDecor 19 0 INFO cvec.dInt1: 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 -xAODTestReadDecor 19 0 INFO cinfo.dInt1: 63000 -xAODTestReadDecor 19 0 INFO cinfo.dInt1Base: 63001 -xAODTestReadDecor 19 0 INFO cinfo.dInt1: 63000 -AthenaHiveEventLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== -ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestDecorHandle2MT_catalog.xml' does not exist. New file created. -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.finalize() INFO Service finalized successfully -ApplicationMgr INFO Application Manager Finalized successfully -ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +Avalan...edulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm +Avalan...edulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+cvec.dInt1' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadDecor +Avalan...edulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+cinfo.dInt1' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadDecor +Avalan...edulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+cinfo.dInt1Base' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadDecor +PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules +PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully +Avalan...edulerSvc 0 INFO Concurrency level information: +Avalan...edulerSvc 0 INFO o Number of events in flight: 1 +Avalan...edulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 +Avalan...edulerSvc 0 INFO Task scheduling settings: +Avalan...edulerSvc 0 INFO o Avalanche generation mode: disabled +Avalan...edulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled +Avalan...edulerSvc 0 INFO o Scheduling of condition tasks: disabled +EventSelector 0 INFO EventSelection with query +Athena...ntLoopMgr 0 INFO Setup EventSelector service EventSelector +ApplicationMgr 0 INFO Application Manager Initialized successfully +ApplicationMgr 0 INFO Application Manager Started successfully +Athena...ntLoopMgr 0 INFO Starting loop on events +Athena...ntLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== +Athena...ntLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== +xAODTestReadDecor 0 0 INFO cvec.dInt1: 801 802 803 804 805 806 807 808 809 810 +xAODTestReadDecor 0 0 INFO cinfo.dInt1: 6000 +xAODTestReadDecor 0 0 INFO cinfo.dInt1Base: 6001 +xAODTestReadDecor 0 0 INFO cinfo.dInt1: 6000 +Athena...ntLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== +Athena...ntLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== +xAODTestReadDecor 1 0 INFO cvec.dInt1: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 +xAODTestReadDecor 1 0 INFO cinfo.dInt1: 9000 +xAODTestReadDecor 1 0 INFO cinfo.dInt1Base: 9001 +xAODTestReadDecor 1 0 INFO cinfo.dInt1: 9000 +Athena...ntLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== +Athena...ntLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== +xAODTestReadDecor 2 0 INFO cvec.dInt1: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 +xAODTestReadDecor 2 0 INFO cinfo.dInt1: 12000 +xAODTestReadDecor 2 0 INFO cinfo.dInt1Base: 12001 +xAODTestReadDecor 2 0 INFO cinfo.dInt1: 12000 +Athena...ntLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== +Athena...ntLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== +xAODTestReadDecor 3 0 INFO cvec.dInt1: +xAODTestReadDecor 3 0 INFO cinfo.dInt1: 15000 +xAODTestReadDecor 3 0 INFO cinfo.dInt1Base: 15001 +xAODTestReadDecor 3 0 INFO cinfo.dInt1: 15000 +Athena...ntLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== +Athena...ntLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== +xAODTestReadDecor 4 0 INFO cvec.dInt1: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 +xAODTestReadDecor 4 0 INFO cinfo.dInt1: 18000 +xAODTestReadDecor 4 0 INFO cinfo.dInt1Base: 18001 +xAODTestReadDecor 4 0 INFO cinfo.dInt1: 18000 +Athena...ntLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== +Athena...ntLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== +xAODTestReadDecor 5 0 INFO cvec.dInt1: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 +xAODTestReadDecor 5 0 INFO cinfo.dInt1: 21000 +xAODTestReadDecor 5 0 INFO cinfo.dInt1Base: 21001 +xAODTestReadDecor 5 0 INFO cinfo.dInt1: 21000 +Athena...ntLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== +Athena...ntLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== +xAODTestReadDecor 6 0 INFO cvec.dInt1: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 +xAODTestReadDecor 6 0 INFO cinfo.dInt1: 24000 +xAODTestReadDecor 6 0 INFO cinfo.dInt1Base: 24001 +xAODTestReadDecor 6 0 INFO cinfo.dInt1: 24000 +Athena...ntLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== +Athena...ntLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== +xAODTestReadDecor 7 0 INFO cvec.dInt1: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 +xAODTestReadDecor 7 0 INFO cinfo.dInt1: 27000 +xAODTestReadDecor 7 0 INFO cinfo.dInt1Base: 27001 +xAODTestReadDecor 7 0 INFO cinfo.dInt1: 27000 +Athena...ntLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== +Athena...ntLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== +xAODTestReadDecor 8 0 INFO cvec.dInt1: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 +xAODTestReadDecor 8 0 INFO cinfo.dInt1: 30000 +xAODTestReadDecor 8 0 INFO cinfo.dInt1Base: 30001 +xAODTestReadDecor 8 0 INFO cinfo.dInt1: 30000 +Athena...ntLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== +Athena...ntLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== +xAODTestReadDecor 9 0 INFO cvec.dInt1: 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 +xAODTestReadDecor 9 0 INFO cinfo.dInt1: 33000 +xAODTestReadDecor 9 0 INFO cinfo.dInt1Base: 33001 +xAODTestReadDecor 9 0 INFO cinfo.dInt1: 33000 +Athena...ntLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== +Athena...ntLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== +xAODTestReadDecor 10 0 INFO cvec.dInt1: 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 +xAODTestReadDecor 10 0 INFO cinfo.dInt1: 36000 +xAODTestReadDecor 10 0 INFO cinfo.dInt1Base: 36001 +xAODTestReadDecor 10 0 INFO cinfo.dInt1: 36000 +Athena...ntLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== +Athena...ntLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== +xAODTestReadDecor 11 0 INFO cvec.dInt1: 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 +xAODTestReadDecor 11 0 INFO cinfo.dInt1: 39000 +xAODTestReadDecor 11 0 INFO cinfo.dInt1Base: 39001 +xAODTestReadDecor 11 0 INFO cinfo.dInt1: 39000 +Athena...ntLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== +Athena...ntLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== +xAODTestReadDecor 12 0 INFO cvec.dInt1: 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 +xAODTestReadDecor 12 0 INFO cinfo.dInt1: 42000 +xAODTestReadDecor 12 0 INFO cinfo.dInt1Base: 42001 +xAODTestReadDecor 12 0 INFO cinfo.dInt1: 42000 +Athena...ntLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== +Athena...ntLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== +xAODTestReadDecor 13 0 INFO cvec.dInt1: 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 +xAODTestReadDecor 13 0 INFO cinfo.dInt1: 45000 +xAODTestReadDecor 13 0 INFO cinfo.dInt1Base: 45001 +xAODTestReadDecor 13 0 INFO cinfo.dInt1: 45000 +Athena...ntLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== +Athena...ntLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== +xAODTestReadDecor 14 0 INFO cvec.dInt1: 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 +xAODTestReadDecor 14 0 INFO cinfo.dInt1: 48000 +xAODTestReadDecor 14 0 INFO cinfo.dInt1Base: 48001 +xAODTestReadDecor 14 0 INFO cinfo.dInt1: 48000 +Athena...ntLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== +Athena...ntLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== +xAODTestReadDecor 15 0 INFO cvec.dInt1: 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 +xAODTestReadDecor 15 0 INFO cinfo.dInt1: 51000 +xAODTestReadDecor 15 0 INFO cinfo.dInt1Base: 51001 +xAODTestReadDecor 15 0 INFO cinfo.dInt1: 51000 +Athena...ntLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== +Athena...ntLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== +xAODTestReadDecor 16 0 INFO cvec.dInt1: 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 +xAODTestReadDecor 16 0 INFO cinfo.dInt1: 54000 +xAODTestReadDecor 16 0 INFO cinfo.dInt1Base: 54001 +xAODTestReadDecor 16 0 INFO cinfo.dInt1: 54000 +Athena...ntLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== +Athena...ntLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== +xAODTestReadDecor 17 0 INFO cvec.dInt1: 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 +xAODTestReadDecor 17 0 INFO cinfo.dInt1: 57000 +xAODTestReadDecor 17 0 INFO cinfo.dInt1Base: 57001 +xAODTestReadDecor 17 0 INFO cinfo.dInt1: 57000 +Athena...ntLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== +Athena...ntLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== +xAODTestReadDecor 18 0 INFO cvec.dInt1: 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 +xAODTestReadDecor 18 0 INFO cinfo.dInt1: 60000 +xAODTestReadDecor 18 0 INFO cinfo.dInt1Base: 60001 +xAODTestReadDecor 18 0 INFO cinfo.dInt1: 60000 +Athena...ntLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== +Athena...ntLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== +xAODTestReadDecor 19 0 INFO cvec.dInt1: 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 +xAODTestReadDecor 19 0 INFO cinfo.dInt1: 63000 +xAODTestReadDecor 19 0 INFO cinfo.dInt1Base: 63001 +xAODTestReadDecor 19 0 INFO cinfo.dInt1: 63000 +Athena...ntLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== +ApplicationMgr INFO Application Manager Stopped successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2MT_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2MT_jo.py deleted file mode 100644 index 628c8ae717db8c808ee050a2a4da852d3ef0fd8a..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2MT_jo.py +++ /dev/null @@ -1,11 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODTestDecorHandle2MT_jo.py -# Author: snyder@bnl.gov -# Date: Apr 2017 -# Purpose: Test decoration handles and hive. -# - -FILECATALOG = 'xAODTestDecorHandle2MT_catalog.xml' -include ('DataModelRunTests/xAODTestDecorHandle2_jo.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2_jo.py deleted file mode 100644 index 610c68f25fdb2f935e6f7c2d56bcbbb93b2408b5..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestDecorHandle2_jo.py +++ /dev/null @@ -1,63 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODTestDecorHandle2_jo.py -# Author: snyder@bnl.gov -# Date: Apr 2017 -# Purpose: Test decoration handles and hive. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "xaoddata.root" ] - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- - -from AthenaCommon.ConcurrencyFlags import jobproperties as jp -nThreads = jp.ConcurrencyFlags.NumThreads() -if nThreads >= 1: - from AthenaCommon.AlgScheduler import AlgScheduler - AlgScheduler.ShowDataDependencies (True) - - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestReadDecor -topSequence += DMTest__xAODTestReadDecor ("xAODTestReadDecor", DecorName="dInt1") - - -# Avoid races when running tests in parallel. -if 'FILECATALOG' not in globals(): - FILECATALOG = 'xAODTestDecorHandle2_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') - diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead.ref index d29bdc8b5dba4886a15d70f34fea3b17f9468a3e..82b314ab4a3f640cf88fe009164f6d11c4a85909 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead.ref @@ -1,106 +1,22 @@ -Mon Aug 21 23:45:22 EDT 2023 -Py:Athena INFO using release [?-22.0.0] [?] [?/?] -- built on [?] -Py:Athena INFO including file "AthenaCommon/Preparation.py" -Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO including file "AthenaCommon/Execution.py" -Py:Athena INFO including file "/ssd/sss/atlas/dvtest/../share/xAODTestRead_jo.py" -Py:ConfigurableDb INFO Read module info for 1331 configurables from 2 genConfDb files -Py:ConfigurableDb INFO No duplicates have been found: that's good ! -Py:Athena INFO including file "DataModelRunTests/loadReadDicts.py" -Py:Athena INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" -Py:Athena INFO including file "DataModelRunTests/commonTrailer.py" -Py:Athena INFO including file "DataModelRunTests/setCatalog.py" -Py:Athena INFO including file "AthenaCommon/runbatch.py" -# setting LC_ALL to "C" -ApplicationMgr SUCCESS -==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99) - running on karma on Mon Aug 21 23:45:32 2023 -==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 3178 CLIDRegistry entries for module ALL -CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 14(Alarm clock) AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -ClassIDSvc INFO getRegistryEntries: read 2596 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 8389 CLIDRegistry entries for module ALL PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... +DecisionSvc INFO Inserting stream: OutputStreamStream1 with no Algs +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +Output...ream1Tool INFO Initializing OutputStreamStream1.StreamStream1Tool MetaDataSvc INFO Initializing MetaDataSvc -PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled -PoolSvc INFO Frontier compression level set to 5 -DBReplicaSvc INFO Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config -DBReplicaSvc INFO No specific match for domain found - use default fallback -DBReplicaSvc INFO Total of 1 servers found for host karma [atlas_dd ] -PoolSvc INFO Successfully setup replica sorting algorithm -PoolSvc INFO Setting up APR FileCatalog and Streams -PoolSvc INFO POOL WriteCatalog is file:xAODTestRead_catalog.xml -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool']) EventSelector INFO EventSelection with query -PoolSvc INFO File is not in Catalog! Attempt to open it anyway. -DbSession INFO Open DbSession -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 1AA9ED5E-1E4B-3A55-A718-BF5CAC995112 -Domain[ROOT_All] INFO xaoddata.root -RootDatabase.open INFO xaoddata.root File version:62804 -xaoddata.root INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 1AA9ED5E-1E4B-3A55-A718-BF5CAC995112 -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -PoolSvc INFO File is not in Catalog! Attempt to open it anyway. -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 1AA9ED5E-1E4B-3A55-A718-BF5CAC995112 -Domain[ROOT_All] INFO xaoddata.root -RootDatabase.open INFO xaoddata.root File version:62804 -xaoddata.root INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 1AA9ED5E-1E4B-3A55-A718-BF5CAC995112 -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 43A8DF11-8983-734C-8839-782AA05E8A13 -Domain[ROOT_All] INFO xaoddata.root -RootDatabase.open INFO xaoddata.root File version:62804 -ClassIDSvc INFO getRegistryEntries: read 1676 CLIDRegistry entries for module ALL -EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc -ClassIDSvc INFO getRegistryEntries: read 23 CLIDRegistry entries for module ALL -MetaDataSvc INFO AlgTool: ToolSvc.IOVDbMetaDataTool -DecisionSvc INFO Inserting stream: Stream1 with no Algs -Stream1.Stream1... INFO Initializing Stream1.Stream1Tool -TagInfoMgr INFO AlgTool: ToolSvc.IOVDbMetaDataTool -Stream1 INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo','xAODMaker::EventFormatStreamHelperTool/Stream1_MakeEventFormat','xAODMaker::FileMetaDataCreatorTool/FileMetaDataCreatorTool','Athena::ThinningCacheTool/ThinningCacheTool_Stream1']) -Stream1 INFO Data output: xaoddata2.root -Stream1 INFO I/O reinitialization... -ClassIDSvc INFO getRegistryEntries: read 833 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 15 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 6 CLIDRegistry entries for module ALL +Output...amStream1 INFO Data output: xaoddata2.root +Output...amStream1 INFO ../O reinitialization... AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully -xaoddata.root INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 43A8DF11-8983-734C-8839-782AA05E8A13 -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 43A8DF11-8983-734C-8839-782AA05E8A13 -Domain[ROOT_All] INFO xaoddata.root -RootDatabase.open INFO xaoddata.root File version:62804 ApplicationMgr INFO Application Manager Started successfully -ClassIDSvc INFO getRegistryEntries: read 4 CLIDRegistry entries for module ALL -AlgResourcePool INFO TopAlg list empty. Recovering the one of Application Manager -AthenaPoolConve... INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== -IOVDbSvc INFO Only 5 POOL conditions files will be open at once -IOVDbSvc INFO Initialised with 1 connections and 0 folders -IOVDbSvc INFO Service IOVDbSvc initialised successfully -IOVDbSvc INFO AlgTool: ToolSvc.IOVDbMetaDataTool AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt xAODTestReadCVec INFO Type of aux store: DMTest::CAuxContainer_v1 -TBranchAuxDynRe... INFO FILE:LINE (TBranchAuxDynReader::BranchInfo& TBranchAuxDynReader::getBranchInfo(const unsigned long&, const SG::AuxStoreInternal&)): attribute 'dVar1' (id=309 typename=float) has different type than the branch: vector<int> Marking for schema evolution. -TBranchAuxDynRe... INFO FILE:LINE (TBranchAuxDynReader::BranchInfo& TBranchAuxDynReader::getBranchInfo(const unsigned long&, const SG::AuxStoreInternal&)): attribute 'dpInt1' (id=317 typename=unsigned int) has different type than the branch: SG::PackedContainer<unsigned int,allocator<unsigned int> > Marking for schema evolution. -TBranchAuxDynRe... INFO FILE:LINE (TBranchAuxDynReader::BranchInfo& TBranchAuxDynReader::getBranchInfo(const unsigned long&, const SG::AuxStoreInternal&)): attribute 'dpvFloat' (id=318 typename=std::vector<float>) has different type than the branch: SG::PackedContainer<vector<float>,allocator<vector<float> > > Marking for schema evolution. xAODTestReadCVec INFO anInt1 201 aFloat: 400 pInt: 1001 pFloat: 0.02 anInt2: 601 dInt1: 801 dVar1: 901 dpInt1: 101 cEL: cvec[9] pvInt: [] pvFloat: [] @@ -179,70 +95,49 @@ xAODTestRead INFO cvecWD 1002: 401 402 403 404 405 406 407 408 409 410 xAODTestReadCView INFO cview: 210 209 208 207 206 205 204 203 202 201 xAODTestReadHVec INFO hvec: 801.5 802.5 803.5 804.5 805.5 806.5 807.5 808.5 809.5 810.5 811.5 812.5 813.5 814.5 815.5 816.5 817.5 818.5 819.5 820.5 xAODTestReadHVec INFO hview: 820.5 819.5 818.5 817.5 816.5 815.5 814.5 813.5 812.5 811.5 810.5 809.5 808.5 807.5 806.5 805.5 804.5 803.5 802.5 801.5 -ClassIDSvc INFO getRegistryEntries: read 348 CLIDRegistry entries for module ALL -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 210 aFloat: 220.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 210 aFloat: 220.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 211 aFloat: 221.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 211 aFloat: 221.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 212 aFloat: 222.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 212 aFloat: 222.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 213 aFloat: 223.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 213 aFloat: 223.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 214 aFloat: 224.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 214 aFloat: 224.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 215 aFloat: 225.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 215 aFloat: 225.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 216 aFloat: 226.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 216 aFloat: 226.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 217 aFloat: 227.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 217 aFloat: 227.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 218 aFloat: 228.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 218 aFloat: 228.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 219 aFloat: 229.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 219 aFloat: 229.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -DbSession INFO Open DbSession -Domain[ROOT_All] INFO > Access DbDomain UPDATE [ROOT_All] -Domain[ROOT_All] INFO -> Access DbDatabase CREATE [ROOT_All] DDAC2D7B-889B-5240-8DF0-D74B9B0E38E2 -Domain[ROOT_All] INFO xaoddata2.root -RootDatabase.open INFO xaoddata2.root File version:62804 -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO DMTest::HAuxContainer_v2 [2BDBFB04-C1C2-4B14-A977-3A61B8054700] -TBranchAuxDynRe... INFO FILE:LINE (TBranchAuxDynReader::BranchInfo& TBranchAuxDynReader::getBranchInfo(const unsigned long&, const SG::AuxStoreInternal&)): attribute 'mcEventNumber' (id=1 typename=unsigned long) has different type than the branch: ULong64_t Marking for schema evolution. -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::ShallowAuxInfo [BE505E75-8760-4F39-9331-689CB5443DB1] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::ShallowAuxContainer [C63C39D7-9501-49DC-B1B0-6AD98B1AEEFA] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO xAOD::AuxContainerBase [C87C71B3-B03F-42FC-AF99-DF497F148397] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO DataVector<DMTest::H_v2> [CD6C3074-425B-4C08-AF1C-43D7E8C84288] -StorageSvc INFO Building shape according to reflection information using shape ID for: -StorageSvc INFO ViewVector<DataVector<DMTest::H_v2> > [17849966-6667-4732-A1C7-096FBC778CF3] -ClassIDSvc INFO getRegistryEntries: read 27 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== -ClassIDSvc INFO getRegistryEntries: read 16 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt xAODTestReadCVec INFO Type of aux store: DMTest::CAuxContainer_v1 @@ -324,45 +219,45 @@ xAODTestRead INFO cvecWD 1003: 601 602 603 604 605 606 607 608 609 610 xAODTestReadCView INFO cview: 310 309 308 307 306 305 304 303 302 301 xAODTestReadHVec INFO hvec: 1201.5 1202.5 1203.5 1204.5 1205.5 1206.5 1207.5 1208.5 1209.5 1210.5 1211.5 1212.5 1213.5 1214.5 1215.5 1216.5 1217.5 1218.5 1219.5 1220.5 xAODTestReadHVec INFO hview: 1220.5 1219.5 1218.5 1217.5 1216.5 1215.5 1214.5 1213.5 1212.5 1211.5 1210.5 1209.5 1208.5 1207.5 1206.5 1205.5 1204.5 1203.5 1202.5 1201.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 310 aFloat: 320.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 310 aFloat: 320.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 311 aFloat: 321.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 311 aFloat: 321.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 312 aFloat: 322.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 312 aFloat: 322.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 313 aFloat: 323.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 313 aFloat: 323.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 314 aFloat: 324.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 314 aFloat: 324.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 315 aFloat: 325.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 315 aFloat: 325.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 316 aFloat: 326.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 316 aFloat: 326.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 317 aFloat: 327.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 317 aFloat: 327.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 318 aFloat: 328.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 318 aFloat: 328.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 319 aFloat: 329.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 319 aFloat: 329.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -448,45 +343,45 @@ xAODTestRead INFO cvecWD 1004: 801 802 803 804 805 806 807 808 809 810 xAODTestReadCView INFO cview: 410 409 408 407 406 405 404 403 402 401 xAODTestReadHVec INFO hvec: 1601.5 1602.5 1603.5 1604.5 1605.5 1606.5 1607.5 1608.5 1609.5 1610.5 1611.5 1612.5 1613.5 1614.5 1615.5 1616.5 1617.5 1618.5 1619.5 1620.5 xAODTestReadHVec INFO hview: 1620.5 1619.5 1618.5 1617.5 1616.5 1615.5 1614.5 1613.5 1612.5 1611.5 1610.5 1609.5 1608.5 1607.5 1606.5 1605.5 1604.5 1603.5 1602.5 1601.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 410 aFloat: 420.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 410 aFloat: 420.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 411 aFloat: 421.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 411 aFloat: 421.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 412 aFloat: 422.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 412 aFloat: 422.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 413 aFloat: 423.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 413 aFloat: 423.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 414 aFloat: 424.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 414 aFloat: 424.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 415 aFloat: 425.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 415 aFloat: 425.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 416 aFloat: 426.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 416 aFloat: 426.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 417 aFloat: 427.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 417 aFloat: 427.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 418 aFloat: 428.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 418 aFloat: 428.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 419 aFloat: 429.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 419 aFloat: 429.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -522,45 +417,45 @@ xAODTestRead INFO cvecWD 1005: 1001 1002 1003 1004 1005 1006 1007 1008 1 xAODTestReadCView INFO cview: xAODTestReadHVec INFO hvec: 2001.5 2002.5 2003.5 2004.5 2005.5 2006.5 2007.5 2008.5 2009.5 2010.5 2011.5 2012.5 2013.5 2014.5 2015.5 2016.5 2017.5 2018.5 2019.5 2020.5 xAODTestReadHVec INFO hview: 2020.5 2019.5 2018.5 2017.5 2016.5 2015.5 2014.5 2013.5 2012.5 2011.5 2010.5 2009.5 2008.5 2007.5 2006.5 2005.5 2004.5 2003.5 2002.5 2001.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 510 aFloat: 520.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 510 aFloat: 520.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 511 aFloat: 521.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 511 aFloat: 521.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 512 aFloat: 522.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 512 aFloat: 522.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 513 aFloat: 523.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 513 aFloat: 523.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 514 aFloat: 524.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 514 aFloat: 524.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 515 aFloat: 525.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 515 aFloat: 525.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 516 aFloat: 526.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 516 aFloat: 526.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 517 aFloat: 527.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 517 aFloat: 527.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 518 aFloat: 528.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 518 aFloat: 528.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 519 aFloat: 529.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 519 aFloat: 529.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -646,45 +541,45 @@ xAODTestRead INFO cvecWD 1006: 1201 1202 1203 1204 1205 1206 1207 1208 1 xAODTestReadCView INFO cview: 610 609 608 607 606 605 604 603 602 601 xAODTestReadHVec INFO hvec: 2401.5 2402.5 2403.5 2404.5 2405.5 2406.5 2407.5 2408.5 2409.5 2410.5 2411.5 2412.5 2413.5 2414.5 2415.5 2416.5 2417.5 2418.5 2419.5 2420.5 xAODTestReadHVec INFO hview: 2420.5 2419.5 2418.5 2417.5 2416.5 2415.5 2414.5 2413.5 2412.5 2411.5 2410.5 2409.5 2408.5 2407.5 2406.5 2405.5 2404.5 2403.5 2402.5 2401.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 610 aFloat: 620.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 610 aFloat: 620.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 611 aFloat: 621.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 611 aFloat: 621.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 612 aFloat: 622.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 612 aFloat: 622.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 613 aFloat: 623.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 613 aFloat: 623.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 614 aFloat: 624.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 614 aFloat: 624.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 615 aFloat: 625.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 615 aFloat: 625.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 616 aFloat: 626.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 616 aFloat: 626.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 617 aFloat: 627.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 617 aFloat: 627.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 618 aFloat: 628.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 618 aFloat: 628.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 619 aFloat: 629.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 619 aFloat: 629.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -770,45 +665,45 @@ xAODTestRead INFO cvecWD 1007: 1401 1402 1403 1404 1405 1406 1407 1408 1 xAODTestReadCView INFO cview: 710 709 708 707 706 705 704 703 702 701 xAODTestReadHVec INFO hvec: 2801.5 2802.5 2803.5 2804.5 2805.5 2806.5 2807.5 2808.5 2809.5 2810.5 2811.5 2812.5 2813.5 2814.5 2815.5 2816.5 2817.5 2818.5 2819.5 2820.5 xAODTestReadHVec INFO hview: 2820.5 2819.5 2818.5 2817.5 2816.5 2815.5 2814.5 2813.5 2812.5 2811.5 2810.5 2809.5 2808.5 2807.5 2806.5 2805.5 2804.5 2803.5 2802.5 2801.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 710 aFloat: 720.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 710 aFloat: 720.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 711 aFloat: 721.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 711 aFloat: 721.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 712 aFloat: 722.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 712 aFloat: 722.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 713 aFloat: 723.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 713 aFloat: 723.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 714 aFloat: 724.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 714 aFloat: 724.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 715 aFloat: 725.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 715 aFloat: 725.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 716 aFloat: 726.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 716 aFloat: 726.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 717 aFloat: 727.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 717 aFloat: 727.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 718 aFloat: 728.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 718 aFloat: 728.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 719 aFloat: 729.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 719 aFloat: 729.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -894,45 +789,45 @@ xAODTestRead INFO cvecWD 1008: 1601 1602 1603 1604 1605 1606 1607 1608 1 xAODTestReadCView INFO cview: 810 809 808 807 806 805 804 803 802 801 xAODTestReadHVec INFO hvec: 3201.5 3202.5 3203.5 3204.5 3205.5 3206.5 3207.5 3208.5 3209.5 3210.5 3211.5 3212.5 3213.5 3214.5 3215.5 3216.5 3217.5 3218.5 3219.5 3220.5 xAODTestReadHVec INFO hview: 3220.5 3219.5 3218.5 3217.5 3216.5 3215.5 3214.5 3213.5 3212.5 3211.5 3210.5 3209.5 3208.5 3207.5 3206.5 3205.5 3204.5 3203.5 3202.5 3201.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 810 aFloat: 820.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 810 aFloat: 820.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 811 aFloat: 821.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 811 aFloat: 821.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 812 aFloat: 822.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 812 aFloat: 822.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 813 aFloat: 823.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 813 aFloat: 823.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 814 aFloat: 824.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 814 aFloat: 824.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 815 aFloat: 825.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 815 aFloat: 825.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 816 aFloat: 826.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 816 aFloat: 826.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 817 aFloat: 827.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 817 aFloat: 827.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 818 aFloat: 828.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 818 aFloat: 828.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 819 aFloat: 829.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 819 aFloat: 829.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -1018,45 +913,45 @@ xAODTestRead INFO cvecWD 1009: 1801 1802 1803 1804 1805 1806 1807 1808 1 xAODTestReadCView INFO cview: 910 909 908 907 906 905 904 903 902 901 xAODTestReadHVec INFO hvec: 3601.5 3602.5 3603.5 3604.5 3605.5 3606.5 3607.5 3608.5 3609.5 3610.5 3611.5 3612.5 3613.5 3614.5 3615.5 3616.5 3617.5 3618.5 3619.5 3620.5 xAODTestReadHVec INFO hview: 3620.5 3619.5 3618.5 3617.5 3616.5 3615.5 3614.5 3613.5 3612.5 3611.5 3610.5 3609.5 3608.5 3607.5 3606.5 3605.5 3604.5 3603.5 3602.5 3601.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 910 aFloat: 920.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 910 aFloat: 920.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 911 aFloat: 921.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 911 aFloat: 921.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 912 aFloat: 922.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 912 aFloat: 922.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 913 aFloat: 923.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 913 aFloat: 923.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 914 aFloat: 924.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 914 aFloat: 924.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 915 aFloat: 925.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 915 aFloat: 925.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 916 aFloat: 926.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 916 aFloat: 926.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 917 aFloat: 927.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 917 aFloat: 927.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 918 aFloat: 928.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 918 aFloat: 928.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 919 aFloat: 929.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 919 aFloat: 929.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -1142,45 +1037,45 @@ xAODTestRead INFO cvecWD 1010: 2001 2002 2003 2004 2005 2006 2007 2008 2 xAODTestReadCView INFO cview: 1010 1009 1008 1007 1006 1005 1004 1003 1002 1001 xAODTestReadHVec INFO hvec: 4001.5 4002.5 4003.5 4004.5 4005.5 4006.5 4007.5 4008.5 4009.5 4010.5 4011.5 4012.5 4013.5 4014.5 4015.5 4016.5 4017.5 4018.5 4019.5 4020.5 xAODTestReadHVec INFO hview: 4020.5 4019.5 4018.5 4017.5 4016.5 4015.5 4014.5 4013.5 4012.5 4011.5 4010.5 4009.5 4008.5 4007.5 4006.5 4005.5 4004.5 4003.5 4002.5 4001.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 1010 aFloat: 1020.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 1010 aFloat: 1020.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1011 aFloat: 1021.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1011 aFloat: 1021.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1012 aFloat: 1022.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1012 aFloat: 1022.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1013 aFloat: 1023.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1013 aFloat: 1023.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1014 aFloat: 1024.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1014 aFloat: 1024.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1015 aFloat: 1025.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1015 aFloat: 1025.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1016 aFloat: 1026.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1016 aFloat: 1026.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1017 aFloat: 1027.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1017 aFloat: 1027.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1018 aFloat: 1028.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1018 aFloat: 1028.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1019 aFloat: 1029.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1019 aFloat: 1029.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -1266,45 +1161,45 @@ xAODTestRead INFO cvecWD 1011: 2201 2202 2203 2204 2205 2206 2207 2208 2 xAODTestReadCView INFO cview: 1110 1109 1108 1107 1106 1105 1104 1103 1102 1101 xAODTestReadHVec INFO hvec: 4401.5 4402.5 4403.5 4404.5 4405.5 4406.5 4407.5 4408.5 4409.5 4410.5 4411.5 4412.5 4413.5 4414.5 4415.5 4416.5 4417.5 4418.5 4419.5 4420.5 xAODTestReadHVec INFO hview: 4420.5 4419.5 4418.5 4417.5 4416.5 4415.5 4414.5 4413.5 4412.5 4411.5 4410.5 4409.5 4408.5 4407.5 4406.5 4405.5 4404.5 4403.5 4402.5 4401.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 1110 aFloat: 1120.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 1110 aFloat: 1120.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1111 aFloat: 1121.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1111 aFloat: 1121.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1112 aFloat: 1122.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1112 aFloat: 1122.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1113 aFloat: 1123.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1113 aFloat: 1123.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1114 aFloat: 1124.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1114 aFloat: 1124.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1115 aFloat: 1125.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1115 aFloat: 1125.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1116 aFloat: 1126.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1116 aFloat: 1126.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1117 aFloat: 1127.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1117 aFloat: 1127.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1118 aFloat: 1128.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1118 aFloat: 1128.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1119 aFloat: 1129.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1119 aFloat: 1129.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -1390,45 +1285,45 @@ xAODTestRead INFO cvecWD 1012: 2401 2402 2403 2404 2405 2406 2407 2408 2 xAODTestReadCView INFO cview: 1210 1209 1208 1207 1206 1205 1204 1203 1202 1201 xAODTestReadHVec INFO hvec: 4801.5 4802.5 4803.5 4804.5 4805.5 4806.5 4807.5 4808.5 4809.5 4810.5 4811.5 4812.5 4813.5 4814.5 4815.5 4816.5 4817.5 4818.5 4819.5 4820.5 xAODTestReadHVec INFO hview: 4820.5 4819.5 4818.5 4817.5 4816.5 4815.5 4814.5 4813.5 4812.5 4811.5 4810.5 4809.5 4808.5 4807.5 4806.5 4805.5 4804.5 4803.5 4802.5 4801.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 1210 aFloat: 1220.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 1210 aFloat: 1220.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1211 aFloat: 1221.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1211 aFloat: 1221.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1212 aFloat: 1222.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1212 aFloat: 1222.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1213 aFloat: 1223.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1213 aFloat: 1223.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1214 aFloat: 1224.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1214 aFloat: 1224.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1215 aFloat: 1225.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1215 aFloat: 1225.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1216 aFloat: 1226.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1216 aFloat: 1226.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1217 aFloat: 1227.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1217 aFloat: 1227.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1218 aFloat: 1228.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1218 aFloat: 1228.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1219 aFloat: 1229.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1219 aFloat: 1229.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -1514,45 +1409,45 @@ xAODTestRead INFO cvecWD 1013: 2601 2602 2603 2604 2605 2606 2607 2608 2 xAODTestReadCView INFO cview: 1310 1309 1308 1307 1306 1305 1304 1303 1302 1301 xAODTestReadHVec INFO hvec: 5201.5 5202.5 5203.5 5204.5 5205.5 5206.5 5207.5 5208.5 5209.5 5210.5 5211.5 5212.5 5213.5 5214.5 5215.5 5216.5 5217.5 5218.5 5219.5 5220.5 xAODTestReadHVec INFO hview: 5220.5 5219.5 5218.5 5217.5 5216.5 5215.5 5214.5 5213.5 5212.5 5211.5 5210.5 5209.5 5208.5 5207.5 5206.5 5205.5 5204.5 5203.5 5202.5 5201.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 1310 aFloat: 1320.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 1310 aFloat: 1320.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1311 aFloat: 1321.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1311 aFloat: 1321.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1312 aFloat: 1322.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1312 aFloat: 1322.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1313 aFloat: 1323.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1313 aFloat: 1323.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1314 aFloat: 1324.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1314 aFloat: 1324.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1315 aFloat: 1325.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1315 aFloat: 1325.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1316 aFloat: 1326.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1316 aFloat: 1326.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1317 aFloat: 1327.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1317 aFloat: 1327.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1318 aFloat: 1328.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1318 aFloat: 1328.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1319 aFloat: 1329.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1319 aFloat: 1329.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -1638,45 +1533,45 @@ xAODTestRead INFO cvecWD 1014: 2801 2802 2803 2804 2805 2806 2807 2808 2 xAODTestReadCView INFO cview: 1410 1409 1408 1407 1406 1405 1404 1403 1402 1401 xAODTestReadHVec INFO hvec: 5601.5 5602.5 5603.5 5604.5 5605.5 5606.5 5607.5 5608.5 5609.5 5610.5 5611.5 5612.5 5613.5 5614.5 5615.5 5616.5 5617.5 5618.5 5619.5 5620.5 xAODTestReadHVec INFO hview: 5620.5 5619.5 5618.5 5617.5 5616.5 5615.5 5614.5 5613.5 5612.5 5611.5 5610.5 5609.5 5608.5 5607.5 5606.5 5605.5 5604.5 5603.5 5602.5 5601.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 1410 aFloat: 1420.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 1410 aFloat: 1420.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1411 aFloat: 1421.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1411 aFloat: 1421.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1412 aFloat: 1422.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1412 aFloat: 1422.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1413 aFloat: 1423.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1413 aFloat: 1423.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1414 aFloat: 1424.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1414 aFloat: 1424.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1415 aFloat: 1425.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1415 aFloat: 1425.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1416 aFloat: 1426.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1416 aFloat: 1426.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1417 aFloat: 1427.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1417 aFloat: 1427.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1418 aFloat: 1428.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1418 aFloat: 1428.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1419 aFloat: 1429.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1419 aFloat: 1429.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -1762,45 +1657,45 @@ xAODTestRead INFO cvecWD 1015: 3001 3002 3003 3004 3005 3006 3007 3008 3 xAODTestReadCView INFO cview: 1510 1509 1508 1507 1506 1505 1504 1503 1502 1501 xAODTestReadHVec INFO hvec: 6001.5 6002.5 6003.5 6004.5 6005.5 6006.5 6007.5 6008.5 6009.5 6010.5 6011.5 6012.5 6013.5 6014.5 6015.5 6016.5 6017.5 6018.5 6019.5 6020.5 xAODTestReadHVec INFO hview: 6020.5 6019.5 6018.5 6017.5 6016.5 6015.5 6014.5 6013.5 6012.5 6011.5 6010.5 6009.5 6008.5 6007.5 6006.5 6005.5 6004.5 6003.5 6002.5 6001.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 1510 aFloat: 1520.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 1510 aFloat: 1520.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1511 aFloat: 1521.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1511 aFloat: 1521.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1512 aFloat: 1522.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1512 aFloat: 1522.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1513 aFloat: 1523.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1513 aFloat: 1523.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1514 aFloat: 1524.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1514 aFloat: 1524.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1515 aFloat: 1525.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1515 aFloat: 1525.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1516 aFloat: 1526.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1516 aFloat: 1526.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1517 aFloat: 1527.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1517 aFloat: 1527.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1518 aFloat: 1528.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1518 aFloat: 1528.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1519 aFloat: 1529.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1519 aFloat: 1529.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -1886,45 +1781,45 @@ xAODTestRead INFO cvecWD 1016: 3201 3202 3203 3204 3205 3206 3207 3208 3 xAODTestReadCView INFO cview: 1610 1609 1608 1607 1606 1605 1604 1603 1602 1601 xAODTestReadHVec INFO hvec: 6401.5 6402.5 6403.5 6404.5 6405.5 6406.5 6407.5 6408.5 6409.5 6410.5 6411.5 6412.5 6413.5 6414.5 6415.5 6416.5 6417.5 6418.5 6419.5 6420.5 xAODTestReadHVec INFO hview: 6420.5 6419.5 6418.5 6417.5 6416.5 6415.5 6414.5 6413.5 6412.5 6411.5 6410.5 6409.5 6408.5 6407.5 6406.5 6405.5 6404.5 6403.5 6402.5 6401.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 1610 aFloat: 1620.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 1610 aFloat: 1620.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1611 aFloat: 1621.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1611 aFloat: 1621.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1612 aFloat: 1622.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1612 aFloat: 1622.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1613 aFloat: 1623.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1613 aFloat: 1623.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1614 aFloat: 1624.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1614 aFloat: 1624.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1615 aFloat: 1625.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1615 aFloat: 1625.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1616 aFloat: 1626.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1616 aFloat: 1626.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1617 aFloat: 1627.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1617 aFloat: 1627.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1618 aFloat: 1628.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1618 aFloat: 1628.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1619 aFloat: 1629.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1619 aFloat: 1629.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -2010,45 +1905,45 @@ xAODTestRead INFO cvecWD 1017: 3401 3402 3403 3404 3405 3406 3407 3408 3 xAODTestReadCView INFO cview: 1710 1709 1708 1707 1706 1705 1704 1703 1702 1701 xAODTestReadHVec INFO hvec: 6801.5 6802.5 6803.5 6804.5 6805.5 6806.5 6807.5 6808.5 6809.5 6810.5 6811.5 6812.5 6813.5 6814.5 6815.5 6816.5 6817.5 6818.5 6819.5 6820.5 xAODTestReadHVec INFO hview: 6820.5 6819.5 6818.5 6817.5 6816.5 6815.5 6814.5 6813.5 6812.5 6811.5 6810.5 6809.5 6808.5 6807.5 6806.5 6805.5 6804.5 6803.5 6802.5 6801.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 1710 aFloat: 1720.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 1710 aFloat: 1720.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1711 aFloat: 1721.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1711 aFloat: 1721.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1712 aFloat: 1722.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1712 aFloat: 1722.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1713 aFloat: 1723.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1713 aFloat: 1723.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1714 aFloat: 1724.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1714 aFloat: 1724.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1715 aFloat: 1725.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1715 aFloat: 1725.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1716 aFloat: 1726.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1716 aFloat: 1726.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1717 aFloat: 1727.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1717 aFloat: 1727.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1718 aFloat: 1728.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1718 aFloat: 1728.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1719 aFloat: 1729.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1719 aFloat: 1729.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -2134,45 +2029,45 @@ xAODTestRead INFO cvecWD 1018: 3601 3602 3603 3604 3605 3606 3607 3608 3 xAODTestReadCView INFO cview: 1810 1809 1808 1807 1806 1805 1804 1803 1802 1801 xAODTestReadHVec INFO hvec: 7201.5 7202.5 7203.5 7204.5 7205.5 7206.5 7207.5 7208.5 7209.5 7210.5 7211.5 7212.5 7213.5 7214.5 7215.5 7216.5 7217.5 7218.5 7219.5 7220.5 xAODTestReadHVec INFO hview: 7220.5 7219.5 7218.5 7217.5 7216.5 7215.5 7214.5 7213.5 7212.5 7211.5 7210.5 7209.5 7208.5 7207.5 7206.5 7205.5 7204.5 7203.5 7202.5 7201.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 1810 aFloat: 1820.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 1810 aFloat: 1820.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1811 aFloat: 1821.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1811 aFloat: 1821.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1812 aFloat: 1822.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1812 aFloat: 1822.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1813 aFloat: 1823.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1813 aFloat: 1823.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1814 aFloat: 1824.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1814 aFloat: 1824.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1815 aFloat: 1825.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1815 aFloat: 1825.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1816 aFloat: 1826.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1816 aFloat: 1826.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1817 aFloat: 1827.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1817 aFloat: 1827.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1818 aFloat: 1828.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1818 aFloat: 1828.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1819 aFloat: 1829.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1819 aFloat: 1829.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -2258,45 +2153,45 @@ xAODTestRead INFO cvecWD 1019: 3801 3802 3803 3804 3805 3806 3807 3808 3 xAODTestReadCView INFO cview: 1910 1909 1908 1907 1906 1905 1904 1903 1902 1901 xAODTestReadHVec INFO hvec: 7601.5 7602.5 7603.5 7604.5 7605.5 7606.5 7607.5 7608.5 7609.5 7610.5 7611.5 7612.5 7613.5 7614.5 7615.5 7616.5 7617.5 7618.5 7619.5 7620.5 xAODTestReadHVec INFO hview: 7620.5 7619.5 7618.5 7617.5 7616.5 7615.5 7614.5 7613.5 7612.5 7611.5 7610.5 7609.5 7608.5 7607.5 7606.5 7605.5 7604.5 7603.5 7602.5 7601.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 1910 aFloat: 1920.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 1910 aFloat: 1920.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1911 aFloat: 1921.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1911 aFloat: 1921.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1912 aFloat: 1922.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1912 aFloat: 1922.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1913 aFloat: 1923.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1913 aFloat: 1923.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1914 aFloat: 1924.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1914 aFloat: 1924.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1915 aFloat: 1925.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1915 aFloat: 1925.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1916 aFloat: 1926.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1916 aFloat: 1926.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1917 aFloat: 1927.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1917 aFloat: 1927.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1918 aFloat: 1928.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1918 aFloat: 1928.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 1919 aFloat: 1929.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 1919 aFloat: 1929.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -2382,45 +2277,45 @@ xAODTestRead INFO cvecWD 1020: 4001 4002 4003 4004 4005 4006 4007 4008 4 xAODTestReadCView INFO cview: 2010 2009 2008 2007 2006 2005 2004 2003 2002 2001 xAODTestReadHVec INFO hvec: 8001.5 8002.5 8003.5 8004.5 8005.5 8006.5 8007.5 8008.5 8009.5 8010.5 8011.5 8012.5 8013.5 8014.5 8015.5 8016.5 8017.5 8018.5 8019.5 8020.5 xAODTestReadHVec INFO hview: 8020.5 8019.5 8018.5 8017.5 8016.5 8015.5 8014.5 8013.5 8012.5 8011.5 8010.5 8009.5 8008.5 8007.5 8006.5 8005.5 8004.5 8003.5 8002.5 8001.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 2010 aFloat: 2020.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 2010 aFloat: 2020.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2011 aFloat: 2021.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2011 aFloat: 2021.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2012 aFloat: 2022.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2012 aFloat: 2022.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2013 aFloat: 2023.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2013 aFloat: 2023.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2014 aFloat: 2024.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2014 aFloat: 2024.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2015 aFloat: 2025.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2015 aFloat: 2025.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2016 aFloat: 2026.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2016 aFloat: 2026.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2017 aFloat: 2027.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2017 aFloat: 2027.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2018 aFloat: 2028.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2018 aFloat: 2028.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2019 aFloat: 2029.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2019 aFloat: 2029.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] @@ -2506,76 +2401,53 @@ xAODTestRead INFO cvecWD 1021: 4201 4202 4203 4204 4205 4206 4207 4208 4 xAODTestReadCView INFO cview: 2110 2109 2108 2107 2106 2105 2104 2103 2102 2101 xAODTestReadHVec INFO hvec: 8401.5 8402.5 8403.5 8404.5 8405.5 8406.5 8407.5 8408.5 8409.5 8410.5 8411.5 8412.5 8413.5 8414.5 8415.5 8416.5 8417.5 8418.5 8419.5 8420.5 xAODTestReadHVec INFO hview: 8420.5 8419.5 8418.5 8417.5 8416.5 8415.5 8414.5 8413.5 8412.5 8411.5 8410.5 8409.5 8408.5 8407.5 8406.5 8405.5 8404.5 8403.5 8402.5 8401.5 -xAODTestReadFwd... INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt -xAODTestReadFwd... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadFwd... INFO anInt1 2110 aFloat: 2120.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO CVecFwdLink aux items: aFloat anInt pFloat pInt pvFloat pvInt +xAODTe...adFwdLink INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...adFwdLink INFO anInt1 2110 aFloat: 2120.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2111 aFloat: 2121.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2111 aFloat: 2121.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2112 aFloat: 2122.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2112 aFloat: 2122.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2113 aFloat: 2123.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2113 aFloat: 2123.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2114 aFloat: 2124.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2114 aFloat: 2124.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2115 aFloat: 2125.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2115 aFloat: 2125.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2116 aFloat: 2126.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2116 aFloat: 2126.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2117 aFloat: 2127.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2117 aFloat: 2127.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2118 aFloat: 2128.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2118 aFloat: 2128.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] -xAODTestReadFwd... INFO anInt1 2119 aFloat: 2129.5 pInt: 0 pFloat: 0.00 +xAODTe...adFwdLink INFO anInt1 2119 aFloat: 2129.5 pInt: 0 pFloat: 0.00 pvInt: [] pvFloat: [] AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -ClassIDSvc INFO getRegistryEntries: read 12 CLIDRegistry entries for module ALL -Stream1 INFO Metadata records written: 21 -xaoddata.root INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 43A8DF11-8983-734C-8839-782AA05E8A13 -xaoddata2.root INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] DDAC2D7B-889B-5240-8DF0-D74B9B0E38E2 -Domain[ROOT_All] INFO > Deaccess DbDomain UPDATE [ROOT_All] +Output...amStream1 INFO Metadata records written: 21 ApplicationMgr INFO Application Manager Stopped successfully -LoadReadDicts INFO Finalizing LoadReadDicts... -IOVDbSvc INFO bytes in (( 0.00 ))s -IOVDbSvc INFO Connection sqlite://;schema=cooldummy.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: (( 0.00 ))s -DecisionSvc INFO Finalized successfully. -Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] -AthenaPoolCnvSvc INFO PerfStats ---------------------------------------- -AthenaPoolCnvSvc INFO PerfStats Timing Measurements for AthenaPoolCnvSvc -AthenaPoolCnvSvc INFO PerfStats ---------------------------------------- -AthenaPoolCnvSvc INFO PerfStats | fRep_ALL | 155 ms | -AthenaPoolCnvSvc INFO PerfStats | commitOutput | 32 ms | -AthenaPoolCnvSvc INFO PerfStats | cObjR_ALL | 58 ms | -AthenaPoolCnvSvc INFO PerfStats | cRep_ALL | 40 ms | -AthenaPoolCnvSvc INFO PerfStats | cObj_ALL | 200 ms | -AthenaPoolCnvSvc INFO PerfStats | cRepR_ALL | 55 ms | -AthenaPoolCnvSvc INFO PerfStats ---------------------------------------- -XMLCatalog INFO File 'xAODTestRead_catalog.xml' does not exist. New file created. -PyComponentMgr INFO Finalizing PyComponentMgr... AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead2.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead2.ref index 45f2e7ea636adefe3d40be09740db9cffaa57992..e675864c75e5caa1d54248dd4fe01d8a0edb6437 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead2.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead2.ref @@ -1,16 +1,15 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... +DecisionSvc INFO Inserting stream: OutputStreamStream1 with no Algs +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +Output...ream1Tool INFO Initializing OutputStreamStream1.StreamStream1Tool MetaDataSvc INFO Initializing MetaDataSvc EventSelector INFO EventSelection with query -DecisionSvc INFO Inserting stream: Stream1 with no Algs -Stream1.Stream1... INFO Initializing Stream1.Stream1Tool -Stream1 INFO Data output: xaoddata2x.root -Stream1 INFO ../O reinitialization... +Output...amStream1 INFO Data output: xaoddata2x.root +Output...amStream1 INFO ../O reinitialization... AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully @@ -96,60 +95,60 @@ xAODTestRead INFO cvecWD 1002: 401 402 403 404 405 406 407 408 409 410 xAODTestReadCView INFO cview: 210 209 208 207 206 205 204 203 202 201 xAODTestReadHVec INFO hvec: 801.5 802.5 803.5 804.5 805.5 806.5 807.5 808.5 809.5 810.5 811.5 812.5 813.5 814.5 815.5 816.5 817.5 818.5 819.5 820.5 xAODTestReadHVec INFO hview: 820.5 819.5 818.5 817.5 816.5 815.5 814.5 813.5 812.5 811.5 810.5 809.5 808.5 807.5 806.5 805.5 804.5 803.5 802.5 801.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 201 aFloat: 400 pInt: 1001 pFloat: 0.02 anInt2: 601 dInt1: 801 dVar1: 901 dpInt1: 101 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 201 aFloat: 400 pInt: 1001 pFloat: 0.02 anInt2: 601 dInt1: 801 dVar1: 901 dpInt1: 101 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 202 aFloat: 400.1 pInt: 1002 pFloat: 1.02 anInt2: 602 dInt1: 802 dVar1: 902 dpInt1: 102 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 202 aFloat: 400.1 pInt: 1002 pFloat: 1.02 anInt2: 602 dInt1: 802 dVar1: 902 dpInt1: 102 cEL: cvec[8] pvInt: [-290 ] pvFloat: [-0.488 ] dpvFloat: [0.120 ] -xAODTestReadCVe... INFO anInt1 203 aFloat: 400.2 pInt: 1003 pFloat: 2.02 anInt2: 603 dInt1: 803 dVar1: 903 dpInt1: 103 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 203 aFloat: 400.2 pInt: 1003 pFloat: 2.02 anInt2: 603 dInt1: 803 dVar1: 903 dpInt1: 103 cEL: cvec[7] pvInt: [-280 -279 ] pvFloat: [-0.478 -0.378 ] dpvFloat: [0.220 0.221 ] -xAODTestReadCVe... INFO anInt1 204 aFloat: 400.3 pInt: 1004 pFloat: 3.02 anInt2: 604 dInt1: 804 dVar1: 904 dpInt1: 104 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 204 aFloat: 400.3 pInt: 1004 pFloat: 3.02 anInt2: 604 dInt1: 804 dVar1: 904 dpInt1: 104 cEL: cvec[6] pvInt: [-270 -269 -268 ] pvFloat: [-0.468 -0.368 -0.268 ] dpvFloat: [0.320 0.321 0.322 ] -xAODTestReadCVe... INFO anInt1 205 aFloat: 400.4 pInt: 1005 pFloat: 4.02 anInt2: 605 dInt1: 805 dVar1: 905 dpInt1: 105 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 205 aFloat: 400.4 pInt: 1005 pFloat: 4.02 anInt2: 605 dInt1: 805 dVar1: 905 dpInt1: 105 cEL: cvec[5] pvInt: [-260 -259 -258 -257 ] pvFloat: [-0.458 -0.358 -0.258 -0.158 ] dpvFloat: [0.420 0.421 0.422 0.423 ] -xAODTestReadCVe... INFO anInt1 206 aFloat: 400.5 pInt: 1006 pFloat: 5.02 anInt2: 606 dInt1: 806 dVar1: 906 dpInt1: 106 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 206 aFloat: 400.5 pInt: 1006 pFloat: 5.02 anInt2: 606 dInt1: 806 dVar1: 906 dpInt1: 106 cEL: cvec[4] pvInt: [-250 -249 -248 -247 -246 ] pvFloat: [-0.448 -0.348 -0.248 -0.148 -0.048 ] dpvFloat: [0.520 0.521 0.522 0.523 0.524 ] -xAODTestReadCVe... INFO anInt1 207 aFloat: 400.6 pInt: 1007 pFloat: 6.02 anInt2: 607 dInt1: 807 dVar1: 907 dpInt1: 107 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 207 aFloat: 400.6 pInt: 1007 pFloat: 6.02 anInt2: 607 dInt1: 807 dVar1: 907 dpInt1: 107 cEL: cvec[3] pvInt: [-240 -239 -238 -237 -236 -235 ] pvFloat: [-0.438 -0.338 -0.238 -0.138 -0.038 0.062 ] dpvFloat: [0.620 0.621 0.622 0.623 0.624 0.625 ] -xAODTestReadCVe... INFO anInt1 208 aFloat: 400.7 pInt: 1008 pFloat: 7.02 anInt2: 608 dInt1: 808 dVar1: 908 dpInt1: 108 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 208 aFloat: 400.7 pInt: 1008 pFloat: 7.02 anInt2: 608 dInt1: 808 dVar1: 908 dpInt1: 108 cEL: cvec[2] pvInt: [-230 -229 -228 -227 -226 -225 -224 ] pvFloat: [-0.428 -0.328 -0.228 -0.128 -0.028 0.072 0.172 ] dpvFloat: [0.720 0.721 0.722 0.723 0.724 0.725 0.726 ] -xAODTestReadCVe... INFO anInt1 209 aFloat: 400.8 pInt: 1009 pFloat: 8.02 anInt2: 609 dInt1: 809 dVar1: 909 dpInt1: 109 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 209 aFloat: 400.8 pInt: 1009 pFloat: 8.02 anInt2: 609 dInt1: 809 dVar1: 909 dpInt1: 109 cEL: cvec[1] pvInt: [-220 -219 -218 -217 -216 -215 -214 -213 ] pvFloat: [-0.418 -0.318 -0.218 -0.118 -0.018 0.082 0.182 0.282 ] dpvFloat: [0.820 0.821 0.822 0.823 0.824 0.825 0.826 0.827 ] -xAODTestReadCVe... INFO anInt1 210 aFloat: 400.9 pInt: 1010 pFloat: 9.02 anInt2: 610 dInt1: 810 dVar1: 910 dpInt1: 110 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 210 aFloat: 400.9 pInt: 1010 pFloat: 9.02 anInt2: 610 dInt1: 810 dVar1: 910 dpInt1: 110 cEL: cvec[0] pvInt: [-210 -209 -208 -207 -206 -205 -204 -203 -202 ] pvFloat: [-0.408 -0.308 -0.208 -0.108 -0.008 0.092 0.192 0.292 0.392 ] dpvFloat: [0.920 0.921 0.922 0.923 0.924 0.925 0.926 0.927 0.928 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 2000 aFloat: 0.2 anInt2: 4000 dInt1: 6000 cEL: cvec[2] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 2000 aFloat: 0.2 anInt2: 4000 dInt1: 6000 cEL: cvec[2] xAODTestRead_copy INFO 1 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 1001 aFloat: 1200 anInt2: 1401 dInt1: 961 @@ -173,63 +172,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 1410 gFloat 1509.5 gvFloat 1409.5 1509.5 1609.5 1709.5 1809.5 1909.5 2009.5 2109.5 2209.5 xAODTestRead_copy INFO copy_cvecWD 0: 401 402 403 404 405 406 407 408 409 410 -xAODTestReadCVi... INFO copy_cview: 210 209 208 207 206 205 204 203 202 201 -xAODTestReadHVe... INFO copy_hvec: 820.5 819.5 818.5 817.5 816.5 815.5 814.5 813.5 812.5 811.5 810.5 809.5 808.5 807.5 806.5 805.5 804.5 803.5 802.5 801.5 -xAODTestReadHVe... INFO copy_hview: 801.5 802.5 803.5 804.5 805.5 806.5 807.5 808.5 809.5 810.5 811.5 812.5 813.5 814.5 815.5 816.5 817.5 818.5 819.5 820.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 201 aFloat: 400 pInt: 1001 pFloat: 0.02 anInt2: 601 dInt1: 801 dVar1: 901 dpInt1: 101 dInt100: 301 dInt150: 501 anInt10: 40100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 210 209 208 207 206 205 204 203 202 201 +xAODTe...HVec_copy INFO copy_hvec: 820.5 819.5 818.5 817.5 816.5 815.5 814.5 813.5 812.5 811.5 810.5 809.5 808.5 807.5 806.5 805.5 804.5 803.5 802.5 801.5 +xAODTe...HVec_copy INFO copy_hview: 801.5 802.5 803.5 804.5 805.5 806.5 807.5 808.5 809.5 810.5 811.5 812.5 813.5 814.5 815.5 816.5 817.5 818.5 819.5 820.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 201 aFloat: 400 pInt: 1001 pFloat: 0.02 anInt2: 601 dInt1: 801 dVar1: 901 dpInt1: 101 dInt100: 301 dInt150: 501 anInt10: 40100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 202 aFloat: 400.1 pInt: 1002 pFloat: 1.02 anInt2: 602 dInt1: 802 dVar1: 902 dpInt1: 102 dInt100: 302 dInt150: 502 anInt10: 40200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 202 aFloat: 400.1 pInt: 1002 pFloat: 1.02 anInt2: 602 dInt1: 802 dVar1: 902 dpInt1: 102 dInt100: 302 dInt150: 502 anInt10: 40200 cEL: cvec[8] pvInt: [-290 ] pvFloat: [-0.488 ] dpvFloat: [0.120 ] -xAODTestReadCVe... INFO anInt1 203 aFloat: 400.2 pInt: 1003 pFloat: 2.02 anInt2: 603 dInt1: 803 dVar1: 903 dpInt1: 103 dInt100: 303 dInt150: 503 anInt10: 40300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 203 aFloat: 400.2 pInt: 1003 pFloat: 2.02 anInt2: 603 dInt1: 803 dVar1: 903 dpInt1: 103 dInt100: 303 dInt150: 503 anInt10: 40300 cEL: cvec[7] pvInt: [-280 -279 ] pvFloat: [-0.478 -0.378 ] dpvFloat: [0.220 0.221 ] -xAODTestReadCVe... INFO anInt1 204 aFloat: 400.3 pInt: 1004 pFloat: 3.02 anInt2: 604 dInt1: 804 dVar1: 904 dpInt1: 104 dInt100: 304 dInt150: 504 anInt10: 40400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 204 aFloat: 400.3 pInt: 1004 pFloat: 3.02 anInt2: 604 dInt1: 804 dVar1: 904 dpInt1: 104 dInt100: 304 dInt150: 504 anInt10: 40400 cEL: cvec[6] pvInt: [-270 -269 -268 ] pvFloat: [-0.468 -0.368 -0.268 ] dpvFloat: [0.320 0.321 0.322 ] -xAODTestReadCVe... INFO anInt1 205 aFloat: 400.4 pInt: 1005 pFloat: 4.02 anInt2: 605 dInt1: 805 dVar1: 905 dpInt1: 105 dInt100: 305 dInt150: 505 anInt10: 40500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 205 aFloat: 400.4 pInt: 1005 pFloat: 4.02 anInt2: 605 dInt1: 805 dVar1: 905 dpInt1: 105 dInt100: 305 dInt150: 505 anInt10: 40500 cEL: cvec[5] pvInt: [-260 -259 -258 -257 ] pvFloat: [-0.458 -0.358 -0.258 -0.158 ] dpvFloat: [0.420 0.421 0.422 0.423 ] -xAODTestReadCVe... INFO anInt1 206 aFloat: 400.5 pInt: 1006 pFloat: 5.02 anInt2: 606 dInt1: 806 dVar1: 906 dpInt1: 106 dInt100: 306 dInt150: 506 anInt10: 40600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 206 aFloat: 400.5 pInt: 1006 pFloat: 5.02 anInt2: 606 dInt1: 806 dVar1: 906 dpInt1: 106 dInt100: 306 dInt150: 506 anInt10: 40600 cEL: cvec[4] pvInt: [-250 -249 -248 -247 -246 ] pvFloat: [-0.448 -0.348 -0.248 -0.148 -0.048 ] dpvFloat: [0.520 0.521 0.522 0.523 0.524 ] -xAODTestReadCVe... INFO anInt1 207 aFloat: 400.6 pInt: 1007 pFloat: 6.02 anInt2: 607 dInt1: 807 dVar1: 907 dpInt1: 107 dInt100: 307 dInt150: 507 anInt10: 40700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 207 aFloat: 400.6 pInt: 1007 pFloat: 6.02 anInt2: 607 dInt1: 807 dVar1: 907 dpInt1: 107 dInt100: 307 dInt150: 507 anInt10: 40700 cEL: cvec[3] pvInt: [-240 -239 -238 -237 -236 -235 ] pvFloat: [-0.438 -0.338 -0.238 -0.138 -0.038 0.062 ] dpvFloat: [0.620 0.621 0.622 0.623 0.624 0.625 ] -xAODTestReadCVe... INFO anInt1 208 aFloat: 400.7 pInt: 1008 pFloat: 7.02 anInt2: 608 dInt1: 808 dVar1: 908 dpInt1: 108 dInt100: 308 dInt150: 508 anInt10: 40800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 208 aFloat: 400.7 pInt: 1008 pFloat: 7.02 anInt2: 608 dInt1: 808 dVar1: 908 dpInt1: 108 dInt100: 308 dInt150: 508 anInt10: 40800 cEL: cvec[2] pvInt: [-230 -229 -228 -227 -226 -225 -224 ] pvFloat: [-0.428 -0.328 -0.228 -0.128 -0.028 0.072 0.172 ] dpvFloat: [0.720 0.721 0.722 0.723 0.724 0.725 0.726 ] -xAODTestReadCVe... INFO anInt1 209 aFloat: 400.8 pInt: 1009 pFloat: 8.02 anInt2: 609 dInt1: 809 dVar1: 909 dpInt1: 109 dInt100: 309 dInt150: 509 anInt10: 40900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 209 aFloat: 400.8 pInt: 1009 pFloat: 8.02 anInt2: 609 dInt1: 809 dVar1: 909 dpInt1: 109 dInt100: 309 dInt150: 509 anInt10: 40900 cEL: cvec[1] pvInt: [-220 -219 -218 -217 -216 -215 -214 -213 ] pvFloat: [-0.418 -0.318 -0.218 -0.118 -0.018 0.082 0.182 0.282 ] dpvFloat: [0.820 0.821 0.822 0.823 0.824 0.825 0.826 0.827 ] -xAODTestReadCVe... INFO anInt1 210 aFloat: 400.9 pInt: 1010 pFloat: 9.02 anInt2: 610 dInt1: 810 dVar1: 910 dpInt1: 110 dInt100: 310 dInt150: 510 anInt10: 41000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 210 aFloat: 400.9 pInt: 1010 pFloat: 9.02 anInt2: 610 dInt1: 810 dVar1: 910 dpInt1: 110 dInt100: 310 dInt150: 510 anInt10: 41000 cEL: cvec[0] pvInt: [-210 -209 -208 -207 -206 -205 -204 -203 -202 ] pvFloat: [-0.408 -0.308 -0.208 -0.108 -0.008 0.092 0.192 0.292 0.392 ] dpvFloat: [0.920 0.921 0.922 0.923 0.924 0.925 0.926 0.927 0.928 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 2000 aFloat: 0.2 anInt2: 4000 dInt1: 6000 cEL: cvec[2] dInt100: 2500 dInt150: 2700 anInt10: 420000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 2000 aFloat: 0.2 anInt2: 4000 dInt1: 6000 cEL: cvec[2] dInt100: 2500 dInt150: 2700 anInt10: 420000 xAODTestRead_scopy INFO 1 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 1001 aFloat: 1200 anInt2: 1401 dInt1: 961 dInt100: 1701 dInt150: 1901 anInt10: 320300 @@ -241,7 +240,7 @@ xAODTestRead_scopy INFO anInt1 1006 aFloat: 1200.5 anInt2: 1406 dInt1: 966 dI xAODTestRead_scopy INFO anInt1 1007 aFloat: 1200.6 anInt2: 1407 dInt1: 967 dInt100: 1707 dInt150: 1907 anInt10: 322100 xAODTestRead_scopy INFO anInt1 1008 aFloat: 1200.7 anInt2: 1408 dInt1: 968 dInt100: 1708 dInt150: 1908 anInt10: 322400 xAODTestRead_scopy INFO scopy_cvecWD 1002: 401(60100) 402(60200) 403(60300) 404(60400) 405(60500) 406(60600) 407(60700) 408(60800) 409(60900) 410(61000) -xAODTestReadHVe... INFO scopy_hvec: 801.5 802.5 803.5 804.5 805.5 806.5 807.5 808.5 809.5 810.5 811.5 812.5 813.5 814.5 815.5 816.5 817.5 818.5 819.5 820.5 +xAODTe...Vec_scopy INFO scopy_hvec: 801.5 802.5 803.5 804.5 805.5 806.5 807.5 808.5 809.5 810.5 811.5 812.5 813.5 814.5 815.5 816.5 817.5 818.5 819.5 820.5 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -324,60 +323,60 @@ xAODTestRead INFO cvecWD 1003: 601 602 603 604 605 606 607 608 609 610 xAODTestReadCView INFO cview: 310 309 308 307 306 305 304 303 302 301 xAODTestReadHVec INFO hvec: 1201.5 1202.5 1203.5 1204.5 1205.5 1206.5 1207.5 1208.5 1209.5 1210.5 1211.5 1212.5 1213.5 1214.5 1215.5 1216.5 1217.5 1218.5 1219.5 1220.5 xAODTestReadHVec INFO hview: 1220.5 1219.5 1218.5 1217.5 1216.5 1215.5 1214.5 1213.5 1212.5 1211.5 1210.5 1209.5 1208.5 1207.5 1206.5 1205.5 1204.5 1203.5 1202.5 1201.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 301 aFloat: 600 pInt: 1501 pFloat: 0.03 anInt2: 901 dInt1: 1201 dVar1: 1351 dpInt1: 151 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 301 aFloat: 600 pInt: 1501 pFloat: 0.03 anInt2: 901 dInt1: 1201 dVar1: 1351 dpInt1: 151 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 302 aFloat: 600.1 pInt: 1502 pFloat: 1.03 anInt2: 902 dInt1: 1202 dVar1: 1352 dpInt1: 152 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 302 aFloat: 600.1 pInt: 1502 pFloat: 1.03 anInt2: 902 dInt1: 1202 dVar1: 1352 dpInt1: 152 cEL: cvec[8] pvInt: [-190 ] pvFloat: [-0.487 ] dpvFloat: [0.130 ] -xAODTestReadCVe... INFO anInt1 303 aFloat: 600.2 pInt: 1503 pFloat: 2.03 anInt2: 903 dInt1: 1203 dVar1: 1353 dpInt1: 153 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 303 aFloat: 600.2 pInt: 1503 pFloat: 2.03 anInt2: 903 dInt1: 1203 dVar1: 1353 dpInt1: 153 cEL: cvec[7] pvInt: [-180 -179 ] pvFloat: [-0.477 -0.377 ] dpvFloat: [0.230 0.231 ] -xAODTestReadCVe... INFO anInt1 304 aFloat: 600.3 pInt: 1504 pFloat: 3.03 anInt2: 904 dInt1: 1204 dVar1: 1354 dpInt1: 154 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 304 aFloat: 600.3 pInt: 1504 pFloat: 3.03 anInt2: 904 dInt1: 1204 dVar1: 1354 dpInt1: 154 cEL: cvec[6] pvInt: [-170 -169 -168 ] pvFloat: [-0.467 -0.367 -0.267 ] dpvFloat: [0.330 0.331 0.332 ] -xAODTestReadCVe... INFO anInt1 305 aFloat: 600.4 pInt: 1505 pFloat: 4.03 anInt2: 905 dInt1: 1205 dVar1: 1355 dpInt1: 155 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 305 aFloat: 600.4 pInt: 1505 pFloat: 4.03 anInt2: 905 dInt1: 1205 dVar1: 1355 dpInt1: 155 cEL: cvec[5] pvInt: [-160 -159 -158 -157 ] pvFloat: [-0.457 -0.357 -0.257 -0.157 ] dpvFloat: [0.430 0.431 0.432 0.433 ] -xAODTestReadCVe... INFO anInt1 306 aFloat: 600.5 pInt: 1506 pFloat: 5.03 anInt2: 906 dInt1: 1206 dVar1: 1356 dpInt1: 156 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 306 aFloat: 600.5 pInt: 1506 pFloat: 5.03 anInt2: 906 dInt1: 1206 dVar1: 1356 dpInt1: 156 cEL: cvec[4] pvInt: [-150 -149 -148 -147 -146 ] pvFloat: [-0.447 -0.347 -0.247 -0.147 -0.047 ] dpvFloat: [0.530 0.531 0.532 0.533 0.534 ] -xAODTestReadCVe... INFO anInt1 307 aFloat: 600.6 pInt: 1507 pFloat: 6.03 anInt2: 907 dInt1: 1207 dVar1: 1357 dpInt1: 157 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 307 aFloat: 600.6 pInt: 1507 pFloat: 6.03 anInt2: 907 dInt1: 1207 dVar1: 1357 dpInt1: 157 cEL: cvec[3] pvInt: [-140 -139 -138 -137 -136 -135 ] pvFloat: [-0.437 -0.337 -0.237 -0.137 -0.037 0.063 ] dpvFloat: [0.630 0.631 0.632 0.633 0.634 0.635 ] -xAODTestReadCVe... INFO anInt1 308 aFloat: 600.7 pInt: 1508 pFloat: 7.03 anInt2: 908 dInt1: 1208 dVar1: 1358 dpInt1: 158 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 308 aFloat: 600.7 pInt: 1508 pFloat: 7.03 anInt2: 908 dInt1: 1208 dVar1: 1358 dpInt1: 158 cEL: cvec[2] pvInt: [-130 -129 -128 -127 -126 -125 -124 ] pvFloat: [-0.427 -0.327 -0.227 -0.127 -0.027 0.073 0.173 ] dpvFloat: [0.730 0.731 0.732 0.733 0.734 0.735 0.736 ] -xAODTestReadCVe... INFO anInt1 309 aFloat: 600.8 pInt: 1509 pFloat: 8.03 anInt2: 909 dInt1: 1209 dVar1: 1359 dpInt1: 159 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 309 aFloat: 600.8 pInt: 1509 pFloat: 8.03 anInt2: 909 dInt1: 1209 dVar1: 1359 dpInt1: 159 cEL: cvec[1] pvInt: [-120 -119 -118 -117 -116 -115 -114 -113 ] pvFloat: [-0.417 -0.317 -0.217 -0.117 -0.017 0.083 0.183 0.283 ] dpvFloat: [0.830 0.831 0.832 0.833 0.834 0.835 0.836 0.837 ] -xAODTestReadCVe... INFO anInt1 310 aFloat: 600.9 pInt: 1510 pFloat: 9.03 anInt2: 910 dInt1: 1210 dVar1: 1360 dpInt1: 160 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 310 aFloat: 600.9 pInt: 1510 pFloat: 9.03 anInt2: 910 dInt1: 1210 dVar1: 1360 dpInt1: 160 cEL: cvec[0] pvInt: [-110 -109 -108 -107 -106 -105 -104 -103 -102 ] pvFloat: [-0.407 -0.307 -0.207 -0.107 -0.007 0.093 0.193 0.293 0.393 ] dpvFloat: [0.930 0.931 0.932 0.933 0.934 0.935 0.936 0.937 0.938 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 3000 aFloat: 0.3 anInt2: 6000 dInt1: 9000 cEL: cvec[3] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 3000 aFloat: 0.3 anInt2: 6000 dInt1: 9000 cEL: cvec[3] xAODTestRead_copy INFO 2 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 1501 aFloat: 1800 anInt2: 2101 dInt1: 1441 @@ -401,63 +400,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 2110 gFloat 2209.5 gvFloat 2109.5 2209.5 2309.5 2409.5 2509.5 2609.5 2709.5 2809.5 2909.5 xAODTestRead_copy INFO copy_cvecWD 0: 601 602 603 604 605 606 607 608 609 610 -xAODTestReadCVi... INFO copy_cview: 310 309 308 307 306 305 304 303 302 301 -xAODTestReadHVe... INFO copy_hvec: 1220.5 1219.5 1218.5 1217.5 1216.5 1215.5 1214.5 1213.5 1212.5 1211.5 1210.5 1209.5 1208.5 1207.5 1206.5 1205.5 1204.5 1203.5 1202.5 1201.5 -xAODTestReadHVe... INFO copy_hview: 1201.5 1202.5 1203.5 1204.5 1205.5 1206.5 1207.5 1208.5 1209.5 1210.5 1211.5 1212.5 1213.5 1214.5 1215.5 1216.5 1217.5 1218.5 1219.5 1220.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 301 aFloat: 600 pInt: 1501 pFloat: 0.03 anInt2: 901 dInt1: 1201 dVar1: 1351 dpInt1: 151 dInt100: 401 dInt150: 601 anInt10: 70100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 310 309 308 307 306 305 304 303 302 301 +xAODTe...HVec_copy INFO copy_hvec: 1220.5 1219.5 1218.5 1217.5 1216.5 1215.5 1214.5 1213.5 1212.5 1211.5 1210.5 1209.5 1208.5 1207.5 1206.5 1205.5 1204.5 1203.5 1202.5 1201.5 +xAODTe...HVec_copy INFO copy_hview: 1201.5 1202.5 1203.5 1204.5 1205.5 1206.5 1207.5 1208.5 1209.5 1210.5 1211.5 1212.5 1213.5 1214.5 1215.5 1216.5 1217.5 1218.5 1219.5 1220.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 301 aFloat: 600 pInt: 1501 pFloat: 0.03 anInt2: 901 dInt1: 1201 dVar1: 1351 dpInt1: 151 dInt100: 401 dInt150: 601 anInt10: 70100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 302 aFloat: 600.1 pInt: 1502 pFloat: 1.03 anInt2: 902 dInt1: 1202 dVar1: 1352 dpInt1: 152 dInt100: 402 dInt150: 602 anInt10: 70200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 302 aFloat: 600.1 pInt: 1502 pFloat: 1.03 anInt2: 902 dInt1: 1202 dVar1: 1352 dpInt1: 152 dInt100: 402 dInt150: 602 anInt10: 70200 cEL: cvec[8] pvInt: [-190 ] pvFloat: [-0.487 ] dpvFloat: [0.130 ] -xAODTestReadCVe... INFO anInt1 303 aFloat: 600.2 pInt: 1503 pFloat: 2.03 anInt2: 903 dInt1: 1203 dVar1: 1353 dpInt1: 153 dInt100: 403 dInt150: 603 anInt10: 70300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 303 aFloat: 600.2 pInt: 1503 pFloat: 2.03 anInt2: 903 dInt1: 1203 dVar1: 1353 dpInt1: 153 dInt100: 403 dInt150: 603 anInt10: 70300 cEL: cvec[7] pvInt: [-180 -179 ] pvFloat: [-0.477 -0.377 ] dpvFloat: [0.230 0.231 ] -xAODTestReadCVe... INFO anInt1 304 aFloat: 600.3 pInt: 1504 pFloat: 3.03 anInt2: 904 dInt1: 1204 dVar1: 1354 dpInt1: 154 dInt100: 404 dInt150: 604 anInt10: 70400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 304 aFloat: 600.3 pInt: 1504 pFloat: 3.03 anInt2: 904 dInt1: 1204 dVar1: 1354 dpInt1: 154 dInt100: 404 dInt150: 604 anInt10: 70400 cEL: cvec[6] pvInt: [-170 -169 -168 ] pvFloat: [-0.467 -0.367 -0.267 ] dpvFloat: [0.330 0.331 0.332 ] -xAODTestReadCVe... INFO anInt1 305 aFloat: 600.4 pInt: 1505 pFloat: 4.03 anInt2: 905 dInt1: 1205 dVar1: 1355 dpInt1: 155 dInt100: 405 dInt150: 605 anInt10: 70500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 305 aFloat: 600.4 pInt: 1505 pFloat: 4.03 anInt2: 905 dInt1: 1205 dVar1: 1355 dpInt1: 155 dInt100: 405 dInt150: 605 anInt10: 70500 cEL: cvec[5] pvInt: [-160 -159 -158 -157 ] pvFloat: [-0.457 -0.357 -0.257 -0.157 ] dpvFloat: [0.430 0.431 0.432 0.433 ] -xAODTestReadCVe... INFO anInt1 306 aFloat: 600.5 pInt: 1506 pFloat: 5.03 anInt2: 906 dInt1: 1206 dVar1: 1356 dpInt1: 156 dInt100: 406 dInt150: 606 anInt10: 70600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 306 aFloat: 600.5 pInt: 1506 pFloat: 5.03 anInt2: 906 dInt1: 1206 dVar1: 1356 dpInt1: 156 dInt100: 406 dInt150: 606 anInt10: 70600 cEL: cvec[4] pvInt: [-150 -149 -148 -147 -146 ] pvFloat: [-0.447 -0.347 -0.247 -0.147 -0.047 ] dpvFloat: [0.530 0.531 0.532 0.533 0.534 ] -xAODTestReadCVe... INFO anInt1 307 aFloat: 600.6 pInt: 1507 pFloat: 6.03 anInt2: 907 dInt1: 1207 dVar1: 1357 dpInt1: 157 dInt100: 407 dInt150: 607 anInt10: 70700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 307 aFloat: 600.6 pInt: 1507 pFloat: 6.03 anInt2: 907 dInt1: 1207 dVar1: 1357 dpInt1: 157 dInt100: 407 dInt150: 607 anInt10: 70700 cEL: cvec[3] pvInt: [-140 -139 -138 -137 -136 -135 ] pvFloat: [-0.437 -0.337 -0.237 -0.137 -0.037 0.063 ] dpvFloat: [0.630 0.631 0.632 0.633 0.634 0.635 ] -xAODTestReadCVe... INFO anInt1 308 aFloat: 600.7 pInt: 1508 pFloat: 7.03 anInt2: 908 dInt1: 1208 dVar1: 1358 dpInt1: 158 dInt100: 408 dInt150: 608 anInt10: 70800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 308 aFloat: 600.7 pInt: 1508 pFloat: 7.03 anInt2: 908 dInt1: 1208 dVar1: 1358 dpInt1: 158 dInt100: 408 dInt150: 608 anInt10: 70800 cEL: cvec[2] pvInt: [-130 -129 -128 -127 -126 -125 -124 ] pvFloat: [-0.427 -0.327 -0.227 -0.127 -0.027 0.073 0.173 ] dpvFloat: [0.730 0.731 0.732 0.733 0.734 0.735 0.736 ] -xAODTestReadCVe... INFO anInt1 309 aFloat: 600.8 pInt: 1509 pFloat: 8.03 anInt2: 909 dInt1: 1209 dVar1: 1359 dpInt1: 159 dInt100: 409 dInt150: 609 anInt10: 70900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 309 aFloat: 600.8 pInt: 1509 pFloat: 8.03 anInt2: 909 dInt1: 1209 dVar1: 1359 dpInt1: 159 dInt100: 409 dInt150: 609 anInt10: 70900 cEL: cvec[1] pvInt: [-120 -119 -118 -117 -116 -115 -114 -113 ] pvFloat: [-0.417 -0.317 -0.217 -0.117 -0.017 0.083 0.183 0.283 ] dpvFloat: [0.830 0.831 0.832 0.833 0.834 0.835 0.836 0.837 ] -xAODTestReadCVe... INFO anInt1 310 aFloat: 600.9 pInt: 1510 pFloat: 9.03 anInt2: 910 dInt1: 1210 dVar1: 1360 dpInt1: 160 dInt100: 410 dInt150: 610 anInt10: 71000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 310 aFloat: 600.9 pInt: 1510 pFloat: 9.03 anInt2: 910 dInt1: 1210 dVar1: 1360 dpInt1: 160 dInt100: 410 dInt150: 610 anInt10: 71000 cEL: cvec[0] pvInt: [-110 -109 -108 -107 -106 -105 -104 -103 -102 ] pvFloat: [-0.407 -0.307 -0.207 -0.107 -0.007 0.093 0.193 0.293 0.393 ] dpvFloat: [0.930 0.931 0.932 0.933 0.934 0.935 0.936 0.937 0.938 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 3000 aFloat: 0.3 anInt2: 6000 dInt1: 9000 cEL: cvec[3] dInt100: 3500 dInt150: 3700 anInt10: 640000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 3000 aFloat: 0.3 anInt2: 6000 dInt1: 9000 cEL: cvec[3] dInt100: 3500 dInt150: 3700 anInt10: 640000 xAODTestRead_scopy INFO 2 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 1501 aFloat: 1800 anInt2: 2101 dInt1: 1441 dInt100: 2201 dInt150: 2401 anInt10: 490300 @@ -469,7 +468,7 @@ xAODTestRead_scopy INFO anInt1 1506 aFloat: 1800.5 anInt2: 2106 dInt1: 1446 d xAODTestRead_scopy INFO anInt1 1507 aFloat: 1800.6 anInt2: 2107 dInt1: 1447 dInt100: 2207 dInt150: 2407 anInt10: 492100 xAODTestRead_scopy INFO anInt1 1508 aFloat: 1800.7 anInt2: 2108 dInt1: 1448 dInt100: 2208 dInt150: 2408 anInt10: 492400 xAODTestRead_scopy INFO scopy_cvecWD 1003: 601(100100) 602(100200) 603(100300) 604(100400) 605(100500) 606(100600) 607(100700) 608(100800) 609(100900) 610(101000) -xAODTestReadHVe... INFO scopy_hvec: 1201.5 1202.5 1203.5 1204.5 1205.5 1206.5 1207.5 1208.5 1209.5 1210.5 1211.5 1212.5 1213.5 1214.5 1215.5 1216.5 1217.5 1218.5 1219.5 1220.5 +xAODTe...Vec_scopy INFO scopy_hvec: 1201.5 1202.5 1203.5 1204.5 1205.5 1206.5 1207.5 1208.5 1209.5 1210.5 1211.5 1212.5 1213.5 1214.5 1215.5 1216.5 1217.5 1218.5 1219.5 1220.5 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #3, run #0 2 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -552,60 +551,60 @@ xAODTestRead INFO cvecWD 1004: 801 802 803 804 805 806 807 808 809 810 xAODTestReadCView INFO cview: 410 409 408 407 406 405 404 403 402 401 xAODTestReadHVec INFO hvec: 1601.5 1602.5 1603.5 1604.5 1605.5 1606.5 1607.5 1608.5 1609.5 1610.5 1611.5 1612.5 1613.5 1614.5 1615.5 1616.5 1617.5 1618.5 1619.5 1620.5 xAODTestReadHVec INFO hview: 1620.5 1619.5 1618.5 1617.5 1616.5 1615.5 1614.5 1613.5 1612.5 1611.5 1610.5 1609.5 1608.5 1607.5 1606.5 1605.5 1604.5 1603.5 1602.5 1601.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 401 aFloat: 800 pInt: 2001 pFloat: 0.04 anInt2: 1201 dInt1: 1601 dVar1: 1801 dpInt1: 201 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 401 aFloat: 800 pInt: 2001 pFloat: 0.04 anInt2: 1201 dInt1: 1601 dVar1: 1801 dpInt1: 201 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 402 aFloat: 800.1 pInt: 2002 pFloat: 1.04 anInt2: 1202 dInt1: 1602 dVar1: 1802 dpInt1: 202 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 402 aFloat: 800.1 pInt: 2002 pFloat: 1.04 anInt2: 1202 dInt1: 1602 dVar1: 1802 dpInt1: 202 cEL: cvec[8] pvInt: [-90 ] pvFloat: [-0.486 ] dpvFloat: [0.140 ] -xAODTestReadCVe... INFO anInt1 403 aFloat: 800.2 pInt: 2003 pFloat: 2.04 anInt2: 1203 dInt1: 1603 dVar1: 1803 dpInt1: 203 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 403 aFloat: 800.2 pInt: 2003 pFloat: 2.04 anInt2: 1203 dInt1: 1603 dVar1: 1803 dpInt1: 203 cEL: cvec[7] pvInt: [-80 -79 ] pvFloat: [-0.476 -0.376 ] dpvFloat: [0.240 0.241 ] -xAODTestReadCVe... INFO anInt1 404 aFloat: 800.3 pInt: 2004 pFloat: 3.04 anInt2: 1204 dInt1: 1604 dVar1: 1804 dpInt1: 204 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 404 aFloat: 800.3 pInt: 2004 pFloat: 3.04 anInt2: 1204 dInt1: 1604 dVar1: 1804 dpInt1: 204 cEL: cvec[6] pvInt: [-70 -69 -68 ] pvFloat: [-0.466 -0.366 -0.266 ] dpvFloat: [0.340 0.341 0.342 ] -xAODTestReadCVe... INFO anInt1 405 aFloat: 800.4 pInt: 2005 pFloat: 4.04 anInt2: 1205 dInt1: 1605 dVar1: 1805 dpInt1: 205 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 405 aFloat: 800.4 pInt: 2005 pFloat: 4.04 anInt2: 1205 dInt1: 1605 dVar1: 1805 dpInt1: 205 cEL: cvec[5] pvInt: [-60 -59 -58 -57 ] pvFloat: [-0.456 -0.356 -0.256 -0.156 ] dpvFloat: [0.440 0.441 0.442 0.443 ] -xAODTestReadCVe... INFO anInt1 406 aFloat: 800.5 pInt: 2006 pFloat: 5.04 anInt2: 1206 dInt1: 1606 dVar1: 1806 dpInt1: 206 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 406 aFloat: 800.5 pInt: 2006 pFloat: 5.04 anInt2: 1206 dInt1: 1606 dVar1: 1806 dpInt1: 206 cEL: cvec[4] pvInt: [-50 -49 -48 -47 -46 ] pvFloat: [-0.446 -0.346 -0.246 -0.146 -0.046 ] dpvFloat: [0.540 0.541 0.542 0.543 0.544 ] -xAODTestReadCVe... INFO anInt1 407 aFloat: 800.6 pInt: 2007 pFloat: 6.04 anInt2: 1207 dInt1: 1607 dVar1: 1807 dpInt1: 207 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 407 aFloat: 800.6 pInt: 2007 pFloat: 6.04 anInt2: 1207 dInt1: 1607 dVar1: 1807 dpInt1: 207 cEL: cvec[3] pvInt: [-40 -39 -38 -37 -36 -35 ] pvFloat: [-0.436 -0.336 -0.236 -0.136 -0.036 0.064 ] dpvFloat: [0.640 0.641 0.642 0.643 0.644 0.645 ] -xAODTestReadCVe... INFO anInt1 408 aFloat: 800.7 pInt: 2008 pFloat: 7.04 anInt2: 1208 dInt1: 1608 dVar1: 1808 dpInt1: 208 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 408 aFloat: 800.7 pInt: 2008 pFloat: 7.04 anInt2: 1208 dInt1: 1608 dVar1: 1808 dpInt1: 208 cEL: cvec[2] pvInt: [-30 -29 -28 -27 -26 -25 -24 ] pvFloat: [-0.426 -0.326 -0.226 -0.126 -0.026 0.074 0.174 ] dpvFloat: [0.740 0.741 0.742 0.743 0.744 0.745 0.746 ] -xAODTestReadCVe... INFO anInt1 409 aFloat: 800.8 pInt: 2009 pFloat: 8.04 anInt2: 1209 dInt1: 1609 dVar1: 1809 dpInt1: 209 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 409 aFloat: 800.8 pInt: 2009 pFloat: 8.04 anInt2: 1209 dInt1: 1609 dVar1: 1809 dpInt1: 209 cEL: cvec[1] pvInt: [-20 -19 -18 -17 -16 -15 -14 -13 ] pvFloat: [-0.416 -0.316 -0.216 -0.116 -0.016 0.084 0.184 0.284 ] dpvFloat: [0.840 0.841 0.842 0.843 0.844 0.845 0.846 0.847 ] -xAODTestReadCVe... INFO anInt1 410 aFloat: 800.9 pInt: 2010 pFloat: 9.04 anInt2: 1210 dInt1: 1610 dVar1: 1810 dpInt1: 210 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 410 aFloat: 800.9 pInt: 2010 pFloat: 9.04 anInt2: 1210 dInt1: 1610 dVar1: 1810 dpInt1: 210 cEL: cvec[0] pvInt: [-10 -9 -8 -7 -6 -5 -4 -3 -2 ] pvFloat: [-0.406 -0.306 -0.206 -0.106 -0.006 0.094 0.194 0.294 0.394 ] dpvFloat: [0.940 0.941 0.942 0.943 0.944 0.945 0.946 0.947 0.948 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 4000 aFloat: 0.4 anInt2: 8000 dInt1: 12000 cEL: cvec[4] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 4000 aFloat: 0.4 anInt2: 8000 dInt1: 12000 cEL: cvec[4] xAODTestRead_copy INFO 3 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 2001 aFloat: 2400 anInt2: 2801 dInt1: 1921 @@ -629,63 +628,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 2810 gFloat 2909.5 gvFloat 2809.5 2909.5 3009.5 3109.5 3209.5 3309.5 3409.5 3509.5 3609.5 xAODTestRead_copy INFO copy_cvecWD 0: 801 802 803 804 805 806 807 808 809 810 -xAODTestReadCVi... INFO copy_cview: 410 409 408 407 406 405 404 403 402 401 -xAODTestReadHVe... INFO copy_hvec: 1620.5 1619.5 1618.5 1617.5 1616.5 1615.5 1614.5 1613.5 1612.5 1611.5 1610.5 1609.5 1608.5 1607.5 1606.5 1605.5 1604.5 1603.5 1602.5 1601.5 -xAODTestReadHVe... INFO copy_hview: 1601.5 1602.5 1603.5 1604.5 1605.5 1606.5 1607.5 1608.5 1609.5 1610.5 1611.5 1612.5 1613.5 1614.5 1615.5 1616.5 1617.5 1618.5 1619.5 1620.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 401 aFloat: 800 pInt: 2001 pFloat: 0.04 anInt2: 1201 dInt1: 1601 dVar1: 1801 dpInt1: 201 dInt100: 501 dInt150: 701 anInt10: 100100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 410 409 408 407 406 405 404 403 402 401 +xAODTe...HVec_copy INFO copy_hvec: 1620.5 1619.5 1618.5 1617.5 1616.5 1615.5 1614.5 1613.5 1612.5 1611.5 1610.5 1609.5 1608.5 1607.5 1606.5 1605.5 1604.5 1603.5 1602.5 1601.5 +xAODTe...HVec_copy INFO copy_hview: 1601.5 1602.5 1603.5 1604.5 1605.5 1606.5 1607.5 1608.5 1609.5 1610.5 1611.5 1612.5 1613.5 1614.5 1615.5 1616.5 1617.5 1618.5 1619.5 1620.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 401 aFloat: 800 pInt: 2001 pFloat: 0.04 anInt2: 1201 dInt1: 1601 dVar1: 1801 dpInt1: 201 dInt100: 501 dInt150: 701 anInt10: 100100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 402 aFloat: 800.1 pInt: 2002 pFloat: 1.04 anInt2: 1202 dInt1: 1602 dVar1: 1802 dpInt1: 202 dInt100: 502 dInt150: 702 anInt10: 100200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 402 aFloat: 800.1 pInt: 2002 pFloat: 1.04 anInt2: 1202 dInt1: 1602 dVar1: 1802 dpInt1: 202 dInt100: 502 dInt150: 702 anInt10: 100200 cEL: cvec[8] pvInt: [-90 ] pvFloat: [-0.486 ] dpvFloat: [0.140 ] -xAODTestReadCVe... INFO anInt1 403 aFloat: 800.2 pInt: 2003 pFloat: 2.04 anInt2: 1203 dInt1: 1603 dVar1: 1803 dpInt1: 203 dInt100: 503 dInt150: 703 anInt10: 100300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 403 aFloat: 800.2 pInt: 2003 pFloat: 2.04 anInt2: 1203 dInt1: 1603 dVar1: 1803 dpInt1: 203 dInt100: 503 dInt150: 703 anInt10: 100300 cEL: cvec[7] pvInt: [-80 -79 ] pvFloat: [-0.476 -0.376 ] dpvFloat: [0.240 0.241 ] -xAODTestReadCVe... INFO anInt1 404 aFloat: 800.3 pInt: 2004 pFloat: 3.04 anInt2: 1204 dInt1: 1604 dVar1: 1804 dpInt1: 204 dInt100: 504 dInt150: 704 anInt10: 100400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 404 aFloat: 800.3 pInt: 2004 pFloat: 3.04 anInt2: 1204 dInt1: 1604 dVar1: 1804 dpInt1: 204 dInt100: 504 dInt150: 704 anInt10: 100400 cEL: cvec[6] pvInt: [-70 -69 -68 ] pvFloat: [-0.466 -0.366 -0.266 ] dpvFloat: [0.340 0.341 0.342 ] -xAODTestReadCVe... INFO anInt1 405 aFloat: 800.4 pInt: 2005 pFloat: 4.04 anInt2: 1205 dInt1: 1605 dVar1: 1805 dpInt1: 205 dInt100: 505 dInt150: 705 anInt10: 100500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 405 aFloat: 800.4 pInt: 2005 pFloat: 4.04 anInt2: 1205 dInt1: 1605 dVar1: 1805 dpInt1: 205 dInt100: 505 dInt150: 705 anInt10: 100500 cEL: cvec[5] pvInt: [-60 -59 -58 -57 ] pvFloat: [-0.456 -0.356 -0.256 -0.156 ] dpvFloat: [0.440 0.441 0.442 0.443 ] -xAODTestReadCVe... INFO anInt1 406 aFloat: 800.5 pInt: 2006 pFloat: 5.04 anInt2: 1206 dInt1: 1606 dVar1: 1806 dpInt1: 206 dInt100: 506 dInt150: 706 anInt10: 100600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 406 aFloat: 800.5 pInt: 2006 pFloat: 5.04 anInt2: 1206 dInt1: 1606 dVar1: 1806 dpInt1: 206 dInt100: 506 dInt150: 706 anInt10: 100600 cEL: cvec[4] pvInt: [-50 -49 -48 -47 -46 ] pvFloat: [-0.446 -0.346 -0.246 -0.146 -0.046 ] dpvFloat: [0.540 0.541 0.542 0.543 0.544 ] -xAODTestReadCVe... INFO anInt1 407 aFloat: 800.6 pInt: 2007 pFloat: 6.04 anInt2: 1207 dInt1: 1607 dVar1: 1807 dpInt1: 207 dInt100: 507 dInt150: 707 anInt10: 100700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 407 aFloat: 800.6 pInt: 2007 pFloat: 6.04 anInt2: 1207 dInt1: 1607 dVar1: 1807 dpInt1: 207 dInt100: 507 dInt150: 707 anInt10: 100700 cEL: cvec[3] pvInt: [-40 -39 -38 -37 -36 -35 ] pvFloat: [-0.436 -0.336 -0.236 -0.136 -0.036 0.064 ] dpvFloat: [0.640 0.641 0.642 0.643 0.644 0.645 ] -xAODTestReadCVe... INFO anInt1 408 aFloat: 800.7 pInt: 2008 pFloat: 7.04 anInt2: 1208 dInt1: 1608 dVar1: 1808 dpInt1: 208 dInt100: 508 dInt150: 708 anInt10: 100800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 408 aFloat: 800.7 pInt: 2008 pFloat: 7.04 anInt2: 1208 dInt1: 1608 dVar1: 1808 dpInt1: 208 dInt100: 508 dInt150: 708 anInt10: 100800 cEL: cvec[2] pvInt: [-30 -29 -28 -27 -26 -25 -24 ] pvFloat: [-0.426 -0.326 -0.226 -0.126 -0.026 0.074 0.174 ] dpvFloat: [0.740 0.741 0.742 0.743 0.744 0.745 0.746 ] -xAODTestReadCVe... INFO anInt1 409 aFloat: 800.8 pInt: 2009 pFloat: 8.04 anInt2: 1209 dInt1: 1609 dVar1: 1809 dpInt1: 209 dInt100: 509 dInt150: 709 anInt10: 100900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 409 aFloat: 800.8 pInt: 2009 pFloat: 8.04 anInt2: 1209 dInt1: 1609 dVar1: 1809 dpInt1: 209 dInt100: 509 dInt150: 709 anInt10: 100900 cEL: cvec[1] pvInt: [-20 -19 -18 -17 -16 -15 -14 -13 ] pvFloat: [-0.416 -0.316 -0.216 -0.116 -0.016 0.084 0.184 0.284 ] dpvFloat: [0.840 0.841 0.842 0.843 0.844 0.845 0.846 0.847 ] -xAODTestReadCVe... INFO anInt1 410 aFloat: 800.9 pInt: 2010 pFloat: 9.04 anInt2: 1210 dInt1: 1610 dVar1: 1810 dpInt1: 210 dInt100: 510 dInt150: 710 anInt10: 101000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 410 aFloat: 800.9 pInt: 2010 pFloat: 9.04 anInt2: 1210 dInt1: 1610 dVar1: 1810 dpInt1: 210 dInt100: 510 dInt150: 710 anInt10: 101000 cEL: cvec[0] pvInt: [-10 -9 -8 -7 -6 -5 -4 -3 -2 ] pvFloat: [-0.406 -0.306 -0.206 -0.106 -0.006 0.094 0.194 0.294 0.394 ] dpvFloat: [0.940 0.941 0.942 0.943 0.944 0.945 0.946 0.947 0.948 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 4000 aFloat: 0.4 anInt2: 8000 dInt1: 12000 cEL: cvec[4] dInt100: 4500 dInt150: 4700 anInt10: 860000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 4000 aFloat: 0.4 anInt2: 8000 dInt1: 12000 cEL: cvec[4] dInt100: 4500 dInt150: 4700 anInt10: 860000 xAODTestRead_scopy INFO 3 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 2001 aFloat: 2400 anInt2: 2801 dInt1: 1921 dInt100: 2701 dInt150: 2901 anInt10: 660300 @@ -697,7 +696,7 @@ xAODTestRead_scopy INFO anInt1 2006 aFloat: 2400.5 anInt2: 2806 dInt1: 1926 d xAODTestRead_scopy INFO anInt1 2007 aFloat: 2400.6 anInt2: 2807 dInt1: 1927 dInt100: 2707 dInt150: 2907 anInt10: 662100 xAODTestRead_scopy INFO anInt1 2008 aFloat: 2400.7 anInt2: 2808 dInt1: 1928 dInt100: 2708 dInt150: 2908 anInt10: 662400 xAODTestRead_scopy INFO scopy_cvecWD 1004: 801(140100) 802(140200) 803(140300) 804(140400) 805(140500) 806(140600) 807(140700) 808(140800) 809(140900) 810(141000) -xAODTestReadHVe... INFO scopy_hvec: 1601.5 1602.5 1603.5 1604.5 1605.5 1606.5 1607.5 1608.5 1609.5 1610.5 1611.5 1612.5 1613.5 1614.5 1615.5 1616.5 1617.5 1618.5 1619.5 1620.5 +xAODTe...Vec_scopy INFO scopy_hvec: 1601.5 1602.5 1603.5 1604.5 1605.5 1606.5 1607.5 1608.5 1609.5 1610.5 1611.5 1612.5 1613.5 1614.5 1615.5 1616.5 1617.5 1618.5 1619.5 1620.5 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #0 3 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #4, run #0 3 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -730,10 +729,10 @@ xAODTestRead INFO cvecWD 1005: 1001 1002 1003 1004 1005 1006 1007 1008 1 xAODTestReadCView INFO cview: xAODTestReadHVec INFO hvec: 2001.5 2002.5 2003.5 2004.5 2005.5 2006.5 2007.5 2008.5 2009.5 2010.5 2011.5 2012.5 2013.5 2014.5 2015.5 2016.5 2017.5 2018.5 2019.5 2020.5 xAODTestReadHVec INFO hview: 2020.5 2019.5 2018.5 2017.5 2016.5 2015.5 2014.5 2013.5 2012.5 2011.5 2010.5 2009.5 2008.5 2007.5 2006.5 2005.5 2004.5 2003.5 2002.5 2001.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 5000 aFloat: 0.5 anInt2: 10000 dInt1: 15000 cEL: [18446744073709551615] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 5000 aFloat: 0.5 anInt2: 10000 dInt1: 15000 cEL: [18446744073709551615] xAODTestRead_copy INFO 4 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 2501 aFloat: 3000 anInt2: 3501 dInt1: 2401 @@ -757,13 +756,13 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 3510 gFloat 3609.5 gvFloat 3509.5 3609.5 3709.5 3809.5 3909.5 4009.5 4109.5 4209.5 4309.5 xAODTestRead_copy INFO copy_cvecWD 0: 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 -xAODTestReadCVi... INFO copy_cview: -xAODTestReadHVe... INFO copy_hvec: 2020.5 2019.5 2018.5 2017.5 2016.5 2015.5 2014.5 2013.5 2012.5 2011.5 2010.5 2009.5 2008.5 2007.5 2006.5 2005.5 2004.5 2003.5 2002.5 2001.5 -xAODTestReadHVe... INFO copy_hview: 2001.5 2002.5 2003.5 2004.5 2005.5 2006.5 2007.5 2008.5 2009.5 2010.5 2011.5 2012.5 2013.5 2014.5 2015.5 2016.5 2017.5 2018.5 2019.5 2020.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 5000 aFloat: 0.5 anInt2: 10000 dInt1: 15000 cEL: [18446744073709551615] dInt100: 5500 dInt150: 5700 anInt10: 1080000 +xAODTe...View_copy INFO copy_cview: +xAODTe...HVec_copy INFO copy_hvec: 2020.5 2019.5 2018.5 2017.5 2016.5 2015.5 2014.5 2013.5 2012.5 2011.5 2010.5 2009.5 2008.5 2007.5 2006.5 2005.5 2004.5 2003.5 2002.5 2001.5 +xAODTe...HVec_copy INFO copy_hview: 2001.5 2002.5 2003.5 2004.5 2005.5 2006.5 2007.5 2008.5 2009.5 2010.5 2011.5 2012.5 2013.5 2014.5 2015.5 2016.5 2017.5 2018.5 2019.5 2020.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 5000 aFloat: 0.5 anInt2: 10000 dInt1: 15000 cEL: [18446744073709551615] dInt100: 5500 dInt150: 5700 anInt10: 1080000 xAODTestRead_scopy INFO 4 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 2501 aFloat: 3000 anInt2: 3501 dInt1: 2401 dInt100: 3201 dInt150: 3401 anInt10: 830300 @@ -775,7 +774,7 @@ xAODTestRead_scopy INFO anInt1 2506 aFloat: 3000.5 anInt2: 3506 dInt1: 2406 d xAODTestRead_scopy INFO anInt1 2507 aFloat: 3000.6 anInt2: 3507 dInt1: 2407 dInt100: 3207 dInt150: 3407 anInt10: 832100 xAODTestRead_scopy INFO anInt1 2508 aFloat: 3000.7 anInt2: 3508 dInt1: 2408 dInt100: 3208 dInt150: 3408 anInt10: 832400 xAODTestRead_scopy INFO scopy_cvecWD 1005: 1001(180100) 1002(180200) 1003(180300) 1004(180400) 1005(180500) 1006(180600) 1007(180700) 1008(180800) 1009(180900) 1010(181000) -xAODTestReadHVe... INFO scopy_hvec: 2001.5 2002.5 2003.5 2004.5 2005.5 2006.5 2007.5 2008.5 2009.5 2010.5 2011.5 2012.5 2013.5 2014.5 2015.5 2016.5 2017.5 2018.5 2019.5 2020.5 +xAODTe...Vec_scopy INFO scopy_hvec: 2001.5 2002.5 2003.5 2004.5 2005.5 2006.5 2007.5 2008.5 2009.5 2010.5 2011.5 2012.5 2013.5 2014.5 2015.5 2016.5 2017.5 2018.5 2019.5 2020.5 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #0 4 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #5, run #0 4 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -858,60 +857,60 @@ xAODTestRead INFO cvecWD 1006: 1201 1202 1203 1204 1205 1206 1207 1208 1 xAODTestReadCView INFO cview: 610 609 608 607 606 605 604 603 602 601 xAODTestReadHVec INFO hvec: 2401.5 2402.5 2403.5 2404.5 2405.5 2406.5 2407.5 2408.5 2409.5 2410.5 2411.5 2412.5 2413.5 2414.5 2415.5 2416.5 2417.5 2418.5 2419.5 2420.5 xAODTestReadHVec INFO hview: 2420.5 2419.5 2418.5 2417.5 2416.5 2415.5 2414.5 2413.5 2412.5 2411.5 2410.5 2409.5 2408.5 2407.5 2406.5 2405.5 2404.5 2403.5 2402.5 2401.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 601 aFloat: 1200 pInt: 3001 pFloat: 0.06 anInt2: 1801 dInt1: 2401 dVar1: 2701 dpInt1: 301 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 601 aFloat: 1200 pInt: 3001 pFloat: 0.06 anInt2: 1801 dInt1: 2401 dVar1: 2701 dpInt1: 301 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 602 aFloat: 1200.1 pInt: 3002 pFloat: 1.06 anInt2: 1802 dInt1: 2402 dVar1: 2702 dpInt1: 302 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 602 aFloat: 1200.1 pInt: 3002 pFloat: 1.06 anInt2: 1802 dInt1: 2402 dVar1: 2702 dpInt1: 302 cEL: cvec[8] pvInt: [110 ] pvFloat: [-0.484 ] dpvFloat: [0.160 ] -xAODTestReadCVe... INFO anInt1 603 aFloat: 1200.2 pInt: 3003 pFloat: 2.06 anInt2: 1803 dInt1: 2403 dVar1: 2703 dpInt1: 303 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 603 aFloat: 1200.2 pInt: 3003 pFloat: 2.06 anInt2: 1803 dInt1: 2403 dVar1: 2703 dpInt1: 303 cEL: cvec[7] pvInt: [120 121 ] pvFloat: [-0.474 -0.374 ] dpvFloat: [0.260 0.261 ] -xAODTestReadCVe... INFO anInt1 604 aFloat: 1200.3 pInt: 3004 pFloat: 3.06 anInt2: 1804 dInt1: 2404 dVar1: 2704 dpInt1: 304 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 604 aFloat: 1200.3 pInt: 3004 pFloat: 3.06 anInt2: 1804 dInt1: 2404 dVar1: 2704 dpInt1: 304 cEL: cvec[6] pvInt: [130 131 132 ] pvFloat: [-0.464 -0.364 -0.264 ] dpvFloat: [0.360 0.361 0.362 ] -xAODTestReadCVe... INFO anInt1 605 aFloat: 1200.4 pInt: 3005 pFloat: 4.06 anInt2: 1805 dInt1: 2405 dVar1: 2705 dpInt1: 305 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 605 aFloat: 1200.4 pInt: 3005 pFloat: 4.06 anInt2: 1805 dInt1: 2405 dVar1: 2705 dpInt1: 305 cEL: cvec[5] pvInt: [140 141 142 143 ] pvFloat: [-0.454 -0.354 -0.254 -0.154 ] dpvFloat: [0.460 0.461 0.462 0.463 ] -xAODTestReadCVe... INFO anInt1 606 aFloat: 1200.5 pInt: 3006 pFloat: 5.06 anInt2: 1806 dInt1: 2406 dVar1: 2706 dpInt1: 306 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 606 aFloat: 1200.5 pInt: 3006 pFloat: 5.06 anInt2: 1806 dInt1: 2406 dVar1: 2706 dpInt1: 306 cEL: cvec[4] pvInt: [150 151 152 153 154 ] pvFloat: [-0.444 -0.344 -0.244 -0.144 -0.044 ] dpvFloat: [0.560 0.561 0.562 0.563 0.564 ] -xAODTestReadCVe... INFO anInt1 607 aFloat: 1200.6 pInt: 3007 pFloat: 6.06 anInt2: 1807 dInt1: 2407 dVar1: 2707 dpInt1: 307 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 607 aFloat: 1200.6 pInt: 3007 pFloat: 6.06 anInt2: 1807 dInt1: 2407 dVar1: 2707 dpInt1: 307 cEL: cvec[3] pvInt: [160 161 162 163 164 165 ] pvFloat: [-0.434 -0.334 -0.234 -0.134 -0.034 0.066 ] dpvFloat: [0.660 0.661 0.662 0.663 0.664 0.665 ] -xAODTestReadCVe... INFO anInt1 608 aFloat: 1200.7 pInt: 3008 pFloat: 7.06 anInt2: 1808 dInt1: 2408 dVar1: 2708 dpInt1: 308 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 608 aFloat: 1200.7 pInt: 3008 pFloat: 7.06 anInt2: 1808 dInt1: 2408 dVar1: 2708 dpInt1: 308 cEL: cvec[2] pvInt: [170 171 172 173 174 175 176 ] pvFloat: [-0.424 -0.324 -0.224 -0.124 -0.024 0.076 0.176 ] dpvFloat: [0.760 0.761 0.762 0.763 0.764 0.765 0.766 ] -xAODTestReadCVe... INFO anInt1 609 aFloat: 1200.8 pInt: 3009 pFloat: 8.06 anInt2: 1809 dInt1: 2409 dVar1: 2709 dpInt1: 309 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 609 aFloat: 1200.8 pInt: 3009 pFloat: 8.06 anInt2: 1809 dInt1: 2409 dVar1: 2709 dpInt1: 309 cEL: cvec[1] pvInt: [180 181 182 183 184 185 186 187 ] pvFloat: [-0.414 -0.314 -0.214 -0.114 -0.014 0.086 0.186 0.286 ] dpvFloat: [0.860 0.861 0.862 0.863 0.864 0.865 0.866 0.867 ] -xAODTestReadCVe... INFO anInt1 610 aFloat: 1200.9 pInt: 3010 pFloat: 9.06 anInt2: 1810 dInt1: 2410 dVar1: 2710 dpInt1: 310 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 610 aFloat: 1200.9 pInt: 3010 pFloat: 9.06 anInt2: 1810 dInt1: 2410 dVar1: 2710 dpInt1: 310 cEL: cvec[0] pvInt: [190 191 192 193 194 195 196 197 198 ] pvFloat: [-0.404 -0.304 -0.204 -0.104 -0.004 0.096 0.196 0.296 0.396 ] dpvFloat: [0.960 0.961 0.962 0.963 0.964 0.965 0.966 0.967 0.968 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 6000 aFloat: 0.6 anInt2: 12000 dInt1: 18000 cEL: cvec[6] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 6000 aFloat: 0.6 anInt2: 12000 dInt1: 18000 cEL: cvec[6] xAODTestRead_copy INFO 5 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 3001 aFloat: 3600 anInt2: 4201 dInt1: 2881 @@ -935,63 +934,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 4210 gFloat 4309.5 gvFloat 4209.5 4309.5 4409.5 4509.5 4609.5 4709.5 4809.5 4909.5 5009.5 xAODTestRead_copy INFO copy_cvecWD 0: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 -xAODTestReadCVi... INFO copy_cview: 610 609 608 607 606 605 604 603 602 601 -xAODTestReadHVe... INFO copy_hvec: 2420.5 2419.5 2418.5 2417.5 2416.5 2415.5 2414.5 2413.5 2412.5 2411.5 2410.5 2409.5 2408.5 2407.5 2406.5 2405.5 2404.5 2403.5 2402.5 2401.5 -xAODTestReadHVe... INFO copy_hview: 2401.5 2402.5 2403.5 2404.5 2405.5 2406.5 2407.5 2408.5 2409.5 2410.5 2411.5 2412.5 2413.5 2414.5 2415.5 2416.5 2417.5 2418.5 2419.5 2420.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 601 aFloat: 1200 pInt: 3001 pFloat: 0.06 anInt2: 1801 dInt1: 2401 dVar1: 2701 dpInt1: 301 dInt100: 701 dInt150: 901 anInt10: 160100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 610 609 608 607 606 605 604 603 602 601 +xAODTe...HVec_copy INFO copy_hvec: 2420.5 2419.5 2418.5 2417.5 2416.5 2415.5 2414.5 2413.5 2412.5 2411.5 2410.5 2409.5 2408.5 2407.5 2406.5 2405.5 2404.5 2403.5 2402.5 2401.5 +xAODTe...HVec_copy INFO copy_hview: 2401.5 2402.5 2403.5 2404.5 2405.5 2406.5 2407.5 2408.5 2409.5 2410.5 2411.5 2412.5 2413.5 2414.5 2415.5 2416.5 2417.5 2418.5 2419.5 2420.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 601 aFloat: 1200 pInt: 3001 pFloat: 0.06 anInt2: 1801 dInt1: 2401 dVar1: 2701 dpInt1: 301 dInt100: 701 dInt150: 901 anInt10: 160100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 602 aFloat: 1200.1 pInt: 3002 pFloat: 1.06 anInt2: 1802 dInt1: 2402 dVar1: 2702 dpInt1: 302 dInt100: 702 dInt150: 902 anInt10: 160200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 602 aFloat: 1200.1 pInt: 3002 pFloat: 1.06 anInt2: 1802 dInt1: 2402 dVar1: 2702 dpInt1: 302 dInt100: 702 dInt150: 902 anInt10: 160200 cEL: cvec[8] pvInt: [110 ] pvFloat: [-0.484 ] dpvFloat: [0.160 ] -xAODTestReadCVe... INFO anInt1 603 aFloat: 1200.2 pInt: 3003 pFloat: 2.06 anInt2: 1803 dInt1: 2403 dVar1: 2703 dpInt1: 303 dInt100: 703 dInt150: 903 anInt10: 160300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 603 aFloat: 1200.2 pInt: 3003 pFloat: 2.06 anInt2: 1803 dInt1: 2403 dVar1: 2703 dpInt1: 303 dInt100: 703 dInt150: 903 anInt10: 160300 cEL: cvec[7] pvInt: [120 121 ] pvFloat: [-0.474 -0.374 ] dpvFloat: [0.260 0.261 ] -xAODTestReadCVe... INFO anInt1 604 aFloat: 1200.3 pInt: 3004 pFloat: 3.06 anInt2: 1804 dInt1: 2404 dVar1: 2704 dpInt1: 304 dInt100: 704 dInt150: 904 anInt10: 160400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 604 aFloat: 1200.3 pInt: 3004 pFloat: 3.06 anInt2: 1804 dInt1: 2404 dVar1: 2704 dpInt1: 304 dInt100: 704 dInt150: 904 anInt10: 160400 cEL: cvec[6] pvInt: [130 131 132 ] pvFloat: [-0.464 -0.364 -0.264 ] dpvFloat: [0.360 0.361 0.362 ] -xAODTestReadCVe... INFO anInt1 605 aFloat: 1200.4 pInt: 3005 pFloat: 4.06 anInt2: 1805 dInt1: 2405 dVar1: 2705 dpInt1: 305 dInt100: 705 dInt150: 905 anInt10: 160500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 605 aFloat: 1200.4 pInt: 3005 pFloat: 4.06 anInt2: 1805 dInt1: 2405 dVar1: 2705 dpInt1: 305 dInt100: 705 dInt150: 905 anInt10: 160500 cEL: cvec[5] pvInt: [140 141 142 143 ] pvFloat: [-0.454 -0.354 -0.254 -0.154 ] dpvFloat: [0.460 0.461 0.462 0.463 ] -xAODTestReadCVe... INFO anInt1 606 aFloat: 1200.5 pInt: 3006 pFloat: 5.06 anInt2: 1806 dInt1: 2406 dVar1: 2706 dpInt1: 306 dInt100: 706 dInt150: 906 anInt10: 160600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 606 aFloat: 1200.5 pInt: 3006 pFloat: 5.06 anInt2: 1806 dInt1: 2406 dVar1: 2706 dpInt1: 306 dInt100: 706 dInt150: 906 anInt10: 160600 cEL: cvec[4] pvInt: [150 151 152 153 154 ] pvFloat: [-0.444 -0.344 -0.244 -0.144 -0.044 ] dpvFloat: [0.560 0.561 0.562 0.563 0.564 ] -xAODTestReadCVe... INFO anInt1 607 aFloat: 1200.6 pInt: 3007 pFloat: 6.06 anInt2: 1807 dInt1: 2407 dVar1: 2707 dpInt1: 307 dInt100: 707 dInt150: 907 anInt10: 160700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 607 aFloat: 1200.6 pInt: 3007 pFloat: 6.06 anInt2: 1807 dInt1: 2407 dVar1: 2707 dpInt1: 307 dInt100: 707 dInt150: 907 anInt10: 160700 cEL: cvec[3] pvInt: [160 161 162 163 164 165 ] pvFloat: [-0.434 -0.334 -0.234 -0.134 -0.034 0.066 ] dpvFloat: [0.660 0.661 0.662 0.663 0.664 0.665 ] -xAODTestReadCVe... INFO anInt1 608 aFloat: 1200.7 pInt: 3008 pFloat: 7.06 anInt2: 1808 dInt1: 2408 dVar1: 2708 dpInt1: 308 dInt100: 708 dInt150: 908 anInt10: 160800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 608 aFloat: 1200.7 pInt: 3008 pFloat: 7.06 anInt2: 1808 dInt1: 2408 dVar1: 2708 dpInt1: 308 dInt100: 708 dInt150: 908 anInt10: 160800 cEL: cvec[2] pvInt: [170 171 172 173 174 175 176 ] pvFloat: [-0.424 -0.324 -0.224 -0.124 -0.024 0.076 0.176 ] dpvFloat: [0.760 0.761 0.762 0.763 0.764 0.765 0.766 ] -xAODTestReadCVe... INFO anInt1 609 aFloat: 1200.8 pInt: 3009 pFloat: 8.06 anInt2: 1809 dInt1: 2409 dVar1: 2709 dpInt1: 309 dInt100: 709 dInt150: 909 anInt10: 160900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 609 aFloat: 1200.8 pInt: 3009 pFloat: 8.06 anInt2: 1809 dInt1: 2409 dVar1: 2709 dpInt1: 309 dInt100: 709 dInt150: 909 anInt10: 160900 cEL: cvec[1] pvInt: [180 181 182 183 184 185 186 187 ] pvFloat: [-0.414 -0.314 -0.214 -0.114 -0.014 0.086 0.186 0.286 ] dpvFloat: [0.860 0.861 0.862 0.863 0.864 0.865 0.866 0.867 ] -xAODTestReadCVe... INFO anInt1 610 aFloat: 1200.9 pInt: 3010 pFloat: 9.06 anInt2: 1810 dInt1: 2410 dVar1: 2710 dpInt1: 310 dInt100: 710 dInt150: 910 anInt10: 161000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 610 aFloat: 1200.9 pInt: 3010 pFloat: 9.06 anInt2: 1810 dInt1: 2410 dVar1: 2710 dpInt1: 310 dInt100: 710 dInt150: 910 anInt10: 161000 cEL: cvec[0] pvInt: [190 191 192 193 194 195 196 197 198 ] pvFloat: [-0.404 -0.304 -0.204 -0.104 -0.004 0.096 0.196 0.296 0.396 ] dpvFloat: [0.960 0.961 0.962 0.963 0.964 0.965 0.966 0.967 0.968 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 6000 aFloat: 0.6 anInt2: 12000 dInt1: 18000 cEL: cvec[6] dInt100: 6500 dInt150: 6700 anInt10: 1300000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 6000 aFloat: 0.6 anInt2: 12000 dInt1: 18000 cEL: cvec[6] dInt100: 6500 dInt150: 6700 anInt10: 1300000 xAODTestRead_scopy INFO 5 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 3001 aFloat: 3600 anInt2: 4201 dInt1: 2881 dInt100: 3701 dInt150: 3901 anInt10: 1000300 @@ -1003,7 +1002,7 @@ xAODTestRead_scopy INFO anInt1 3006 aFloat: 3600.5 anInt2: 4206 dInt1: 2886 d xAODTestRead_scopy INFO anInt1 3007 aFloat: 3600.6 anInt2: 4207 dInt1: 2887 dInt100: 3707 dInt150: 3907 anInt10: 1002100 xAODTestRead_scopy INFO anInt1 3008 aFloat: 3600.7 anInt2: 4208 dInt1: 2888 dInt100: 3708 dInt150: 3908 anInt10: 1002400 xAODTestRead_scopy INFO scopy_cvecWD 1006: 1201(220100) 1202(220200) 1203(220300) 1204(220400) 1205(220500) 1206(220600) 1207(220700) 1208(220800) 1209(220900) 1210(221000) -xAODTestReadHVe... INFO scopy_hvec: 2401.5 2402.5 2403.5 2404.5 2405.5 2406.5 2407.5 2408.5 2409.5 2410.5 2411.5 2412.5 2413.5 2414.5 2415.5 2416.5 2417.5 2418.5 2419.5 2420.5 +xAODTe...Vec_scopy INFO scopy_hvec: 2401.5 2402.5 2403.5 2404.5 2405.5 2406.5 2407.5 2408.5 2409.5 2410.5 2411.5 2412.5 2413.5 2414.5 2415.5 2416.5 2417.5 2418.5 2419.5 2420.5 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #0 5 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #6, run #0 5 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1086,60 +1085,60 @@ xAODTestRead INFO cvecWD 1007: 1401 1402 1403 1404 1405 1406 1407 1408 1 xAODTestReadCView INFO cview: 710 709 708 707 706 705 704 703 702 701 xAODTestReadHVec INFO hvec: 2801.5 2802.5 2803.5 2804.5 2805.5 2806.5 2807.5 2808.5 2809.5 2810.5 2811.5 2812.5 2813.5 2814.5 2815.5 2816.5 2817.5 2818.5 2819.5 2820.5 xAODTestReadHVec INFO hview: 2820.5 2819.5 2818.5 2817.5 2816.5 2815.5 2814.5 2813.5 2812.5 2811.5 2810.5 2809.5 2808.5 2807.5 2806.5 2805.5 2804.5 2803.5 2802.5 2801.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 701 aFloat: 1400 pInt: 3501 pFloat: 0.07 anInt2: 2101 dInt1: 2801 dVar1: 3151 dpInt1: 351 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 701 aFloat: 1400 pInt: 3501 pFloat: 0.07 anInt2: 2101 dInt1: 2801 dVar1: 3151 dpInt1: 351 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 702 aFloat: 1400.1 pInt: 3502 pFloat: 1.07 anInt2: 2102 dInt1: 2802 dVar1: 3152 dpInt1: 352 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 702 aFloat: 1400.1 pInt: 3502 pFloat: 1.07 anInt2: 2102 dInt1: 2802 dVar1: 3152 dpInt1: 352 cEL: cvec[8] pvInt: [210 ] pvFloat: [-0.483 ] dpvFloat: [0.170 ] -xAODTestReadCVe... INFO anInt1 703 aFloat: 1400.2 pInt: 3503 pFloat: 2.07 anInt2: 2103 dInt1: 2803 dVar1: 3153 dpInt1: 353 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 703 aFloat: 1400.2 pInt: 3503 pFloat: 2.07 anInt2: 2103 dInt1: 2803 dVar1: 3153 dpInt1: 353 cEL: cvec[7] pvInt: [220 221 ] pvFloat: [-0.473 -0.373 ] dpvFloat: [0.270 0.271 ] -xAODTestReadCVe... INFO anInt1 704 aFloat: 1400.3 pInt: 3504 pFloat: 3.07 anInt2: 2104 dInt1: 2804 dVar1: 3154 dpInt1: 354 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 704 aFloat: 1400.3 pInt: 3504 pFloat: 3.07 anInt2: 2104 dInt1: 2804 dVar1: 3154 dpInt1: 354 cEL: cvec[6] pvInt: [230 231 232 ] pvFloat: [-0.463 -0.363 -0.263 ] dpvFloat: [0.370 0.371 0.372 ] -xAODTestReadCVe... INFO anInt1 705 aFloat: 1400.4 pInt: 3505 pFloat: 4.07 anInt2: 2105 dInt1: 2805 dVar1: 3155 dpInt1: 355 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 705 aFloat: 1400.4 pInt: 3505 pFloat: 4.07 anInt2: 2105 dInt1: 2805 dVar1: 3155 dpInt1: 355 cEL: cvec[5] pvInt: [240 241 242 243 ] pvFloat: [-0.453 -0.353 -0.253 -0.153 ] dpvFloat: [0.470 0.471 0.472 0.473 ] -xAODTestReadCVe... INFO anInt1 706 aFloat: 1400.5 pInt: 3506 pFloat: 5.07 anInt2: 2106 dInt1: 2806 dVar1: 3156 dpInt1: 356 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 706 aFloat: 1400.5 pInt: 3506 pFloat: 5.07 anInt2: 2106 dInt1: 2806 dVar1: 3156 dpInt1: 356 cEL: cvec[4] pvInt: [250 251 252 253 254 ] pvFloat: [-0.443 -0.343 -0.243 -0.143 -0.043 ] dpvFloat: [0.570 0.571 0.572 0.573 0.574 ] -xAODTestReadCVe... INFO anInt1 707 aFloat: 1400.6 pInt: 3507 pFloat: 6.07 anInt2: 2107 dInt1: 2807 dVar1: 3157 dpInt1: 357 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 707 aFloat: 1400.6 pInt: 3507 pFloat: 6.07 anInt2: 2107 dInt1: 2807 dVar1: 3157 dpInt1: 357 cEL: cvec[3] pvInt: [260 261 262 263 264 265 ] pvFloat: [-0.433 -0.333 -0.233 -0.133 -0.033 0.067 ] dpvFloat: [0.670 0.671 0.672 0.673 0.674 0.675 ] -xAODTestReadCVe... INFO anInt1 708 aFloat: 1400.7 pInt: 3508 pFloat: 7.07 anInt2: 2108 dInt1: 2808 dVar1: 3158 dpInt1: 358 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 708 aFloat: 1400.7 pInt: 3508 pFloat: 7.07 anInt2: 2108 dInt1: 2808 dVar1: 3158 dpInt1: 358 cEL: cvec[2] pvInt: [270 271 272 273 274 275 276 ] pvFloat: [-0.423 -0.323 -0.223 -0.123 -0.023 0.077 0.177 ] dpvFloat: [0.770 0.771 0.772 0.773 0.774 0.775 0.776 ] -xAODTestReadCVe... INFO anInt1 709 aFloat: 1400.8 pInt: 3509 pFloat: 8.07 anInt2: 2109 dInt1: 2809 dVar1: 3159 dpInt1: 359 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 709 aFloat: 1400.8 pInt: 3509 pFloat: 8.07 anInt2: 2109 dInt1: 2809 dVar1: 3159 dpInt1: 359 cEL: cvec[1] pvInt: [280 281 282 283 284 285 286 287 ] pvFloat: [-0.413 -0.313 -0.213 -0.113 -0.013 0.087 0.187 0.287 ] dpvFloat: [0.870 0.871 0.872 0.873 0.874 0.875 0.876 0.877 ] -xAODTestReadCVe... INFO anInt1 710 aFloat: 1400.9 pInt: 3510 pFloat: 9.07 anInt2: 2110 dInt1: 2810 dVar1: 3160 dpInt1: 360 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 710 aFloat: 1400.9 pInt: 3510 pFloat: 9.07 anInt2: 2110 dInt1: 2810 dVar1: 3160 dpInt1: 360 cEL: cvec[0] pvInt: [290 291 292 293 294 295 296 297 298 ] pvFloat: [-0.403 -0.303 -0.203 -0.103 -0.003 0.097 0.197 0.297 0.397 ] dpvFloat: [0.970 0.971 0.972 0.973 0.974 0.975 0.976 0.977 0.978 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 7000 aFloat: 0.7 anInt2: 14000 dInt1: 21000 cEL: cvec[7] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 7000 aFloat: 0.7 anInt2: 14000 dInt1: 21000 cEL: cvec[7] xAODTestRead_copy INFO 6 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 3501 aFloat: 4200 anInt2: 4901 dInt1: 3361 @@ -1163,63 +1162,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 4910 gFloat 5009.5 gvFloat 4909.5 5009.5 5109.5 5209.5 5309.5 5409.5 5509.5 5609.5 5709.5 xAODTestRead_copy INFO copy_cvecWD 0: 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 -xAODTestReadCVi... INFO copy_cview: 710 709 708 707 706 705 704 703 702 701 -xAODTestReadHVe... INFO copy_hvec: 2820.5 2819.5 2818.5 2817.5 2816.5 2815.5 2814.5 2813.5 2812.5 2811.5 2810.5 2809.5 2808.5 2807.5 2806.5 2805.5 2804.5 2803.5 2802.5 2801.5 -xAODTestReadHVe... INFO copy_hview: 2801.5 2802.5 2803.5 2804.5 2805.5 2806.5 2807.5 2808.5 2809.5 2810.5 2811.5 2812.5 2813.5 2814.5 2815.5 2816.5 2817.5 2818.5 2819.5 2820.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 701 aFloat: 1400 pInt: 3501 pFloat: 0.07 anInt2: 2101 dInt1: 2801 dVar1: 3151 dpInt1: 351 dInt100: 801 dInt150: 1001 anInt10: 190100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 710 709 708 707 706 705 704 703 702 701 +xAODTe...HVec_copy INFO copy_hvec: 2820.5 2819.5 2818.5 2817.5 2816.5 2815.5 2814.5 2813.5 2812.5 2811.5 2810.5 2809.5 2808.5 2807.5 2806.5 2805.5 2804.5 2803.5 2802.5 2801.5 +xAODTe...HVec_copy INFO copy_hview: 2801.5 2802.5 2803.5 2804.5 2805.5 2806.5 2807.5 2808.5 2809.5 2810.5 2811.5 2812.5 2813.5 2814.5 2815.5 2816.5 2817.5 2818.5 2819.5 2820.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 701 aFloat: 1400 pInt: 3501 pFloat: 0.07 anInt2: 2101 dInt1: 2801 dVar1: 3151 dpInt1: 351 dInt100: 801 dInt150: 1001 anInt10: 190100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 702 aFloat: 1400.1 pInt: 3502 pFloat: 1.07 anInt2: 2102 dInt1: 2802 dVar1: 3152 dpInt1: 352 dInt100: 802 dInt150: 1002 anInt10: 190200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 702 aFloat: 1400.1 pInt: 3502 pFloat: 1.07 anInt2: 2102 dInt1: 2802 dVar1: 3152 dpInt1: 352 dInt100: 802 dInt150: 1002 anInt10: 190200 cEL: cvec[8] pvInt: [210 ] pvFloat: [-0.483 ] dpvFloat: [0.170 ] -xAODTestReadCVe... INFO anInt1 703 aFloat: 1400.2 pInt: 3503 pFloat: 2.07 anInt2: 2103 dInt1: 2803 dVar1: 3153 dpInt1: 353 dInt100: 803 dInt150: 1003 anInt10: 190300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 703 aFloat: 1400.2 pInt: 3503 pFloat: 2.07 anInt2: 2103 dInt1: 2803 dVar1: 3153 dpInt1: 353 dInt100: 803 dInt150: 1003 anInt10: 190300 cEL: cvec[7] pvInt: [220 221 ] pvFloat: [-0.473 -0.373 ] dpvFloat: [0.270 0.271 ] -xAODTestReadCVe... INFO anInt1 704 aFloat: 1400.3 pInt: 3504 pFloat: 3.07 anInt2: 2104 dInt1: 2804 dVar1: 3154 dpInt1: 354 dInt100: 804 dInt150: 1004 anInt10: 190400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 704 aFloat: 1400.3 pInt: 3504 pFloat: 3.07 anInt2: 2104 dInt1: 2804 dVar1: 3154 dpInt1: 354 dInt100: 804 dInt150: 1004 anInt10: 190400 cEL: cvec[6] pvInt: [230 231 232 ] pvFloat: [-0.463 -0.363 -0.263 ] dpvFloat: [0.370 0.371 0.372 ] -xAODTestReadCVe... INFO anInt1 705 aFloat: 1400.4 pInt: 3505 pFloat: 4.07 anInt2: 2105 dInt1: 2805 dVar1: 3155 dpInt1: 355 dInt100: 805 dInt150: 1005 anInt10: 190500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 705 aFloat: 1400.4 pInt: 3505 pFloat: 4.07 anInt2: 2105 dInt1: 2805 dVar1: 3155 dpInt1: 355 dInt100: 805 dInt150: 1005 anInt10: 190500 cEL: cvec[5] pvInt: [240 241 242 243 ] pvFloat: [-0.453 -0.353 -0.253 -0.153 ] dpvFloat: [0.470 0.471 0.472 0.473 ] -xAODTestReadCVe... INFO anInt1 706 aFloat: 1400.5 pInt: 3506 pFloat: 5.07 anInt2: 2106 dInt1: 2806 dVar1: 3156 dpInt1: 356 dInt100: 806 dInt150: 1006 anInt10: 190600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 706 aFloat: 1400.5 pInt: 3506 pFloat: 5.07 anInt2: 2106 dInt1: 2806 dVar1: 3156 dpInt1: 356 dInt100: 806 dInt150: 1006 anInt10: 190600 cEL: cvec[4] pvInt: [250 251 252 253 254 ] pvFloat: [-0.443 -0.343 -0.243 -0.143 -0.043 ] dpvFloat: [0.570 0.571 0.572 0.573 0.574 ] -xAODTestReadCVe... INFO anInt1 707 aFloat: 1400.6 pInt: 3507 pFloat: 6.07 anInt2: 2107 dInt1: 2807 dVar1: 3157 dpInt1: 357 dInt100: 807 dInt150: 1007 anInt10: 190700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 707 aFloat: 1400.6 pInt: 3507 pFloat: 6.07 anInt2: 2107 dInt1: 2807 dVar1: 3157 dpInt1: 357 dInt100: 807 dInt150: 1007 anInt10: 190700 cEL: cvec[3] pvInt: [260 261 262 263 264 265 ] pvFloat: [-0.433 -0.333 -0.233 -0.133 -0.033 0.067 ] dpvFloat: [0.670 0.671 0.672 0.673 0.674 0.675 ] -xAODTestReadCVe... INFO anInt1 708 aFloat: 1400.7 pInt: 3508 pFloat: 7.07 anInt2: 2108 dInt1: 2808 dVar1: 3158 dpInt1: 358 dInt100: 808 dInt150: 1008 anInt10: 190800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 708 aFloat: 1400.7 pInt: 3508 pFloat: 7.07 anInt2: 2108 dInt1: 2808 dVar1: 3158 dpInt1: 358 dInt100: 808 dInt150: 1008 anInt10: 190800 cEL: cvec[2] pvInt: [270 271 272 273 274 275 276 ] pvFloat: [-0.423 -0.323 -0.223 -0.123 -0.023 0.077 0.177 ] dpvFloat: [0.770 0.771 0.772 0.773 0.774 0.775 0.776 ] -xAODTestReadCVe... INFO anInt1 709 aFloat: 1400.8 pInt: 3509 pFloat: 8.07 anInt2: 2109 dInt1: 2809 dVar1: 3159 dpInt1: 359 dInt100: 809 dInt150: 1009 anInt10: 190900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 709 aFloat: 1400.8 pInt: 3509 pFloat: 8.07 anInt2: 2109 dInt1: 2809 dVar1: 3159 dpInt1: 359 dInt100: 809 dInt150: 1009 anInt10: 190900 cEL: cvec[1] pvInt: [280 281 282 283 284 285 286 287 ] pvFloat: [-0.413 -0.313 -0.213 -0.113 -0.013 0.087 0.187 0.287 ] dpvFloat: [0.870 0.871 0.872 0.873 0.874 0.875 0.876 0.877 ] -xAODTestReadCVe... INFO anInt1 710 aFloat: 1400.9 pInt: 3510 pFloat: 9.07 anInt2: 2110 dInt1: 2810 dVar1: 3160 dpInt1: 360 dInt100: 810 dInt150: 1010 anInt10: 191000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 710 aFloat: 1400.9 pInt: 3510 pFloat: 9.07 anInt2: 2110 dInt1: 2810 dVar1: 3160 dpInt1: 360 dInt100: 810 dInt150: 1010 anInt10: 191000 cEL: cvec[0] pvInt: [290 291 292 293 294 295 296 297 298 ] pvFloat: [-0.403 -0.303 -0.203 -0.103 -0.003 0.097 0.197 0.297 0.397 ] dpvFloat: [0.970 0.971 0.972 0.973 0.974 0.975 0.976 0.977 0.978 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 7000 aFloat: 0.7 anInt2: 14000 dInt1: 21000 cEL: cvec[7] dInt100: 7500 dInt150: 7700 anInt10: 1520000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 7000 aFloat: 0.7 anInt2: 14000 dInt1: 21000 cEL: cvec[7] dInt100: 7500 dInt150: 7700 anInt10: 1520000 xAODTestRead_scopy INFO 6 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 3501 aFloat: 4200 anInt2: 4901 dInt1: 3361 dInt100: 4201 dInt150: 4401 anInt10: 1170300 @@ -1231,7 +1230,7 @@ xAODTestRead_scopy INFO anInt1 3506 aFloat: 4200.5 anInt2: 4906 dInt1: 3366 d xAODTestRead_scopy INFO anInt1 3507 aFloat: 4200.6 anInt2: 4907 dInt1: 3367 dInt100: 4207 dInt150: 4407 anInt10: 1172100 xAODTestRead_scopy INFO anInt1 3508 aFloat: 4200.7 anInt2: 4908 dInt1: 3368 dInt100: 4208 dInt150: 4408 anInt10: 1172400 xAODTestRead_scopy INFO scopy_cvecWD 1007: 1401(260100) 1402(260200) 1403(260300) 1404(260400) 1405(260500) 1406(260600) 1407(260700) 1408(260800) 1409(260900) 1410(261000) -xAODTestReadHVe... INFO scopy_hvec: 2801.5 2802.5 2803.5 2804.5 2805.5 2806.5 2807.5 2808.5 2809.5 2810.5 2811.5 2812.5 2813.5 2814.5 2815.5 2816.5 2817.5 2818.5 2819.5 2820.5 +xAODTe...Vec_scopy INFO scopy_hvec: 2801.5 2802.5 2803.5 2804.5 2805.5 2806.5 2807.5 2808.5 2809.5 2810.5 2811.5 2812.5 2813.5 2814.5 2815.5 2816.5 2817.5 2818.5 2819.5 2820.5 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #0 6 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #7, run #0 6 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1314,60 +1313,60 @@ xAODTestRead INFO cvecWD 1008: 1601 1602 1603 1604 1605 1606 1607 1608 1 xAODTestReadCView INFO cview: 810 809 808 807 806 805 804 803 802 801 xAODTestReadHVec INFO hvec: 3201.5 3202.5 3203.5 3204.5 3205.5 3206.5 3207.5 3208.5 3209.5 3210.5 3211.5 3212.5 3213.5 3214.5 3215.5 3216.5 3217.5 3218.5 3219.5 3220.5 xAODTestReadHVec INFO hview: 3220.5 3219.5 3218.5 3217.5 3216.5 3215.5 3214.5 3213.5 3212.5 3211.5 3210.5 3209.5 3208.5 3207.5 3206.5 3205.5 3204.5 3203.5 3202.5 3201.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 801 aFloat: 1600 pInt: 4001 pFloat: 0.08 anInt2: 2401 dInt1: 3201 dVar1: 3601 dpInt1: 401 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 801 aFloat: 1600 pInt: 4001 pFloat: 0.08 anInt2: 2401 dInt1: 3201 dVar1: 3601 dpInt1: 401 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 802 aFloat: 1600.1 pInt: 4002 pFloat: 1.08 anInt2: 2402 dInt1: 3202 dVar1: 3602 dpInt1: 402 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 802 aFloat: 1600.1 pInt: 4002 pFloat: 1.08 anInt2: 2402 dInt1: 3202 dVar1: 3602 dpInt1: 402 cEL: cvec[8] pvInt: [310 ] pvFloat: [-0.482 ] dpvFloat: [0.180 ] -xAODTestReadCVe... INFO anInt1 803 aFloat: 1600.2 pInt: 4003 pFloat: 2.08 anInt2: 2403 dInt1: 3203 dVar1: 3603 dpInt1: 403 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 803 aFloat: 1600.2 pInt: 4003 pFloat: 2.08 anInt2: 2403 dInt1: 3203 dVar1: 3603 dpInt1: 403 cEL: cvec[7] pvInt: [320 321 ] pvFloat: [-0.472 -0.372 ] dpvFloat: [0.280 0.281 ] -xAODTestReadCVe... INFO anInt1 804 aFloat: 1600.3 pInt: 4004 pFloat: 3.08 anInt2: 2404 dInt1: 3204 dVar1: 3604 dpInt1: 404 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 804 aFloat: 1600.3 pInt: 4004 pFloat: 3.08 anInt2: 2404 dInt1: 3204 dVar1: 3604 dpInt1: 404 cEL: cvec[6] pvInt: [330 331 332 ] pvFloat: [-0.462 -0.362 -0.262 ] dpvFloat: [0.380 0.381 0.382 ] -xAODTestReadCVe... INFO anInt1 805 aFloat: 1600.4 pInt: 4005 pFloat: 4.08 anInt2: 2405 dInt1: 3205 dVar1: 3605 dpInt1: 405 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 805 aFloat: 1600.4 pInt: 4005 pFloat: 4.08 anInt2: 2405 dInt1: 3205 dVar1: 3605 dpInt1: 405 cEL: cvec[5] pvInt: [340 341 342 343 ] pvFloat: [-0.452 -0.352 -0.252 -0.152 ] dpvFloat: [0.480 0.481 0.482 0.483 ] -xAODTestReadCVe... INFO anInt1 806 aFloat: 1600.5 pInt: 4006 pFloat: 5.08 anInt2: 2406 dInt1: 3206 dVar1: 3606 dpInt1: 406 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 806 aFloat: 1600.5 pInt: 4006 pFloat: 5.08 anInt2: 2406 dInt1: 3206 dVar1: 3606 dpInt1: 406 cEL: cvec[4] pvInt: [350 351 352 353 354 ] pvFloat: [-0.442 -0.342 -0.242 -0.142 -0.042 ] dpvFloat: [0.580 0.581 0.582 0.583 0.584 ] -xAODTestReadCVe... INFO anInt1 807 aFloat: 1600.6 pInt: 4007 pFloat: 6.08 anInt2: 2407 dInt1: 3207 dVar1: 3607 dpInt1: 407 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 807 aFloat: 1600.6 pInt: 4007 pFloat: 6.08 anInt2: 2407 dInt1: 3207 dVar1: 3607 dpInt1: 407 cEL: cvec[3] pvInt: [360 361 362 363 364 365 ] pvFloat: [-0.432 -0.332 -0.232 -0.132 -0.032 0.068 ] dpvFloat: [0.680 0.681 0.682 0.683 0.684 0.685 ] -xAODTestReadCVe... INFO anInt1 808 aFloat: 1600.7 pInt: 4008 pFloat: 7.08 anInt2: 2408 dInt1: 3208 dVar1: 3608 dpInt1: 408 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 808 aFloat: 1600.7 pInt: 4008 pFloat: 7.08 anInt2: 2408 dInt1: 3208 dVar1: 3608 dpInt1: 408 cEL: cvec[2] pvInt: [370 371 372 373 374 375 376 ] pvFloat: [-0.422 -0.322 -0.222 -0.122 -0.022 0.078 0.178 ] dpvFloat: [0.780 0.781 0.782 0.783 0.784 0.785 0.786 ] -xAODTestReadCVe... INFO anInt1 809 aFloat: 1600.8 pInt: 4009 pFloat: 8.08 anInt2: 2409 dInt1: 3209 dVar1: 3609 dpInt1: 409 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 809 aFloat: 1600.8 pInt: 4009 pFloat: 8.08 anInt2: 2409 dInt1: 3209 dVar1: 3609 dpInt1: 409 cEL: cvec[1] pvInt: [380 381 382 383 384 385 386 387 ] pvFloat: [-0.412 -0.312 -0.212 -0.112 -0.012 0.088 0.188 0.288 ] dpvFloat: [0.880 0.881 0.882 0.883 0.884 0.885 0.886 0.887 ] -xAODTestReadCVe... INFO anInt1 810 aFloat: 1600.9 pInt: 4010 pFloat: 9.08 anInt2: 2410 dInt1: 3210 dVar1: 3610 dpInt1: 410 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 810 aFloat: 1600.9 pInt: 4010 pFloat: 9.08 anInt2: 2410 dInt1: 3210 dVar1: 3610 dpInt1: 410 cEL: cvec[0] pvInt: [390 391 392 393 394 395 396 397 398 ] pvFloat: [-0.402 -0.302 -0.202 -0.102 -0.002 0.098 0.198 0.298 0.398 ] dpvFloat: [0.980 0.981 0.982 0.983 0.984 0.985 0.986 0.987 0.988 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 8000 aFloat: 0.8 anInt2: 16000 dInt1: 24000 cEL: cvec[8] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 8000 aFloat: 0.8 anInt2: 16000 dInt1: 24000 cEL: cvec[8] xAODTestRead_copy INFO 7 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 4001 aFloat: 4800 anInt2: 5601 dInt1: 3841 @@ -1391,63 +1390,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 5610 gFloat 5709.5 gvFloat 5609.5 5709.5 5809.5 5909.5 6009.5 6109.5 6209.5 6309.5 6409.5 xAODTestRead_copy INFO copy_cvecWD 0: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 -xAODTestReadCVi... INFO copy_cview: 810 809 808 807 806 805 804 803 802 801 -xAODTestReadHVe... INFO copy_hvec: 3220.5 3219.5 3218.5 3217.5 3216.5 3215.5 3214.5 3213.5 3212.5 3211.5 3210.5 3209.5 3208.5 3207.5 3206.5 3205.5 3204.5 3203.5 3202.5 3201.5 -xAODTestReadHVe... INFO copy_hview: 3201.5 3202.5 3203.5 3204.5 3205.5 3206.5 3207.5 3208.5 3209.5 3210.5 3211.5 3212.5 3213.5 3214.5 3215.5 3216.5 3217.5 3218.5 3219.5 3220.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 801 aFloat: 1600 pInt: 4001 pFloat: 0.08 anInt2: 2401 dInt1: 3201 dVar1: 3601 dpInt1: 401 dInt100: 901 dInt150: 1101 anInt10: 220100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 810 809 808 807 806 805 804 803 802 801 +xAODTe...HVec_copy INFO copy_hvec: 3220.5 3219.5 3218.5 3217.5 3216.5 3215.5 3214.5 3213.5 3212.5 3211.5 3210.5 3209.5 3208.5 3207.5 3206.5 3205.5 3204.5 3203.5 3202.5 3201.5 +xAODTe...HVec_copy INFO copy_hview: 3201.5 3202.5 3203.5 3204.5 3205.5 3206.5 3207.5 3208.5 3209.5 3210.5 3211.5 3212.5 3213.5 3214.5 3215.5 3216.5 3217.5 3218.5 3219.5 3220.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 801 aFloat: 1600 pInt: 4001 pFloat: 0.08 anInt2: 2401 dInt1: 3201 dVar1: 3601 dpInt1: 401 dInt100: 901 dInt150: 1101 anInt10: 220100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 802 aFloat: 1600.1 pInt: 4002 pFloat: 1.08 anInt2: 2402 dInt1: 3202 dVar1: 3602 dpInt1: 402 dInt100: 902 dInt150: 1102 anInt10: 220200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 802 aFloat: 1600.1 pInt: 4002 pFloat: 1.08 anInt2: 2402 dInt1: 3202 dVar1: 3602 dpInt1: 402 dInt100: 902 dInt150: 1102 anInt10: 220200 cEL: cvec[8] pvInt: [310 ] pvFloat: [-0.482 ] dpvFloat: [0.180 ] -xAODTestReadCVe... INFO anInt1 803 aFloat: 1600.2 pInt: 4003 pFloat: 2.08 anInt2: 2403 dInt1: 3203 dVar1: 3603 dpInt1: 403 dInt100: 903 dInt150: 1103 anInt10: 220300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 803 aFloat: 1600.2 pInt: 4003 pFloat: 2.08 anInt2: 2403 dInt1: 3203 dVar1: 3603 dpInt1: 403 dInt100: 903 dInt150: 1103 anInt10: 220300 cEL: cvec[7] pvInt: [320 321 ] pvFloat: [-0.472 -0.372 ] dpvFloat: [0.280 0.281 ] -xAODTestReadCVe... INFO anInt1 804 aFloat: 1600.3 pInt: 4004 pFloat: 3.08 anInt2: 2404 dInt1: 3204 dVar1: 3604 dpInt1: 404 dInt100: 904 dInt150: 1104 anInt10: 220400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 804 aFloat: 1600.3 pInt: 4004 pFloat: 3.08 anInt2: 2404 dInt1: 3204 dVar1: 3604 dpInt1: 404 dInt100: 904 dInt150: 1104 anInt10: 220400 cEL: cvec[6] pvInt: [330 331 332 ] pvFloat: [-0.462 -0.362 -0.262 ] dpvFloat: [0.380 0.381 0.382 ] -xAODTestReadCVe... INFO anInt1 805 aFloat: 1600.4 pInt: 4005 pFloat: 4.08 anInt2: 2405 dInt1: 3205 dVar1: 3605 dpInt1: 405 dInt100: 905 dInt150: 1105 anInt10: 220500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 805 aFloat: 1600.4 pInt: 4005 pFloat: 4.08 anInt2: 2405 dInt1: 3205 dVar1: 3605 dpInt1: 405 dInt100: 905 dInt150: 1105 anInt10: 220500 cEL: cvec[5] pvInt: [340 341 342 343 ] pvFloat: [-0.452 -0.352 -0.252 -0.152 ] dpvFloat: [0.480 0.481 0.482 0.483 ] -xAODTestReadCVe... INFO anInt1 806 aFloat: 1600.5 pInt: 4006 pFloat: 5.08 anInt2: 2406 dInt1: 3206 dVar1: 3606 dpInt1: 406 dInt100: 906 dInt150: 1106 anInt10: 220600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 806 aFloat: 1600.5 pInt: 4006 pFloat: 5.08 anInt2: 2406 dInt1: 3206 dVar1: 3606 dpInt1: 406 dInt100: 906 dInt150: 1106 anInt10: 220600 cEL: cvec[4] pvInt: [350 351 352 353 354 ] pvFloat: [-0.442 -0.342 -0.242 -0.142 -0.042 ] dpvFloat: [0.580 0.581 0.582 0.583 0.584 ] -xAODTestReadCVe... INFO anInt1 807 aFloat: 1600.6 pInt: 4007 pFloat: 6.08 anInt2: 2407 dInt1: 3207 dVar1: 3607 dpInt1: 407 dInt100: 907 dInt150: 1107 anInt10: 220700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 807 aFloat: 1600.6 pInt: 4007 pFloat: 6.08 anInt2: 2407 dInt1: 3207 dVar1: 3607 dpInt1: 407 dInt100: 907 dInt150: 1107 anInt10: 220700 cEL: cvec[3] pvInt: [360 361 362 363 364 365 ] pvFloat: [-0.432 -0.332 -0.232 -0.132 -0.032 0.068 ] dpvFloat: [0.680 0.681 0.682 0.683 0.684 0.685 ] -xAODTestReadCVe... INFO anInt1 808 aFloat: 1600.7 pInt: 4008 pFloat: 7.08 anInt2: 2408 dInt1: 3208 dVar1: 3608 dpInt1: 408 dInt100: 908 dInt150: 1108 anInt10: 220800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 808 aFloat: 1600.7 pInt: 4008 pFloat: 7.08 anInt2: 2408 dInt1: 3208 dVar1: 3608 dpInt1: 408 dInt100: 908 dInt150: 1108 anInt10: 220800 cEL: cvec[2] pvInt: [370 371 372 373 374 375 376 ] pvFloat: [-0.422 -0.322 -0.222 -0.122 -0.022 0.078 0.178 ] dpvFloat: [0.780 0.781 0.782 0.783 0.784 0.785 0.786 ] -xAODTestReadCVe... INFO anInt1 809 aFloat: 1600.8 pInt: 4009 pFloat: 8.08 anInt2: 2409 dInt1: 3209 dVar1: 3609 dpInt1: 409 dInt100: 909 dInt150: 1109 anInt10: 220900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 809 aFloat: 1600.8 pInt: 4009 pFloat: 8.08 anInt2: 2409 dInt1: 3209 dVar1: 3609 dpInt1: 409 dInt100: 909 dInt150: 1109 anInt10: 220900 cEL: cvec[1] pvInt: [380 381 382 383 384 385 386 387 ] pvFloat: [-0.412 -0.312 -0.212 -0.112 -0.012 0.088 0.188 0.288 ] dpvFloat: [0.880 0.881 0.882 0.883 0.884 0.885 0.886 0.887 ] -xAODTestReadCVe... INFO anInt1 810 aFloat: 1600.9 pInt: 4010 pFloat: 9.08 anInt2: 2410 dInt1: 3210 dVar1: 3610 dpInt1: 410 dInt100: 910 dInt150: 1110 anInt10: 221000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 810 aFloat: 1600.9 pInt: 4010 pFloat: 9.08 anInt2: 2410 dInt1: 3210 dVar1: 3610 dpInt1: 410 dInt100: 910 dInt150: 1110 anInt10: 221000 cEL: cvec[0] pvInt: [390 391 392 393 394 395 396 397 398 ] pvFloat: [-0.402 -0.302 -0.202 -0.102 -0.002 0.098 0.198 0.298 0.398 ] dpvFloat: [0.980 0.981 0.982 0.983 0.984 0.985 0.986 0.987 0.988 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 8000 aFloat: 0.8 anInt2: 16000 dInt1: 24000 cEL: cvec[8] dInt100: 8500 dInt150: 8700 anInt10: 1740000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 8000 aFloat: 0.8 anInt2: 16000 dInt1: 24000 cEL: cvec[8] dInt100: 8500 dInt150: 8700 anInt10: 1740000 xAODTestRead_scopy INFO 7 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 4001 aFloat: 4800 anInt2: 5601 dInt1: 3841 dInt100: 4701 dInt150: 4901 anInt10: 1340300 @@ -1459,7 +1458,7 @@ xAODTestRead_scopy INFO anInt1 4006 aFloat: 4800.5 anInt2: 5606 dInt1: 3846 d xAODTestRead_scopy INFO anInt1 4007 aFloat: 4800.6 anInt2: 5607 dInt1: 3847 dInt100: 4707 dInt150: 4907 anInt10: 1342100 xAODTestRead_scopy INFO anInt1 4008 aFloat: 4800.7 anInt2: 5608 dInt1: 3848 dInt100: 4708 dInt150: 4908 anInt10: 1342400 xAODTestRead_scopy INFO scopy_cvecWD 1008: 1601(300100) 1602(300200) 1603(300300) 1604(300400) 1605(300500) 1606(300600) 1607(300700) 1608(300800) 1609(300900) 1610(301000) -xAODTestReadHVe... INFO scopy_hvec: 3201.5 3202.5 3203.5 3204.5 3205.5 3206.5 3207.5 3208.5 3209.5 3210.5 3211.5 3212.5 3213.5 3214.5 3215.5 3216.5 3217.5 3218.5 3219.5 3220.5 +xAODTe...Vec_scopy INFO scopy_hvec: 3201.5 3202.5 3203.5 3204.5 3205.5 3206.5 3207.5 3208.5 3209.5 3210.5 3211.5 3212.5 3213.5 3214.5 3215.5 3216.5 3217.5 3218.5 3219.5 3220.5 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #0 7 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #8, run #0 7 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1542,60 +1541,60 @@ xAODTestRead INFO cvecWD 1009: 1801 1802 1803 1804 1805 1806 1807 1808 1 xAODTestReadCView INFO cview: 910 909 908 907 906 905 904 903 902 901 xAODTestReadHVec INFO hvec: 3601.5 3602.5 3603.5 3604.5 3605.5 3606.5 3607.5 3608.5 3609.5 3610.5 3611.5 3612.5 3613.5 3614.5 3615.5 3616.5 3617.5 3618.5 3619.5 3620.5 xAODTestReadHVec INFO hview: 3620.5 3619.5 3618.5 3617.5 3616.5 3615.5 3614.5 3613.5 3612.5 3611.5 3610.5 3609.5 3608.5 3607.5 3606.5 3605.5 3604.5 3603.5 3602.5 3601.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 901 aFloat: 1800 pInt: 4501 pFloat: 0.09 anInt2: 2701 dInt1: 3601 dVar1: 4051 dpInt1: 451 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 901 aFloat: 1800 pInt: 4501 pFloat: 0.09 anInt2: 2701 dInt1: 3601 dVar1: 4051 dpInt1: 451 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 902 aFloat: 1800.1 pInt: 4502 pFloat: 1.09 anInt2: 2702 dInt1: 3602 dVar1: 4052 dpInt1: 452 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 902 aFloat: 1800.1 pInt: 4502 pFloat: 1.09 anInt2: 2702 dInt1: 3602 dVar1: 4052 dpInt1: 452 cEL: cvec[8] pvInt: [410 ] pvFloat: [-0.481 ] dpvFloat: [0.190 ] -xAODTestReadCVe... INFO anInt1 903 aFloat: 1800.2 pInt: 4503 pFloat: 2.09 anInt2: 2703 dInt1: 3603 dVar1: 4053 dpInt1: 453 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 903 aFloat: 1800.2 pInt: 4503 pFloat: 2.09 anInt2: 2703 dInt1: 3603 dVar1: 4053 dpInt1: 453 cEL: cvec[7] pvInt: [420 421 ] pvFloat: [-0.471 -0.371 ] dpvFloat: [0.290 0.291 ] -xAODTestReadCVe... INFO anInt1 904 aFloat: 1800.3 pInt: 4504 pFloat: 3.09 anInt2: 2704 dInt1: 3604 dVar1: 4054 dpInt1: 454 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 904 aFloat: 1800.3 pInt: 4504 pFloat: 3.09 anInt2: 2704 dInt1: 3604 dVar1: 4054 dpInt1: 454 cEL: cvec[6] pvInt: [430 431 432 ] pvFloat: [-0.461 -0.361 -0.261 ] dpvFloat: [0.390 0.391 0.392 ] -xAODTestReadCVe... INFO anInt1 905 aFloat: 1800.4 pInt: 4505 pFloat: 4.09 anInt2: 2705 dInt1: 3605 dVar1: 4055 dpInt1: 455 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 905 aFloat: 1800.4 pInt: 4505 pFloat: 4.09 anInt2: 2705 dInt1: 3605 dVar1: 4055 dpInt1: 455 cEL: cvec[5] pvInt: [440 441 442 443 ] pvFloat: [-0.451 -0.351 -0.251 -0.151 ] dpvFloat: [0.490 0.491 0.492 0.493 ] -xAODTestReadCVe... INFO anInt1 906 aFloat: 1800.5 pInt: 4506 pFloat: 5.09 anInt2: 2706 dInt1: 3606 dVar1: 4056 dpInt1: 456 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 906 aFloat: 1800.5 pInt: 4506 pFloat: 5.09 anInt2: 2706 dInt1: 3606 dVar1: 4056 dpInt1: 456 cEL: cvec[4] pvInt: [450 451 452 453 454 ] pvFloat: [-0.441 -0.341 -0.241 -0.141 -0.041 ] dpvFloat: [0.590 0.591 0.592 0.593 0.594 ] -xAODTestReadCVe... INFO anInt1 907 aFloat: 1800.6 pInt: 4507 pFloat: 6.09 anInt2: 2707 dInt1: 3607 dVar1: 4057 dpInt1: 457 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 907 aFloat: 1800.6 pInt: 4507 pFloat: 6.09 anInt2: 2707 dInt1: 3607 dVar1: 4057 dpInt1: 457 cEL: cvec[3] pvInt: [460 461 462 463 464 465 ] pvFloat: [-0.431 -0.331 -0.231 -0.131 -0.031 0.069 ] dpvFloat: [0.690 0.691 0.692 0.693 0.694 0.695 ] -xAODTestReadCVe... INFO anInt1 908 aFloat: 1800.7 pInt: 4508 pFloat: 7.09 anInt2: 2708 dInt1: 3608 dVar1: 4058 dpInt1: 458 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 908 aFloat: 1800.7 pInt: 4508 pFloat: 7.09 anInt2: 2708 dInt1: 3608 dVar1: 4058 dpInt1: 458 cEL: cvec[2] pvInt: [470 471 472 473 474 475 476 ] pvFloat: [-0.421 -0.321 -0.221 -0.121 -0.021 0.079 0.179 ] dpvFloat: [0.790 0.791 0.792 0.793 0.794 0.795 0.796 ] -xAODTestReadCVe... INFO anInt1 909 aFloat: 1800.8 pInt: 4509 pFloat: 8.09 anInt2: 2709 dInt1: 3609 dVar1: 4059 dpInt1: 459 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 909 aFloat: 1800.8 pInt: 4509 pFloat: 8.09 anInt2: 2709 dInt1: 3609 dVar1: 4059 dpInt1: 459 cEL: cvec[1] pvInt: [480 481 482 483 484 485 486 487 ] pvFloat: [-0.411 -0.311 -0.211 -0.111 -0.011 0.089 0.189 0.289 ] dpvFloat: [0.890 0.891 0.892 0.893 0.894 0.895 0.896 0.897 ] -xAODTestReadCVe... INFO anInt1 910 aFloat: 1800.9 pInt: 4510 pFloat: 9.09 anInt2: 2710 dInt1: 3610 dVar1: 4060 dpInt1: 460 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 910 aFloat: 1800.9 pInt: 4510 pFloat: 9.09 anInt2: 2710 dInt1: 3610 dVar1: 4060 dpInt1: 460 cEL: cvec[0] pvInt: [490 491 492 493 494 495 496 497 498 ] pvFloat: [-0.401 -0.301 -0.201 -0.101 -0.001 0.099 0.199 0.299 0.399 ] dpvFloat: [0.990 0.991 0.992 0.993 0.994 0.995 0.996 0.997 0.998 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 9000 aFloat: 0.9 anInt2: 18000 dInt1: 27000 cEL: cvec[9] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 9000 aFloat: 0.9 anInt2: 18000 dInt1: 27000 cEL: cvec[9] xAODTestRead_copy INFO 8 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 4501 aFloat: 5400 anInt2: 6301 dInt1: 4321 @@ -1619,63 +1618,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 6310 gFloat 6409.5 gvFloat 6309.5 6409.5 6509.5 6609.5 6709.5 6809.5 6909.5 7009.5 7109.5 xAODTestRead_copy INFO copy_cvecWD 0: 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 -xAODTestReadCVi... INFO copy_cview: 910 909 908 907 906 905 904 903 902 901 -xAODTestReadHVe... INFO copy_hvec: 3620.5 3619.5 3618.5 3617.5 3616.5 3615.5 3614.5 3613.5 3612.5 3611.5 3610.5 3609.5 3608.5 3607.5 3606.5 3605.5 3604.5 3603.5 3602.5 3601.5 -xAODTestReadHVe... INFO copy_hview: 3601.5 3602.5 3603.5 3604.5 3605.5 3606.5 3607.5 3608.5 3609.5 3610.5 3611.5 3612.5 3613.5 3614.5 3615.5 3616.5 3617.5 3618.5 3619.5 3620.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 901 aFloat: 1800 pInt: 4501 pFloat: 0.09 anInt2: 2701 dInt1: 3601 dVar1: 4051 dpInt1: 451 dInt100: 1001 dInt150: 1201 anInt10: 250100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 910 909 908 907 906 905 904 903 902 901 +xAODTe...HVec_copy INFO copy_hvec: 3620.5 3619.5 3618.5 3617.5 3616.5 3615.5 3614.5 3613.5 3612.5 3611.5 3610.5 3609.5 3608.5 3607.5 3606.5 3605.5 3604.5 3603.5 3602.5 3601.5 +xAODTe...HVec_copy INFO copy_hview: 3601.5 3602.5 3603.5 3604.5 3605.5 3606.5 3607.5 3608.5 3609.5 3610.5 3611.5 3612.5 3613.5 3614.5 3615.5 3616.5 3617.5 3618.5 3619.5 3620.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 901 aFloat: 1800 pInt: 4501 pFloat: 0.09 anInt2: 2701 dInt1: 3601 dVar1: 4051 dpInt1: 451 dInt100: 1001 dInt150: 1201 anInt10: 250100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 902 aFloat: 1800.1 pInt: 4502 pFloat: 1.09 anInt2: 2702 dInt1: 3602 dVar1: 4052 dpInt1: 452 dInt100: 1002 dInt150: 1202 anInt10: 250200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 902 aFloat: 1800.1 pInt: 4502 pFloat: 1.09 anInt2: 2702 dInt1: 3602 dVar1: 4052 dpInt1: 452 dInt100: 1002 dInt150: 1202 anInt10: 250200 cEL: cvec[8] pvInt: [410 ] pvFloat: [-0.481 ] dpvFloat: [0.190 ] -xAODTestReadCVe... INFO anInt1 903 aFloat: 1800.2 pInt: 4503 pFloat: 2.09 anInt2: 2703 dInt1: 3603 dVar1: 4053 dpInt1: 453 dInt100: 1003 dInt150: 1203 anInt10: 250300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 903 aFloat: 1800.2 pInt: 4503 pFloat: 2.09 anInt2: 2703 dInt1: 3603 dVar1: 4053 dpInt1: 453 dInt100: 1003 dInt150: 1203 anInt10: 250300 cEL: cvec[7] pvInt: [420 421 ] pvFloat: [-0.471 -0.371 ] dpvFloat: [0.290 0.291 ] -xAODTestReadCVe... INFO anInt1 904 aFloat: 1800.3 pInt: 4504 pFloat: 3.09 anInt2: 2704 dInt1: 3604 dVar1: 4054 dpInt1: 454 dInt100: 1004 dInt150: 1204 anInt10: 250400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 904 aFloat: 1800.3 pInt: 4504 pFloat: 3.09 anInt2: 2704 dInt1: 3604 dVar1: 4054 dpInt1: 454 dInt100: 1004 dInt150: 1204 anInt10: 250400 cEL: cvec[6] pvInt: [430 431 432 ] pvFloat: [-0.461 -0.361 -0.261 ] dpvFloat: [0.390 0.391 0.392 ] -xAODTestReadCVe... INFO anInt1 905 aFloat: 1800.4 pInt: 4505 pFloat: 4.09 anInt2: 2705 dInt1: 3605 dVar1: 4055 dpInt1: 455 dInt100: 1005 dInt150: 1205 anInt10: 250500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 905 aFloat: 1800.4 pInt: 4505 pFloat: 4.09 anInt2: 2705 dInt1: 3605 dVar1: 4055 dpInt1: 455 dInt100: 1005 dInt150: 1205 anInt10: 250500 cEL: cvec[5] pvInt: [440 441 442 443 ] pvFloat: [-0.451 -0.351 -0.251 -0.151 ] dpvFloat: [0.490 0.491 0.492 0.493 ] -xAODTestReadCVe... INFO anInt1 906 aFloat: 1800.5 pInt: 4506 pFloat: 5.09 anInt2: 2706 dInt1: 3606 dVar1: 4056 dpInt1: 456 dInt100: 1006 dInt150: 1206 anInt10: 250600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 906 aFloat: 1800.5 pInt: 4506 pFloat: 5.09 anInt2: 2706 dInt1: 3606 dVar1: 4056 dpInt1: 456 dInt100: 1006 dInt150: 1206 anInt10: 250600 cEL: cvec[4] pvInt: [450 451 452 453 454 ] pvFloat: [-0.441 -0.341 -0.241 -0.141 -0.041 ] dpvFloat: [0.590 0.591 0.592 0.593 0.594 ] -xAODTestReadCVe... INFO anInt1 907 aFloat: 1800.6 pInt: 4507 pFloat: 6.09 anInt2: 2707 dInt1: 3607 dVar1: 4057 dpInt1: 457 dInt100: 1007 dInt150: 1207 anInt10: 250700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 907 aFloat: 1800.6 pInt: 4507 pFloat: 6.09 anInt2: 2707 dInt1: 3607 dVar1: 4057 dpInt1: 457 dInt100: 1007 dInt150: 1207 anInt10: 250700 cEL: cvec[3] pvInt: [460 461 462 463 464 465 ] pvFloat: [-0.431 -0.331 -0.231 -0.131 -0.031 0.069 ] dpvFloat: [0.690 0.691 0.692 0.693 0.694 0.695 ] -xAODTestReadCVe... INFO anInt1 908 aFloat: 1800.7 pInt: 4508 pFloat: 7.09 anInt2: 2708 dInt1: 3608 dVar1: 4058 dpInt1: 458 dInt100: 1008 dInt150: 1208 anInt10: 250800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 908 aFloat: 1800.7 pInt: 4508 pFloat: 7.09 anInt2: 2708 dInt1: 3608 dVar1: 4058 dpInt1: 458 dInt100: 1008 dInt150: 1208 anInt10: 250800 cEL: cvec[2] pvInt: [470 471 472 473 474 475 476 ] pvFloat: [-0.421 -0.321 -0.221 -0.121 -0.021 0.079 0.179 ] dpvFloat: [0.790 0.791 0.792 0.793 0.794 0.795 0.796 ] -xAODTestReadCVe... INFO anInt1 909 aFloat: 1800.8 pInt: 4509 pFloat: 8.09 anInt2: 2709 dInt1: 3609 dVar1: 4059 dpInt1: 459 dInt100: 1009 dInt150: 1209 anInt10: 250900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 909 aFloat: 1800.8 pInt: 4509 pFloat: 8.09 anInt2: 2709 dInt1: 3609 dVar1: 4059 dpInt1: 459 dInt100: 1009 dInt150: 1209 anInt10: 250900 cEL: cvec[1] pvInt: [480 481 482 483 484 485 486 487 ] pvFloat: [-0.411 -0.311 -0.211 -0.111 -0.011 0.089 0.189 0.289 ] dpvFloat: [0.890 0.891 0.892 0.893 0.894 0.895 0.896 0.897 ] -xAODTestReadCVe... INFO anInt1 910 aFloat: 1800.9 pInt: 4510 pFloat: 9.09 anInt2: 2710 dInt1: 3610 dVar1: 4060 dpInt1: 460 dInt100: 1010 dInt150: 1210 anInt10: 251000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 910 aFloat: 1800.9 pInt: 4510 pFloat: 9.09 anInt2: 2710 dInt1: 3610 dVar1: 4060 dpInt1: 460 dInt100: 1010 dInt150: 1210 anInt10: 251000 cEL: cvec[0] pvInt: [490 491 492 493 494 495 496 497 498 ] pvFloat: [-0.401 -0.301 -0.201 -0.101 -0.001 0.099 0.199 0.299 0.399 ] dpvFloat: [0.990 0.991 0.992 0.993 0.994 0.995 0.996 0.997 0.998 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 9000 aFloat: 0.9 anInt2: 18000 dInt1: 27000 cEL: cvec[9] dInt100: 9500 dInt150: 9700 anInt10: 1960000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 9000 aFloat: 0.9 anInt2: 18000 dInt1: 27000 cEL: cvec[9] dInt100: 9500 dInt150: 9700 anInt10: 1960000 xAODTestRead_scopy INFO 8 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 4501 aFloat: 5400 anInt2: 6301 dInt1: 4321 dInt100: 5201 dInt150: 5401 anInt10: 1510300 @@ -1687,7 +1686,7 @@ xAODTestRead_scopy INFO anInt1 4506 aFloat: 5400.5 anInt2: 6306 dInt1: 4326 d xAODTestRead_scopy INFO anInt1 4507 aFloat: 5400.6 anInt2: 6307 dInt1: 4327 dInt100: 5207 dInt150: 5407 anInt10: 1512100 xAODTestRead_scopy INFO anInt1 4508 aFloat: 5400.7 anInt2: 6308 dInt1: 4328 dInt100: 5208 dInt150: 5408 anInt10: 1512400 xAODTestRead_scopy INFO scopy_cvecWD 1009: 1801(340100) 1802(340200) 1803(340300) 1804(340400) 1805(340500) 1806(340600) 1807(340700) 1808(340800) 1809(340900) 1810(341000) -xAODTestReadHVe... INFO scopy_hvec: 3601.5 3602.5 3603.5 3604.5 3605.5 3606.5 3607.5 3608.5 3609.5 3610.5 3611.5 3612.5 3613.5 3614.5 3615.5 3616.5 3617.5 3618.5 3619.5 3620.5 +xAODTe...Vec_scopy INFO scopy_hvec: 3601.5 3602.5 3603.5 3604.5 3605.5 3606.5 3607.5 3608.5 3609.5 3610.5 3611.5 3612.5 3613.5 3614.5 3615.5 3616.5 3617.5 3618.5 3619.5 3620.5 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #0 8 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #9, run #0 8 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1770,60 +1769,60 @@ xAODTestRead INFO cvecWD 1010: 2001 2002 2003 2004 2005 2006 2007 2008 2 xAODTestReadCView INFO cview: 1010 1009 1008 1007 1006 1005 1004 1003 1002 1001 xAODTestReadHVec INFO hvec: 4001.5 4002.5 4003.5 4004.5 4005.5 4006.5 4007.5 4008.5 4009.5 4010.5 4011.5 4012.5 4013.5 4014.5 4015.5 4016.5 4017.5 4018.5 4019.5 4020.5 xAODTestReadHVec INFO hview: 4020.5 4019.5 4018.5 4017.5 4016.5 4015.5 4014.5 4013.5 4012.5 4011.5 4010.5 4009.5 4008.5 4007.5 4006.5 4005.5 4004.5 4003.5 4002.5 4001.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1001 aFloat: 2000 pInt: 5001 pFloat: 0.10 anInt2: 3001 dInt1: 4001 dVar1: 4501 dpInt1: 501 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1001 aFloat: 2000 pInt: 5001 pFloat: 0.10 anInt2: 3001 dInt1: 4001 dVar1: 4501 dpInt1: 501 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1002 aFloat: 2000.1 pInt: 5002 pFloat: 1.10 anInt2: 3002 dInt1: 4002 dVar1: 4502 dpInt1: 502 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1002 aFloat: 2000.1 pInt: 5002 pFloat: 1.10 anInt2: 3002 dInt1: 4002 dVar1: 4502 dpInt1: 502 cEL: cvec[8] pvInt: [510 ] pvFloat: [-0.480 ] dpvFloat: [0.200 ] -xAODTestReadCVe... INFO anInt1 1003 aFloat: 2000.2 pInt: 5003 pFloat: 2.10 anInt2: 3003 dInt1: 4003 dVar1: 4503 dpInt1: 503 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1003 aFloat: 2000.2 pInt: 5003 pFloat: 2.10 anInt2: 3003 dInt1: 4003 dVar1: 4503 dpInt1: 503 cEL: cvec[7] pvInt: [520 521 ] pvFloat: [-0.470 -0.370 ] dpvFloat: [0.300 0.301 ] -xAODTestReadCVe... INFO anInt1 1004 aFloat: 2000.3 pInt: 5004 pFloat: 3.10 anInt2: 3004 dInt1: 4004 dVar1: 4504 dpInt1: 504 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1004 aFloat: 2000.3 pInt: 5004 pFloat: 3.10 anInt2: 3004 dInt1: 4004 dVar1: 4504 dpInt1: 504 cEL: cvec[6] pvInt: [530 531 532 ] pvFloat: [-0.460 -0.360 -0.260 ] dpvFloat: [0.400 0.401 0.402 ] -xAODTestReadCVe... INFO anInt1 1005 aFloat: 2000.4 pInt: 5005 pFloat: 4.10 anInt2: 3005 dInt1: 4005 dVar1: 4505 dpInt1: 505 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1005 aFloat: 2000.4 pInt: 5005 pFloat: 4.10 anInt2: 3005 dInt1: 4005 dVar1: 4505 dpInt1: 505 cEL: cvec[5] pvInt: [540 541 542 543 ] pvFloat: [-0.450 -0.350 -0.250 -0.150 ] dpvFloat: [0.500 0.501 0.502 0.503 ] -xAODTestReadCVe... INFO anInt1 1006 aFloat: 2000.5 pInt: 5006 pFloat: 5.10 anInt2: 3006 dInt1: 4006 dVar1: 4506 dpInt1: 506 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1006 aFloat: 2000.5 pInt: 5006 pFloat: 5.10 anInt2: 3006 dInt1: 4006 dVar1: 4506 dpInt1: 506 cEL: cvec[4] pvInt: [550 551 552 553 554 ] pvFloat: [-0.440 -0.340 -0.240 -0.140 -0.040 ] dpvFloat: [0.600 0.601 0.602 0.603 0.604 ] -xAODTestReadCVe... INFO anInt1 1007 aFloat: 2000.6 pInt: 5007 pFloat: 6.10 anInt2: 3007 dInt1: 4007 dVar1: 4507 dpInt1: 507 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1007 aFloat: 2000.6 pInt: 5007 pFloat: 6.10 anInt2: 3007 dInt1: 4007 dVar1: 4507 dpInt1: 507 cEL: cvec[3] pvInt: [560 561 562 563 564 565 ] pvFloat: [-0.430 -0.330 -0.230 -0.130 -0.030 0.070 ] dpvFloat: [0.700 0.701 0.702 0.703 0.704 0.705 ] -xAODTestReadCVe... INFO anInt1 1008 aFloat: 2000.7 pInt: 5008 pFloat: 7.10 anInt2: 3008 dInt1: 4008 dVar1: 4508 dpInt1: 508 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1008 aFloat: 2000.7 pInt: 5008 pFloat: 7.10 anInt2: 3008 dInt1: 4008 dVar1: 4508 dpInt1: 508 cEL: cvec[2] pvInt: [570 571 572 573 574 575 576 ] pvFloat: [-0.420 -0.320 -0.220 -0.120 -0.020 0.080 0.180 ] dpvFloat: [0.800 0.801 0.802 0.803 0.804 0.805 0.806 ] -xAODTestReadCVe... INFO anInt1 1009 aFloat: 2000.8 pInt: 5009 pFloat: 8.10 anInt2: 3009 dInt1: 4009 dVar1: 4509 dpInt1: 509 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1009 aFloat: 2000.8 pInt: 5009 pFloat: 8.10 anInt2: 3009 dInt1: 4009 dVar1: 4509 dpInt1: 509 cEL: cvec[1] pvInt: [580 581 582 583 584 585 586 587 ] pvFloat: [-0.410 -0.310 -0.210 -0.110 -0.010 0.090 0.190 0.290 ] dpvFloat: [0.900 0.901 0.902 0.903 0.904 0.905 0.906 0.907 ] -xAODTestReadCVe... INFO anInt1 1010 aFloat: 2000.9 pInt: 5010 pFloat: 9.10 anInt2: 3010 dInt1: 4010 dVar1: 4510 dpInt1: 510 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1010 aFloat: 2000.9 pInt: 5010 pFloat: 9.10 anInt2: 3010 dInt1: 4010 dVar1: 4510 dpInt1: 510 cEL: cvec[0] pvInt: [590 591 592 593 594 595 596 597 598 ] pvFloat: [-0.400 -0.300 -0.200 -0.100 0.000 0.100 0.200 0.300 0.400 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 10000 aFloat: 1 anInt2: 20000 dInt1: 30000 cEL: cvec[0] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 10000 aFloat: 1 anInt2: 20000 dInt1: 30000 cEL: cvec[0] xAODTestRead_copy INFO 9 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 5001 aFloat: 6000 anInt2: 7001 dInt1: 4801 @@ -1847,63 +1846,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 7010 gFloat 7109.5 gvFloat 7009.5 7109.5 7209.5 7309.5 7409.5 7509.5 7609.5 7709.5 7809.5 xAODTestRead_copy INFO copy_cvecWD 0: 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 -xAODTestReadCVi... INFO copy_cview: 1010 1009 1008 1007 1006 1005 1004 1003 1002 1001 -xAODTestReadHVe... INFO copy_hvec: 4020.5 4019.5 4018.5 4017.5 4016.5 4015.5 4014.5 4013.5 4012.5 4011.5 4010.5 4009.5 4008.5 4007.5 4006.5 4005.5 4004.5 4003.5 4002.5 4001.5 -xAODTestReadHVe... INFO copy_hview: 4001.5 4002.5 4003.5 4004.5 4005.5 4006.5 4007.5 4008.5 4009.5 4010.5 4011.5 4012.5 4013.5 4014.5 4015.5 4016.5 4017.5 4018.5 4019.5 4020.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 1001 aFloat: 2000 pInt: 5001 pFloat: 0.10 anInt2: 3001 dInt1: 4001 dVar1: 4501 dpInt1: 501 dInt100: 1101 dInt150: 1301 anInt10: 280100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 1010 1009 1008 1007 1006 1005 1004 1003 1002 1001 +xAODTe...HVec_copy INFO copy_hvec: 4020.5 4019.5 4018.5 4017.5 4016.5 4015.5 4014.5 4013.5 4012.5 4011.5 4010.5 4009.5 4008.5 4007.5 4006.5 4005.5 4004.5 4003.5 4002.5 4001.5 +xAODTe...HVec_copy INFO copy_hview: 4001.5 4002.5 4003.5 4004.5 4005.5 4006.5 4007.5 4008.5 4009.5 4010.5 4011.5 4012.5 4013.5 4014.5 4015.5 4016.5 4017.5 4018.5 4019.5 4020.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 1001 aFloat: 2000 pInt: 5001 pFloat: 0.10 anInt2: 3001 dInt1: 4001 dVar1: 4501 dpInt1: 501 dInt100: 1101 dInt150: 1301 anInt10: 280100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1002 aFloat: 2000.1 pInt: 5002 pFloat: 1.10 anInt2: 3002 dInt1: 4002 dVar1: 4502 dpInt1: 502 dInt100: 1102 dInt150: 1302 anInt10: 280200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 1002 aFloat: 2000.1 pInt: 5002 pFloat: 1.10 anInt2: 3002 dInt1: 4002 dVar1: 4502 dpInt1: 502 dInt100: 1102 dInt150: 1302 anInt10: 280200 cEL: cvec[8] pvInt: [510 ] pvFloat: [-0.480 ] dpvFloat: [0.200 ] -xAODTestReadCVe... INFO anInt1 1003 aFloat: 2000.2 pInt: 5003 pFloat: 2.10 anInt2: 3003 dInt1: 4003 dVar1: 4503 dpInt1: 503 dInt100: 1103 dInt150: 1303 anInt10: 280300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 1003 aFloat: 2000.2 pInt: 5003 pFloat: 2.10 anInt2: 3003 dInt1: 4003 dVar1: 4503 dpInt1: 503 dInt100: 1103 dInt150: 1303 anInt10: 280300 cEL: cvec[7] pvInt: [520 521 ] pvFloat: [-0.470 -0.370 ] dpvFloat: [0.300 0.301 ] -xAODTestReadCVe... INFO anInt1 1004 aFloat: 2000.3 pInt: 5004 pFloat: 3.10 anInt2: 3004 dInt1: 4004 dVar1: 4504 dpInt1: 504 dInt100: 1104 dInt150: 1304 anInt10: 280400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 1004 aFloat: 2000.3 pInt: 5004 pFloat: 3.10 anInt2: 3004 dInt1: 4004 dVar1: 4504 dpInt1: 504 dInt100: 1104 dInt150: 1304 anInt10: 280400 cEL: cvec[6] pvInt: [530 531 532 ] pvFloat: [-0.460 -0.360 -0.260 ] dpvFloat: [0.400 0.401 0.402 ] -xAODTestReadCVe... INFO anInt1 1005 aFloat: 2000.4 pInt: 5005 pFloat: 4.10 anInt2: 3005 dInt1: 4005 dVar1: 4505 dpInt1: 505 dInt100: 1105 dInt150: 1305 anInt10: 280500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 1005 aFloat: 2000.4 pInt: 5005 pFloat: 4.10 anInt2: 3005 dInt1: 4005 dVar1: 4505 dpInt1: 505 dInt100: 1105 dInt150: 1305 anInt10: 280500 cEL: cvec[5] pvInt: [540 541 542 543 ] pvFloat: [-0.450 -0.350 -0.250 -0.150 ] dpvFloat: [0.500 0.501 0.502 0.503 ] -xAODTestReadCVe... INFO anInt1 1006 aFloat: 2000.5 pInt: 5006 pFloat: 5.10 anInt2: 3006 dInt1: 4006 dVar1: 4506 dpInt1: 506 dInt100: 1106 dInt150: 1306 anInt10: 280600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 1006 aFloat: 2000.5 pInt: 5006 pFloat: 5.10 anInt2: 3006 dInt1: 4006 dVar1: 4506 dpInt1: 506 dInt100: 1106 dInt150: 1306 anInt10: 280600 cEL: cvec[4] pvInt: [550 551 552 553 554 ] pvFloat: [-0.440 -0.340 -0.240 -0.140 -0.040 ] dpvFloat: [0.600 0.601 0.602 0.603 0.604 ] -xAODTestReadCVe... INFO anInt1 1007 aFloat: 2000.6 pInt: 5007 pFloat: 6.10 anInt2: 3007 dInt1: 4007 dVar1: 4507 dpInt1: 507 dInt100: 1107 dInt150: 1307 anInt10: 280700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 1007 aFloat: 2000.6 pInt: 5007 pFloat: 6.10 anInt2: 3007 dInt1: 4007 dVar1: 4507 dpInt1: 507 dInt100: 1107 dInt150: 1307 anInt10: 280700 cEL: cvec[3] pvInt: [560 561 562 563 564 565 ] pvFloat: [-0.430 -0.330 -0.230 -0.130 -0.030 0.070 ] dpvFloat: [0.700 0.701 0.702 0.703 0.704 0.705 ] -xAODTestReadCVe... INFO anInt1 1008 aFloat: 2000.7 pInt: 5008 pFloat: 7.10 anInt2: 3008 dInt1: 4008 dVar1: 4508 dpInt1: 508 dInt100: 1108 dInt150: 1308 anInt10: 280800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 1008 aFloat: 2000.7 pInt: 5008 pFloat: 7.10 anInt2: 3008 dInt1: 4008 dVar1: 4508 dpInt1: 508 dInt100: 1108 dInt150: 1308 anInt10: 280800 cEL: cvec[2] pvInt: [570 571 572 573 574 575 576 ] pvFloat: [-0.420 -0.320 -0.220 -0.120 -0.020 0.080 0.180 ] dpvFloat: [0.800 0.801 0.802 0.803 0.804 0.805 0.806 ] -xAODTestReadCVe... INFO anInt1 1009 aFloat: 2000.8 pInt: 5009 pFloat: 8.10 anInt2: 3009 dInt1: 4009 dVar1: 4509 dpInt1: 509 dInt100: 1109 dInt150: 1309 anInt10: 280900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 1009 aFloat: 2000.8 pInt: 5009 pFloat: 8.10 anInt2: 3009 dInt1: 4009 dVar1: 4509 dpInt1: 509 dInt100: 1109 dInt150: 1309 anInt10: 280900 cEL: cvec[1] pvInt: [580 581 582 583 584 585 586 587 ] pvFloat: [-0.410 -0.310 -0.210 -0.110 -0.010 0.090 0.190 0.290 ] dpvFloat: [0.900 0.901 0.902 0.903 0.904 0.905 0.906 0.907 ] -xAODTestReadCVe... INFO anInt1 1010 aFloat: 2000.9 pInt: 5010 pFloat: 9.10 anInt2: 3010 dInt1: 4010 dVar1: 4510 dpInt1: 510 dInt100: 1110 dInt150: 1310 anInt10: 281000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 1010 aFloat: 2000.9 pInt: 5010 pFloat: 9.10 anInt2: 3010 dInt1: 4010 dVar1: 4510 dpInt1: 510 dInt100: 1110 dInt150: 1310 anInt10: 281000 cEL: cvec[0] pvInt: [590 591 592 593 594 595 596 597 598 ] pvFloat: [-0.400 -0.300 -0.200 -0.100 0.000 0.100 0.200 0.300 0.400 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 10000 aFloat: 1 anInt2: 20000 dInt1: 30000 cEL: cvec[0] dInt100: 10500 dInt150: 10700 anInt10: 2180000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 10000 aFloat: 1 anInt2: 20000 dInt1: 30000 cEL: cvec[0] dInt100: 10500 dInt150: 10700 anInt10: 2180000 xAODTestRead_scopy INFO 9 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 5001 aFloat: 6000 anInt2: 7001 dInt1: 4801 dInt100: 5701 dInt150: 5901 anInt10: 1680300 @@ -1915,7 +1914,7 @@ xAODTestRead_scopy INFO anInt1 5006 aFloat: 6000.5 anInt2: 7006 dInt1: 4806 d xAODTestRead_scopy INFO anInt1 5007 aFloat: 6000.6 anInt2: 7007 dInt1: 4807 dInt100: 5707 dInt150: 5907 anInt10: 1682100 xAODTestRead_scopy INFO anInt1 5008 aFloat: 6000.7 anInt2: 7008 dInt1: 4808 dInt100: 5708 dInt150: 5908 anInt10: 1682400 xAODTestRead_scopy INFO scopy_cvecWD 1010: 2001(380100) 2002(380200) 2003(380300) 2004(380400) 2005(380500) 2006(380600) 2007(380700) 2008(380800) 2009(380900) 2010(381000) -xAODTestReadHVe... INFO scopy_hvec: 4001.5 4002.5 4003.5 4004.5 4005.5 4006.5 4007.5 4008.5 4009.5 4010.5 4011.5 4012.5 4013.5 4014.5 4015.5 4016.5 4017.5 4018.5 4019.5 4020.5 +xAODTe...Vec_scopy INFO scopy_hvec: 4001.5 4002.5 4003.5 4004.5 4005.5 4006.5 4007.5 4008.5 4009.5 4010.5 4011.5 4012.5 4013.5 4014.5 4015.5 4016.5 4017.5 4018.5 4019.5 4020.5 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #0 9 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #10, run #0 9 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1998,60 +1997,60 @@ xAODTestRead INFO cvecWD 1011: 2201 2202 2203 2204 2205 2206 2207 2208 2 xAODTestReadCView INFO cview: 1110 1109 1108 1107 1106 1105 1104 1103 1102 1101 xAODTestReadHVec INFO hvec: 4401.5 4402.5 4403.5 4404.5 4405.5 4406.5 4407.5 4408.5 4409.5 4410.5 4411.5 4412.5 4413.5 4414.5 4415.5 4416.5 4417.5 4418.5 4419.5 4420.5 xAODTestReadHVec INFO hview: 4420.5 4419.5 4418.5 4417.5 4416.5 4415.5 4414.5 4413.5 4412.5 4411.5 4410.5 4409.5 4408.5 4407.5 4406.5 4405.5 4404.5 4403.5 4402.5 4401.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1101 aFloat: 2200 pInt: 5501 pFloat: 0.11 anInt2: 3301 dInt1: 4401 dVar1: 4951 dpInt1: 551 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1101 aFloat: 2200 pInt: 5501 pFloat: 0.11 anInt2: 3301 dInt1: 4401 dVar1: 4951 dpInt1: 551 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1102 aFloat: 2200.1 pInt: 5502 pFloat: 1.11 anInt2: 3302 dInt1: 4402 dVar1: 4952 dpInt1: 552 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1102 aFloat: 2200.1 pInt: 5502 pFloat: 1.11 anInt2: 3302 dInt1: 4402 dVar1: 4952 dpInt1: 552 cEL: cvec[8] pvInt: [610 ] pvFloat: [-0.479 ] dpvFloat: [0.210 ] -xAODTestReadCVe... INFO anInt1 1103 aFloat: 2200.2 pInt: 5503 pFloat: 2.11 anInt2: 3303 dInt1: 4403 dVar1: 4953 dpInt1: 553 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1103 aFloat: 2200.2 pInt: 5503 pFloat: 2.11 anInt2: 3303 dInt1: 4403 dVar1: 4953 dpInt1: 553 cEL: cvec[7] pvInt: [620 621 ] pvFloat: [-0.469 -0.369 ] dpvFloat: [0.310 0.311 ] -xAODTestReadCVe... INFO anInt1 1104 aFloat: 2200.3 pInt: 5504 pFloat: 3.11 anInt2: 3304 dInt1: 4404 dVar1: 4954 dpInt1: 554 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1104 aFloat: 2200.3 pInt: 5504 pFloat: 3.11 anInt2: 3304 dInt1: 4404 dVar1: 4954 dpInt1: 554 cEL: cvec[6] pvInt: [630 631 632 ] pvFloat: [-0.459 -0.359 -0.259 ] dpvFloat: [0.410 0.411 0.412 ] -xAODTestReadCVe... INFO anInt1 1105 aFloat: 2200.4 pInt: 5505 pFloat: 4.11 anInt2: 3305 dInt1: 4405 dVar1: 4955 dpInt1: 555 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1105 aFloat: 2200.4 pInt: 5505 pFloat: 4.11 anInt2: 3305 dInt1: 4405 dVar1: 4955 dpInt1: 555 cEL: cvec[5] pvInt: [640 641 642 643 ] pvFloat: [-0.449 -0.349 -0.249 -0.149 ] dpvFloat: [0.510 0.511 0.512 0.513 ] -xAODTestReadCVe... INFO anInt1 1106 aFloat: 2200.5 pInt: 5506 pFloat: 5.11 anInt2: 3306 dInt1: 4406 dVar1: 4956 dpInt1: 556 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1106 aFloat: 2200.5 pInt: 5506 pFloat: 5.11 anInt2: 3306 dInt1: 4406 dVar1: 4956 dpInt1: 556 cEL: cvec[4] pvInt: [650 651 652 653 654 ] pvFloat: [-0.439 -0.339 -0.239 -0.139 -0.039 ] dpvFloat: [0.610 0.611 0.612 0.613 0.614 ] -xAODTestReadCVe... INFO anInt1 1107 aFloat: 2200.6 pInt: 5507 pFloat: 6.11 anInt2: 3307 dInt1: 4407 dVar1: 4957 dpInt1: 557 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1107 aFloat: 2200.6 pInt: 5507 pFloat: 6.11 anInt2: 3307 dInt1: 4407 dVar1: 4957 dpInt1: 557 cEL: cvec[3] pvInt: [660 661 662 663 664 665 ] pvFloat: [-0.429 -0.329 -0.229 -0.129 -0.029 0.071 ] dpvFloat: [0.710 0.711 0.712 0.713 0.714 0.715 ] -xAODTestReadCVe... INFO anInt1 1108 aFloat: 2200.7 pInt: 5508 pFloat: 7.11 anInt2: 3308 dInt1: 4408 dVar1: 4958 dpInt1: 558 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1108 aFloat: 2200.7 pInt: 5508 pFloat: 7.11 anInt2: 3308 dInt1: 4408 dVar1: 4958 dpInt1: 558 cEL: cvec[2] pvInt: [670 671 672 673 674 675 676 ] pvFloat: [-0.419 -0.319 -0.219 -0.119 -0.019 0.081 0.181 ] dpvFloat: [0.810 0.811 0.812 0.813 0.814 0.815 0.816 ] -xAODTestReadCVe... INFO anInt1 1109 aFloat: 2200.8 pInt: 5509 pFloat: 8.11 anInt2: 3309 dInt1: 4409 dVar1: 4959 dpInt1: 559 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1109 aFloat: 2200.8 pInt: 5509 pFloat: 8.11 anInt2: 3309 dInt1: 4409 dVar1: 4959 dpInt1: 559 cEL: cvec[1] pvInt: [680 681 682 683 684 685 686 687 ] pvFloat: [-0.409 -0.309 -0.209 -0.109 -0.009 0.091 0.191 0.291 ] dpvFloat: [0.910 0.911 0.912 0.913 0.914 0.915 0.916 0.917 ] -xAODTestReadCVe... INFO anInt1 1110 aFloat: 2200.9 pInt: 5510 pFloat: 9.11 anInt2: 3310 dInt1: 4410 dVar1: 4960 dpInt1: 560 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1110 aFloat: 2200.9 pInt: 5510 pFloat: 9.11 anInt2: 3310 dInt1: 4410 dVar1: 4960 dpInt1: 560 cEL: cvec[0] pvInt: [690 691 692 693 694 695 696 697 698 ] pvFloat: [-0.399 -0.299 -0.199 -0.099 0.001 0.101 0.201 0.301 0.401 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 11000 aFloat: 1.1 anInt2: 22000 dInt1: 33000 cEL: cvec[1] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 11000 aFloat: 1.1 anInt2: 22000 dInt1: 33000 cEL: cvec[1] xAODTestRead_copy INFO 10 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 5501 aFloat: 6600 anInt2: 7701 dInt1: 5281 @@ -2075,63 +2074,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 7710 gFloat 7809.5 gvFloat 7709.5 7809.5 7909.5 8009.5 8109.5 8209.5 8309.5 8409.5 8509.5 xAODTestRead_copy INFO copy_cvecWD 0: 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 -xAODTestReadCVi... INFO copy_cview: 1110 1109 1108 1107 1106 1105 1104 1103 1102 1101 -xAODTestReadHVe... INFO copy_hvec: 4420.5 4419.5 4418.5 4417.5 4416.5 4415.5 4414.5 4413.5 4412.5 4411.5 4410.5 4409.5 4408.5 4407.5 4406.5 4405.5 4404.5 4403.5 4402.5 4401.5 -xAODTestReadHVe... INFO copy_hview: 4401.5 4402.5 4403.5 4404.5 4405.5 4406.5 4407.5 4408.5 4409.5 4410.5 4411.5 4412.5 4413.5 4414.5 4415.5 4416.5 4417.5 4418.5 4419.5 4420.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 1101 aFloat: 2200 pInt: 5501 pFloat: 0.11 anInt2: 3301 dInt1: 4401 dVar1: 4951 dpInt1: 551 dInt100: 1201 dInt150: 1401 anInt10: 310100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 1110 1109 1108 1107 1106 1105 1104 1103 1102 1101 +xAODTe...HVec_copy INFO copy_hvec: 4420.5 4419.5 4418.5 4417.5 4416.5 4415.5 4414.5 4413.5 4412.5 4411.5 4410.5 4409.5 4408.5 4407.5 4406.5 4405.5 4404.5 4403.5 4402.5 4401.5 +xAODTe...HVec_copy INFO copy_hview: 4401.5 4402.5 4403.5 4404.5 4405.5 4406.5 4407.5 4408.5 4409.5 4410.5 4411.5 4412.5 4413.5 4414.5 4415.5 4416.5 4417.5 4418.5 4419.5 4420.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 1101 aFloat: 2200 pInt: 5501 pFloat: 0.11 anInt2: 3301 dInt1: 4401 dVar1: 4951 dpInt1: 551 dInt100: 1201 dInt150: 1401 anInt10: 310100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1102 aFloat: 2200.1 pInt: 5502 pFloat: 1.11 anInt2: 3302 dInt1: 4402 dVar1: 4952 dpInt1: 552 dInt100: 1202 dInt150: 1402 anInt10: 310200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 1102 aFloat: 2200.1 pInt: 5502 pFloat: 1.11 anInt2: 3302 dInt1: 4402 dVar1: 4952 dpInt1: 552 dInt100: 1202 dInt150: 1402 anInt10: 310200 cEL: cvec[8] pvInt: [610 ] pvFloat: [-0.479 ] dpvFloat: [0.210 ] -xAODTestReadCVe... INFO anInt1 1103 aFloat: 2200.2 pInt: 5503 pFloat: 2.11 anInt2: 3303 dInt1: 4403 dVar1: 4953 dpInt1: 553 dInt100: 1203 dInt150: 1403 anInt10: 310300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 1103 aFloat: 2200.2 pInt: 5503 pFloat: 2.11 anInt2: 3303 dInt1: 4403 dVar1: 4953 dpInt1: 553 dInt100: 1203 dInt150: 1403 anInt10: 310300 cEL: cvec[7] pvInt: [620 621 ] pvFloat: [-0.469 -0.369 ] dpvFloat: [0.310 0.311 ] -xAODTestReadCVe... INFO anInt1 1104 aFloat: 2200.3 pInt: 5504 pFloat: 3.11 anInt2: 3304 dInt1: 4404 dVar1: 4954 dpInt1: 554 dInt100: 1204 dInt150: 1404 anInt10: 310400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 1104 aFloat: 2200.3 pInt: 5504 pFloat: 3.11 anInt2: 3304 dInt1: 4404 dVar1: 4954 dpInt1: 554 dInt100: 1204 dInt150: 1404 anInt10: 310400 cEL: cvec[6] pvInt: [630 631 632 ] pvFloat: [-0.459 -0.359 -0.259 ] dpvFloat: [0.410 0.411 0.412 ] -xAODTestReadCVe... INFO anInt1 1105 aFloat: 2200.4 pInt: 5505 pFloat: 4.11 anInt2: 3305 dInt1: 4405 dVar1: 4955 dpInt1: 555 dInt100: 1205 dInt150: 1405 anInt10: 310500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 1105 aFloat: 2200.4 pInt: 5505 pFloat: 4.11 anInt2: 3305 dInt1: 4405 dVar1: 4955 dpInt1: 555 dInt100: 1205 dInt150: 1405 anInt10: 310500 cEL: cvec[5] pvInt: [640 641 642 643 ] pvFloat: [-0.449 -0.349 -0.249 -0.149 ] dpvFloat: [0.510 0.511 0.512 0.513 ] -xAODTestReadCVe... INFO anInt1 1106 aFloat: 2200.5 pInt: 5506 pFloat: 5.11 anInt2: 3306 dInt1: 4406 dVar1: 4956 dpInt1: 556 dInt100: 1206 dInt150: 1406 anInt10: 310600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 1106 aFloat: 2200.5 pInt: 5506 pFloat: 5.11 anInt2: 3306 dInt1: 4406 dVar1: 4956 dpInt1: 556 dInt100: 1206 dInt150: 1406 anInt10: 310600 cEL: cvec[4] pvInt: [650 651 652 653 654 ] pvFloat: [-0.439 -0.339 -0.239 -0.139 -0.039 ] dpvFloat: [0.610 0.611 0.612 0.613 0.614 ] -xAODTestReadCVe... INFO anInt1 1107 aFloat: 2200.6 pInt: 5507 pFloat: 6.11 anInt2: 3307 dInt1: 4407 dVar1: 4957 dpInt1: 557 dInt100: 1207 dInt150: 1407 anInt10: 310700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 1107 aFloat: 2200.6 pInt: 5507 pFloat: 6.11 anInt2: 3307 dInt1: 4407 dVar1: 4957 dpInt1: 557 dInt100: 1207 dInt150: 1407 anInt10: 310700 cEL: cvec[3] pvInt: [660 661 662 663 664 665 ] pvFloat: [-0.429 -0.329 -0.229 -0.129 -0.029 0.071 ] dpvFloat: [0.710 0.711 0.712 0.713 0.714 0.715 ] -xAODTestReadCVe... INFO anInt1 1108 aFloat: 2200.7 pInt: 5508 pFloat: 7.11 anInt2: 3308 dInt1: 4408 dVar1: 4958 dpInt1: 558 dInt100: 1208 dInt150: 1408 anInt10: 310800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 1108 aFloat: 2200.7 pInt: 5508 pFloat: 7.11 anInt2: 3308 dInt1: 4408 dVar1: 4958 dpInt1: 558 dInt100: 1208 dInt150: 1408 anInt10: 310800 cEL: cvec[2] pvInt: [670 671 672 673 674 675 676 ] pvFloat: [-0.419 -0.319 -0.219 -0.119 -0.019 0.081 0.181 ] dpvFloat: [0.810 0.811 0.812 0.813 0.814 0.815 0.816 ] -xAODTestReadCVe... INFO anInt1 1109 aFloat: 2200.8 pInt: 5509 pFloat: 8.11 anInt2: 3309 dInt1: 4409 dVar1: 4959 dpInt1: 559 dInt100: 1209 dInt150: 1409 anInt10: 310900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 1109 aFloat: 2200.8 pInt: 5509 pFloat: 8.11 anInt2: 3309 dInt1: 4409 dVar1: 4959 dpInt1: 559 dInt100: 1209 dInt150: 1409 anInt10: 310900 cEL: cvec[1] pvInt: [680 681 682 683 684 685 686 687 ] pvFloat: [-0.409 -0.309 -0.209 -0.109 -0.009 0.091 0.191 0.291 ] dpvFloat: [0.910 0.911 0.912 0.913 0.914 0.915 0.916 0.917 ] -xAODTestReadCVe... INFO anInt1 1110 aFloat: 2200.9 pInt: 5510 pFloat: 9.11 anInt2: 3310 dInt1: 4410 dVar1: 4960 dpInt1: 560 dInt100: 1210 dInt150: 1410 anInt10: 311000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 1110 aFloat: 2200.9 pInt: 5510 pFloat: 9.11 anInt2: 3310 dInt1: 4410 dVar1: 4960 dpInt1: 560 dInt100: 1210 dInt150: 1410 anInt10: 311000 cEL: cvec[0] pvInt: [690 691 692 693 694 695 696 697 698 ] pvFloat: [-0.399 -0.299 -0.199 -0.099 0.001 0.101 0.201 0.301 0.401 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 11000 aFloat: 1.1 anInt2: 22000 dInt1: 33000 cEL: cvec[1] dInt100: 11500 dInt150: 11700 anInt10: 2400000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 11000 aFloat: 1.1 anInt2: 22000 dInt1: 33000 cEL: cvec[1] dInt100: 11500 dInt150: 11700 anInt10: 2400000 xAODTestRead_scopy INFO 10 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 5501 aFloat: 6600 anInt2: 7701 dInt1: 5281 dInt100: 6201 dInt150: 6401 anInt10: 1850300 @@ -2143,7 +2142,7 @@ xAODTestRead_scopy INFO anInt1 5506 aFloat: 6600.5 anInt2: 7706 dInt1: 5286 d xAODTestRead_scopy INFO anInt1 5507 aFloat: 6600.6 anInt2: 7707 dInt1: 5287 dInt100: 6207 dInt150: 6407 anInt10: 1852100 xAODTestRead_scopy INFO anInt1 5508 aFloat: 6600.7 anInt2: 7708 dInt1: 5288 dInt100: 6208 dInt150: 6408 anInt10: 1852400 xAODTestRead_scopy INFO scopy_cvecWD 1011: 2201(420100) 2202(420200) 2203(420300) 2204(420400) 2205(420500) 2206(420600) 2207(420700) 2208(420800) 2209(420900) 2210(421000) -xAODTestReadHVe... INFO scopy_hvec: 4401.5 4402.5 4403.5 4404.5 4405.5 4406.5 4407.5 4408.5 4409.5 4410.5 4411.5 4412.5 4413.5 4414.5 4415.5 4416.5 4417.5 4418.5 4419.5 4420.5 +xAODTe...Vec_scopy INFO scopy_hvec: 4401.5 4402.5 4403.5 4404.5 4405.5 4406.5 4407.5 4408.5 4409.5 4410.5 4411.5 4412.5 4413.5 4414.5 4415.5 4416.5 4417.5 4418.5 4419.5 4420.5 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #0 10 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #11, run #0 10 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -2226,60 +2225,60 @@ xAODTestRead INFO cvecWD 1012: 2401 2402 2403 2404 2405 2406 2407 2408 2 xAODTestReadCView INFO cview: 1210 1209 1208 1207 1206 1205 1204 1203 1202 1201 xAODTestReadHVec INFO hvec: 4801.5 4802.5 4803.5 4804.5 4805.5 4806.5 4807.5 4808.5 4809.5 4810.5 4811.5 4812.5 4813.5 4814.5 4815.5 4816.5 4817.5 4818.5 4819.5 4820.5 xAODTestReadHVec INFO hview: 4820.5 4819.5 4818.5 4817.5 4816.5 4815.5 4814.5 4813.5 4812.5 4811.5 4810.5 4809.5 4808.5 4807.5 4806.5 4805.5 4804.5 4803.5 4802.5 4801.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1201 aFloat: 2400 pInt: 6001 pFloat: 0.12 anInt2: 3601 dInt1: 4801 dVar1: 5401 dpInt1: 601 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1201 aFloat: 2400 pInt: 6001 pFloat: 0.12 anInt2: 3601 dInt1: 4801 dVar1: 5401 dpInt1: 601 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1202 aFloat: 2400.1 pInt: 6002 pFloat: 1.12 anInt2: 3602 dInt1: 4802 dVar1: 5402 dpInt1: 602 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1202 aFloat: 2400.1 pInt: 6002 pFloat: 1.12 anInt2: 3602 dInt1: 4802 dVar1: 5402 dpInt1: 602 cEL: cvec[8] pvInt: [710 ] pvFloat: [-0.478 ] dpvFloat: [0.220 ] -xAODTestReadCVe... INFO anInt1 1203 aFloat: 2400.2 pInt: 6003 pFloat: 2.12 anInt2: 3603 dInt1: 4803 dVar1: 5403 dpInt1: 603 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1203 aFloat: 2400.2 pInt: 6003 pFloat: 2.12 anInt2: 3603 dInt1: 4803 dVar1: 5403 dpInt1: 603 cEL: cvec[7] pvInt: [720 721 ] pvFloat: [-0.468 -0.368 ] dpvFloat: [0.320 0.321 ] -xAODTestReadCVe... INFO anInt1 1204 aFloat: 2400.3 pInt: 6004 pFloat: 3.12 anInt2: 3604 dInt1: 4804 dVar1: 5404 dpInt1: 604 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1204 aFloat: 2400.3 pInt: 6004 pFloat: 3.12 anInt2: 3604 dInt1: 4804 dVar1: 5404 dpInt1: 604 cEL: cvec[6] pvInt: [730 731 732 ] pvFloat: [-0.458 -0.358 -0.258 ] dpvFloat: [0.420 0.421 0.422 ] -xAODTestReadCVe... INFO anInt1 1205 aFloat: 2400.4 pInt: 6005 pFloat: 4.12 anInt2: 3605 dInt1: 4805 dVar1: 5405 dpInt1: 605 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1205 aFloat: 2400.4 pInt: 6005 pFloat: 4.12 anInt2: 3605 dInt1: 4805 dVar1: 5405 dpInt1: 605 cEL: cvec[5] pvInt: [740 741 742 743 ] pvFloat: [-0.448 -0.348 -0.248 -0.148 ] dpvFloat: [0.520 0.521 0.522 0.523 ] -xAODTestReadCVe... INFO anInt1 1206 aFloat: 2400.5 pInt: 6006 pFloat: 5.12 anInt2: 3606 dInt1: 4806 dVar1: 5406 dpInt1: 606 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1206 aFloat: 2400.5 pInt: 6006 pFloat: 5.12 anInt2: 3606 dInt1: 4806 dVar1: 5406 dpInt1: 606 cEL: cvec[4] pvInt: [750 751 752 753 754 ] pvFloat: [-0.438 -0.338 -0.238 -0.138 -0.038 ] dpvFloat: [0.620 0.621 0.622 0.623 0.624 ] -xAODTestReadCVe... INFO anInt1 1207 aFloat: 2400.6 pInt: 6007 pFloat: 6.12 anInt2: 3607 dInt1: 4807 dVar1: 5407 dpInt1: 607 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1207 aFloat: 2400.6 pInt: 6007 pFloat: 6.12 anInt2: 3607 dInt1: 4807 dVar1: 5407 dpInt1: 607 cEL: cvec[3] pvInt: [760 761 762 763 764 765 ] pvFloat: [-0.428 -0.328 -0.228 -0.128 -0.028 0.072 ] dpvFloat: [0.720 0.721 0.722 0.723 0.724 0.725 ] -xAODTestReadCVe... INFO anInt1 1208 aFloat: 2400.7 pInt: 6008 pFloat: 7.12 anInt2: 3608 dInt1: 4808 dVar1: 5408 dpInt1: 608 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1208 aFloat: 2400.7 pInt: 6008 pFloat: 7.12 anInt2: 3608 dInt1: 4808 dVar1: 5408 dpInt1: 608 cEL: cvec[2] pvInt: [770 771 772 773 774 775 776 ] pvFloat: [-0.418 -0.318 -0.218 -0.118 -0.018 0.082 0.182 ] dpvFloat: [0.820 0.821 0.822 0.823 0.824 0.825 0.826 ] -xAODTestReadCVe... INFO anInt1 1209 aFloat: 2400.8 pInt: 6009 pFloat: 8.12 anInt2: 3609 dInt1: 4809 dVar1: 5409 dpInt1: 609 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1209 aFloat: 2400.8 pInt: 6009 pFloat: 8.12 anInt2: 3609 dInt1: 4809 dVar1: 5409 dpInt1: 609 cEL: cvec[1] pvInt: [780 781 782 783 784 785 786 787 ] pvFloat: [-0.408 -0.308 -0.208 -0.108 -0.008 0.092 0.192 0.292 ] dpvFloat: [0.920 0.921 0.922 0.923 0.924 0.925 0.926 0.927 ] -xAODTestReadCVe... INFO anInt1 1210 aFloat: 2400.9 pInt: 6010 pFloat: 9.12 anInt2: 3610 dInt1: 4810 dVar1: 5410 dpInt1: 610 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1210 aFloat: 2400.9 pInt: 6010 pFloat: 9.12 anInt2: 3610 dInt1: 4810 dVar1: 5410 dpInt1: 610 cEL: cvec[0] pvInt: [790 791 792 793 794 795 796 797 798 ] pvFloat: [-0.398 -0.298 -0.198 -0.098 0.002 0.102 0.202 0.302 0.402 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 12000 aFloat: 1.2 anInt2: 24000 dInt1: 36000 cEL: cvec[2] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 12000 aFloat: 1.2 anInt2: 24000 dInt1: 36000 cEL: cvec[2] xAODTestRead_copy INFO 11 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 6001 aFloat: 7200 anInt2: 8401 dInt1: 5761 @@ -2303,63 +2302,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 8410 gFloat 8509.5 gvFloat 8409.5 8509.5 8609.5 8709.5 8809.5 8909.5 9009.5 9109.5 9209.5 xAODTestRead_copy INFO copy_cvecWD 0: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 -xAODTestReadCVi... INFO copy_cview: 1210 1209 1208 1207 1206 1205 1204 1203 1202 1201 -xAODTestReadHVe... INFO copy_hvec: 4820.5 4819.5 4818.5 4817.5 4816.5 4815.5 4814.5 4813.5 4812.5 4811.5 4810.5 4809.5 4808.5 4807.5 4806.5 4805.5 4804.5 4803.5 4802.5 4801.5 -xAODTestReadHVe... INFO copy_hview: 4801.5 4802.5 4803.5 4804.5 4805.5 4806.5 4807.5 4808.5 4809.5 4810.5 4811.5 4812.5 4813.5 4814.5 4815.5 4816.5 4817.5 4818.5 4819.5 4820.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 1201 aFloat: 2400 pInt: 6001 pFloat: 0.12 anInt2: 3601 dInt1: 4801 dVar1: 5401 dpInt1: 601 dInt100: 1301 dInt150: 1501 anInt10: 340100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 1210 1209 1208 1207 1206 1205 1204 1203 1202 1201 +xAODTe...HVec_copy INFO copy_hvec: 4820.5 4819.5 4818.5 4817.5 4816.5 4815.5 4814.5 4813.5 4812.5 4811.5 4810.5 4809.5 4808.5 4807.5 4806.5 4805.5 4804.5 4803.5 4802.5 4801.5 +xAODTe...HVec_copy INFO copy_hview: 4801.5 4802.5 4803.5 4804.5 4805.5 4806.5 4807.5 4808.5 4809.5 4810.5 4811.5 4812.5 4813.5 4814.5 4815.5 4816.5 4817.5 4818.5 4819.5 4820.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 1201 aFloat: 2400 pInt: 6001 pFloat: 0.12 anInt2: 3601 dInt1: 4801 dVar1: 5401 dpInt1: 601 dInt100: 1301 dInt150: 1501 anInt10: 340100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1202 aFloat: 2400.1 pInt: 6002 pFloat: 1.12 anInt2: 3602 dInt1: 4802 dVar1: 5402 dpInt1: 602 dInt100: 1302 dInt150: 1502 anInt10: 340200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 1202 aFloat: 2400.1 pInt: 6002 pFloat: 1.12 anInt2: 3602 dInt1: 4802 dVar1: 5402 dpInt1: 602 dInt100: 1302 dInt150: 1502 anInt10: 340200 cEL: cvec[8] pvInt: [710 ] pvFloat: [-0.478 ] dpvFloat: [0.220 ] -xAODTestReadCVe... INFO anInt1 1203 aFloat: 2400.2 pInt: 6003 pFloat: 2.12 anInt2: 3603 dInt1: 4803 dVar1: 5403 dpInt1: 603 dInt100: 1303 dInt150: 1503 anInt10: 340300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 1203 aFloat: 2400.2 pInt: 6003 pFloat: 2.12 anInt2: 3603 dInt1: 4803 dVar1: 5403 dpInt1: 603 dInt100: 1303 dInt150: 1503 anInt10: 340300 cEL: cvec[7] pvInt: [720 721 ] pvFloat: [-0.468 -0.368 ] dpvFloat: [0.320 0.321 ] -xAODTestReadCVe... INFO anInt1 1204 aFloat: 2400.3 pInt: 6004 pFloat: 3.12 anInt2: 3604 dInt1: 4804 dVar1: 5404 dpInt1: 604 dInt100: 1304 dInt150: 1504 anInt10: 340400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 1204 aFloat: 2400.3 pInt: 6004 pFloat: 3.12 anInt2: 3604 dInt1: 4804 dVar1: 5404 dpInt1: 604 dInt100: 1304 dInt150: 1504 anInt10: 340400 cEL: cvec[6] pvInt: [730 731 732 ] pvFloat: [-0.458 -0.358 -0.258 ] dpvFloat: [0.420 0.421 0.422 ] -xAODTestReadCVe... INFO anInt1 1205 aFloat: 2400.4 pInt: 6005 pFloat: 4.12 anInt2: 3605 dInt1: 4805 dVar1: 5405 dpInt1: 605 dInt100: 1305 dInt150: 1505 anInt10: 340500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 1205 aFloat: 2400.4 pInt: 6005 pFloat: 4.12 anInt2: 3605 dInt1: 4805 dVar1: 5405 dpInt1: 605 dInt100: 1305 dInt150: 1505 anInt10: 340500 cEL: cvec[5] pvInt: [740 741 742 743 ] pvFloat: [-0.448 -0.348 -0.248 -0.148 ] dpvFloat: [0.520 0.521 0.522 0.523 ] -xAODTestReadCVe... INFO anInt1 1206 aFloat: 2400.5 pInt: 6006 pFloat: 5.12 anInt2: 3606 dInt1: 4806 dVar1: 5406 dpInt1: 606 dInt100: 1306 dInt150: 1506 anInt10: 340600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 1206 aFloat: 2400.5 pInt: 6006 pFloat: 5.12 anInt2: 3606 dInt1: 4806 dVar1: 5406 dpInt1: 606 dInt100: 1306 dInt150: 1506 anInt10: 340600 cEL: cvec[4] pvInt: [750 751 752 753 754 ] pvFloat: [-0.438 -0.338 -0.238 -0.138 -0.038 ] dpvFloat: [0.620 0.621 0.622 0.623 0.624 ] -xAODTestReadCVe... INFO anInt1 1207 aFloat: 2400.6 pInt: 6007 pFloat: 6.12 anInt2: 3607 dInt1: 4807 dVar1: 5407 dpInt1: 607 dInt100: 1307 dInt150: 1507 anInt10: 340700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 1207 aFloat: 2400.6 pInt: 6007 pFloat: 6.12 anInt2: 3607 dInt1: 4807 dVar1: 5407 dpInt1: 607 dInt100: 1307 dInt150: 1507 anInt10: 340700 cEL: cvec[3] pvInt: [760 761 762 763 764 765 ] pvFloat: [-0.428 -0.328 -0.228 -0.128 -0.028 0.072 ] dpvFloat: [0.720 0.721 0.722 0.723 0.724 0.725 ] -xAODTestReadCVe... INFO anInt1 1208 aFloat: 2400.7 pInt: 6008 pFloat: 7.12 anInt2: 3608 dInt1: 4808 dVar1: 5408 dpInt1: 608 dInt100: 1308 dInt150: 1508 anInt10: 340800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 1208 aFloat: 2400.7 pInt: 6008 pFloat: 7.12 anInt2: 3608 dInt1: 4808 dVar1: 5408 dpInt1: 608 dInt100: 1308 dInt150: 1508 anInt10: 340800 cEL: cvec[2] pvInt: [770 771 772 773 774 775 776 ] pvFloat: [-0.418 -0.318 -0.218 -0.118 -0.018 0.082 0.182 ] dpvFloat: [0.820 0.821 0.822 0.823 0.824 0.825 0.826 ] -xAODTestReadCVe... INFO anInt1 1209 aFloat: 2400.8 pInt: 6009 pFloat: 8.12 anInt2: 3609 dInt1: 4809 dVar1: 5409 dpInt1: 609 dInt100: 1309 dInt150: 1509 anInt10: 340900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 1209 aFloat: 2400.8 pInt: 6009 pFloat: 8.12 anInt2: 3609 dInt1: 4809 dVar1: 5409 dpInt1: 609 dInt100: 1309 dInt150: 1509 anInt10: 340900 cEL: cvec[1] pvInt: [780 781 782 783 784 785 786 787 ] pvFloat: [-0.408 -0.308 -0.208 -0.108 -0.008 0.092 0.192 0.292 ] dpvFloat: [0.920 0.921 0.922 0.923 0.924 0.925 0.926 0.927 ] -xAODTestReadCVe... INFO anInt1 1210 aFloat: 2400.9 pInt: 6010 pFloat: 9.12 anInt2: 3610 dInt1: 4810 dVar1: 5410 dpInt1: 610 dInt100: 1310 dInt150: 1510 anInt10: 341000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 1210 aFloat: 2400.9 pInt: 6010 pFloat: 9.12 anInt2: 3610 dInt1: 4810 dVar1: 5410 dpInt1: 610 dInt100: 1310 dInt150: 1510 anInt10: 341000 cEL: cvec[0] pvInt: [790 791 792 793 794 795 796 797 798 ] pvFloat: [-0.398 -0.298 -0.198 -0.098 0.002 0.102 0.202 0.302 0.402 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 12000 aFloat: 1.2 anInt2: 24000 dInt1: 36000 cEL: cvec[2] dInt100: 12500 dInt150: 12700 anInt10: 2620000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 12000 aFloat: 1.2 anInt2: 24000 dInt1: 36000 cEL: cvec[2] dInt100: 12500 dInt150: 12700 anInt10: 2620000 xAODTestRead_scopy INFO 11 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 6001 aFloat: 7200 anInt2: 8401 dInt1: 5761 dInt100: 6701 dInt150: 6901 anInt10: 2020300 @@ -2371,7 +2370,7 @@ xAODTestRead_scopy INFO anInt1 6006 aFloat: 7200.5 anInt2: 8406 dInt1: 5766 d xAODTestRead_scopy INFO anInt1 6007 aFloat: 7200.6 anInt2: 8407 dInt1: 5767 dInt100: 6707 dInt150: 6907 anInt10: 2022100 xAODTestRead_scopy INFO anInt1 6008 aFloat: 7200.7 anInt2: 8408 dInt1: 5768 dInt100: 6708 dInt150: 6908 anInt10: 2022400 xAODTestRead_scopy INFO scopy_cvecWD 1012: 2401(460100) 2402(460200) 2403(460300) 2404(460400) 2405(460500) 2406(460600) 2407(460700) 2408(460800) 2409(460900) 2410(461000) -xAODTestReadHVe... INFO scopy_hvec: 4801.5 4802.5 4803.5 4804.5 4805.5 4806.5 4807.5 4808.5 4809.5 4810.5 4811.5 4812.5 4813.5 4814.5 4815.5 4816.5 4817.5 4818.5 4819.5 4820.5 +xAODTe...Vec_scopy INFO scopy_hvec: 4801.5 4802.5 4803.5 4804.5 4805.5 4806.5 4807.5 4808.5 4809.5 4810.5 4811.5 4812.5 4813.5 4814.5 4815.5 4816.5 4817.5 4818.5 4819.5 4820.5 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #0 11 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #12, run #0 11 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -2454,60 +2453,60 @@ xAODTestRead INFO cvecWD 1013: 2601 2602 2603 2604 2605 2606 2607 2608 2 xAODTestReadCView INFO cview: 1310 1309 1308 1307 1306 1305 1304 1303 1302 1301 xAODTestReadHVec INFO hvec: 5201.5 5202.5 5203.5 5204.5 5205.5 5206.5 5207.5 5208.5 5209.5 5210.5 5211.5 5212.5 5213.5 5214.5 5215.5 5216.5 5217.5 5218.5 5219.5 5220.5 xAODTestReadHVec INFO hview: 5220.5 5219.5 5218.5 5217.5 5216.5 5215.5 5214.5 5213.5 5212.5 5211.5 5210.5 5209.5 5208.5 5207.5 5206.5 5205.5 5204.5 5203.5 5202.5 5201.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1301 aFloat: 2600 pInt: 6501 pFloat: 0.13 anInt2: 3901 dInt1: 5201 dVar1: 5851 dpInt1: 651 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1301 aFloat: 2600 pInt: 6501 pFloat: 0.13 anInt2: 3901 dInt1: 5201 dVar1: 5851 dpInt1: 651 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1302 aFloat: 2600.1 pInt: 6502 pFloat: 1.13 anInt2: 3902 dInt1: 5202 dVar1: 5852 dpInt1: 652 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1302 aFloat: 2600.1 pInt: 6502 pFloat: 1.13 anInt2: 3902 dInt1: 5202 dVar1: 5852 dpInt1: 652 cEL: cvec[8] pvInt: [810 ] pvFloat: [-0.477 ] dpvFloat: [0.230 ] -xAODTestReadCVe... INFO anInt1 1303 aFloat: 2600.2 pInt: 6503 pFloat: 2.13 anInt2: 3903 dInt1: 5203 dVar1: 5853 dpInt1: 653 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1303 aFloat: 2600.2 pInt: 6503 pFloat: 2.13 anInt2: 3903 dInt1: 5203 dVar1: 5853 dpInt1: 653 cEL: cvec[7] pvInt: [820 821 ] pvFloat: [-0.467 -0.367 ] dpvFloat: [0.330 0.331 ] -xAODTestReadCVe... INFO anInt1 1304 aFloat: 2600.3 pInt: 6504 pFloat: 3.13 anInt2: 3904 dInt1: 5204 dVar1: 5854 dpInt1: 654 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1304 aFloat: 2600.3 pInt: 6504 pFloat: 3.13 anInt2: 3904 dInt1: 5204 dVar1: 5854 dpInt1: 654 cEL: cvec[6] pvInt: [830 831 832 ] pvFloat: [-0.457 -0.357 -0.257 ] dpvFloat: [0.430 0.431 0.432 ] -xAODTestReadCVe... INFO anInt1 1305 aFloat: 2600.4 pInt: 6505 pFloat: 4.13 anInt2: 3905 dInt1: 5205 dVar1: 5855 dpInt1: 655 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1305 aFloat: 2600.4 pInt: 6505 pFloat: 4.13 anInt2: 3905 dInt1: 5205 dVar1: 5855 dpInt1: 655 cEL: cvec[5] pvInt: [840 841 842 843 ] pvFloat: [-0.447 -0.347 -0.247 -0.147 ] dpvFloat: [0.530 0.531 0.532 0.533 ] -xAODTestReadCVe... INFO anInt1 1306 aFloat: 2600.5 pInt: 6506 pFloat: 5.13 anInt2: 3906 dInt1: 5206 dVar1: 5856 dpInt1: 656 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1306 aFloat: 2600.5 pInt: 6506 pFloat: 5.13 anInt2: 3906 dInt1: 5206 dVar1: 5856 dpInt1: 656 cEL: cvec[4] pvInt: [850 851 852 853 854 ] pvFloat: [-0.437 -0.337 -0.237 -0.137 -0.037 ] dpvFloat: [0.630 0.631 0.632 0.633 0.634 ] -xAODTestReadCVe... INFO anInt1 1307 aFloat: 2600.6 pInt: 6507 pFloat: 6.13 anInt2: 3907 dInt1: 5207 dVar1: 5857 dpInt1: 657 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1307 aFloat: 2600.6 pInt: 6507 pFloat: 6.13 anInt2: 3907 dInt1: 5207 dVar1: 5857 dpInt1: 657 cEL: cvec[3] pvInt: [860 861 862 863 864 865 ] pvFloat: [-0.427 -0.327 -0.227 -0.127 -0.027 0.073 ] dpvFloat: [0.730 0.731 0.732 0.733 0.734 0.735 ] -xAODTestReadCVe... INFO anInt1 1308 aFloat: 2600.7 pInt: 6508 pFloat: 7.13 anInt2: 3908 dInt1: 5208 dVar1: 5858 dpInt1: 658 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1308 aFloat: 2600.7 pInt: 6508 pFloat: 7.13 anInt2: 3908 dInt1: 5208 dVar1: 5858 dpInt1: 658 cEL: cvec[2] pvInt: [870 871 872 873 874 875 876 ] pvFloat: [-0.417 -0.317 -0.217 -0.117 -0.017 0.083 0.183 ] dpvFloat: [0.830 0.831 0.832 0.833 0.834 0.835 0.836 ] -xAODTestReadCVe... INFO anInt1 1309 aFloat: 2600.8 pInt: 6509 pFloat: 8.13 anInt2: 3909 dInt1: 5209 dVar1: 5859 dpInt1: 659 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1309 aFloat: 2600.8 pInt: 6509 pFloat: 8.13 anInt2: 3909 dInt1: 5209 dVar1: 5859 dpInt1: 659 cEL: cvec[1] pvInt: [880 881 882 883 884 885 886 887 ] pvFloat: [-0.407 -0.307 -0.207 -0.107 -0.007 0.093 0.193 0.293 ] dpvFloat: [0.930 0.931 0.932 0.933 0.934 0.935 0.936 0.937 ] -xAODTestReadCVe... INFO anInt1 1310 aFloat: 2600.9 pInt: 6510 pFloat: 9.13 anInt2: 3910 dInt1: 5210 dVar1: 5860 dpInt1: 660 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1310 aFloat: 2600.9 pInt: 6510 pFloat: 9.13 anInt2: 3910 dInt1: 5210 dVar1: 5860 dpInt1: 660 cEL: cvec[0] pvInt: [890 891 892 893 894 895 896 897 898 ] pvFloat: [-0.397 -0.297 -0.197 -0.097 0.003 0.103 0.203 0.303 0.403 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 13000 aFloat: 1.3 anInt2: 26000 dInt1: 39000 cEL: cvec[3] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 13000 aFloat: 1.3 anInt2: 26000 dInt1: 39000 cEL: cvec[3] xAODTestRead_copy INFO 12 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 6501 aFloat: 7800 anInt2: 9101 dInt1: 6241 @@ -2531,63 +2530,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 9110 gFloat 9209.5 gvFloat 9109.5 9209.5 9309.5 9409.5 9509.5 9609.5 9709.5 9809.5 9909.5 xAODTestRead_copy INFO copy_cvecWD 0: 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 -xAODTestReadCVi... INFO copy_cview: 1310 1309 1308 1307 1306 1305 1304 1303 1302 1301 -xAODTestReadHVe... INFO copy_hvec: 5220.5 5219.5 5218.5 5217.5 5216.5 5215.5 5214.5 5213.5 5212.5 5211.5 5210.5 5209.5 5208.5 5207.5 5206.5 5205.5 5204.5 5203.5 5202.5 5201.5 -xAODTestReadHVe... INFO copy_hview: 5201.5 5202.5 5203.5 5204.5 5205.5 5206.5 5207.5 5208.5 5209.5 5210.5 5211.5 5212.5 5213.5 5214.5 5215.5 5216.5 5217.5 5218.5 5219.5 5220.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 1301 aFloat: 2600 pInt: 6501 pFloat: 0.13 anInt2: 3901 dInt1: 5201 dVar1: 5851 dpInt1: 651 dInt100: 1401 dInt150: 1601 anInt10: 370100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 1310 1309 1308 1307 1306 1305 1304 1303 1302 1301 +xAODTe...HVec_copy INFO copy_hvec: 5220.5 5219.5 5218.5 5217.5 5216.5 5215.5 5214.5 5213.5 5212.5 5211.5 5210.5 5209.5 5208.5 5207.5 5206.5 5205.5 5204.5 5203.5 5202.5 5201.5 +xAODTe...HVec_copy INFO copy_hview: 5201.5 5202.5 5203.5 5204.5 5205.5 5206.5 5207.5 5208.5 5209.5 5210.5 5211.5 5212.5 5213.5 5214.5 5215.5 5216.5 5217.5 5218.5 5219.5 5220.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 1301 aFloat: 2600 pInt: 6501 pFloat: 0.13 anInt2: 3901 dInt1: 5201 dVar1: 5851 dpInt1: 651 dInt100: 1401 dInt150: 1601 anInt10: 370100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1302 aFloat: 2600.1 pInt: 6502 pFloat: 1.13 anInt2: 3902 dInt1: 5202 dVar1: 5852 dpInt1: 652 dInt100: 1402 dInt150: 1602 anInt10: 370200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 1302 aFloat: 2600.1 pInt: 6502 pFloat: 1.13 anInt2: 3902 dInt1: 5202 dVar1: 5852 dpInt1: 652 dInt100: 1402 dInt150: 1602 anInt10: 370200 cEL: cvec[8] pvInt: [810 ] pvFloat: [-0.477 ] dpvFloat: [0.230 ] -xAODTestReadCVe... INFO anInt1 1303 aFloat: 2600.2 pInt: 6503 pFloat: 2.13 anInt2: 3903 dInt1: 5203 dVar1: 5853 dpInt1: 653 dInt100: 1403 dInt150: 1603 anInt10: 370300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 1303 aFloat: 2600.2 pInt: 6503 pFloat: 2.13 anInt2: 3903 dInt1: 5203 dVar1: 5853 dpInt1: 653 dInt100: 1403 dInt150: 1603 anInt10: 370300 cEL: cvec[7] pvInt: [820 821 ] pvFloat: [-0.467 -0.367 ] dpvFloat: [0.330 0.331 ] -xAODTestReadCVe... INFO anInt1 1304 aFloat: 2600.3 pInt: 6504 pFloat: 3.13 anInt2: 3904 dInt1: 5204 dVar1: 5854 dpInt1: 654 dInt100: 1404 dInt150: 1604 anInt10: 370400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 1304 aFloat: 2600.3 pInt: 6504 pFloat: 3.13 anInt2: 3904 dInt1: 5204 dVar1: 5854 dpInt1: 654 dInt100: 1404 dInt150: 1604 anInt10: 370400 cEL: cvec[6] pvInt: [830 831 832 ] pvFloat: [-0.457 -0.357 -0.257 ] dpvFloat: [0.430 0.431 0.432 ] -xAODTestReadCVe... INFO anInt1 1305 aFloat: 2600.4 pInt: 6505 pFloat: 4.13 anInt2: 3905 dInt1: 5205 dVar1: 5855 dpInt1: 655 dInt100: 1405 dInt150: 1605 anInt10: 370500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 1305 aFloat: 2600.4 pInt: 6505 pFloat: 4.13 anInt2: 3905 dInt1: 5205 dVar1: 5855 dpInt1: 655 dInt100: 1405 dInt150: 1605 anInt10: 370500 cEL: cvec[5] pvInt: [840 841 842 843 ] pvFloat: [-0.447 -0.347 -0.247 -0.147 ] dpvFloat: [0.530 0.531 0.532 0.533 ] -xAODTestReadCVe... INFO anInt1 1306 aFloat: 2600.5 pInt: 6506 pFloat: 5.13 anInt2: 3906 dInt1: 5206 dVar1: 5856 dpInt1: 656 dInt100: 1406 dInt150: 1606 anInt10: 370600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 1306 aFloat: 2600.5 pInt: 6506 pFloat: 5.13 anInt2: 3906 dInt1: 5206 dVar1: 5856 dpInt1: 656 dInt100: 1406 dInt150: 1606 anInt10: 370600 cEL: cvec[4] pvInt: [850 851 852 853 854 ] pvFloat: [-0.437 -0.337 -0.237 -0.137 -0.037 ] dpvFloat: [0.630 0.631 0.632 0.633 0.634 ] -xAODTestReadCVe... INFO anInt1 1307 aFloat: 2600.6 pInt: 6507 pFloat: 6.13 anInt2: 3907 dInt1: 5207 dVar1: 5857 dpInt1: 657 dInt100: 1407 dInt150: 1607 anInt10: 370700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 1307 aFloat: 2600.6 pInt: 6507 pFloat: 6.13 anInt2: 3907 dInt1: 5207 dVar1: 5857 dpInt1: 657 dInt100: 1407 dInt150: 1607 anInt10: 370700 cEL: cvec[3] pvInt: [860 861 862 863 864 865 ] pvFloat: [-0.427 -0.327 -0.227 -0.127 -0.027 0.073 ] dpvFloat: [0.730 0.731 0.732 0.733 0.734 0.735 ] -xAODTestReadCVe... INFO anInt1 1308 aFloat: 2600.7 pInt: 6508 pFloat: 7.13 anInt2: 3908 dInt1: 5208 dVar1: 5858 dpInt1: 658 dInt100: 1408 dInt150: 1608 anInt10: 370800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 1308 aFloat: 2600.7 pInt: 6508 pFloat: 7.13 anInt2: 3908 dInt1: 5208 dVar1: 5858 dpInt1: 658 dInt100: 1408 dInt150: 1608 anInt10: 370800 cEL: cvec[2] pvInt: [870 871 872 873 874 875 876 ] pvFloat: [-0.417 -0.317 -0.217 -0.117 -0.017 0.083 0.183 ] dpvFloat: [0.830 0.831 0.832 0.833 0.834 0.835 0.836 ] -xAODTestReadCVe... INFO anInt1 1309 aFloat: 2600.8 pInt: 6509 pFloat: 8.13 anInt2: 3909 dInt1: 5209 dVar1: 5859 dpInt1: 659 dInt100: 1409 dInt150: 1609 anInt10: 370900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 1309 aFloat: 2600.8 pInt: 6509 pFloat: 8.13 anInt2: 3909 dInt1: 5209 dVar1: 5859 dpInt1: 659 dInt100: 1409 dInt150: 1609 anInt10: 370900 cEL: cvec[1] pvInt: [880 881 882 883 884 885 886 887 ] pvFloat: [-0.407 -0.307 -0.207 -0.107 -0.007 0.093 0.193 0.293 ] dpvFloat: [0.930 0.931 0.932 0.933 0.934 0.935 0.936 0.937 ] -xAODTestReadCVe... INFO anInt1 1310 aFloat: 2600.9 pInt: 6510 pFloat: 9.13 anInt2: 3910 dInt1: 5210 dVar1: 5860 dpInt1: 660 dInt100: 1410 dInt150: 1610 anInt10: 371000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 1310 aFloat: 2600.9 pInt: 6510 pFloat: 9.13 anInt2: 3910 dInt1: 5210 dVar1: 5860 dpInt1: 660 dInt100: 1410 dInt150: 1610 anInt10: 371000 cEL: cvec[0] pvInt: [890 891 892 893 894 895 896 897 898 ] pvFloat: [-0.397 -0.297 -0.197 -0.097 0.003 0.103 0.203 0.303 0.403 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 13000 aFloat: 1.3 anInt2: 26000 dInt1: 39000 cEL: cvec[3] dInt100: 13500 dInt150: 13700 anInt10: 2840000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 13000 aFloat: 1.3 anInt2: 26000 dInt1: 39000 cEL: cvec[3] dInt100: 13500 dInt150: 13700 anInt10: 2840000 xAODTestRead_scopy INFO 12 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 6501 aFloat: 7800 anInt2: 9101 dInt1: 6241 dInt100: 7201 dInt150: 7401 anInt10: 2190300 @@ -2599,7 +2598,7 @@ xAODTestRead_scopy INFO anInt1 6506 aFloat: 7800.5 anInt2: 9106 dInt1: 6246 d xAODTestRead_scopy INFO anInt1 6507 aFloat: 7800.6 anInt2: 9107 dInt1: 6247 dInt100: 7207 dInt150: 7407 anInt10: 2192100 xAODTestRead_scopy INFO anInt1 6508 aFloat: 7800.7 anInt2: 9108 dInt1: 6248 dInt100: 7208 dInt150: 7408 anInt10: 2192400 xAODTestRead_scopy INFO scopy_cvecWD 1013: 2601(500100) 2602(500200) 2603(500300) 2604(500400) 2605(500500) 2606(500600) 2607(500700) 2608(500800) 2609(500900) 2610(501000) -xAODTestReadHVe... INFO scopy_hvec: 5201.5 5202.5 5203.5 5204.5 5205.5 5206.5 5207.5 5208.5 5209.5 5210.5 5211.5 5212.5 5213.5 5214.5 5215.5 5216.5 5217.5 5218.5 5219.5 5220.5 +xAODTe...Vec_scopy INFO scopy_hvec: 5201.5 5202.5 5203.5 5204.5 5205.5 5206.5 5207.5 5208.5 5209.5 5210.5 5211.5 5212.5 5213.5 5214.5 5215.5 5216.5 5217.5 5218.5 5219.5 5220.5 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #0 12 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #13, run #0 12 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -2682,60 +2681,60 @@ xAODTestRead INFO cvecWD 1014: 2801 2802 2803 2804 2805 2806 2807 2808 2 xAODTestReadCView INFO cview: 1410 1409 1408 1407 1406 1405 1404 1403 1402 1401 xAODTestReadHVec INFO hvec: 5601.5 5602.5 5603.5 5604.5 5605.5 5606.5 5607.5 5608.5 5609.5 5610.5 5611.5 5612.5 5613.5 5614.5 5615.5 5616.5 5617.5 5618.5 5619.5 5620.5 xAODTestReadHVec INFO hview: 5620.5 5619.5 5618.5 5617.5 5616.5 5615.5 5614.5 5613.5 5612.5 5611.5 5610.5 5609.5 5608.5 5607.5 5606.5 5605.5 5604.5 5603.5 5602.5 5601.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1401 aFloat: 2800 pInt: 7001 pFloat: 0.14 anInt2: 4201 dInt1: 5601 dVar1: 6301 dpInt1: 701 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1401 aFloat: 2800 pInt: 7001 pFloat: 0.14 anInt2: 4201 dInt1: 5601 dVar1: 6301 dpInt1: 701 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1402 aFloat: 2800.1 pInt: 7002 pFloat: 1.14 anInt2: 4202 dInt1: 5602 dVar1: 6302 dpInt1: 702 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1402 aFloat: 2800.1 pInt: 7002 pFloat: 1.14 anInt2: 4202 dInt1: 5602 dVar1: 6302 dpInt1: 702 cEL: cvec[8] pvInt: [910 ] pvFloat: [-0.476 ] dpvFloat: [0.240 ] -xAODTestReadCVe... INFO anInt1 1403 aFloat: 2800.2 pInt: 7003 pFloat: 2.14 anInt2: 4203 dInt1: 5603 dVar1: 6303 dpInt1: 703 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1403 aFloat: 2800.2 pInt: 7003 pFloat: 2.14 anInt2: 4203 dInt1: 5603 dVar1: 6303 dpInt1: 703 cEL: cvec[7] pvInt: [920 921 ] pvFloat: [-0.466 -0.366 ] dpvFloat: [0.340 0.341 ] -xAODTestReadCVe... INFO anInt1 1404 aFloat: 2800.3 pInt: 7004 pFloat: 3.14 anInt2: 4204 dInt1: 5604 dVar1: 6304 dpInt1: 704 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1404 aFloat: 2800.3 pInt: 7004 pFloat: 3.14 anInt2: 4204 dInt1: 5604 dVar1: 6304 dpInt1: 704 cEL: cvec[6] pvInt: [930 931 932 ] pvFloat: [-0.456 -0.356 -0.256 ] dpvFloat: [0.440 0.441 0.442 ] -xAODTestReadCVe... INFO anInt1 1405 aFloat: 2800.4 pInt: 7005 pFloat: 4.14 anInt2: 4205 dInt1: 5605 dVar1: 6305 dpInt1: 705 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1405 aFloat: 2800.4 pInt: 7005 pFloat: 4.14 anInt2: 4205 dInt1: 5605 dVar1: 6305 dpInt1: 705 cEL: cvec[5] pvInt: [940 941 942 943 ] pvFloat: [-0.446 -0.346 -0.246 -0.146 ] dpvFloat: [0.540 0.541 0.542 0.543 ] -xAODTestReadCVe... INFO anInt1 1406 aFloat: 2800.5 pInt: 7006 pFloat: 5.14 anInt2: 4206 dInt1: 5606 dVar1: 6306 dpInt1: 706 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1406 aFloat: 2800.5 pInt: 7006 pFloat: 5.14 anInt2: 4206 dInt1: 5606 dVar1: 6306 dpInt1: 706 cEL: cvec[4] pvInt: [950 951 952 953 954 ] pvFloat: [-0.436 -0.336 -0.236 -0.136 -0.036 ] dpvFloat: [0.640 0.641 0.642 0.643 0.644 ] -xAODTestReadCVe... INFO anInt1 1407 aFloat: 2800.6 pInt: 7007 pFloat: 6.14 anInt2: 4207 dInt1: 5607 dVar1: 6307 dpInt1: 707 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1407 aFloat: 2800.6 pInt: 7007 pFloat: 6.14 anInt2: 4207 dInt1: 5607 dVar1: 6307 dpInt1: 707 cEL: cvec[3] pvInt: [960 961 962 963 964 965 ] pvFloat: [-0.426 -0.326 -0.226 -0.126 -0.026 0.074 ] dpvFloat: [0.740 0.741 0.742 0.743 0.744 0.745 ] -xAODTestReadCVe... INFO anInt1 1408 aFloat: 2800.7 pInt: 7008 pFloat: 7.14 anInt2: 4208 dInt1: 5608 dVar1: 6308 dpInt1: 708 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1408 aFloat: 2800.7 pInt: 7008 pFloat: 7.14 anInt2: 4208 dInt1: 5608 dVar1: 6308 dpInt1: 708 cEL: cvec[2] pvInt: [970 971 972 973 974 975 976 ] pvFloat: [-0.416 -0.316 -0.216 -0.116 -0.016 0.084 0.184 ] dpvFloat: [0.840 0.841 0.842 0.843 0.844 0.845 0.846 ] -xAODTestReadCVe... INFO anInt1 1409 aFloat: 2800.8 pInt: 7009 pFloat: 8.14 anInt2: 4209 dInt1: 5609 dVar1: 6309 dpInt1: 709 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1409 aFloat: 2800.8 pInt: 7009 pFloat: 8.14 anInt2: 4209 dInt1: 5609 dVar1: 6309 dpInt1: 709 cEL: cvec[1] pvInt: [980 981 982 983 984 985 986 987 ] pvFloat: [-0.406 -0.306 -0.206 -0.106 -0.006 0.094 0.194 0.294 ] dpvFloat: [0.940 0.941 0.942 0.943 0.944 0.945 0.946 0.947 ] -xAODTestReadCVe... INFO anInt1 1410 aFloat: 2800.9 pInt: 7010 pFloat: 9.14 anInt2: 4210 dInt1: 5610 dVar1: 6310 dpInt1: 710 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1410 aFloat: 2800.9 pInt: 7010 pFloat: 9.14 anInt2: 4210 dInt1: 5610 dVar1: 6310 dpInt1: 710 cEL: cvec[0] pvInt: [990 991 992 993 994 995 996 997 998 ] pvFloat: [-0.396 -0.296 -0.196 -0.096 0.004 0.104 0.204 0.304 0.404 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 14000 aFloat: 1.4 anInt2: 28000 dInt1: 42000 cEL: cvec[4] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 14000 aFloat: 1.4 anInt2: 28000 dInt1: 42000 cEL: cvec[4] xAODTestRead_copy INFO 13 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 7001 aFloat: 8400 anInt2: 9801 dInt1: 6721 @@ -2759,63 +2758,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 9810 gFloat 9909.5 gvFloat 9809.5 9909.5 10009.5 10109.5 10209.5 10309.5 10409.5 10509.5 10609.5 xAODTestRead_copy INFO copy_cvecWD 0: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 -xAODTestReadCVi... INFO copy_cview: 1410 1409 1408 1407 1406 1405 1404 1403 1402 1401 -xAODTestReadHVe... INFO copy_hvec: 5620.5 5619.5 5618.5 5617.5 5616.5 5615.5 5614.5 5613.5 5612.5 5611.5 5610.5 5609.5 5608.5 5607.5 5606.5 5605.5 5604.5 5603.5 5602.5 5601.5 -xAODTestReadHVe... INFO copy_hview: 5601.5 5602.5 5603.5 5604.5 5605.5 5606.5 5607.5 5608.5 5609.5 5610.5 5611.5 5612.5 5613.5 5614.5 5615.5 5616.5 5617.5 5618.5 5619.5 5620.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 1401 aFloat: 2800 pInt: 7001 pFloat: 0.14 anInt2: 4201 dInt1: 5601 dVar1: 6301 dpInt1: 701 dInt100: 1501 dInt150: 1701 anInt10: 400100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 1410 1409 1408 1407 1406 1405 1404 1403 1402 1401 +xAODTe...HVec_copy INFO copy_hvec: 5620.5 5619.5 5618.5 5617.5 5616.5 5615.5 5614.5 5613.5 5612.5 5611.5 5610.5 5609.5 5608.5 5607.5 5606.5 5605.5 5604.5 5603.5 5602.5 5601.5 +xAODTe...HVec_copy INFO copy_hview: 5601.5 5602.5 5603.5 5604.5 5605.5 5606.5 5607.5 5608.5 5609.5 5610.5 5611.5 5612.5 5613.5 5614.5 5615.5 5616.5 5617.5 5618.5 5619.5 5620.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 1401 aFloat: 2800 pInt: 7001 pFloat: 0.14 anInt2: 4201 dInt1: 5601 dVar1: 6301 dpInt1: 701 dInt100: 1501 dInt150: 1701 anInt10: 400100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1402 aFloat: 2800.1 pInt: 7002 pFloat: 1.14 anInt2: 4202 dInt1: 5602 dVar1: 6302 dpInt1: 702 dInt100: 1502 dInt150: 1702 anInt10: 400200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 1402 aFloat: 2800.1 pInt: 7002 pFloat: 1.14 anInt2: 4202 dInt1: 5602 dVar1: 6302 dpInt1: 702 dInt100: 1502 dInt150: 1702 anInt10: 400200 cEL: cvec[8] pvInt: [910 ] pvFloat: [-0.476 ] dpvFloat: [0.240 ] -xAODTestReadCVe... INFO anInt1 1403 aFloat: 2800.2 pInt: 7003 pFloat: 2.14 anInt2: 4203 dInt1: 5603 dVar1: 6303 dpInt1: 703 dInt100: 1503 dInt150: 1703 anInt10: 400300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 1403 aFloat: 2800.2 pInt: 7003 pFloat: 2.14 anInt2: 4203 dInt1: 5603 dVar1: 6303 dpInt1: 703 dInt100: 1503 dInt150: 1703 anInt10: 400300 cEL: cvec[7] pvInt: [920 921 ] pvFloat: [-0.466 -0.366 ] dpvFloat: [0.340 0.341 ] -xAODTestReadCVe... INFO anInt1 1404 aFloat: 2800.3 pInt: 7004 pFloat: 3.14 anInt2: 4204 dInt1: 5604 dVar1: 6304 dpInt1: 704 dInt100: 1504 dInt150: 1704 anInt10: 400400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 1404 aFloat: 2800.3 pInt: 7004 pFloat: 3.14 anInt2: 4204 dInt1: 5604 dVar1: 6304 dpInt1: 704 dInt100: 1504 dInt150: 1704 anInt10: 400400 cEL: cvec[6] pvInt: [930 931 932 ] pvFloat: [-0.456 -0.356 -0.256 ] dpvFloat: [0.440 0.441 0.442 ] -xAODTestReadCVe... INFO anInt1 1405 aFloat: 2800.4 pInt: 7005 pFloat: 4.14 anInt2: 4205 dInt1: 5605 dVar1: 6305 dpInt1: 705 dInt100: 1505 dInt150: 1705 anInt10: 400500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 1405 aFloat: 2800.4 pInt: 7005 pFloat: 4.14 anInt2: 4205 dInt1: 5605 dVar1: 6305 dpInt1: 705 dInt100: 1505 dInt150: 1705 anInt10: 400500 cEL: cvec[5] pvInt: [940 941 942 943 ] pvFloat: [-0.446 -0.346 -0.246 -0.146 ] dpvFloat: [0.540 0.541 0.542 0.543 ] -xAODTestReadCVe... INFO anInt1 1406 aFloat: 2800.5 pInt: 7006 pFloat: 5.14 anInt2: 4206 dInt1: 5606 dVar1: 6306 dpInt1: 706 dInt100: 1506 dInt150: 1706 anInt10: 400600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 1406 aFloat: 2800.5 pInt: 7006 pFloat: 5.14 anInt2: 4206 dInt1: 5606 dVar1: 6306 dpInt1: 706 dInt100: 1506 dInt150: 1706 anInt10: 400600 cEL: cvec[4] pvInt: [950 951 952 953 954 ] pvFloat: [-0.436 -0.336 -0.236 -0.136 -0.036 ] dpvFloat: [0.640 0.641 0.642 0.643 0.644 ] -xAODTestReadCVe... INFO anInt1 1407 aFloat: 2800.6 pInt: 7007 pFloat: 6.14 anInt2: 4207 dInt1: 5607 dVar1: 6307 dpInt1: 707 dInt100: 1507 dInt150: 1707 anInt10: 400700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 1407 aFloat: 2800.6 pInt: 7007 pFloat: 6.14 anInt2: 4207 dInt1: 5607 dVar1: 6307 dpInt1: 707 dInt100: 1507 dInt150: 1707 anInt10: 400700 cEL: cvec[3] pvInt: [960 961 962 963 964 965 ] pvFloat: [-0.426 -0.326 -0.226 -0.126 -0.026 0.074 ] dpvFloat: [0.740 0.741 0.742 0.743 0.744 0.745 ] -xAODTestReadCVe... INFO anInt1 1408 aFloat: 2800.7 pInt: 7008 pFloat: 7.14 anInt2: 4208 dInt1: 5608 dVar1: 6308 dpInt1: 708 dInt100: 1508 dInt150: 1708 anInt10: 400800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 1408 aFloat: 2800.7 pInt: 7008 pFloat: 7.14 anInt2: 4208 dInt1: 5608 dVar1: 6308 dpInt1: 708 dInt100: 1508 dInt150: 1708 anInt10: 400800 cEL: cvec[2] pvInt: [970 971 972 973 974 975 976 ] pvFloat: [-0.416 -0.316 -0.216 -0.116 -0.016 0.084 0.184 ] dpvFloat: [0.840 0.841 0.842 0.843 0.844 0.845 0.846 ] -xAODTestReadCVe... INFO anInt1 1409 aFloat: 2800.8 pInt: 7009 pFloat: 8.14 anInt2: 4209 dInt1: 5609 dVar1: 6309 dpInt1: 709 dInt100: 1509 dInt150: 1709 anInt10: 400900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 1409 aFloat: 2800.8 pInt: 7009 pFloat: 8.14 anInt2: 4209 dInt1: 5609 dVar1: 6309 dpInt1: 709 dInt100: 1509 dInt150: 1709 anInt10: 400900 cEL: cvec[1] pvInt: [980 981 982 983 984 985 986 987 ] pvFloat: [-0.406 -0.306 -0.206 -0.106 -0.006 0.094 0.194 0.294 ] dpvFloat: [0.940 0.941 0.942 0.943 0.944 0.945 0.946 0.947 ] -xAODTestReadCVe... INFO anInt1 1410 aFloat: 2800.9 pInt: 7010 pFloat: 9.14 anInt2: 4210 dInt1: 5610 dVar1: 6310 dpInt1: 710 dInt100: 1510 dInt150: 1710 anInt10: 401000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 1410 aFloat: 2800.9 pInt: 7010 pFloat: 9.14 anInt2: 4210 dInt1: 5610 dVar1: 6310 dpInt1: 710 dInt100: 1510 dInt150: 1710 anInt10: 401000 cEL: cvec[0] pvInt: [990 991 992 993 994 995 996 997 998 ] pvFloat: [-0.396 -0.296 -0.196 -0.096 0.004 0.104 0.204 0.304 0.404 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 14000 aFloat: 1.4 anInt2: 28000 dInt1: 42000 cEL: cvec[4] dInt100: 14500 dInt150: 14700 anInt10: 3060000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 14000 aFloat: 1.4 anInt2: 28000 dInt1: 42000 cEL: cvec[4] dInt100: 14500 dInt150: 14700 anInt10: 3060000 xAODTestRead_scopy INFO 13 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 7001 aFloat: 8400 anInt2: 9801 dInt1: 6721 dInt100: 7701 dInt150: 7901 anInt10: 2360300 @@ -2827,7 +2826,7 @@ xAODTestRead_scopy INFO anInt1 7006 aFloat: 8400.5 anInt2: 9806 dInt1: 6726 d xAODTestRead_scopy INFO anInt1 7007 aFloat: 8400.6 anInt2: 9807 dInt1: 6727 dInt100: 7707 dInt150: 7907 anInt10: 2362100 xAODTestRead_scopy INFO anInt1 7008 aFloat: 8400.7 anInt2: 9808 dInt1: 6728 dInt100: 7708 dInt150: 7908 anInt10: 2362400 xAODTestRead_scopy INFO scopy_cvecWD 1014: 2801(540100) 2802(540200) 2803(540300) 2804(540400) 2805(540500) 2806(540600) 2807(540700) 2808(540800) 2809(540900) 2810(541000) -xAODTestReadHVe... INFO scopy_hvec: 5601.5 5602.5 5603.5 5604.5 5605.5 5606.5 5607.5 5608.5 5609.5 5610.5 5611.5 5612.5 5613.5 5614.5 5615.5 5616.5 5617.5 5618.5 5619.5 5620.5 +xAODTe...Vec_scopy INFO scopy_hvec: 5601.5 5602.5 5603.5 5604.5 5605.5 5606.5 5607.5 5608.5 5609.5 5610.5 5611.5 5612.5 5613.5 5614.5 5615.5 5616.5 5617.5 5618.5 5619.5 5620.5 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #0 13 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #14, run #0 13 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -2910,60 +2909,60 @@ xAODTestRead INFO cvecWD 1015: 3001 3002 3003 3004 3005 3006 3007 3008 3 xAODTestReadCView INFO cview: 1510 1509 1508 1507 1506 1505 1504 1503 1502 1501 xAODTestReadHVec INFO hvec: 6001.5 6002.5 6003.5 6004.5 6005.5 6006.5 6007.5 6008.5 6009.5 6010.5 6011.5 6012.5 6013.5 6014.5 6015.5 6016.5 6017.5 6018.5 6019.5 6020.5 xAODTestReadHVec INFO hview: 6020.5 6019.5 6018.5 6017.5 6016.5 6015.5 6014.5 6013.5 6012.5 6011.5 6010.5 6009.5 6008.5 6007.5 6006.5 6005.5 6004.5 6003.5 6002.5 6001.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1501 aFloat: 3000 pInt: 7501 pFloat: 0.15 anInt2: 4501 dInt1: 6001 dVar1: 6751 dpInt1: 751 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1501 aFloat: 3000 pInt: 7501 pFloat: 0.15 anInt2: 4501 dInt1: 6001 dVar1: 6751 dpInt1: 751 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1502 aFloat: 3000.1 pInt: 7502 pFloat: 1.15 anInt2: 4502 dInt1: 6002 dVar1: 6752 dpInt1: 752 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1502 aFloat: 3000.1 pInt: 7502 pFloat: 1.15 anInt2: 4502 dInt1: 6002 dVar1: 6752 dpInt1: 752 cEL: cvec[8] pvInt: [1010 ] pvFloat: [-0.475 ] dpvFloat: [0.250 ] -xAODTestReadCVe... INFO anInt1 1503 aFloat: 3000.2 pInt: 7503 pFloat: 2.15 anInt2: 4503 dInt1: 6003 dVar1: 6753 dpInt1: 753 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1503 aFloat: 3000.2 pInt: 7503 pFloat: 2.15 anInt2: 4503 dInt1: 6003 dVar1: 6753 dpInt1: 753 cEL: cvec[7] pvInt: [1020 1021 ] pvFloat: [-0.465 -0.365 ] dpvFloat: [0.350 0.351 ] -xAODTestReadCVe... INFO anInt1 1504 aFloat: 3000.3 pInt: 7504 pFloat: 3.15 anInt2: 4504 dInt1: 6004 dVar1: 6754 dpInt1: 754 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1504 aFloat: 3000.3 pInt: 7504 pFloat: 3.15 anInt2: 4504 dInt1: 6004 dVar1: 6754 dpInt1: 754 cEL: cvec[6] pvInt: [1030 1031 1032 ] pvFloat: [-0.455 -0.355 -0.255 ] dpvFloat: [0.450 0.451 0.452 ] -xAODTestReadCVe... INFO anInt1 1505 aFloat: 3000.4 pInt: 7505 pFloat: 4.15 anInt2: 4505 dInt1: 6005 dVar1: 6755 dpInt1: 755 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1505 aFloat: 3000.4 pInt: 7505 pFloat: 4.15 anInt2: 4505 dInt1: 6005 dVar1: 6755 dpInt1: 755 cEL: cvec[5] pvInt: [1040 1041 1042 1043 ] pvFloat: [-0.445 -0.345 -0.245 -0.145 ] dpvFloat: [0.550 0.551 0.552 0.553 ] -xAODTestReadCVe... INFO anInt1 1506 aFloat: 3000.5 pInt: 7506 pFloat: 5.15 anInt2: 4506 dInt1: 6006 dVar1: 6756 dpInt1: 756 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1506 aFloat: 3000.5 pInt: 7506 pFloat: 5.15 anInt2: 4506 dInt1: 6006 dVar1: 6756 dpInt1: 756 cEL: cvec[4] pvInt: [1050 1051 1052 1053 1054 ] pvFloat: [-0.435 -0.335 -0.235 -0.135 -0.035 ] dpvFloat: [0.650 0.651 0.652 0.653 0.654 ] -xAODTestReadCVe... INFO anInt1 1507 aFloat: 3000.6 pInt: 7507 pFloat: 6.15 anInt2: 4507 dInt1: 6007 dVar1: 6757 dpInt1: 757 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1507 aFloat: 3000.6 pInt: 7507 pFloat: 6.15 anInt2: 4507 dInt1: 6007 dVar1: 6757 dpInt1: 757 cEL: cvec[3] pvInt: [1060 1061 1062 1063 1064 1065 ] pvFloat: [-0.425 -0.325 -0.225 -0.125 -0.025 0.075 ] dpvFloat: [0.750 0.751 0.752 0.753 0.754 0.755 ] -xAODTestReadCVe... INFO anInt1 1508 aFloat: 3000.7 pInt: 7508 pFloat: 7.15 anInt2: 4508 dInt1: 6008 dVar1: 6758 dpInt1: 758 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1508 aFloat: 3000.7 pInt: 7508 pFloat: 7.15 anInt2: 4508 dInt1: 6008 dVar1: 6758 dpInt1: 758 cEL: cvec[2] pvInt: [1070 1071 1072 1073 1074 1075 1076 ] pvFloat: [-0.415 -0.315 -0.215 -0.115 -0.015 0.085 0.185 ] dpvFloat: [0.850 0.851 0.852 0.853 0.854 0.855 0.856 ] -xAODTestReadCVe... INFO anInt1 1509 aFloat: 3000.8 pInt: 7509 pFloat: 8.15 anInt2: 4509 dInt1: 6009 dVar1: 6759 dpInt1: 759 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1509 aFloat: 3000.8 pInt: 7509 pFloat: 8.15 anInt2: 4509 dInt1: 6009 dVar1: 6759 dpInt1: 759 cEL: cvec[1] pvInt: [1080 1081 1082 1083 1084 1085 1086 1087 ] pvFloat: [-0.405 -0.305 -0.205 -0.105 -0.005 0.095 0.195 0.295 ] dpvFloat: [0.950 0.951 0.952 0.953 0.954 0.955 0.956 0.957 ] -xAODTestReadCVe... INFO anInt1 1510 aFloat: 3000.9 pInt: 7510 pFloat: 9.15 anInt2: 4510 dInt1: 6010 dVar1: 6760 dpInt1: 760 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1510 aFloat: 3000.9 pInt: 7510 pFloat: 9.15 anInt2: 4510 dInt1: 6010 dVar1: 6760 dpInt1: 760 cEL: cvec[0] pvInt: [1090 1091 1092 1093 1094 1095 1096 1097 1098 ] pvFloat: [-0.395 -0.295 -0.195 -0.095 0.005 0.105 0.205 0.305 0.405 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 15000 aFloat: 1.5 anInt2: 30000 dInt1: 45000 cEL: cvec[5] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 15000 aFloat: 1.5 anInt2: 30000 dInt1: 45000 cEL: cvec[5] xAODTestRead_copy INFO 14 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 7501 aFloat: 9000 anInt2: 10501 dInt1: 7201 @@ -2987,63 +2986,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 10510 gFloat 10609.5 gvFloat 10509.5 10609.5 10709.5 10809.5 10909.5 11009.5 11109.5 11209.5 11309.5 xAODTestRead_copy INFO copy_cvecWD 0: 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 -xAODTestReadCVi... INFO copy_cview: 1510 1509 1508 1507 1506 1505 1504 1503 1502 1501 -xAODTestReadHVe... INFO copy_hvec: 6020.5 6019.5 6018.5 6017.5 6016.5 6015.5 6014.5 6013.5 6012.5 6011.5 6010.5 6009.5 6008.5 6007.5 6006.5 6005.5 6004.5 6003.5 6002.5 6001.5 -xAODTestReadHVe... INFO copy_hview: 6001.5 6002.5 6003.5 6004.5 6005.5 6006.5 6007.5 6008.5 6009.5 6010.5 6011.5 6012.5 6013.5 6014.5 6015.5 6016.5 6017.5 6018.5 6019.5 6020.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 1501 aFloat: 3000 pInt: 7501 pFloat: 0.15 anInt2: 4501 dInt1: 6001 dVar1: 6751 dpInt1: 751 dInt100: 1601 dInt150: 1801 anInt10: 430100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 1510 1509 1508 1507 1506 1505 1504 1503 1502 1501 +xAODTe...HVec_copy INFO copy_hvec: 6020.5 6019.5 6018.5 6017.5 6016.5 6015.5 6014.5 6013.5 6012.5 6011.5 6010.5 6009.5 6008.5 6007.5 6006.5 6005.5 6004.5 6003.5 6002.5 6001.5 +xAODTe...HVec_copy INFO copy_hview: 6001.5 6002.5 6003.5 6004.5 6005.5 6006.5 6007.5 6008.5 6009.5 6010.5 6011.5 6012.5 6013.5 6014.5 6015.5 6016.5 6017.5 6018.5 6019.5 6020.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 1501 aFloat: 3000 pInt: 7501 pFloat: 0.15 anInt2: 4501 dInt1: 6001 dVar1: 6751 dpInt1: 751 dInt100: 1601 dInt150: 1801 anInt10: 430100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1502 aFloat: 3000.1 pInt: 7502 pFloat: 1.15 anInt2: 4502 dInt1: 6002 dVar1: 6752 dpInt1: 752 dInt100: 1602 dInt150: 1802 anInt10: 430200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 1502 aFloat: 3000.1 pInt: 7502 pFloat: 1.15 anInt2: 4502 dInt1: 6002 dVar1: 6752 dpInt1: 752 dInt100: 1602 dInt150: 1802 anInt10: 430200 cEL: cvec[8] pvInt: [1010 ] pvFloat: [-0.475 ] dpvFloat: [0.250 ] -xAODTestReadCVe... INFO anInt1 1503 aFloat: 3000.2 pInt: 7503 pFloat: 2.15 anInt2: 4503 dInt1: 6003 dVar1: 6753 dpInt1: 753 dInt100: 1603 dInt150: 1803 anInt10: 430300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 1503 aFloat: 3000.2 pInt: 7503 pFloat: 2.15 anInt2: 4503 dInt1: 6003 dVar1: 6753 dpInt1: 753 dInt100: 1603 dInt150: 1803 anInt10: 430300 cEL: cvec[7] pvInt: [1020 1021 ] pvFloat: [-0.465 -0.365 ] dpvFloat: [0.350 0.351 ] -xAODTestReadCVe... INFO anInt1 1504 aFloat: 3000.3 pInt: 7504 pFloat: 3.15 anInt2: 4504 dInt1: 6004 dVar1: 6754 dpInt1: 754 dInt100: 1604 dInt150: 1804 anInt10: 430400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 1504 aFloat: 3000.3 pInt: 7504 pFloat: 3.15 anInt2: 4504 dInt1: 6004 dVar1: 6754 dpInt1: 754 dInt100: 1604 dInt150: 1804 anInt10: 430400 cEL: cvec[6] pvInt: [1030 1031 1032 ] pvFloat: [-0.455 -0.355 -0.255 ] dpvFloat: [0.450 0.451 0.452 ] -xAODTestReadCVe... INFO anInt1 1505 aFloat: 3000.4 pInt: 7505 pFloat: 4.15 anInt2: 4505 dInt1: 6005 dVar1: 6755 dpInt1: 755 dInt100: 1605 dInt150: 1805 anInt10: 430500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 1505 aFloat: 3000.4 pInt: 7505 pFloat: 4.15 anInt2: 4505 dInt1: 6005 dVar1: 6755 dpInt1: 755 dInt100: 1605 dInt150: 1805 anInt10: 430500 cEL: cvec[5] pvInt: [1040 1041 1042 1043 ] pvFloat: [-0.445 -0.345 -0.245 -0.145 ] dpvFloat: [0.550 0.551 0.552 0.553 ] -xAODTestReadCVe... INFO anInt1 1506 aFloat: 3000.5 pInt: 7506 pFloat: 5.15 anInt2: 4506 dInt1: 6006 dVar1: 6756 dpInt1: 756 dInt100: 1606 dInt150: 1806 anInt10: 430600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 1506 aFloat: 3000.5 pInt: 7506 pFloat: 5.15 anInt2: 4506 dInt1: 6006 dVar1: 6756 dpInt1: 756 dInt100: 1606 dInt150: 1806 anInt10: 430600 cEL: cvec[4] pvInt: [1050 1051 1052 1053 1054 ] pvFloat: [-0.435 -0.335 -0.235 -0.135 -0.035 ] dpvFloat: [0.650 0.651 0.652 0.653 0.654 ] -xAODTestReadCVe... INFO anInt1 1507 aFloat: 3000.6 pInt: 7507 pFloat: 6.15 anInt2: 4507 dInt1: 6007 dVar1: 6757 dpInt1: 757 dInt100: 1607 dInt150: 1807 anInt10: 430700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 1507 aFloat: 3000.6 pInt: 7507 pFloat: 6.15 anInt2: 4507 dInt1: 6007 dVar1: 6757 dpInt1: 757 dInt100: 1607 dInt150: 1807 anInt10: 430700 cEL: cvec[3] pvInt: [1060 1061 1062 1063 1064 1065 ] pvFloat: [-0.425 -0.325 -0.225 -0.125 -0.025 0.075 ] dpvFloat: [0.750 0.751 0.752 0.753 0.754 0.755 ] -xAODTestReadCVe... INFO anInt1 1508 aFloat: 3000.7 pInt: 7508 pFloat: 7.15 anInt2: 4508 dInt1: 6008 dVar1: 6758 dpInt1: 758 dInt100: 1608 dInt150: 1808 anInt10: 430800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 1508 aFloat: 3000.7 pInt: 7508 pFloat: 7.15 anInt2: 4508 dInt1: 6008 dVar1: 6758 dpInt1: 758 dInt100: 1608 dInt150: 1808 anInt10: 430800 cEL: cvec[2] pvInt: [1070 1071 1072 1073 1074 1075 1076 ] pvFloat: [-0.415 -0.315 -0.215 -0.115 -0.015 0.085 0.185 ] dpvFloat: [0.850 0.851 0.852 0.853 0.854 0.855 0.856 ] -xAODTestReadCVe... INFO anInt1 1509 aFloat: 3000.8 pInt: 7509 pFloat: 8.15 anInt2: 4509 dInt1: 6009 dVar1: 6759 dpInt1: 759 dInt100: 1609 dInt150: 1809 anInt10: 430900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 1509 aFloat: 3000.8 pInt: 7509 pFloat: 8.15 anInt2: 4509 dInt1: 6009 dVar1: 6759 dpInt1: 759 dInt100: 1609 dInt150: 1809 anInt10: 430900 cEL: cvec[1] pvInt: [1080 1081 1082 1083 1084 1085 1086 1087 ] pvFloat: [-0.405 -0.305 -0.205 -0.105 -0.005 0.095 0.195 0.295 ] dpvFloat: [0.950 0.951 0.952 0.953 0.954 0.955 0.956 0.957 ] -xAODTestReadCVe... INFO anInt1 1510 aFloat: 3000.9 pInt: 7510 pFloat: 9.15 anInt2: 4510 dInt1: 6010 dVar1: 6760 dpInt1: 760 dInt100: 1610 dInt150: 1810 anInt10: 431000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 1510 aFloat: 3000.9 pInt: 7510 pFloat: 9.15 anInt2: 4510 dInt1: 6010 dVar1: 6760 dpInt1: 760 dInt100: 1610 dInt150: 1810 anInt10: 431000 cEL: cvec[0] pvInt: [1090 1091 1092 1093 1094 1095 1096 1097 1098 ] pvFloat: [-0.395 -0.295 -0.195 -0.095 0.005 0.105 0.205 0.305 0.405 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 15000 aFloat: 1.5 anInt2: 30000 dInt1: 45000 cEL: cvec[5] dInt100: 15500 dInt150: 15700 anInt10: 3280000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 15000 aFloat: 1.5 anInt2: 30000 dInt1: 45000 cEL: cvec[5] dInt100: 15500 dInt150: 15700 anInt10: 3280000 xAODTestRead_scopy INFO 14 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 7501 aFloat: 9000 anInt2: 10501 dInt1: 7201 dInt100: 8201 dInt150: 8401 anInt10: 2530300 @@ -3055,7 +3054,7 @@ xAODTestRead_scopy INFO anInt1 7506 aFloat: 9000.5 anInt2: 10506 dInt1: 7206 xAODTestRead_scopy INFO anInt1 7507 aFloat: 9000.6 anInt2: 10507 dInt1: 7207 dInt100: 8207 dInt150: 8407 anInt10: 2532100 xAODTestRead_scopy INFO anInt1 7508 aFloat: 9000.7 anInt2: 10508 dInt1: 7208 dInt100: 8208 dInt150: 8408 anInt10: 2532400 xAODTestRead_scopy INFO scopy_cvecWD 1015: 3001(580100) 3002(580200) 3003(580300) 3004(580400) 3005(580500) 3006(580600) 3007(580700) 3008(580800) 3009(580900) 3010(581000) -xAODTestReadHVe... INFO scopy_hvec: 6001.5 6002.5 6003.5 6004.5 6005.5 6006.5 6007.5 6008.5 6009.5 6010.5 6011.5 6012.5 6013.5 6014.5 6015.5 6016.5 6017.5 6018.5 6019.5 6020.5 +xAODTe...Vec_scopy INFO scopy_hvec: 6001.5 6002.5 6003.5 6004.5 6005.5 6006.5 6007.5 6008.5 6009.5 6010.5 6011.5 6012.5 6013.5 6014.5 6015.5 6016.5 6017.5 6018.5 6019.5 6020.5 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #0 14 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #15, run #0 14 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -3138,60 +3137,60 @@ xAODTestRead INFO cvecWD 1016: 3201 3202 3203 3204 3205 3206 3207 3208 3 xAODTestReadCView INFO cview: 1610 1609 1608 1607 1606 1605 1604 1603 1602 1601 xAODTestReadHVec INFO hvec: 6401.5 6402.5 6403.5 6404.5 6405.5 6406.5 6407.5 6408.5 6409.5 6410.5 6411.5 6412.5 6413.5 6414.5 6415.5 6416.5 6417.5 6418.5 6419.5 6420.5 xAODTestReadHVec INFO hview: 6420.5 6419.5 6418.5 6417.5 6416.5 6415.5 6414.5 6413.5 6412.5 6411.5 6410.5 6409.5 6408.5 6407.5 6406.5 6405.5 6404.5 6403.5 6402.5 6401.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1601 aFloat: 3200 pInt: 8001 pFloat: 0.16 anInt2: 4801 dInt1: 6401 dVar1: 7201 dpInt1: 801 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1601 aFloat: 3200 pInt: 8001 pFloat: 0.16 anInt2: 4801 dInt1: 6401 dVar1: 7201 dpInt1: 801 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1602 aFloat: 3200.1 pInt: 8002 pFloat: 1.16 anInt2: 4802 dInt1: 6402 dVar1: 7202 dpInt1: 802 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1602 aFloat: 3200.1 pInt: 8002 pFloat: 1.16 anInt2: 4802 dInt1: 6402 dVar1: 7202 dpInt1: 802 cEL: cvec[8] pvInt: [1110 ] pvFloat: [-0.474 ] dpvFloat: [0.260 ] -xAODTestReadCVe... INFO anInt1 1603 aFloat: 3200.2 pInt: 8003 pFloat: 2.16 anInt2: 4803 dInt1: 6403 dVar1: 7203 dpInt1: 803 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1603 aFloat: 3200.2 pInt: 8003 pFloat: 2.16 anInt2: 4803 dInt1: 6403 dVar1: 7203 dpInt1: 803 cEL: cvec[7] pvInt: [1120 1121 ] pvFloat: [-0.464 -0.364 ] dpvFloat: [0.360 0.361 ] -xAODTestReadCVe... INFO anInt1 1604 aFloat: 3200.3 pInt: 8004 pFloat: 3.16 anInt2: 4804 dInt1: 6404 dVar1: 7204 dpInt1: 804 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1604 aFloat: 3200.3 pInt: 8004 pFloat: 3.16 anInt2: 4804 dInt1: 6404 dVar1: 7204 dpInt1: 804 cEL: cvec[6] pvInt: [1130 1131 1132 ] pvFloat: [-0.454 -0.354 -0.254 ] dpvFloat: [0.460 0.461 0.462 ] -xAODTestReadCVe... INFO anInt1 1605 aFloat: 3200.4 pInt: 8005 pFloat: 4.16 anInt2: 4805 dInt1: 6405 dVar1: 7205 dpInt1: 805 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1605 aFloat: 3200.4 pInt: 8005 pFloat: 4.16 anInt2: 4805 dInt1: 6405 dVar1: 7205 dpInt1: 805 cEL: cvec[5] pvInt: [1140 1141 1142 1143 ] pvFloat: [-0.444 -0.344 -0.244 -0.144 ] dpvFloat: [0.560 0.561 0.562 0.563 ] -xAODTestReadCVe... INFO anInt1 1606 aFloat: 3200.5 pInt: 8006 pFloat: 5.16 anInt2: 4806 dInt1: 6406 dVar1: 7206 dpInt1: 806 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1606 aFloat: 3200.5 pInt: 8006 pFloat: 5.16 anInt2: 4806 dInt1: 6406 dVar1: 7206 dpInt1: 806 cEL: cvec[4] pvInt: [1150 1151 1152 1153 1154 ] pvFloat: [-0.434 -0.334 -0.234 -0.134 -0.034 ] dpvFloat: [0.660 0.661 0.662 0.663 0.664 ] -xAODTestReadCVe... INFO anInt1 1607 aFloat: 3200.6 pInt: 8007 pFloat: 6.16 anInt2: 4807 dInt1: 6407 dVar1: 7207 dpInt1: 807 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1607 aFloat: 3200.6 pInt: 8007 pFloat: 6.16 anInt2: 4807 dInt1: 6407 dVar1: 7207 dpInt1: 807 cEL: cvec[3] pvInt: [1160 1161 1162 1163 1164 1165 ] pvFloat: [-0.424 -0.324 -0.224 -0.124 -0.024 0.076 ] dpvFloat: [0.760 0.761 0.762 0.763 0.764 0.765 ] -xAODTestReadCVe... INFO anInt1 1608 aFloat: 3200.7 pInt: 8008 pFloat: 7.16 anInt2: 4808 dInt1: 6408 dVar1: 7208 dpInt1: 808 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1608 aFloat: 3200.7 pInt: 8008 pFloat: 7.16 anInt2: 4808 dInt1: 6408 dVar1: 7208 dpInt1: 808 cEL: cvec[2] pvInt: [1170 1171 1172 1173 1174 1175 1176 ] pvFloat: [-0.414 -0.314 -0.214 -0.114 -0.014 0.086 0.186 ] dpvFloat: [0.860 0.861 0.862 0.863 0.864 0.865 0.866 ] -xAODTestReadCVe... INFO anInt1 1609 aFloat: 3200.8 pInt: 8009 pFloat: 8.16 anInt2: 4809 dInt1: 6409 dVar1: 7209 dpInt1: 809 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1609 aFloat: 3200.8 pInt: 8009 pFloat: 8.16 anInt2: 4809 dInt1: 6409 dVar1: 7209 dpInt1: 809 cEL: cvec[1] pvInt: [1180 1181 1182 1183 1184 1185 1186 1187 ] pvFloat: [-0.404 -0.304 -0.204 -0.104 -0.004 0.096 0.196 0.296 ] dpvFloat: [0.960 0.961 0.962 0.963 0.964 0.965 0.966 0.967 ] -xAODTestReadCVe... INFO anInt1 1610 aFloat: 3200.9 pInt: 8010 pFloat: 9.16 anInt2: 4810 dInt1: 6410 dVar1: 7210 dpInt1: 810 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1610 aFloat: 3200.9 pInt: 8010 pFloat: 9.16 anInt2: 4810 dInt1: 6410 dVar1: 7210 dpInt1: 810 cEL: cvec[0] pvInt: [1190 1191 1192 1193 1194 1195 1196 1197 1198 ] pvFloat: [-0.394 -0.294 -0.194 -0.094 0.006 0.106 0.206 0.306 0.406 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 16000 aFloat: 1.6 anInt2: 32000 dInt1: 48000 cEL: cvec[6] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 16000 aFloat: 1.6 anInt2: 32000 dInt1: 48000 cEL: cvec[6] xAODTestRead_copy INFO 15 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 8001 aFloat: 9600 anInt2: 11201 dInt1: 7681 @@ -3215,63 +3214,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 11210 gFloat 11309.5 gvFloat 11209.5 11309.5 11409.5 11509.5 11609.5 11709.5 11809.5 11909.5 12009.5 xAODTestRead_copy INFO copy_cvecWD 0: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 -xAODTestReadCVi... INFO copy_cview: 1610 1609 1608 1607 1606 1605 1604 1603 1602 1601 -xAODTestReadHVe... INFO copy_hvec: 6420.5 6419.5 6418.5 6417.5 6416.5 6415.5 6414.5 6413.5 6412.5 6411.5 6410.5 6409.5 6408.5 6407.5 6406.5 6405.5 6404.5 6403.5 6402.5 6401.5 -xAODTestReadHVe... INFO copy_hview: 6401.5 6402.5 6403.5 6404.5 6405.5 6406.5 6407.5 6408.5 6409.5 6410.5 6411.5 6412.5 6413.5 6414.5 6415.5 6416.5 6417.5 6418.5 6419.5 6420.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 1601 aFloat: 3200 pInt: 8001 pFloat: 0.16 anInt2: 4801 dInt1: 6401 dVar1: 7201 dpInt1: 801 dInt100: 1701 dInt150: 1901 anInt10: 460100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 1610 1609 1608 1607 1606 1605 1604 1603 1602 1601 +xAODTe...HVec_copy INFO copy_hvec: 6420.5 6419.5 6418.5 6417.5 6416.5 6415.5 6414.5 6413.5 6412.5 6411.5 6410.5 6409.5 6408.5 6407.5 6406.5 6405.5 6404.5 6403.5 6402.5 6401.5 +xAODTe...HVec_copy INFO copy_hview: 6401.5 6402.5 6403.5 6404.5 6405.5 6406.5 6407.5 6408.5 6409.5 6410.5 6411.5 6412.5 6413.5 6414.5 6415.5 6416.5 6417.5 6418.5 6419.5 6420.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 1601 aFloat: 3200 pInt: 8001 pFloat: 0.16 anInt2: 4801 dInt1: 6401 dVar1: 7201 dpInt1: 801 dInt100: 1701 dInt150: 1901 anInt10: 460100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1602 aFloat: 3200.1 pInt: 8002 pFloat: 1.16 anInt2: 4802 dInt1: 6402 dVar1: 7202 dpInt1: 802 dInt100: 1702 dInt150: 1902 anInt10: 460200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 1602 aFloat: 3200.1 pInt: 8002 pFloat: 1.16 anInt2: 4802 dInt1: 6402 dVar1: 7202 dpInt1: 802 dInt100: 1702 dInt150: 1902 anInt10: 460200 cEL: cvec[8] pvInt: [1110 ] pvFloat: [-0.474 ] dpvFloat: [0.260 ] -xAODTestReadCVe... INFO anInt1 1603 aFloat: 3200.2 pInt: 8003 pFloat: 2.16 anInt2: 4803 dInt1: 6403 dVar1: 7203 dpInt1: 803 dInt100: 1703 dInt150: 1903 anInt10: 460300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 1603 aFloat: 3200.2 pInt: 8003 pFloat: 2.16 anInt2: 4803 dInt1: 6403 dVar1: 7203 dpInt1: 803 dInt100: 1703 dInt150: 1903 anInt10: 460300 cEL: cvec[7] pvInt: [1120 1121 ] pvFloat: [-0.464 -0.364 ] dpvFloat: [0.360 0.361 ] -xAODTestReadCVe... INFO anInt1 1604 aFloat: 3200.3 pInt: 8004 pFloat: 3.16 anInt2: 4804 dInt1: 6404 dVar1: 7204 dpInt1: 804 dInt100: 1704 dInt150: 1904 anInt10: 460400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 1604 aFloat: 3200.3 pInt: 8004 pFloat: 3.16 anInt2: 4804 dInt1: 6404 dVar1: 7204 dpInt1: 804 dInt100: 1704 dInt150: 1904 anInt10: 460400 cEL: cvec[6] pvInt: [1130 1131 1132 ] pvFloat: [-0.454 -0.354 -0.254 ] dpvFloat: [0.460 0.461 0.462 ] -xAODTestReadCVe... INFO anInt1 1605 aFloat: 3200.4 pInt: 8005 pFloat: 4.16 anInt2: 4805 dInt1: 6405 dVar1: 7205 dpInt1: 805 dInt100: 1705 dInt150: 1905 anInt10: 460500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 1605 aFloat: 3200.4 pInt: 8005 pFloat: 4.16 anInt2: 4805 dInt1: 6405 dVar1: 7205 dpInt1: 805 dInt100: 1705 dInt150: 1905 anInt10: 460500 cEL: cvec[5] pvInt: [1140 1141 1142 1143 ] pvFloat: [-0.444 -0.344 -0.244 -0.144 ] dpvFloat: [0.560 0.561 0.562 0.563 ] -xAODTestReadCVe... INFO anInt1 1606 aFloat: 3200.5 pInt: 8006 pFloat: 5.16 anInt2: 4806 dInt1: 6406 dVar1: 7206 dpInt1: 806 dInt100: 1706 dInt150: 1906 anInt10: 460600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 1606 aFloat: 3200.5 pInt: 8006 pFloat: 5.16 anInt2: 4806 dInt1: 6406 dVar1: 7206 dpInt1: 806 dInt100: 1706 dInt150: 1906 anInt10: 460600 cEL: cvec[4] pvInt: [1150 1151 1152 1153 1154 ] pvFloat: [-0.434 -0.334 -0.234 -0.134 -0.034 ] dpvFloat: [0.660 0.661 0.662 0.663 0.664 ] -xAODTestReadCVe... INFO anInt1 1607 aFloat: 3200.6 pInt: 8007 pFloat: 6.16 anInt2: 4807 dInt1: 6407 dVar1: 7207 dpInt1: 807 dInt100: 1707 dInt150: 1907 anInt10: 460700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 1607 aFloat: 3200.6 pInt: 8007 pFloat: 6.16 anInt2: 4807 dInt1: 6407 dVar1: 7207 dpInt1: 807 dInt100: 1707 dInt150: 1907 anInt10: 460700 cEL: cvec[3] pvInt: [1160 1161 1162 1163 1164 1165 ] pvFloat: [-0.424 -0.324 -0.224 -0.124 -0.024 0.076 ] dpvFloat: [0.760 0.761 0.762 0.763 0.764 0.765 ] -xAODTestReadCVe... INFO anInt1 1608 aFloat: 3200.7 pInt: 8008 pFloat: 7.16 anInt2: 4808 dInt1: 6408 dVar1: 7208 dpInt1: 808 dInt100: 1708 dInt150: 1908 anInt10: 460800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 1608 aFloat: 3200.7 pInt: 8008 pFloat: 7.16 anInt2: 4808 dInt1: 6408 dVar1: 7208 dpInt1: 808 dInt100: 1708 dInt150: 1908 anInt10: 460800 cEL: cvec[2] pvInt: [1170 1171 1172 1173 1174 1175 1176 ] pvFloat: [-0.414 -0.314 -0.214 -0.114 -0.014 0.086 0.186 ] dpvFloat: [0.860 0.861 0.862 0.863 0.864 0.865 0.866 ] -xAODTestReadCVe... INFO anInt1 1609 aFloat: 3200.8 pInt: 8009 pFloat: 8.16 anInt2: 4809 dInt1: 6409 dVar1: 7209 dpInt1: 809 dInt100: 1709 dInt150: 1909 anInt10: 460900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 1609 aFloat: 3200.8 pInt: 8009 pFloat: 8.16 anInt2: 4809 dInt1: 6409 dVar1: 7209 dpInt1: 809 dInt100: 1709 dInt150: 1909 anInt10: 460900 cEL: cvec[1] pvInt: [1180 1181 1182 1183 1184 1185 1186 1187 ] pvFloat: [-0.404 -0.304 -0.204 -0.104 -0.004 0.096 0.196 0.296 ] dpvFloat: [0.960 0.961 0.962 0.963 0.964 0.965 0.966 0.967 ] -xAODTestReadCVe... INFO anInt1 1610 aFloat: 3200.9 pInt: 8010 pFloat: 9.16 anInt2: 4810 dInt1: 6410 dVar1: 7210 dpInt1: 810 dInt100: 1710 dInt150: 1910 anInt10: 461000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 1610 aFloat: 3200.9 pInt: 8010 pFloat: 9.16 anInt2: 4810 dInt1: 6410 dVar1: 7210 dpInt1: 810 dInt100: 1710 dInt150: 1910 anInt10: 461000 cEL: cvec[0] pvInt: [1190 1191 1192 1193 1194 1195 1196 1197 1198 ] pvFloat: [-0.394 -0.294 -0.194 -0.094 0.006 0.106 0.206 0.306 0.406 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 16000 aFloat: 1.6 anInt2: 32000 dInt1: 48000 cEL: cvec[6] dInt100: 16500 dInt150: 16700 anInt10: 3500000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 16000 aFloat: 1.6 anInt2: 32000 dInt1: 48000 cEL: cvec[6] dInt100: 16500 dInt150: 16700 anInt10: 3500000 xAODTestRead_scopy INFO 15 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 8001 aFloat: 9600 anInt2: 11201 dInt1: 7681 dInt100: 8701 dInt150: 8901 anInt10: 2700300 @@ -3283,7 +3282,7 @@ xAODTestRead_scopy INFO anInt1 8006 aFloat: 9600.5 anInt2: 11206 dInt1: 7686 xAODTestRead_scopy INFO anInt1 8007 aFloat: 9600.6 anInt2: 11207 dInt1: 7687 dInt100: 8707 dInt150: 8907 anInt10: 2702100 xAODTestRead_scopy INFO anInt1 8008 aFloat: 9600.7 anInt2: 11208 dInt1: 7688 dInt100: 8708 dInt150: 8908 anInt10: 2702400 xAODTestRead_scopy INFO scopy_cvecWD 1016: 3201(620100) 3202(620200) 3203(620300) 3204(620400) 3205(620500) 3206(620600) 3207(620700) 3208(620800) 3209(620900) 3210(621000) -xAODTestReadHVe... INFO scopy_hvec: 6401.5 6402.5 6403.5 6404.5 6405.5 6406.5 6407.5 6408.5 6409.5 6410.5 6411.5 6412.5 6413.5 6414.5 6415.5 6416.5 6417.5 6418.5 6419.5 6420.5 +xAODTe...Vec_scopy INFO scopy_hvec: 6401.5 6402.5 6403.5 6404.5 6405.5 6406.5 6407.5 6408.5 6409.5 6410.5 6411.5 6412.5 6413.5 6414.5 6415.5 6416.5 6417.5 6418.5 6419.5 6420.5 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #0 15 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #16, run #0 15 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -3366,60 +3365,60 @@ xAODTestRead INFO cvecWD 1017: 3401 3402 3403 3404 3405 3406 3407 3408 3 xAODTestReadCView INFO cview: 1710 1709 1708 1707 1706 1705 1704 1703 1702 1701 xAODTestReadHVec INFO hvec: 6801.5 6802.5 6803.5 6804.5 6805.5 6806.5 6807.5 6808.5 6809.5 6810.5 6811.5 6812.5 6813.5 6814.5 6815.5 6816.5 6817.5 6818.5 6819.5 6820.5 xAODTestReadHVec INFO hview: 6820.5 6819.5 6818.5 6817.5 6816.5 6815.5 6814.5 6813.5 6812.5 6811.5 6810.5 6809.5 6808.5 6807.5 6806.5 6805.5 6804.5 6803.5 6802.5 6801.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1701 aFloat: 3400 pInt: 8501 pFloat: 0.17 anInt2: 5101 dInt1: 6801 dVar1: 7651 dpInt1: 851 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1701 aFloat: 3400 pInt: 8501 pFloat: 0.17 anInt2: 5101 dInt1: 6801 dVar1: 7651 dpInt1: 851 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1702 aFloat: 3400.1 pInt: 8502 pFloat: 1.17 anInt2: 5102 dInt1: 6802 dVar1: 7652 dpInt1: 852 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1702 aFloat: 3400.1 pInt: 8502 pFloat: 1.17 anInt2: 5102 dInt1: 6802 dVar1: 7652 dpInt1: 852 cEL: cvec[8] pvInt: [1210 ] pvFloat: [-0.473 ] dpvFloat: [0.270 ] -xAODTestReadCVe... INFO anInt1 1703 aFloat: 3400.2 pInt: 8503 pFloat: 2.17 anInt2: 5103 dInt1: 6803 dVar1: 7653 dpInt1: 853 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1703 aFloat: 3400.2 pInt: 8503 pFloat: 2.17 anInt2: 5103 dInt1: 6803 dVar1: 7653 dpInt1: 853 cEL: cvec[7] pvInt: [1220 1221 ] pvFloat: [-0.463 -0.363 ] dpvFloat: [0.370 0.371 ] -xAODTestReadCVe... INFO anInt1 1704 aFloat: 3400.3 pInt: 8504 pFloat: 3.17 anInt2: 5104 dInt1: 6804 dVar1: 7654 dpInt1: 854 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1704 aFloat: 3400.3 pInt: 8504 pFloat: 3.17 anInt2: 5104 dInt1: 6804 dVar1: 7654 dpInt1: 854 cEL: cvec[6] pvInt: [1230 1231 1232 ] pvFloat: [-0.453 -0.353 -0.253 ] dpvFloat: [0.470 0.471 0.472 ] -xAODTestReadCVe... INFO anInt1 1705 aFloat: 3400.4 pInt: 8505 pFloat: 4.17 anInt2: 5105 dInt1: 6805 dVar1: 7655 dpInt1: 855 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1705 aFloat: 3400.4 pInt: 8505 pFloat: 4.17 anInt2: 5105 dInt1: 6805 dVar1: 7655 dpInt1: 855 cEL: cvec[5] pvInt: [1240 1241 1242 1243 ] pvFloat: [-0.443 -0.343 -0.243 -0.143 ] dpvFloat: [0.570 0.571 0.572 0.573 ] -xAODTestReadCVe... INFO anInt1 1706 aFloat: 3400.5 pInt: 8506 pFloat: 5.17 anInt2: 5106 dInt1: 6806 dVar1: 7656 dpInt1: 856 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1706 aFloat: 3400.5 pInt: 8506 pFloat: 5.17 anInt2: 5106 dInt1: 6806 dVar1: 7656 dpInt1: 856 cEL: cvec[4] pvInt: [1250 1251 1252 1253 1254 ] pvFloat: [-0.433 -0.333 -0.233 -0.133 -0.033 ] dpvFloat: [0.670 0.671 0.672 0.673 0.674 ] -xAODTestReadCVe... INFO anInt1 1707 aFloat: 3400.6 pInt: 8507 pFloat: 6.17 anInt2: 5107 dInt1: 6807 dVar1: 7657 dpInt1: 857 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1707 aFloat: 3400.6 pInt: 8507 pFloat: 6.17 anInt2: 5107 dInt1: 6807 dVar1: 7657 dpInt1: 857 cEL: cvec[3] pvInt: [1260 1261 1262 1263 1264 1265 ] pvFloat: [-0.423 -0.323 -0.223 -0.123 -0.023 0.077 ] dpvFloat: [0.770 0.771 0.772 0.773 0.774 0.775 ] -xAODTestReadCVe... INFO anInt1 1708 aFloat: 3400.7 pInt: 8508 pFloat: 7.17 anInt2: 5108 dInt1: 6808 dVar1: 7658 dpInt1: 858 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1708 aFloat: 3400.7 pInt: 8508 pFloat: 7.17 anInt2: 5108 dInt1: 6808 dVar1: 7658 dpInt1: 858 cEL: cvec[2] pvInt: [1270 1271 1272 1273 1274 1275 1276 ] pvFloat: [-0.413 -0.313 -0.213 -0.113 -0.013 0.087 0.187 ] dpvFloat: [0.870 0.871 0.872 0.873 0.874 0.875 0.876 ] -xAODTestReadCVe... INFO anInt1 1709 aFloat: 3400.8 pInt: 8509 pFloat: 8.17 anInt2: 5109 dInt1: 6809 dVar1: 7659 dpInt1: 859 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1709 aFloat: 3400.8 pInt: 8509 pFloat: 8.17 anInt2: 5109 dInt1: 6809 dVar1: 7659 dpInt1: 859 cEL: cvec[1] pvInt: [1280 1281 1282 1283 1284 1285 1286 1287 ] pvFloat: [-0.403 -0.303 -0.203 -0.103 -0.003 0.097 0.197 0.297 ] dpvFloat: [0.970 0.971 0.972 0.973 0.974 0.975 0.976 0.977 ] -xAODTestReadCVe... INFO anInt1 1710 aFloat: 3400.9 pInt: 8510 pFloat: 9.17 anInt2: 5110 dInt1: 6810 dVar1: 7660 dpInt1: 860 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1710 aFloat: 3400.9 pInt: 8510 pFloat: 9.17 anInt2: 5110 dInt1: 6810 dVar1: 7660 dpInt1: 860 cEL: cvec[0] pvInt: [1290 1291 1292 1293 1294 1295 1296 1297 1298 ] pvFloat: [-0.393 -0.293 -0.193 -0.093 0.007 0.107 0.207 0.307 0.407 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 17000 aFloat: 1.7 anInt2: 34000 dInt1: 51000 cEL: cvec[7] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 17000 aFloat: 1.7 anInt2: 34000 dInt1: 51000 cEL: cvec[7] xAODTestRead_copy INFO 16 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 8501 aFloat: 10200 anInt2: 11901 dInt1: 8161 @@ -3443,63 +3442,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 11910 gFloat 12009.5 gvFloat 11909.5 12009.5 12109.5 12209.5 12309.5 12409.5 12509.5 12609.5 12709.5 xAODTestRead_copy INFO copy_cvecWD 0: 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 -xAODTestReadCVi... INFO copy_cview: 1710 1709 1708 1707 1706 1705 1704 1703 1702 1701 -xAODTestReadHVe... INFO copy_hvec: 6820.5 6819.5 6818.5 6817.5 6816.5 6815.5 6814.5 6813.5 6812.5 6811.5 6810.5 6809.5 6808.5 6807.5 6806.5 6805.5 6804.5 6803.5 6802.5 6801.5 -xAODTestReadHVe... INFO copy_hview: 6801.5 6802.5 6803.5 6804.5 6805.5 6806.5 6807.5 6808.5 6809.5 6810.5 6811.5 6812.5 6813.5 6814.5 6815.5 6816.5 6817.5 6818.5 6819.5 6820.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 1701 aFloat: 3400 pInt: 8501 pFloat: 0.17 anInt2: 5101 dInt1: 6801 dVar1: 7651 dpInt1: 851 dInt100: 1801 dInt150: 2001 anInt10: 490100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 1710 1709 1708 1707 1706 1705 1704 1703 1702 1701 +xAODTe...HVec_copy INFO copy_hvec: 6820.5 6819.5 6818.5 6817.5 6816.5 6815.5 6814.5 6813.5 6812.5 6811.5 6810.5 6809.5 6808.5 6807.5 6806.5 6805.5 6804.5 6803.5 6802.5 6801.5 +xAODTe...HVec_copy INFO copy_hview: 6801.5 6802.5 6803.5 6804.5 6805.5 6806.5 6807.5 6808.5 6809.5 6810.5 6811.5 6812.5 6813.5 6814.5 6815.5 6816.5 6817.5 6818.5 6819.5 6820.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 1701 aFloat: 3400 pInt: 8501 pFloat: 0.17 anInt2: 5101 dInt1: 6801 dVar1: 7651 dpInt1: 851 dInt100: 1801 dInt150: 2001 anInt10: 490100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1702 aFloat: 3400.1 pInt: 8502 pFloat: 1.17 anInt2: 5102 dInt1: 6802 dVar1: 7652 dpInt1: 852 dInt100: 1802 dInt150: 2002 anInt10: 490200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 1702 aFloat: 3400.1 pInt: 8502 pFloat: 1.17 anInt2: 5102 dInt1: 6802 dVar1: 7652 dpInt1: 852 dInt100: 1802 dInt150: 2002 anInt10: 490200 cEL: cvec[8] pvInt: [1210 ] pvFloat: [-0.473 ] dpvFloat: [0.270 ] -xAODTestReadCVe... INFO anInt1 1703 aFloat: 3400.2 pInt: 8503 pFloat: 2.17 anInt2: 5103 dInt1: 6803 dVar1: 7653 dpInt1: 853 dInt100: 1803 dInt150: 2003 anInt10: 490300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 1703 aFloat: 3400.2 pInt: 8503 pFloat: 2.17 anInt2: 5103 dInt1: 6803 dVar1: 7653 dpInt1: 853 dInt100: 1803 dInt150: 2003 anInt10: 490300 cEL: cvec[7] pvInt: [1220 1221 ] pvFloat: [-0.463 -0.363 ] dpvFloat: [0.370 0.371 ] -xAODTestReadCVe... INFO anInt1 1704 aFloat: 3400.3 pInt: 8504 pFloat: 3.17 anInt2: 5104 dInt1: 6804 dVar1: 7654 dpInt1: 854 dInt100: 1804 dInt150: 2004 anInt10: 490400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 1704 aFloat: 3400.3 pInt: 8504 pFloat: 3.17 anInt2: 5104 dInt1: 6804 dVar1: 7654 dpInt1: 854 dInt100: 1804 dInt150: 2004 anInt10: 490400 cEL: cvec[6] pvInt: [1230 1231 1232 ] pvFloat: [-0.453 -0.353 -0.253 ] dpvFloat: [0.470 0.471 0.472 ] -xAODTestReadCVe... INFO anInt1 1705 aFloat: 3400.4 pInt: 8505 pFloat: 4.17 anInt2: 5105 dInt1: 6805 dVar1: 7655 dpInt1: 855 dInt100: 1805 dInt150: 2005 anInt10: 490500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 1705 aFloat: 3400.4 pInt: 8505 pFloat: 4.17 anInt2: 5105 dInt1: 6805 dVar1: 7655 dpInt1: 855 dInt100: 1805 dInt150: 2005 anInt10: 490500 cEL: cvec[5] pvInt: [1240 1241 1242 1243 ] pvFloat: [-0.443 -0.343 -0.243 -0.143 ] dpvFloat: [0.570 0.571 0.572 0.573 ] -xAODTestReadCVe... INFO anInt1 1706 aFloat: 3400.5 pInt: 8506 pFloat: 5.17 anInt2: 5106 dInt1: 6806 dVar1: 7656 dpInt1: 856 dInt100: 1806 dInt150: 2006 anInt10: 490600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 1706 aFloat: 3400.5 pInt: 8506 pFloat: 5.17 anInt2: 5106 dInt1: 6806 dVar1: 7656 dpInt1: 856 dInt100: 1806 dInt150: 2006 anInt10: 490600 cEL: cvec[4] pvInt: [1250 1251 1252 1253 1254 ] pvFloat: [-0.433 -0.333 -0.233 -0.133 -0.033 ] dpvFloat: [0.670 0.671 0.672 0.673 0.674 ] -xAODTestReadCVe... INFO anInt1 1707 aFloat: 3400.6 pInt: 8507 pFloat: 6.17 anInt2: 5107 dInt1: 6807 dVar1: 7657 dpInt1: 857 dInt100: 1807 dInt150: 2007 anInt10: 490700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 1707 aFloat: 3400.6 pInt: 8507 pFloat: 6.17 anInt2: 5107 dInt1: 6807 dVar1: 7657 dpInt1: 857 dInt100: 1807 dInt150: 2007 anInt10: 490700 cEL: cvec[3] pvInt: [1260 1261 1262 1263 1264 1265 ] pvFloat: [-0.423 -0.323 -0.223 -0.123 -0.023 0.077 ] dpvFloat: [0.770 0.771 0.772 0.773 0.774 0.775 ] -xAODTestReadCVe... INFO anInt1 1708 aFloat: 3400.7 pInt: 8508 pFloat: 7.17 anInt2: 5108 dInt1: 6808 dVar1: 7658 dpInt1: 858 dInt100: 1808 dInt150: 2008 anInt10: 490800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 1708 aFloat: 3400.7 pInt: 8508 pFloat: 7.17 anInt2: 5108 dInt1: 6808 dVar1: 7658 dpInt1: 858 dInt100: 1808 dInt150: 2008 anInt10: 490800 cEL: cvec[2] pvInt: [1270 1271 1272 1273 1274 1275 1276 ] pvFloat: [-0.413 -0.313 -0.213 -0.113 -0.013 0.087 0.187 ] dpvFloat: [0.870 0.871 0.872 0.873 0.874 0.875 0.876 ] -xAODTestReadCVe... INFO anInt1 1709 aFloat: 3400.8 pInt: 8509 pFloat: 8.17 anInt2: 5109 dInt1: 6809 dVar1: 7659 dpInt1: 859 dInt100: 1809 dInt150: 2009 anInt10: 490900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 1709 aFloat: 3400.8 pInt: 8509 pFloat: 8.17 anInt2: 5109 dInt1: 6809 dVar1: 7659 dpInt1: 859 dInt100: 1809 dInt150: 2009 anInt10: 490900 cEL: cvec[1] pvInt: [1280 1281 1282 1283 1284 1285 1286 1287 ] pvFloat: [-0.403 -0.303 -0.203 -0.103 -0.003 0.097 0.197 0.297 ] dpvFloat: [0.970 0.971 0.972 0.973 0.974 0.975 0.976 0.977 ] -xAODTestReadCVe... INFO anInt1 1710 aFloat: 3400.9 pInt: 8510 pFloat: 9.17 anInt2: 5110 dInt1: 6810 dVar1: 7660 dpInt1: 860 dInt100: 1810 dInt150: 2010 anInt10: 491000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 1710 aFloat: 3400.9 pInt: 8510 pFloat: 9.17 anInt2: 5110 dInt1: 6810 dVar1: 7660 dpInt1: 860 dInt100: 1810 dInt150: 2010 anInt10: 491000 cEL: cvec[0] pvInt: [1290 1291 1292 1293 1294 1295 1296 1297 1298 ] pvFloat: [-0.393 -0.293 -0.193 -0.093 0.007 0.107 0.207 0.307 0.407 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 17000 aFloat: 1.7 anInt2: 34000 dInt1: 51000 cEL: cvec[7] dInt100: 17500 dInt150: 17700 anInt10: 3720000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 17000 aFloat: 1.7 anInt2: 34000 dInt1: 51000 cEL: cvec[7] dInt100: 17500 dInt150: 17700 anInt10: 3720000 xAODTestRead_scopy INFO 16 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 8501 aFloat: 10200 anInt2: 11901 dInt1: 8161 dInt100: 9201 dInt150: 9401 anInt10: 2870300 @@ -3511,7 +3510,7 @@ xAODTestRead_scopy INFO anInt1 8506 aFloat: 10200.5 anInt2: 11906 dInt1: 8166 xAODTestRead_scopy INFO anInt1 8507 aFloat: 10200.6 anInt2: 11907 dInt1: 8167 dInt100: 9207 dInt150: 9407 anInt10: 2872100 xAODTestRead_scopy INFO anInt1 8508 aFloat: 10200.7 anInt2: 11908 dInt1: 8168 dInt100: 9208 dInt150: 9408 anInt10: 2872400 xAODTestRead_scopy INFO scopy_cvecWD 1017: 3401(660100) 3402(660200) 3403(660300) 3404(660400) 3405(660500) 3406(660600) 3407(660700) 3408(660800) 3409(660900) 3410(661000) -xAODTestReadHVe... INFO scopy_hvec: 6801.5 6802.5 6803.5 6804.5 6805.5 6806.5 6807.5 6808.5 6809.5 6810.5 6811.5 6812.5 6813.5 6814.5 6815.5 6816.5 6817.5 6818.5 6819.5 6820.5 +xAODTe...Vec_scopy INFO scopy_hvec: 6801.5 6802.5 6803.5 6804.5 6805.5 6806.5 6807.5 6808.5 6809.5 6810.5 6811.5 6812.5 6813.5 6814.5 6815.5 6816.5 6817.5 6818.5 6819.5 6820.5 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #0 16 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #17, run #0 16 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -3594,60 +3593,60 @@ xAODTestRead INFO cvecWD 1018: 3601 3602 3603 3604 3605 3606 3607 3608 3 xAODTestReadCView INFO cview: 1810 1809 1808 1807 1806 1805 1804 1803 1802 1801 xAODTestReadHVec INFO hvec: 7201.5 7202.5 7203.5 7204.5 7205.5 7206.5 7207.5 7208.5 7209.5 7210.5 7211.5 7212.5 7213.5 7214.5 7215.5 7216.5 7217.5 7218.5 7219.5 7220.5 xAODTestReadHVec INFO hview: 7220.5 7219.5 7218.5 7217.5 7216.5 7215.5 7214.5 7213.5 7212.5 7211.5 7210.5 7209.5 7208.5 7207.5 7206.5 7205.5 7204.5 7203.5 7202.5 7201.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1801 aFloat: 3600 pInt: 9001 pFloat: 0.18 anInt2: 5401 dInt1: 7201 dVar1: 8101 dpInt1: 901 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1801 aFloat: 3600 pInt: 9001 pFloat: 0.18 anInt2: 5401 dInt1: 7201 dVar1: 8101 dpInt1: 901 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1802 aFloat: 3600.1 pInt: 9002 pFloat: 1.18 anInt2: 5402 dInt1: 7202 dVar1: 8102 dpInt1: 902 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1802 aFloat: 3600.1 pInt: 9002 pFloat: 1.18 anInt2: 5402 dInt1: 7202 dVar1: 8102 dpInt1: 902 cEL: cvec[8] pvInt: [1310 ] pvFloat: [-0.472 ] dpvFloat: [0.280 ] -xAODTestReadCVe... INFO anInt1 1803 aFloat: 3600.2 pInt: 9003 pFloat: 2.18 anInt2: 5403 dInt1: 7203 dVar1: 8103 dpInt1: 903 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1803 aFloat: 3600.2 pInt: 9003 pFloat: 2.18 anInt2: 5403 dInt1: 7203 dVar1: 8103 dpInt1: 903 cEL: cvec[7] pvInt: [1320 1321 ] pvFloat: [-0.462 -0.362 ] dpvFloat: [0.380 0.381 ] -xAODTestReadCVe... INFO anInt1 1804 aFloat: 3600.3 pInt: 9004 pFloat: 3.18 anInt2: 5404 dInt1: 7204 dVar1: 8104 dpInt1: 904 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1804 aFloat: 3600.3 pInt: 9004 pFloat: 3.18 anInt2: 5404 dInt1: 7204 dVar1: 8104 dpInt1: 904 cEL: cvec[6] pvInt: [1330 1331 1332 ] pvFloat: [-0.452 -0.352 -0.252 ] dpvFloat: [0.480 0.481 0.482 ] -xAODTestReadCVe... INFO anInt1 1805 aFloat: 3600.4 pInt: 9005 pFloat: 4.18 anInt2: 5405 dInt1: 7205 dVar1: 8105 dpInt1: 905 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1805 aFloat: 3600.4 pInt: 9005 pFloat: 4.18 anInt2: 5405 dInt1: 7205 dVar1: 8105 dpInt1: 905 cEL: cvec[5] pvInt: [1340 1341 1342 1343 ] pvFloat: [-0.442 -0.342 -0.242 -0.142 ] dpvFloat: [0.580 0.581 0.582 0.583 ] -xAODTestReadCVe... INFO anInt1 1806 aFloat: 3600.5 pInt: 9006 pFloat: 5.18 anInt2: 5406 dInt1: 7206 dVar1: 8106 dpInt1: 906 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1806 aFloat: 3600.5 pInt: 9006 pFloat: 5.18 anInt2: 5406 dInt1: 7206 dVar1: 8106 dpInt1: 906 cEL: cvec[4] pvInt: [1350 1351 1352 1353 1354 ] pvFloat: [-0.432 -0.332 -0.232 -0.132 -0.032 ] dpvFloat: [0.680 0.681 0.682 0.683 0.684 ] -xAODTestReadCVe... INFO anInt1 1807 aFloat: 3600.6 pInt: 9007 pFloat: 6.18 anInt2: 5407 dInt1: 7207 dVar1: 8107 dpInt1: 907 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1807 aFloat: 3600.6 pInt: 9007 pFloat: 6.18 anInt2: 5407 dInt1: 7207 dVar1: 8107 dpInt1: 907 cEL: cvec[3] pvInt: [1360 1361 1362 1363 1364 1365 ] pvFloat: [-0.422 -0.322 -0.222 -0.122 -0.022 0.078 ] dpvFloat: [0.780 0.781 0.782 0.783 0.784 0.785 ] -xAODTestReadCVe... INFO anInt1 1808 aFloat: 3600.7 pInt: 9008 pFloat: 7.18 anInt2: 5408 dInt1: 7208 dVar1: 8108 dpInt1: 908 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1808 aFloat: 3600.7 pInt: 9008 pFloat: 7.18 anInt2: 5408 dInt1: 7208 dVar1: 8108 dpInt1: 908 cEL: cvec[2] pvInt: [1370 1371 1372 1373 1374 1375 1376 ] pvFloat: [-0.412 -0.312 -0.212 -0.112 -0.012 0.088 0.188 ] dpvFloat: [0.880 0.881 0.882 0.883 0.884 0.885 0.886 ] -xAODTestReadCVe... INFO anInt1 1809 aFloat: 3600.8 pInt: 9009 pFloat: 8.18 anInt2: 5409 dInt1: 7209 dVar1: 8109 dpInt1: 909 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1809 aFloat: 3600.8 pInt: 9009 pFloat: 8.18 anInt2: 5409 dInt1: 7209 dVar1: 8109 dpInt1: 909 cEL: cvec[1] pvInt: [1380 1381 1382 1383 1384 1385 1386 1387 ] pvFloat: [-0.402 -0.302 -0.202 -0.102 -0.002 0.098 0.198 0.298 ] dpvFloat: [0.980 0.981 0.982 0.983 0.984 0.985 0.986 0.987 ] -xAODTestReadCVe... INFO anInt1 1810 aFloat: 3600.9 pInt: 9010 pFloat: 9.18 anInt2: 5410 dInt1: 7210 dVar1: 8110 dpInt1: 910 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1810 aFloat: 3600.9 pInt: 9010 pFloat: 9.18 anInt2: 5410 dInt1: 7210 dVar1: 8110 dpInt1: 910 cEL: cvec[0] pvInt: [1390 1391 1392 1393 1394 1395 1396 1397 1398 ] pvFloat: [-0.392 -0.292 -0.192 -0.092 0.008 0.108 0.208 0.308 0.408 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 18000 aFloat: 1.8 anInt2: 36000 dInt1: 54000 cEL: cvec[8] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 18000 aFloat: 1.8 anInt2: 36000 dInt1: 54000 cEL: cvec[8] xAODTestRead_copy INFO 17 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 9001 aFloat: 10800 anInt2: 12601 dInt1: 8641 @@ -3671,63 +3670,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 12610 gFloat 12709.5 gvFloat 12609.5 12709.5 12809.5 12909.5 13009.5 13109.5 13209.5 13309.5 13409.5 xAODTestRead_copy INFO copy_cvecWD 0: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 -xAODTestReadCVi... INFO copy_cview: 1810 1809 1808 1807 1806 1805 1804 1803 1802 1801 -xAODTestReadHVe... INFO copy_hvec: 7220.5 7219.5 7218.5 7217.5 7216.5 7215.5 7214.5 7213.5 7212.5 7211.5 7210.5 7209.5 7208.5 7207.5 7206.5 7205.5 7204.5 7203.5 7202.5 7201.5 -xAODTestReadHVe... INFO copy_hview: 7201.5 7202.5 7203.5 7204.5 7205.5 7206.5 7207.5 7208.5 7209.5 7210.5 7211.5 7212.5 7213.5 7214.5 7215.5 7216.5 7217.5 7218.5 7219.5 7220.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 1801 aFloat: 3600 pInt: 9001 pFloat: 0.18 anInt2: 5401 dInt1: 7201 dVar1: 8101 dpInt1: 901 dInt100: 1901 dInt150: 2101 anInt10: 520100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 1810 1809 1808 1807 1806 1805 1804 1803 1802 1801 +xAODTe...HVec_copy INFO copy_hvec: 7220.5 7219.5 7218.5 7217.5 7216.5 7215.5 7214.5 7213.5 7212.5 7211.5 7210.5 7209.5 7208.5 7207.5 7206.5 7205.5 7204.5 7203.5 7202.5 7201.5 +xAODTe...HVec_copy INFO copy_hview: 7201.5 7202.5 7203.5 7204.5 7205.5 7206.5 7207.5 7208.5 7209.5 7210.5 7211.5 7212.5 7213.5 7214.5 7215.5 7216.5 7217.5 7218.5 7219.5 7220.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 1801 aFloat: 3600 pInt: 9001 pFloat: 0.18 anInt2: 5401 dInt1: 7201 dVar1: 8101 dpInt1: 901 dInt100: 1901 dInt150: 2101 anInt10: 520100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1802 aFloat: 3600.1 pInt: 9002 pFloat: 1.18 anInt2: 5402 dInt1: 7202 dVar1: 8102 dpInt1: 902 dInt100: 1902 dInt150: 2102 anInt10: 520200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 1802 aFloat: 3600.1 pInt: 9002 pFloat: 1.18 anInt2: 5402 dInt1: 7202 dVar1: 8102 dpInt1: 902 dInt100: 1902 dInt150: 2102 anInt10: 520200 cEL: cvec[8] pvInt: [1310 ] pvFloat: [-0.472 ] dpvFloat: [0.280 ] -xAODTestReadCVe... INFO anInt1 1803 aFloat: 3600.2 pInt: 9003 pFloat: 2.18 anInt2: 5403 dInt1: 7203 dVar1: 8103 dpInt1: 903 dInt100: 1903 dInt150: 2103 anInt10: 520300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 1803 aFloat: 3600.2 pInt: 9003 pFloat: 2.18 anInt2: 5403 dInt1: 7203 dVar1: 8103 dpInt1: 903 dInt100: 1903 dInt150: 2103 anInt10: 520300 cEL: cvec[7] pvInt: [1320 1321 ] pvFloat: [-0.462 -0.362 ] dpvFloat: [0.380 0.381 ] -xAODTestReadCVe... INFO anInt1 1804 aFloat: 3600.3 pInt: 9004 pFloat: 3.18 anInt2: 5404 dInt1: 7204 dVar1: 8104 dpInt1: 904 dInt100: 1904 dInt150: 2104 anInt10: 520400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 1804 aFloat: 3600.3 pInt: 9004 pFloat: 3.18 anInt2: 5404 dInt1: 7204 dVar1: 8104 dpInt1: 904 dInt100: 1904 dInt150: 2104 anInt10: 520400 cEL: cvec[6] pvInt: [1330 1331 1332 ] pvFloat: [-0.452 -0.352 -0.252 ] dpvFloat: [0.480 0.481 0.482 ] -xAODTestReadCVe... INFO anInt1 1805 aFloat: 3600.4 pInt: 9005 pFloat: 4.18 anInt2: 5405 dInt1: 7205 dVar1: 8105 dpInt1: 905 dInt100: 1905 dInt150: 2105 anInt10: 520500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 1805 aFloat: 3600.4 pInt: 9005 pFloat: 4.18 anInt2: 5405 dInt1: 7205 dVar1: 8105 dpInt1: 905 dInt100: 1905 dInt150: 2105 anInt10: 520500 cEL: cvec[5] pvInt: [1340 1341 1342 1343 ] pvFloat: [-0.442 -0.342 -0.242 -0.142 ] dpvFloat: [0.580 0.581 0.582 0.583 ] -xAODTestReadCVe... INFO anInt1 1806 aFloat: 3600.5 pInt: 9006 pFloat: 5.18 anInt2: 5406 dInt1: 7206 dVar1: 8106 dpInt1: 906 dInt100: 1906 dInt150: 2106 anInt10: 520600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 1806 aFloat: 3600.5 pInt: 9006 pFloat: 5.18 anInt2: 5406 dInt1: 7206 dVar1: 8106 dpInt1: 906 dInt100: 1906 dInt150: 2106 anInt10: 520600 cEL: cvec[4] pvInt: [1350 1351 1352 1353 1354 ] pvFloat: [-0.432 -0.332 -0.232 -0.132 -0.032 ] dpvFloat: [0.680 0.681 0.682 0.683 0.684 ] -xAODTestReadCVe... INFO anInt1 1807 aFloat: 3600.6 pInt: 9007 pFloat: 6.18 anInt2: 5407 dInt1: 7207 dVar1: 8107 dpInt1: 907 dInt100: 1907 dInt150: 2107 anInt10: 520700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 1807 aFloat: 3600.6 pInt: 9007 pFloat: 6.18 anInt2: 5407 dInt1: 7207 dVar1: 8107 dpInt1: 907 dInt100: 1907 dInt150: 2107 anInt10: 520700 cEL: cvec[3] pvInt: [1360 1361 1362 1363 1364 1365 ] pvFloat: [-0.422 -0.322 -0.222 -0.122 -0.022 0.078 ] dpvFloat: [0.780 0.781 0.782 0.783 0.784 0.785 ] -xAODTestReadCVe... INFO anInt1 1808 aFloat: 3600.7 pInt: 9008 pFloat: 7.18 anInt2: 5408 dInt1: 7208 dVar1: 8108 dpInt1: 908 dInt100: 1908 dInt150: 2108 anInt10: 520800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 1808 aFloat: 3600.7 pInt: 9008 pFloat: 7.18 anInt2: 5408 dInt1: 7208 dVar1: 8108 dpInt1: 908 dInt100: 1908 dInt150: 2108 anInt10: 520800 cEL: cvec[2] pvInt: [1370 1371 1372 1373 1374 1375 1376 ] pvFloat: [-0.412 -0.312 -0.212 -0.112 -0.012 0.088 0.188 ] dpvFloat: [0.880 0.881 0.882 0.883 0.884 0.885 0.886 ] -xAODTestReadCVe... INFO anInt1 1809 aFloat: 3600.8 pInt: 9009 pFloat: 8.18 anInt2: 5409 dInt1: 7209 dVar1: 8109 dpInt1: 909 dInt100: 1909 dInt150: 2109 anInt10: 520900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 1809 aFloat: 3600.8 pInt: 9009 pFloat: 8.18 anInt2: 5409 dInt1: 7209 dVar1: 8109 dpInt1: 909 dInt100: 1909 dInt150: 2109 anInt10: 520900 cEL: cvec[1] pvInt: [1380 1381 1382 1383 1384 1385 1386 1387 ] pvFloat: [-0.402 -0.302 -0.202 -0.102 -0.002 0.098 0.198 0.298 ] dpvFloat: [0.980 0.981 0.982 0.983 0.984 0.985 0.986 0.987 ] -xAODTestReadCVe... INFO anInt1 1810 aFloat: 3600.9 pInt: 9010 pFloat: 9.18 anInt2: 5410 dInt1: 7210 dVar1: 8110 dpInt1: 910 dInt100: 1910 dInt150: 2110 anInt10: 521000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 1810 aFloat: 3600.9 pInt: 9010 pFloat: 9.18 anInt2: 5410 dInt1: 7210 dVar1: 8110 dpInt1: 910 dInt100: 1910 dInt150: 2110 anInt10: 521000 cEL: cvec[0] pvInt: [1390 1391 1392 1393 1394 1395 1396 1397 1398 ] pvFloat: [-0.392 -0.292 -0.192 -0.092 0.008 0.108 0.208 0.308 0.408 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 18000 aFloat: 1.8 anInt2: 36000 dInt1: 54000 cEL: cvec[8] dInt100: 18500 dInt150: 18700 anInt10: 3940000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 18000 aFloat: 1.8 anInt2: 36000 dInt1: 54000 cEL: cvec[8] dInt100: 18500 dInt150: 18700 anInt10: 3940000 xAODTestRead_scopy INFO 17 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 9001 aFloat: 10800 anInt2: 12601 dInt1: 8641 dInt100: 9701 dInt150: 9901 anInt10: 3040300 @@ -3739,7 +3738,7 @@ xAODTestRead_scopy INFO anInt1 9006 aFloat: 10800.5 anInt2: 12606 dInt1: 8646 xAODTestRead_scopy INFO anInt1 9007 aFloat: 10800.6 anInt2: 12607 dInt1: 8647 dInt100: 9707 dInt150: 9907 anInt10: 3042100 xAODTestRead_scopy INFO anInt1 9008 aFloat: 10800.7 anInt2: 12608 dInt1: 8648 dInt100: 9708 dInt150: 9908 anInt10: 3042400 xAODTestRead_scopy INFO scopy_cvecWD 1018: 3601(700100) 3602(700200) 3603(700300) 3604(700400) 3605(700500) 3606(700600) 3607(700700) 3608(700800) 3609(700900) 3610(701000) -xAODTestReadHVe... INFO scopy_hvec: 7201.5 7202.5 7203.5 7204.5 7205.5 7206.5 7207.5 7208.5 7209.5 7210.5 7211.5 7212.5 7213.5 7214.5 7215.5 7216.5 7217.5 7218.5 7219.5 7220.5 +xAODTe...Vec_scopy INFO scopy_hvec: 7201.5 7202.5 7203.5 7204.5 7205.5 7206.5 7207.5 7208.5 7209.5 7210.5 7211.5 7212.5 7213.5 7214.5 7215.5 7216.5 7217.5 7218.5 7219.5 7220.5 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #0 17 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #18, run #0 17 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -3822,60 +3821,60 @@ xAODTestRead INFO cvecWD 1019: 3801 3802 3803 3804 3805 3806 3807 3808 3 xAODTestReadCView INFO cview: 1910 1909 1908 1907 1906 1905 1904 1903 1902 1901 xAODTestReadHVec INFO hvec: 7601.5 7602.5 7603.5 7604.5 7605.5 7606.5 7607.5 7608.5 7609.5 7610.5 7611.5 7612.5 7613.5 7614.5 7615.5 7616.5 7617.5 7618.5 7619.5 7620.5 xAODTestReadHVec INFO hview: 7620.5 7619.5 7618.5 7617.5 7616.5 7615.5 7614.5 7613.5 7612.5 7611.5 7610.5 7609.5 7608.5 7607.5 7606.5 7605.5 7604.5 7603.5 7602.5 7601.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1901 aFloat: 3800 pInt: 9501 pFloat: 0.19 anInt2: 5701 dInt1: 7601 dVar1: 8551 dpInt1: 951 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1901 aFloat: 3800 pInt: 9501 pFloat: 0.19 anInt2: 5701 dInt1: 7601 dVar1: 8551 dpInt1: 951 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1902 aFloat: 3800.1 pInt: 9502 pFloat: 1.19 anInt2: 5702 dInt1: 7602 dVar1: 8552 dpInt1: 952 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1902 aFloat: 3800.1 pInt: 9502 pFloat: 1.19 anInt2: 5702 dInt1: 7602 dVar1: 8552 dpInt1: 952 cEL: cvec[8] pvInt: [1410 ] pvFloat: [-0.471 ] dpvFloat: [0.290 ] -xAODTestReadCVe... INFO anInt1 1903 aFloat: 3800.2 pInt: 9503 pFloat: 2.19 anInt2: 5703 dInt1: 7603 dVar1: 8553 dpInt1: 953 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1903 aFloat: 3800.2 pInt: 9503 pFloat: 2.19 anInt2: 5703 dInt1: 7603 dVar1: 8553 dpInt1: 953 cEL: cvec[7] pvInt: [1420 1421 ] pvFloat: [-0.461 -0.361 ] dpvFloat: [0.390 0.391 ] -xAODTestReadCVe... INFO anInt1 1904 aFloat: 3800.3 pInt: 9504 pFloat: 3.19 anInt2: 5704 dInt1: 7604 dVar1: 8554 dpInt1: 954 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1904 aFloat: 3800.3 pInt: 9504 pFloat: 3.19 anInt2: 5704 dInt1: 7604 dVar1: 8554 dpInt1: 954 cEL: cvec[6] pvInt: [1430 1431 1432 ] pvFloat: [-0.451 -0.351 -0.251 ] dpvFloat: [0.490 0.491 0.492 ] -xAODTestReadCVe... INFO anInt1 1905 aFloat: 3800.4 pInt: 9505 pFloat: 4.19 anInt2: 5705 dInt1: 7605 dVar1: 8555 dpInt1: 955 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1905 aFloat: 3800.4 pInt: 9505 pFloat: 4.19 anInt2: 5705 dInt1: 7605 dVar1: 8555 dpInt1: 955 cEL: cvec[5] pvInt: [1440 1441 1442 1443 ] pvFloat: [-0.441 -0.341 -0.241 -0.141 ] dpvFloat: [0.590 0.591 0.592 0.593 ] -xAODTestReadCVe... INFO anInt1 1906 aFloat: 3800.5 pInt: 9506 pFloat: 5.19 anInt2: 5706 dInt1: 7606 dVar1: 8556 dpInt1: 956 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1906 aFloat: 3800.5 pInt: 9506 pFloat: 5.19 anInt2: 5706 dInt1: 7606 dVar1: 8556 dpInt1: 956 cEL: cvec[4] pvInt: [1450 1451 1452 1453 1454 ] pvFloat: [-0.431 -0.331 -0.231 -0.131 -0.031 ] dpvFloat: [0.690 0.691 0.692 0.693 0.694 ] -xAODTestReadCVe... INFO anInt1 1907 aFloat: 3800.6 pInt: 9507 pFloat: 6.19 anInt2: 5707 dInt1: 7607 dVar1: 8557 dpInt1: 957 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1907 aFloat: 3800.6 pInt: 9507 pFloat: 6.19 anInt2: 5707 dInt1: 7607 dVar1: 8557 dpInt1: 957 cEL: cvec[3] pvInt: [1460 1461 1462 1463 1464 1465 ] pvFloat: [-0.421 -0.321 -0.221 -0.121 -0.021 0.079 ] dpvFloat: [0.790 0.791 0.792 0.793 0.794 0.795 ] -xAODTestReadCVe... INFO anInt1 1908 aFloat: 3800.7 pInt: 9508 pFloat: 7.19 anInt2: 5708 dInt1: 7608 dVar1: 8558 dpInt1: 958 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1908 aFloat: 3800.7 pInt: 9508 pFloat: 7.19 anInt2: 5708 dInt1: 7608 dVar1: 8558 dpInt1: 958 cEL: cvec[2] pvInt: [1470 1471 1472 1473 1474 1475 1476 ] pvFloat: [-0.411 -0.311 -0.211 -0.111 -0.011 0.089 0.189 ] dpvFloat: [0.890 0.891 0.892 0.893 0.894 0.895 0.896 ] -xAODTestReadCVe... INFO anInt1 1909 aFloat: 3800.8 pInt: 9509 pFloat: 8.19 anInt2: 5709 dInt1: 7609 dVar1: 8559 dpInt1: 959 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1909 aFloat: 3800.8 pInt: 9509 pFloat: 8.19 anInt2: 5709 dInt1: 7609 dVar1: 8559 dpInt1: 959 cEL: cvec[1] pvInt: [1480 1481 1482 1483 1484 1485 1486 1487 ] pvFloat: [-0.401 -0.301 -0.201 -0.101 -0.001 0.099 0.199 0.299 ] dpvFloat: [0.990 0.991 0.992 0.993 0.994 0.995 0.996 0.997 ] -xAODTestReadCVe... INFO anInt1 1910 aFloat: 3800.9 pInt: 9510 pFloat: 9.19 anInt2: 5710 dInt1: 7610 dVar1: 8560 dpInt1: 960 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1910 aFloat: 3800.9 pInt: 9510 pFloat: 9.19 anInt2: 5710 dInt1: 7610 dVar1: 8560 dpInt1: 960 cEL: cvec[0] pvInt: [1490 1491 1492 1493 1494 1495 1496 1497 1498 ] pvFloat: [-0.391 -0.291 -0.191 -0.091 0.009 0.109 0.209 0.309 0.409 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 19000 aFloat: 1.9 anInt2: 38000 dInt1: 57000 cEL: cvec[9] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 19000 aFloat: 1.9 anInt2: 38000 dInt1: 57000 cEL: cvec[9] xAODTestRead_copy INFO 18 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 9501 aFloat: 11400 anInt2: 13301 dInt1: 9121 @@ -3899,63 +3898,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 13310 gFloat 13409.5 gvFloat 13309.5 13409.5 13509.5 13609.5 13709.5 13809.5 13909.5 14009.5 14109.5 xAODTestRead_copy INFO copy_cvecWD 0: 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 -xAODTestReadCVi... INFO copy_cview: 1910 1909 1908 1907 1906 1905 1904 1903 1902 1901 -xAODTestReadHVe... INFO copy_hvec: 7620.5 7619.5 7618.5 7617.5 7616.5 7615.5 7614.5 7613.5 7612.5 7611.5 7610.5 7609.5 7608.5 7607.5 7606.5 7605.5 7604.5 7603.5 7602.5 7601.5 -xAODTestReadHVe... INFO copy_hview: 7601.5 7602.5 7603.5 7604.5 7605.5 7606.5 7607.5 7608.5 7609.5 7610.5 7611.5 7612.5 7613.5 7614.5 7615.5 7616.5 7617.5 7618.5 7619.5 7620.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 1901 aFloat: 3800 pInt: 9501 pFloat: 0.19 anInt2: 5701 dInt1: 7601 dVar1: 8551 dpInt1: 951 dInt100: 2001 dInt150: 2201 anInt10: 550100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 1910 1909 1908 1907 1906 1905 1904 1903 1902 1901 +xAODTe...HVec_copy INFO copy_hvec: 7620.5 7619.5 7618.5 7617.5 7616.5 7615.5 7614.5 7613.5 7612.5 7611.5 7610.5 7609.5 7608.5 7607.5 7606.5 7605.5 7604.5 7603.5 7602.5 7601.5 +xAODTe...HVec_copy INFO copy_hview: 7601.5 7602.5 7603.5 7604.5 7605.5 7606.5 7607.5 7608.5 7609.5 7610.5 7611.5 7612.5 7613.5 7614.5 7615.5 7616.5 7617.5 7618.5 7619.5 7620.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 1901 aFloat: 3800 pInt: 9501 pFloat: 0.19 anInt2: 5701 dInt1: 7601 dVar1: 8551 dpInt1: 951 dInt100: 2001 dInt150: 2201 anInt10: 550100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1902 aFloat: 3800.1 pInt: 9502 pFloat: 1.19 anInt2: 5702 dInt1: 7602 dVar1: 8552 dpInt1: 952 dInt100: 2002 dInt150: 2202 anInt10: 550200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 1902 aFloat: 3800.1 pInt: 9502 pFloat: 1.19 anInt2: 5702 dInt1: 7602 dVar1: 8552 dpInt1: 952 dInt100: 2002 dInt150: 2202 anInt10: 550200 cEL: cvec[8] pvInt: [1410 ] pvFloat: [-0.471 ] dpvFloat: [0.290 ] -xAODTestReadCVe... INFO anInt1 1903 aFloat: 3800.2 pInt: 9503 pFloat: 2.19 anInt2: 5703 dInt1: 7603 dVar1: 8553 dpInt1: 953 dInt100: 2003 dInt150: 2203 anInt10: 550300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 1903 aFloat: 3800.2 pInt: 9503 pFloat: 2.19 anInt2: 5703 dInt1: 7603 dVar1: 8553 dpInt1: 953 dInt100: 2003 dInt150: 2203 anInt10: 550300 cEL: cvec[7] pvInt: [1420 1421 ] pvFloat: [-0.461 -0.361 ] dpvFloat: [0.390 0.391 ] -xAODTestReadCVe... INFO anInt1 1904 aFloat: 3800.3 pInt: 9504 pFloat: 3.19 anInt2: 5704 dInt1: 7604 dVar1: 8554 dpInt1: 954 dInt100: 2004 dInt150: 2204 anInt10: 550400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 1904 aFloat: 3800.3 pInt: 9504 pFloat: 3.19 anInt2: 5704 dInt1: 7604 dVar1: 8554 dpInt1: 954 dInt100: 2004 dInt150: 2204 anInt10: 550400 cEL: cvec[6] pvInt: [1430 1431 1432 ] pvFloat: [-0.451 -0.351 -0.251 ] dpvFloat: [0.490 0.491 0.492 ] -xAODTestReadCVe... INFO anInt1 1905 aFloat: 3800.4 pInt: 9505 pFloat: 4.19 anInt2: 5705 dInt1: 7605 dVar1: 8555 dpInt1: 955 dInt100: 2005 dInt150: 2205 anInt10: 550500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 1905 aFloat: 3800.4 pInt: 9505 pFloat: 4.19 anInt2: 5705 dInt1: 7605 dVar1: 8555 dpInt1: 955 dInt100: 2005 dInt150: 2205 anInt10: 550500 cEL: cvec[5] pvInt: [1440 1441 1442 1443 ] pvFloat: [-0.441 -0.341 -0.241 -0.141 ] dpvFloat: [0.590 0.591 0.592 0.593 ] -xAODTestReadCVe... INFO anInt1 1906 aFloat: 3800.5 pInt: 9506 pFloat: 5.19 anInt2: 5706 dInt1: 7606 dVar1: 8556 dpInt1: 956 dInt100: 2006 dInt150: 2206 anInt10: 550600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 1906 aFloat: 3800.5 pInt: 9506 pFloat: 5.19 anInt2: 5706 dInt1: 7606 dVar1: 8556 dpInt1: 956 dInt100: 2006 dInt150: 2206 anInt10: 550600 cEL: cvec[4] pvInt: [1450 1451 1452 1453 1454 ] pvFloat: [-0.431 -0.331 -0.231 -0.131 -0.031 ] dpvFloat: [0.690 0.691 0.692 0.693 0.694 ] -xAODTestReadCVe... INFO anInt1 1907 aFloat: 3800.6 pInt: 9507 pFloat: 6.19 anInt2: 5707 dInt1: 7607 dVar1: 8557 dpInt1: 957 dInt100: 2007 dInt150: 2207 anInt10: 550700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 1907 aFloat: 3800.6 pInt: 9507 pFloat: 6.19 anInt2: 5707 dInt1: 7607 dVar1: 8557 dpInt1: 957 dInt100: 2007 dInt150: 2207 anInt10: 550700 cEL: cvec[3] pvInt: [1460 1461 1462 1463 1464 1465 ] pvFloat: [-0.421 -0.321 -0.221 -0.121 -0.021 0.079 ] dpvFloat: [0.790 0.791 0.792 0.793 0.794 0.795 ] -xAODTestReadCVe... INFO anInt1 1908 aFloat: 3800.7 pInt: 9508 pFloat: 7.19 anInt2: 5708 dInt1: 7608 dVar1: 8558 dpInt1: 958 dInt100: 2008 dInt150: 2208 anInt10: 550800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 1908 aFloat: 3800.7 pInt: 9508 pFloat: 7.19 anInt2: 5708 dInt1: 7608 dVar1: 8558 dpInt1: 958 dInt100: 2008 dInt150: 2208 anInt10: 550800 cEL: cvec[2] pvInt: [1470 1471 1472 1473 1474 1475 1476 ] pvFloat: [-0.411 -0.311 -0.211 -0.111 -0.011 0.089 0.189 ] dpvFloat: [0.890 0.891 0.892 0.893 0.894 0.895 0.896 ] -xAODTestReadCVe... INFO anInt1 1909 aFloat: 3800.8 pInt: 9509 pFloat: 8.19 anInt2: 5709 dInt1: 7609 dVar1: 8559 dpInt1: 959 dInt100: 2009 dInt150: 2209 anInt10: 550900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 1909 aFloat: 3800.8 pInt: 9509 pFloat: 8.19 anInt2: 5709 dInt1: 7609 dVar1: 8559 dpInt1: 959 dInt100: 2009 dInt150: 2209 anInt10: 550900 cEL: cvec[1] pvInt: [1480 1481 1482 1483 1484 1485 1486 1487 ] pvFloat: [-0.401 -0.301 -0.201 -0.101 -0.001 0.099 0.199 0.299 ] dpvFloat: [0.990 0.991 0.992 0.993 0.994 0.995 0.996 0.997 ] -xAODTestReadCVe... INFO anInt1 1910 aFloat: 3800.9 pInt: 9510 pFloat: 9.19 anInt2: 5710 dInt1: 7610 dVar1: 8560 dpInt1: 960 dInt100: 2010 dInt150: 2210 anInt10: 551000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 1910 aFloat: 3800.9 pInt: 9510 pFloat: 9.19 anInt2: 5710 dInt1: 7610 dVar1: 8560 dpInt1: 960 dInt100: 2010 dInt150: 2210 anInt10: 551000 cEL: cvec[0] pvInt: [1490 1491 1492 1493 1494 1495 1496 1497 1498 ] pvFloat: [-0.391 -0.291 -0.191 -0.091 0.009 0.109 0.209 0.309 0.409 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 19000 aFloat: 1.9 anInt2: 38000 dInt1: 57000 cEL: cvec[9] dInt100: 19500 dInt150: 19700 anInt10: 4160000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 19000 aFloat: 1.9 anInt2: 38000 dInt1: 57000 cEL: cvec[9] dInt100: 19500 dInt150: 19700 anInt10: 4160000 xAODTestRead_scopy INFO 18 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 9501 aFloat: 11400 anInt2: 13301 dInt1: 9121 dInt100: 10201 dInt150: 10401 anInt10: 3210300 @@ -3967,7 +3966,7 @@ xAODTestRead_scopy INFO anInt1 9506 aFloat: 11400.5 anInt2: 13306 dInt1: 9126 xAODTestRead_scopy INFO anInt1 9507 aFloat: 11400.6 anInt2: 13307 dInt1: 9127 dInt100: 10207 dInt150: 10407 anInt10: 3212100 xAODTestRead_scopy INFO anInt1 9508 aFloat: 11400.7 anInt2: 13308 dInt1: 9128 dInt100: 10208 dInt150: 10408 anInt10: 3212400 xAODTestRead_scopy INFO scopy_cvecWD 1019: 3801(740100) 3802(740200) 3803(740300) 3804(740400) 3805(740500) 3806(740600) 3807(740700) 3808(740800) 3809(740900) 3810(741000) -xAODTestReadHVe... INFO scopy_hvec: 7601.5 7602.5 7603.5 7604.5 7605.5 7606.5 7607.5 7608.5 7609.5 7610.5 7611.5 7612.5 7613.5 7614.5 7615.5 7616.5 7617.5 7618.5 7619.5 7620.5 +xAODTe...Vec_scopy INFO scopy_hvec: 7601.5 7602.5 7603.5 7604.5 7605.5 7606.5 7607.5 7608.5 7609.5 7610.5 7611.5 7612.5 7613.5 7614.5 7615.5 7616.5 7617.5 7618.5 7619.5 7620.5 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #0 18 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -4050,60 +4049,60 @@ xAODTestRead INFO cvecWD 1020: 4001 4002 4003 4004 4005 4006 4007 4008 4 xAODTestReadCView INFO cview: 2010 2009 2008 2007 2006 2005 2004 2003 2002 2001 xAODTestReadHVec INFO hvec: 8001.5 8002.5 8003.5 8004.5 8005.5 8006.5 8007.5 8008.5 8009.5 8010.5 8011.5 8012.5 8013.5 8014.5 8015.5 8016.5 8017.5 8018.5 8019.5 8020.5 xAODTestReadHVec INFO hview: 8020.5 8019.5 8018.5 8017.5 8016.5 8015.5 8014.5 8013.5 8012.5 8011.5 8010.5 8009.5 8008.5 8007.5 8006.5 8005.5 8004.5 8003.5 8002.5 8001.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 2001 aFloat: 4000 pInt: 10001 pFloat: 0.20 anInt2: 6001 dInt1: 8001 dVar1: 9001 dpInt1: 1001 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 2001 aFloat: 4000 pInt: 10001 pFloat: 0.20 anInt2: 6001 dInt1: 8001 dVar1: 9001 dpInt1: 1001 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 2002 aFloat: 4000.1 pInt: 10002 pFloat: 1.20 anInt2: 6002 dInt1: 8002 dVar1: 9002 dpInt1: 1002 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 2002 aFloat: 4000.1 pInt: 10002 pFloat: 1.20 anInt2: 6002 dInt1: 8002 dVar1: 9002 dpInt1: 1002 cEL: cvec[8] pvInt: [1510 ] pvFloat: [-0.470 ] dpvFloat: [0.300 ] -xAODTestReadCVe... INFO anInt1 2003 aFloat: 4000.2 pInt: 10003 pFloat: 2.20 anInt2: 6003 dInt1: 8003 dVar1: 9003 dpInt1: 1003 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 2003 aFloat: 4000.2 pInt: 10003 pFloat: 2.20 anInt2: 6003 dInt1: 8003 dVar1: 9003 dpInt1: 1003 cEL: cvec[7] pvInt: [1520 1521 ] pvFloat: [-0.460 -0.360 ] dpvFloat: [0.400 0.401 ] -xAODTestReadCVe... INFO anInt1 2004 aFloat: 4000.3 pInt: 10004 pFloat: 3.20 anInt2: 6004 dInt1: 8004 dVar1: 9004 dpInt1: 1004 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 2004 aFloat: 4000.3 pInt: 10004 pFloat: 3.20 anInt2: 6004 dInt1: 8004 dVar1: 9004 dpInt1: 1004 cEL: cvec[6] pvInt: [1530 1531 1532 ] pvFloat: [-0.450 -0.350 -0.250 ] dpvFloat: [0.500 0.501 0.502 ] -xAODTestReadCVe... INFO anInt1 2005 aFloat: 4000.4 pInt: 10005 pFloat: 4.20 anInt2: 6005 dInt1: 8005 dVar1: 9005 dpInt1: 1005 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 2005 aFloat: 4000.4 pInt: 10005 pFloat: 4.20 anInt2: 6005 dInt1: 8005 dVar1: 9005 dpInt1: 1005 cEL: cvec[5] pvInt: [1540 1541 1542 1543 ] pvFloat: [-0.440 -0.340 -0.240 -0.140 ] dpvFloat: [0.600 0.601 0.602 0.603 ] -xAODTestReadCVe... INFO anInt1 2006 aFloat: 4000.5 pInt: 10006 pFloat: 5.20 anInt2: 6006 dInt1: 8006 dVar1: 9006 dpInt1: 1006 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 2006 aFloat: 4000.5 pInt: 10006 pFloat: 5.20 anInt2: 6006 dInt1: 8006 dVar1: 9006 dpInt1: 1006 cEL: cvec[4] pvInt: [1550 1551 1552 1553 1554 ] pvFloat: [-0.430 -0.330 -0.230 -0.130 -0.030 ] dpvFloat: [0.700 0.701 0.702 0.703 0.704 ] -xAODTestReadCVe... INFO anInt1 2007 aFloat: 4000.6 pInt: 10007 pFloat: 6.20 anInt2: 6007 dInt1: 8007 dVar1: 9007 dpInt1: 1007 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 2007 aFloat: 4000.6 pInt: 10007 pFloat: 6.20 anInt2: 6007 dInt1: 8007 dVar1: 9007 dpInt1: 1007 cEL: cvec[3] pvInt: [1560 1561 1562 1563 1564 1565 ] pvFloat: [-0.420 -0.320 -0.220 -0.120 -0.020 0.080 ] dpvFloat: [0.800 0.801 0.802 0.803 0.804 0.805 ] -xAODTestReadCVe... INFO anInt1 2008 aFloat: 4000.7 pInt: 10008 pFloat: 7.20 anInt2: 6008 dInt1: 8008 dVar1: 9008 dpInt1: 1008 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 2008 aFloat: 4000.7 pInt: 10008 pFloat: 7.20 anInt2: 6008 dInt1: 8008 dVar1: 9008 dpInt1: 1008 cEL: cvec[2] pvInt: [1570 1571 1572 1573 1574 1575 1576 ] pvFloat: [-0.410 -0.310 -0.210 -0.110 -0.010 0.090 0.190 ] dpvFloat: [0.900 0.901 0.902 0.903 0.904 0.905 0.906 ] -xAODTestReadCVe... INFO anInt1 2009 aFloat: 4000.8 pInt: 10009 pFloat: 8.20 anInt2: 6009 dInt1: 8009 dVar1: 9009 dpInt1: 1009 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 2009 aFloat: 4000.8 pInt: 10009 pFloat: 8.20 anInt2: 6009 dInt1: 8009 dVar1: 9009 dpInt1: 1009 cEL: cvec[1] pvInt: [1580 1581 1582 1583 1584 1585 1586 1587 ] pvFloat: [-0.400 -0.300 -0.200 -0.100 0.000 0.100 0.200 0.300 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCVe... INFO anInt1 2010 aFloat: 4000.9 pInt: 10010 pFloat: 9.20 anInt2: 6010 dInt1: 8010 dVar1: 9010 dpInt1: 1010 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 2010 aFloat: 4000.9 pInt: 10010 pFloat: 9.20 anInt2: 6010 dInt1: 8010 dVar1: 9010 dpInt1: 1010 cEL: cvec[0] pvInt: [1590 1591 1592 1593 1594 1595 1596 1597 1598 ] pvFloat: [-0.390 -0.290 -0.190 -0.090 0.010 0.110 0.210 0.310 0.410 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 20000 aFloat: 2 anInt2: 40000 dInt1: 60000 cEL: cvec[0] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 20000 aFloat: 2 anInt2: 40000 dInt1: 60000 cEL: cvec[0] xAODTestRead_copy INFO 19 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 10001 aFloat: 12000 anInt2: 14001 dInt1: 9601 @@ -4127,63 +4126,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 14010 gFloat 14109.5 gvFloat 14009.5 14109.5 14209.5 14309.5 14409.5 14509.5 14609.5 14709.5 14809.5 xAODTestRead_copy INFO copy_cvecWD 0: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 -xAODTestReadCVi... INFO copy_cview: 2010 2009 2008 2007 2006 2005 2004 2003 2002 2001 -xAODTestReadHVe... INFO copy_hvec: 8020.5 8019.5 8018.5 8017.5 8016.5 8015.5 8014.5 8013.5 8012.5 8011.5 8010.5 8009.5 8008.5 8007.5 8006.5 8005.5 8004.5 8003.5 8002.5 8001.5 -xAODTestReadHVe... INFO copy_hview: 8001.5 8002.5 8003.5 8004.5 8005.5 8006.5 8007.5 8008.5 8009.5 8010.5 8011.5 8012.5 8013.5 8014.5 8015.5 8016.5 8017.5 8018.5 8019.5 8020.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 2001 aFloat: 4000 pInt: 10001 pFloat: 0.20 anInt2: 6001 dInt1: 8001 dVar1: 9001 dpInt1: 1001 dInt100: 2101 dInt150: 2301 anInt10: 580100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 2010 2009 2008 2007 2006 2005 2004 2003 2002 2001 +xAODTe...HVec_copy INFO copy_hvec: 8020.5 8019.5 8018.5 8017.5 8016.5 8015.5 8014.5 8013.5 8012.5 8011.5 8010.5 8009.5 8008.5 8007.5 8006.5 8005.5 8004.5 8003.5 8002.5 8001.5 +xAODTe...HVec_copy INFO copy_hview: 8001.5 8002.5 8003.5 8004.5 8005.5 8006.5 8007.5 8008.5 8009.5 8010.5 8011.5 8012.5 8013.5 8014.5 8015.5 8016.5 8017.5 8018.5 8019.5 8020.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 2001 aFloat: 4000 pInt: 10001 pFloat: 0.20 anInt2: 6001 dInt1: 8001 dVar1: 9001 dpInt1: 1001 dInt100: 2101 dInt150: 2301 anInt10: 580100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 2002 aFloat: 4000.1 pInt: 10002 pFloat: 1.20 anInt2: 6002 dInt1: 8002 dVar1: 9002 dpInt1: 1002 dInt100: 2102 dInt150: 2302 anInt10: 580200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 2002 aFloat: 4000.1 pInt: 10002 pFloat: 1.20 anInt2: 6002 dInt1: 8002 dVar1: 9002 dpInt1: 1002 dInt100: 2102 dInt150: 2302 anInt10: 580200 cEL: cvec[8] pvInt: [1510 ] pvFloat: [-0.470 ] dpvFloat: [0.300 ] -xAODTestReadCVe... INFO anInt1 2003 aFloat: 4000.2 pInt: 10003 pFloat: 2.20 anInt2: 6003 dInt1: 8003 dVar1: 9003 dpInt1: 1003 dInt100: 2103 dInt150: 2303 anInt10: 580300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 2003 aFloat: 4000.2 pInt: 10003 pFloat: 2.20 anInt2: 6003 dInt1: 8003 dVar1: 9003 dpInt1: 1003 dInt100: 2103 dInt150: 2303 anInt10: 580300 cEL: cvec[7] pvInt: [1520 1521 ] pvFloat: [-0.460 -0.360 ] dpvFloat: [0.400 0.401 ] -xAODTestReadCVe... INFO anInt1 2004 aFloat: 4000.3 pInt: 10004 pFloat: 3.20 anInt2: 6004 dInt1: 8004 dVar1: 9004 dpInt1: 1004 dInt100: 2104 dInt150: 2304 anInt10: 580400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 2004 aFloat: 4000.3 pInt: 10004 pFloat: 3.20 anInt2: 6004 dInt1: 8004 dVar1: 9004 dpInt1: 1004 dInt100: 2104 dInt150: 2304 anInt10: 580400 cEL: cvec[6] pvInt: [1530 1531 1532 ] pvFloat: [-0.450 -0.350 -0.250 ] dpvFloat: [0.500 0.501 0.502 ] -xAODTestReadCVe... INFO anInt1 2005 aFloat: 4000.4 pInt: 10005 pFloat: 4.20 anInt2: 6005 dInt1: 8005 dVar1: 9005 dpInt1: 1005 dInt100: 2105 dInt150: 2305 anInt10: 580500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 2005 aFloat: 4000.4 pInt: 10005 pFloat: 4.20 anInt2: 6005 dInt1: 8005 dVar1: 9005 dpInt1: 1005 dInt100: 2105 dInt150: 2305 anInt10: 580500 cEL: cvec[5] pvInt: [1540 1541 1542 1543 ] pvFloat: [-0.440 -0.340 -0.240 -0.140 ] dpvFloat: [0.600 0.601 0.602 0.603 ] -xAODTestReadCVe... INFO anInt1 2006 aFloat: 4000.5 pInt: 10006 pFloat: 5.20 anInt2: 6006 dInt1: 8006 dVar1: 9006 dpInt1: 1006 dInt100: 2106 dInt150: 2306 anInt10: 580600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 2006 aFloat: 4000.5 pInt: 10006 pFloat: 5.20 anInt2: 6006 dInt1: 8006 dVar1: 9006 dpInt1: 1006 dInt100: 2106 dInt150: 2306 anInt10: 580600 cEL: cvec[4] pvInt: [1550 1551 1552 1553 1554 ] pvFloat: [-0.430 -0.330 -0.230 -0.130 -0.030 ] dpvFloat: [0.700 0.701 0.702 0.703 0.704 ] -xAODTestReadCVe... INFO anInt1 2007 aFloat: 4000.6 pInt: 10007 pFloat: 6.20 anInt2: 6007 dInt1: 8007 dVar1: 9007 dpInt1: 1007 dInt100: 2107 dInt150: 2307 anInt10: 580700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 2007 aFloat: 4000.6 pInt: 10007 pFloat: 6.20 anInt2: 6007 dInt1: 8007 dVar1: 9007 dpInt1: 1007 dInt100: 2107 dInt150: 2307 anInt10: 580700 cEL: cvec[3] pvInt: [1560 1561 1562 1563 1564 1565 ] pvFloat: [-0.420 -0.320 -0.220 -0.120 -0.020 0.080 ] dpvFloat: [0.800 0.801 0.802 0.803 0.804 0.805 ] -xAODTestReadCVe... INFO anInt1 2008 aFloat: 4000.7 pInt: 10008 pFloat: 7.20 anInt2: 6008 dInt1: 8008 dVar1: 9008 dpInt1: 1008 dInt100: 2108 dInt150: 2308 anInt10: 580800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 2008 aFloat: 4000.7 pInt: 10008 pFloat: 7.20 anInt2: 6008 dInt1: 8008 dVar1: 9008 dpInt1: 1008 dInt100: 2108 dInt150: 2308 anInt10: 580800 cEL: cvec[2] pvInt: [1570 1571 1572 1573 1574 1575 1576 ] pvFloat: [-0.410 -0.310 -0.210 -0.110 -0.010 0.090 0.190 ] dpvFloat: [0.900 0.901 0.902 0.903 0.904 0.905 0.906 ] -xAODTestReadCVe... INFO anInt1 2009 aFloat: 4000.8 pInt: 10009 pFloat: 8.20 anInt2: 6009 dInt1: 8009 dVar1: 9009 dpInt1: 1009 dInt100: 2109 dInt150: 2309 anInt10: 580900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 2009 aFloat: 4000.8 pInt: 10009 pFloat: 8.20 anInt2: 6009 dInt1: 8009 dVar1: 9009 dpInt1: 1009 dInt100: 2109 dInt150: 2309 anInt10: 580900 cEL: cvec[1] pvInt: [1580 1581 1582 1583 1584 1585 1586 1587 ] pvFloat: [-0.400 -0.300 -0.200 -0.100 0.000 0.100 0.200 0.300 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCVe... INFO anInt1 2010 aFloat: 4000.9 pInt: 10010 pFloat: 9.20 anInt2: 6010 dInt1: 8010 dVar1: 9010 dpInt1: 1010 dInt100: 2110 dInt150: 2310 anInt10: 581000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 2010 aFloat: 4000.9 pInt: 10010 pFloat: 9.20 anInt2: 6010 dInt1: 8010 dVar1: 9010 dpInt1: 1010 dInt100: 2110 dInt150: 2310 anInt10: 581000 cEL: cvec[0] pvInt: [1590 1591 1592 1593 1594 1595 1596 1597 1598 ] pvFloat: [-0.390 -0.290 -0.190 -0.090 0.010 0.110 0.210 0.310 0.410 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 20000 aFloat: 2 anInt2: 40000 dInt1: 60000 cEL: cvec[0] dInt100: 20500 dInt150: 20700 anInt10: 4380000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 20000 aFloat: 2 anInt2: 40000 dInt1: 60000 cEL: cvec[0] dInt100: 20500 dInt150: 20700 anInt10: 4380000 xAODTestRead_scopy INFO 19 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 10001 aFloat: 12000 anInt2: 14001 dInt1: 9601 dInt100: 10701 dInt150: 10901 anInt10: 3380300 @@ -4195,7 +4194,7 @@ xAODTestRead_scopy INFO anInt1 10006 aFloat: 12000.5 anInt2: 14006 dInt1: 960 xAODTestRead_scopy INFO anInt1 10007 aFloat: 12000.6 anInt2: 14007 dInt1: 9607 dInt100: 10707 dInt150: 10907 anInt10: 3382100 xAODTestRead_scopy INFO anInt1 10008 aFloat: 12000.7 anInt2: 14008 dInt1: 9608 dInt100: 10708 dInt150: 10908 anInt10: 3382400 xAODTestRead_scopy INFO scopy_cvecWD 1020: 4001(780100) 4002(780200) 4003(780300) 4004(780400) 4005(780500) 4006(780600) 4007(780700) 4008(780800) 4009(780900) 4010(781000) -xAODTestReadHVe... INFO scopy_hvec: 8001.5 8002.5 8003.5 8004.5 8005.5 8006.5 8007.5 8008.5 8009.5 8010.5 8011.5 8012.5 8013.5 8014.5 8015.5 8016.5 8017.5 8018.5 8019.5 8020.5 +xAODTe...Vec_scopy INFO scopy_hvec: 8001.5 8002.5 8003.5 8004.5 8005.5 8006.5 8007.5 8008.5 8009.5 8010.5 8011.5 8012.5 8013.5 8014.5 8015.5 8016.5 8017.5 8018.5 8019.5 8020.5 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -4278,60 +4277,60 @@ xAODTestRead INFO cvecWD 1021: 4201 4202 4203 4204 4205 4206 4207 4208 4 xAODTestReadCView INFO cview: 2110 2109 2108 2107 2106 2105 2104 2103 2102 2101 xAODTestReadHVec INFO hvec: 8401.5 8402.5 8403.5 8404.5 8405.5 8406.5 8407.5 8408.5 8409.5 8410.5 8411.5 8412.5 8413.5 8414.5 8415.5 8416.5 8417.5 8418.5 8419.5 8420.5 xAODTestReadHVec INFO hview: 8420.5 8419.5 8418.5 8417.5 8416.5 8415.5 8414.5 8413.5 8412.5 8411.5 8410.5 8409.5 8408.5 8407.5 8406.5 8405.5 8404.5 8403.5 8402.5 8401.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 2101 aFloat: 4200 pInt: 10501 pFloat: 0.21 anInt2: 6301 dInt1: 8401 dVar1: 9451 dpInt1: 1051 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 2101 aFloat: 4200 pInt: 10501 pFloat: 0.21 anInt2: 6301 dInt1: 8401 dVar1: 9451 dpInt1: 1051 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 2102 aFloat: 4200.1 pInt: 10502 pFloat: 1.21 anInt2: 6302 dInt1: 8402 dVar1: 9452 dpInt1: 1052 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 2102 aFloat: 4200.1 pInt: 10502 pFloat: 1.21 anInt2: 6302 dInt1: 8402 dVar1: 9452 dpInt1: 1052 cEL: cvec[8] pvInt: [1610 ] pvFloat: [-0.469 ] dpvFloat: [0.310 ] -xAODTestReadCVe... INFO anInt1 2103 aFloat: 4200.2 pInt: 10503 pFloat: 2.21 anInt2: 6303 dInt1: 8403 dVar1: 9453 dpInt1: 1053 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 2103 aFloat: 4200.2 pInt: 10503 pFloat: 2.21 anInt2: 6303 dInt1: 8403 dVar1: 9453 dpInt1: 1053 cEL: cvec[7] pvInt: [1620 1621 ] pvFloat: [-0.459 -0.359 ] dpvFloat: [0.410 0.411 ] -xAODTestReadCVe... INFO anInt1 2104 aFloat: 4200.3 pInt: 10504 pFloat: 3.21 anInt2: 6304 dInt1: 8404 dVar1: 9454 dpInt1: 1054 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 2104 aFloat: 4200.3 pInt: 10504 pFloat: 3.21 anInt2: 6304 dInt1: 8404 dVar1: 9454 dpInt1: 1054 cEL: cvec[6] pvInt: [1630 1631 1632 ] pvFloat: [-0.449 -0.349 -0.249 ] dpvFloat: [0.510 0.511 0.512 ] -xAODTestReadCVe... INFO anInt1 2105 aFloat: 4200.4 pInt: 10505 pFloat: 4.21 anInt2: 6305 dInt1: 8405 dVar1: 9455 dpInt1: 1055 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 2105 aFloat: 4200.4 pInt: 10505 pFloat: 4.21 anInt2: 6305 dInt1: 8405 dVar1: 9455 dpInt1: 1055 cEL: cvec[5] pvInt: [1640 1641 1642 1643 ] pvFloat: [-0.439 -0.339 -0.239 -0.139 ] dpvFloat: [0.610 0.611 0.612 0.613 ] -xAODTestReadCVe... INFO anInt1 2106 aFloat: 4200.5 pInt: 10506 pFloat: 5.21 anInt2: 6306 dInt1: 8406 dVar1: 9456 dpInt1: 1056 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 2106 aFloat: 4200.5 pInt: 10506 pFloat: 5.21 anInt2: 6306 dInt1: 8406 dVar1: 9456 dpInt1: 1056 cEL: cvec[4] pvInt: [1650 1651 1652 1653 1654 ] pvFloat: [-0.429 -0.329 -0.229 -0.129 -0.029 ] dpvFloat: [0.710 0.711 0.712 0.713 0.714 ] -xAODTestReadCVe... INFO anInt1 2107 aFloat: 4200.6 pInt: 10507 pFloat: 6.21 anInt2: 6307 dInt1: 8407 dVar1: 9457 dpInt1: 1057 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 2107 aFloat: 4200.6 pInt: 10507 pFloat: 6.21 anInt2: 6307 dInt1: 8407 dVar1: 9457 dpInt1: 1057 cEL: cvec[3] pvInt: [1660 1661 1662 1663 1664 1665 ] pvFloat: [-0.419 -0.319 -0.219 -0.119 -0.019 0.081 ] dpvFloat: [0.810 0.811 0.812 0.813 0.814 0.815 ] -xAODTestReadCVe... INFO anInt1 2108 aFloat: 4200.7 pInt: 10508 pFloat: 7.21 anInt2: 6308 dInt1: 8408 dVar1: 9458 dpInt1: 1058 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 2108 aFloat: 4200.7 pInt: 10508 pFloat: 7.21 anInt2: 6308 dInt1: 8408 dVar1: 9458 dpInt1: 1058 cEL: cvec[2] pvInt: [1670 1671 1672 1673 1674 1675 1676 ] pvFloat: [-0.409 -0.309 -0.209 -0.109 -0.009 0.091 0.191 ] dpvFloat: [0.910 0.911 0.912 0.913 0.914 0.915 0.916 ] -xAODTestReadCVe... INFO anInt1 2109 aFloat: 4200.8 pInt: 10509 pFloat: 8.21 anInt2: 6309 dInt1: 8409 dVar1: 9459 dpInt1: 1059 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 2109 aFloat: 4200.8 pInt: 10509 pFloat: 8.21 anInt2: 6309 dInt1: 8409 dVar1: 9459 dpInt1: 1059 cEL: cvec[1] pvInt: [1680 1681 1682 1683 1684 1685 1686 1687 ] pvFloat: [-0.399 -0.299 -0.199 -0.099 0.001 0.101 0.201 0.301 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCVe... INFO anInt1 2110 aFloat: 4200.9 pInt: 10510 pFloat: 9.21 anInt2: 6310 dInt1: 8410 dVar1: 9460 dpInt1: 1060 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 2110 aFloat: 4200.9 pInt: 10510 pFloat: 9.21 anInt2: 6310 dInt1: 8410 dVar1: 9460 dpInt1: 1060 cEL: cvec[0] pvInt: [1690 1691 1692 1693 1694 1695 1696 1697 1698 ] pvFloat: [-0.389 -0.289 -0.189 -0.089 0.011 0.111 0.211 0.311 0.411 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 21000 aFloat: 2.1 anInt2: 42000 dInt1: 63000 cEL: cvec[1] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 21000 aFloat: 2.1 anInt2: 42000 dInt1: 63000 cEL: cvec[1] xAODTestRead_copy INFO 20 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 10501 aFloat: 12600 anInt2: 14701 dInt1: 10081 @@ -4355,63 +4354,63 @@ xAODTestRead_copy INFO gvec aux items: anInt gFloat gvFloat anInt 14710 gFloat 14809.5 gvFloat 14709.5 14809.5 14909.5 15009.5 15109.5 15209.5 15309.5 15409.5 15509.5 xAODTestRead_copy INFO copy_cvecWD 0: 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 -xAODTestReadCVi... INFO copy_cview: 2110 2109 2108 2107 2106 2105 2104 2103 2102 2101 -xAODTestReadHVe... INFO copy_hvec: 8420.5 8419.5 8418.5 8417.5 8416.5 8415.5 8414.5 8413.5 8412.5 8411.5 8410.5 8409.5 8408.5 8407.5 8406.5 8405.5 8404.5 8403.5 8402.5 8401.5 -xAODTestReadHVe... INFO copy_hview: 8401.5 8402.5 8403.5 8404.5 8405.5 8406.5 8407.5 8408.5 8409.5 8410.5 8411.5 8412.5 8413.5 8414.5 8415.5 8416.5 8417.5 8418.5 8419.5 8420.5 -xAODTestReadCVe... INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: xAOD::ShallowAuxContainer -xAODTestReadCVe... INFO anInt1 2101 aFloat: 4200 pInt: 10501 pFloat: 0.21 anInt2: 6301 dInt1: 8401 dVar1: 9451 dpInt1: 1051 dInt100: 2201 dInt150: 2401 anInt10: 610100 cEL: cvec[9] +xAODTe...View_copy INFO copy_cview: 2110 2109 2108 2107 2106 2105 2104 2103 2102 2101 +xAODTe...HVec_copy INFO copy_hvec: 8420.5 8419.5 8418.5 8417.5 8416.5 8415.5 8414.5 8413.5 8412.5 8411.5 8410.5 8409.5 8408.5 8407.5 8406.5 8405.5 8404.5 8403.5 8402.5 8401.5 +xAODTe...HVec_copy INFO copy_hview: 8401.5 8402.5 8403.5 8404.5 8405.5 8406.5 8407.5 8408.5 8409.5 8410.5 8411.5 8412.5 8413.5 8414.5 8415.5 8416.5 8417.5 8418.5 8419.5 8420.5 +xAODTe...Vec_scopy INFO scopy_cvec aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt150 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...Vec_scopy INFO Type of aux store: xAOD::ShallowAuxContainer +xAODTe...Vec_scopy INFO anInt1 2101 aFloat: 4200 pInt: 10501 pFloat: 0.21 anInt2: 6301 dInt1: 8401 dVar1: 9451 dpInt1: 1051 dInt100: 2201 dInt150: 2401 anInt10: 610100 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 2102 aFloat: 4200.1 pInt: 10502 pFloat: 1.21 anInt2: 6302 dInt1: 8402 dVar1: 9452 dpInt1: 1052 dInt100: 2202 dInt150: 2402 anInt10: 610200 cEL: cvec[8] +xAODTe...Vec_scopy INFO anInt1 2102 aFloat: 4200.1 pInt: 10502 pFloat: 1.21 anInt2: 6302 dInt1: 8402 dVar1: 9452 dpInt1: 1052 dInt100: 2202 dInt150: 2402 anInt10: 610200 cEL: cvec[8] pvInt: [1610 ] pvFloat: [-0.469 ] dpvFloat: [0.310 ] -xAODTestReadCVe... INFO anInt1 2103 aFloat: 4200.2 pInt: 10503 pFloat: 2.21 anInt2: 6303 dInt1: 8403 dVar1: 9453 dpInt1: 1053 dInt100: 2203 dInt150: 2403 anInt10: 610300 cEL: cvec[7] +xAODTe...Vec_scopy INFO anInt1 2103 aFloat: 4200.2 pInt: 10503 pFloat: 2.21 anInt2: 6303 dInt1: 8403 dVar1: 9453 dpInt1: 1053 dInt100: 2203 dInt150: 2403 anInt10: 610300 cEL: cvec[7] pvInt: [1620 1621 ] pvFloat: [-0.459 -0.359 ] dpvFloat: [0.410 0.411 ] -xAODTestReadCVe... INFO anInt1 2104 aFloat: 4200.3 pInt: 10504 pFloat: 3.21 anInt2: 6304 dInt1: 8404 dVar1: 9454 dpInt1: 1054 dInt100: 2204 dInt150: 2404 anInt10: 610400 cEL: cvec[6] +xAODTe...Vec_scopy INFO anInt1 2104 aFloat: 4200.3 pInt: 10504 pFloat: 3.21 anInt2: 6304 dInt1: 8404 dVar1: 9454 dpInt1: 1054 dInt100: 2204 dInt150: 2404 anInt10: 610400 cEL: cvec[6] pvInt: [1630 1631 1632 ] pvFloat: [-0.449 -0.349 -0.249 ] dpvFloat: [0.510 0.511 0.512 ] -xAODTestReadCVe... INFO anInt1 2105 aFloat: 4200.4 pInt: 10505 pFloat: 4.21 anInt2: 6305 dInt1: 8405 dVar1: 9455 dpInt1: 1055 dInt100: 2205 dInt150: 2405 anInt10: 610500 cEL: cvec[5] +xAODTe...Vec_scopy INFO anInt1 2105 aFloat: 4200.4 pInt: 10505 pFloat: 4.21 anInt2: 6305 dInt1: 8405 dVar1: 9455 dpInt1: 1055 dInt100: 2205 dInt150: 2405 anInt10: 610500 cEL: cvec[5] pvInt: [1640 1641 1642 1643 ] pvFloat: [-0.439 -0.339 -0.239 -0.139 ] dpvFloat: [0.610 0.611 0.612 0.613 ] -xAODTestReadCVe... INFO anInt1 2106 aFloat: 4200.5 pInt: 10506 pFloat: 5.21 anInt2: 6306 dInt1: 8406 dVar1: 9456 dpInt1: 1056 dInt100: 2206 dInt150: 2406 anInt10: 610600 cEL: cvec[4] +xAODTe...Vec_scopy INFO anInt1 2106 aFloat: 4200.5 pInt: 10506 pFloat: 5.21 anInt2: 6306 dInt1: 8406 dVar1: 9456 dpInt1: 1056 dInt100: 2206 dInt150: 2406 anInt10: 610600 cEL: cvec[4] pvInt: [1650 1651 1652 1653 1654 ] pvFloat: [-0.429 -0.329 -0.229 -0.129 -0.029 ] dpvFloat: [0.710 0.711 0.712 0.713 0.714 ] -xAODTestReadCVe... INFO anInt1 2107 aFloat: 4200.6 pInt: 10507 pFloat: 6.21 anInt2: 6307 dInt1: 8407 dVar1: 9457 dpInt1: 1057 dInt100: 2207 dInt150: 2407 anInt10: 610700 cEL: cvec[3] +xAODTe...Vec_scopy INFO anInt1 2107 aFloat: 4200.6 pInt: 10507 pFloat: 6.21 anInt2: 6307 dInt1: 8407 dVar1: 9457 dpInt1: 1057 dInt100: 2207 dInt150: 2407 anInt10: 610700 cEL: cvec[3] pvInt: [1660 1661 1662 1663 1664 1665 ] pvFloat: [-0.419 -0.319 -0.219 -0.119 -0.019 0.081 ] dpvFloat: [0.810 0.811 0.812 0.813 0.814 0.815 ] -xAODTestReadCVe... INFO anInt1 2108 aFloat: 4200.7 pInt: 10508 pFloat: 7.21 anInt2: 6308 dInt1: 8408 dVar1: 9458 dpInt1: 1058 dInt100: 2208 dInt150: 2408 anInt10: 610800 cEL: cvec[2] +xAODTe...Vec_scopy INFO anInt1 2108 aFloat: 4200.7 pInt: 10508 pFloat: 7.21 anInt2: 6308 dInt1: 8408 dVar1: 9458 dpInt1: 1058 dInt100: 2208 dInt150: 2408 anInt10: 610800 cEL: cvec[2] pvInt: [1670 1671 1672 1673 1674 1675 1676 ] pvFloat: [-0.409 -0.309 -0.209 -0.109 -0.009 0.091 0.191 ] dpvFloat: [0.910 0.911 0.912 0.913 0.914 0.915 0.916 ] -xAODTestReadCVe... INFO anInt1 2109 aFloat: 4200.8 pInt: 10509 pFloat: 8.21 anInt2: 6309 dInt1: 8409 dVar1: 9459 dpInt1: 1059 dInt100: 2209 dInt150: 2409 anInt10: 610900 cEL: cvec[1] +xAODTe...Vec_scopy INFO anInt1 2109 aFloat: 4200.8 pInt: 10509 pFloat: 8.21 anInt2: 6309 dInt1: 8409 dVar1: 9459 dpInt1: 1059 dInt100: 2209 dInt150: 2409 anInt10: 610900 cEL: cvec[1] pvInt: [1680 1681 1682 1683 1684 1685 1686 1687 ] pvFloat: [-0.399 -0.299 -0.199 -0.099 0.001 0.101 0.201 0.301 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCVe... INFO anInt1 2110 aFloat: 4200.9 pInt: 10510 pFloat: 9.21 anInt2: 6310 dInt1: 8410 dVar1: 9460 dpInt1: 1060 dInt100: 2210 dInt150: 2410 anInt10: 611000 cEL: cvec[0] +xAODTe...Vec_scopy INFO anInt1 2110 aFloat: 4200.9 pInt: 10510 pFloat: 9.21 anInt2: 6310 dInt1: 8410 dVar1: 9460 dpInt1: 1060 dInt100: 2210 dInt150: 2410 anInt10: 611000 cEL: cvec[0] pvInt: [1690 1691 1692 1693 1694 1695 1696 1697 1698 ] pvFloat: [-0.389 -0.289 -0.189 -0.089 0.011 0.111 0.211 0.311 0.411 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 21000 aFloat: 2.1 anInt2: 42000 dInt1: 63000 cEL: cvec[1] dInt100: 21500 dInt150: 21700 anInt10: 4600000 +xAODTe...nfo_scopy INFO cinfo aux items: aFloat anInt anInt10 anInt2 cEL dInt1 dInt100 dInt100Base dInt150 dInt150Base dInt1Base +xAODTe...nfo_scopy INFO cinfo anInt1 21000 aFloat: 2.1 anInt2: 42000 dInt1: 63000 cEL: cvec[1] dInt100: 21500 dInt150: 21700 anInt10: 4600000 xAODTestRead_scopy INFO 20 xAODTestRead_scopy INFO ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150 xAODTestRead_scopy INFO anInt1 10501 aFloat: 12600 anInt2: 14701 dInt1: 10081 dInt100: 11201 dInt150: 11401 anInt10: 3550300 @@ -4423,14 +4422,12 @@ xAODTestRead_scopy INFO anInt1 10506 aFloat: 12600.5 anInt2: 14706 dInt1: 100 xAODTestRead_scopy INFO anInt1 10507 aFloat: 12600.6 anInt2: 14707 dInt1: 10087 dInt100: 11207 dInt150: 11407 anInt10: 3552100 xAODTestRead_scopy INFO anInt1 10508 aFloat: 12600.7 anInt2: 14708 dInt1: 10088 dInt100: 11208 dInt150: 11408 anInt10: 3552400 xAODTestRead_scopy INFO scopy_cvecWD 1021: 4201(820100) 4202(820200) 4203(820300) 4204(820400) 4205(820500) 4206(820600) 4207(820700) 4208(820800) 4209(820900) 4210(821000) -xAODTestReadHVe... INFO scopy_hvec: 8401.5 8402.5 8403.5 8404.5 8405.5 8406.5 8407.5 8408.5 8409.5 8410.5 8411.5 8412.5 8413.5 8414.5 8415.5 8416.5 8417.5 8418.5 8419.5 8420.5 +xAODTe...Vec_scopy INFO scopy_hvec: 8401.5 8402.5 8403.5 8404.5 8405.5 8406.5 8407.5 8408.5 8409.5 8410.5 8411.5 8412.5 8413.5 8414.5 8415.5 8416.5 8417.5 8418.5 8419.5 8420.5 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -Stream1 INFO Metadata records written: 21 +Output...amStream1 INFO Metadata records written: 21 ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestRead2_catalog.xml' does not exist. New file created. AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead2_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead2_jo.py deleted file mode 100644 index fa57e02c166ff8d90a619c85f1685211666a0320..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead2_jo.py +++ /dev/null @@ -1,115 +0,0 @@ -# -# $Id$ -# -# File: share/xAODTestRead2_jo.py -# Author: snyder@bnl.gov -# Date: May 2014 -# Purpose: Test reading xAOD objects. -# Read output of xAODTestRead_jo.py. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "xaoddata2.root" ] - -#-------------------------------------------------------------- -# Define output -#-------------------------------------------------------------- -# ItemList: -include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" ) -fullItemList+=["DMTest::CVec#cvec"] -fullItemList+=["xAOD::AuxContainerBase#cvecAux."] - -ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += ["DEFAULT_SPLITLEVEL='1'"] - -from OutputStreamAthenaPool.MultipleStreamManager import MSMgr - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestReadCVec -from DataModelTestDataRead.DataModelTestDataReadConf import \ - DMTest__xAODTestReadCInfo, \ - DMTest__xAODTestReadCView, \ - DMTest__xAODTestReadHVec, \ - DMTest__xAODTestRead -topSequence += DMTest__xAODTestReadCVec ("xAODTestReadCVec") -topSequence += DMTest__xAODTestReadCInfo ("xAODTestCInfo") -topSequence += DMTest__xAODTestRead ("xAODTestRead") -topSequence += DMTest__xAODTestReadCView ('xAODTestReadCView') -topSequence += DMTest__xAODTestReadHVec ("xAODTestReadHVec") -topSequence += DMTest__xAODTestReadCVec ("xAODTestReadCVec_copy", - CVecKey = "copy_cvec") -topSequence += DMTest__xAODTestReadCInfo ("xAODTestReadCInfo_copy", - CInfoKey = "copy_cinfo") -topSequence += DMTest__xAODTestRead ("xAODTestRead_copy", - CTrigReadKey = 'copy_ctrig', - GVecReadKey = 'copy_gvec', - CVecWDReadKey = 'copy_cvecWD') -topSequence += DMTest__xAODTestReadCView ("xAODTestReadCView_copy", - CViewKey = "copy_cview") -topSequence += DMTest__xAODTestReadHVec ("xAODTestReadHVec_copy", - HVecKey = "copy_hvec", - HViewKey = "copy_hview") -topSequence += DMTest__xAODTestReadCVec ("xAODTestReadCVec_scopy", - CVecKey = "scopy_cvec") -topSequence += DMTest__xAODTestReadCInfo ("xAODTestReadCInfo_scopy", - CInfoKey = "scopy_cinfo") -topSequence += DMTest__xAODTestRead ("xAODTestRead_scopy", - CTrigReadKey = 'scopy_ctrig', - GVecReadKey = '', - CVecWDReadKey = 'scopy_cvecWD') -topSequence += DMTest__xAODTestReadHVec ("xAODTestReadHVec_scopy", - HVecKey = "scopy_hvec", - HViewKey = "") - -# Stream's output file -Stream1_Augmented = MSMgr.NewPoolStream ('Stream1', 'xaoddata2x.root',asAlg=True, noTag=True) -Stream1 = Stream1_Augmented.GetEventStream() -Stream1.WritingTool.SubLevelBranchName = '<key>' -Stream1.ItemList += fullItemList # List of DO's to write out - -from xAODEventFormatCnv.xAODEventFormatCnvConf import xAODMaker__EventFormatStreamHelperTool -for tool in Stream1.HelperTools: - if isinstance(tool, xAODMaker__EventFormatStreamHelperTool): - tool.TypeNames += [ - 'DataVector<DMTest::C_v1>', - 'DMTest::CAuxContainer_v1', - 'DMTest::C_v1', - ] - break - -# Avoid races when running tests in parallel. -FILECATALOG = 'xAODTestRead2_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') - diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3.ref index 23e055b1de449ce559bdaf11d2e3be2be0446af1..7f28dc916beff53bcc861190a6a68c8229d339f0 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3.ref @@ -1,11 +1,7 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... -MetaDataSvc INFO Initializing MetaDataSvc EventSelector INFO EventSelection with query AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully @@ -80,60 +76,60 @@ xAODTestRead INFO cvecWD 1002: 401 402 403 404 405 406 407 408 409 410 xAODTestReadCView INFO cview: 210 209 208 207 206 205 204 203 202 201 xAODTestReadHVec INFO hvec: 801.5 802.5 803.5 804.5 805.5 806.5 807.5 808.5 809.5 810.5 811.5 812.5 813.5 814.5 815.5 816.5 817.5 818.5 819.5 820.5 xAODTestReadHVec INFO hview: 820.5 819.5 818.5 817.5 816.5 815.5 814.5 813.5 812.5 811.5 810.5 809.5 808.5 807.5 806.5 805.5 804.5 803.5 802.5 801.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 201 aFloat: 400 pInt: 1001 pFloat: 0.02 anInt2: 601 dInt1: 801 dVar1: 901 dpInt1: 101 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 201 aFloat: 400 pInt: 1001 pFloat: 0.02 anInt2: 601 dInt1: 801 dVar1: 901 dpInt1: 101 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 202 aFloat: 400.1 pInt: 1002 pFloat: 1.02 anInt2: 602 dInt1: 802 dVar1: 902 dpInt1: 102 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 202 aFloat: 400.1 pInt: 1002 pFloat: 1.02 anInt2: 602 dInt1: 802 dVar1: 902 dpInt1: 102 cEL: cvec[8] pvInt: [-290 ] pvFloat: [-0.488 ] dpvFloat: [0.120 ] -xAODTestReadCVe... INFO anInt1 203 aFloat: 400.2 pInt: 1003 pFloat: 2.02 anInt2: 603 dInt1: 803 dVar1: 903 dpInt1: 103 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 203 aFloat: 400.2 pInt: 1003 pFloat: 2.02 anInt2: 603 dInt1: 803 dVar1: 903 dpInt1: 103 cEL: cvec[7] pvInt: [-280 -279 ] pvFloat: [-0.478 -0.378 ] dpvFloat: [0.220 0.221 ] -xAODTestReadCVe... INFO anInt1 204 aFloat: 400.3 pInt: 1004 pFloat: 3.02 anInt2: 604 dInt1: 804 dVar1: 904 dpInt1: 104 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 204 aFloat: 400.3 pInt: 1004 pFloat: 3.02 anInt2: 604 dInt1: 804 dVar1: 904 dpInt1: 104 cEL: cvec[6] pvInt: [-270 -269 -268 ] pvFloat: [-0.468 -0.368 -0.268 ] dpvFloat: [0.320 0.321 0.322 ] -xAODTestReadCVe... INFO anInt1 205 aFloat: 400.4 pInt: 1005 pFloat: 4.02 anInt2: 605 dInt1: 805 dVar1: 905 dpInt1: 105 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 205 aFloat: 400.4 pInt: 1005 pFloat: 4.02 anInt2: 605 dInt1: 805 dVar1: 905 dpInt1: 105 cEL: cvec[5] pvInt: [-260 -259 -258 -257 ] pvFloat: [-0.458 -0.358 -0.258 -0.158 ] dpvFloat: [0.420 0.421 0.422 0.423 ] -xAODTestReadCVe... INFO anInt1 206 aFloat: 400.5 pInt: 1006 pFloat: 5.02 anInt2: 606 dInt1: 806 dVar1: 906 dpInt1: 106 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 206 aFloat: 400.5 pInt: 1006 pFloat: 5.02 anInt2: 606 dInt1: 806 dVar1: 906 dpInt1: 106 cEL: cvec[4] pvInt: [-250 -249 -248 -247 -246 ] pvFloat: [-0.448 -0.348 -0.248 -0.148 -0.048 ] dpvFloat: [0.520 0.521 0.522 0.523 0.524 ] -xAODTestReadCVe... INFO anInt1 207 aFloat: 400.6 pInt: 1007 pFloat: 6.02 anInt2: 607 dInt1: 807 dVar1: 907 dpInt1: 107 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 207 aFloat: 400.6 pInt: 1007 pFloat: 6.02 anInt2: 607 dInt1: 807 dVar1: 907 dpInt1: 107 cEL: cvec[3] pvInt: [-240 -239 -238 -237 -236 -235 ] pvFloat: [-0.438 -0.338 -0.238 -0.138 -0.038 0.062 ] dpvFloat: [0.620 0.621 0.622 0.623 0.624 0.625 ] -xAODTestReadCVe... INFO anInt1 208 aFloat: 400.7 pInt: 1008 pFloat: 7.02 anInt2: 608 dInt1: 808 dVar1: 908 dpInt1: 108 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 208 aFloat: 400.7 pInt: 1008 pFloat: 7.02 anInt2: 608 dInt1: 808 dVar1: 908 dpInt1: 108 cEL: cvec[2] pvInt: [-230 -229 -228 -227 -226 -225 -224 ] pvFloat: [-0.428 -0.328 -0.228 -0.128 -0.028 0.072 0.172 ] dpvFloat: [0.720 0.721 0.722 0.723 0.724 0.725 0.726 ] -xAODTestReadCVe... INFO anInt1 209 aFloat: 400.8 pInt: 1009 pFloat: 8.02 anInt2: 609 dInt1: 809 dVar1: 909 dpInt1: 109 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 209 aFloat: 400.8 pInt: 1009 pFloat: 8.02 anInt2: 609 dInt1: 809 dVar1: 909 dpInt1: 109 cEL: cvec[1] pvInt: [-220 -219 -218 -217 -216 -215 -214 -213 ] pvFloat: [-0.418 -0.318 -0.218 -0.118 -0.018 0.082 0.182 0.282 ] dpvFloat: [0.820 0.821 0.822 0.823 0.824 0.825 0.826 0.827 ] -xAODTestReadCVe... INFO anInt1 210 aFloat: 400.9 pInt: 1010 pFloat: 9.02 anInt2: 610 dInt1: 810 dVar1: 910 dpInt1: 110 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 210 aFloat: 400.9 pInt: 1010 pFloat: 9.02 anInt2: 610 dInt1: 810 dVar1: 910 dpInt1: 110 cEL: cvec[0] pvInt: [-210 -209 -208 -207 -206 -205 -204 -203 -202 ] pvFloat: [-0.408 -0.308 -0.208 -0.108 -0.008 0.092 0.192 0.292 0.392 ] dpvFloat: [0.920 0.921 0.922 0.923 0.924 0.925 0.926 0.927 0.928 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 2000 aFloat: 0.2 anInt2: 4000 dInt1: 6000 cEL: cvec[2] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 2000 aFloat: 0.2 anInt2: 4000 dInt1: 6000 cEL: cvec[2] xAODTestRead_copy INFO 1 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 1001 aFloat: 1200 anInt2: 1401 dInt1: 961 @@ -145,9 +141,9 @@ xAODTestRead_copy INFO anInt1 1006 aFloat: 1200.5 anInt2: 1406 dInt1: 966 xAODTestRead_copy INFO anInt1 1007 aFloat: 1200.6 anInt2: 1407 dInt1: 967 xAODTestRead_copy INFO anInt1 1008 aFloat: 1200.7 anInt2: 1408 dInt1: 968 xAODTestRead_copy INFO copy_cvecWD 1002: 401 402 403 404 405 406 407 408 409 410 -xAODTestReadCVi... INFO copy_cview: 210 209 208 207 206 205 204 203 202 201 -xAODTestReadHVe... INFO copy_hvec: 801.5 802.5 803.5 804.5 805.5 806.5 807.5 808.5 809.5 810.5 811.5 812.5 813.5 814.5 815.5 816.5 817.5 818.5 819.5 820.5 -xAODTestReadHVe... INFO copy_hview: 820.5 819.5 818.5 817.5 816.5 815.5 814.5 813.5 812.5 811.5 810.5 809.5 808.5 807.5 806.5 805.5 804.5 803.5 802.5 801.5 +xAODTe...View_copy INFO copy_cview: 210 209 208 207 206 205 204 203 202 201 +xAODTe...HVec_copy INFO copy_hvec: 801.5 802.5 803.5 804.5 805.5 806.5 807.5 808.5 809.5 810.5 811.5 812.5 813.5 814.5 815.5 816.5 817.5 818.5 819.5 820.5 +xAODTe...HVec_copy INFO copy_hview: 820.5 819.5 818.5 817.5 816.5 815.5 814.5 813.5 812.5 811.5 810.5 809.5 808.5 807.5 806.5 805.5 804.5 803.5 802.5 801.5 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -218,60 +214,60 @@ xAODTestRead INFO cvecWD 1003: 601 602 603 604 605 606 607 608 609 610 xAODTestReadCView INFO cview: 310 309 308 307 306 305 304 303 302 301 xAODTestReadHVec INFO hvec: 1201.5 1202.5 1203.5 1204.5 1205.5 1206.5 1207.5 1208.5 1209.5 1210.5 1211.5 1212.5 1213.5 1214.5 1215.5 1216.5 1217.5 1218.5 1219.5 1220.5 xAODTestReadHVec INFO hview: 1220.5 1219.5 1218.5 1217.5 1216.5 1215.5 1214.5 1213.5 1212.5 1211.5 1210.5 1209.5 1208.5 1207.5 1206.5 1205.5 1204.5 1203.5 1202.5 1201.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 301 aFloat: 600 pInt: 1501 pFloat: 0.03 anInt2: 901 dInt1: 1201 dVar1: 1351 dpInt1: 151 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 301 aFloat: 600 pInt: 1501 pFloat: 0.03 anInt2: 901 dInt1: 1201 dVar1: 1351 dpInt1: 151 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 302 aFloat: 600.1 pInt: 1502 pFloat: 1.03 anInt2: 902 dInt1: 1202 dVar1: 1352 dpInt1: 152 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 302 aFloat: 600.1 pInt: 1502 pFloat: 1.03 anInt2: 902 dInt1: 1202 dVar1: 1352 dpInt1: 152 cEL: cvec[8] pvInt: [-190 ] pvFloat: [-0.487 ] dpvFloat: [0.130 ] -xAODTestReadCVe... INFO anInt1 303 aFloat: 600.2 pInt: 1503 pFloat: 2.03 anInt2: 903 dInt1: 1203 dVar1: 1353 dpInt1: 153 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 303 aFloat: 600.2 pInt: 1503 pFloat: 2.03 anInt2: 903 dInt1: 1203 dVar1: 1353 dpInt1: 153 cEL: cvec[7] pvInt: [-180 -179 ] pvFloat: [-0.477 -0.377 ] dpvFloat: [0.230 0.231 ] -xAODTestReadCVe... INFO anInt1 304 aFloat: 600.3 pInt: 1504 pFloat: 3.03 anInt2: 904 dInt1: 1204 dVar1: 1354 dpInt1: 154 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 304 aFloat: 600.3 pInt: 1504 pFloat: 3.03 anInt2: 904 dInt1: 1204 dVar1: 1354 dpInt1: 154 cEL: cvec[6] pvInt: [-170 -169 -168 ] pvFloat: [-0.467 -0.367 -0.267 ] dpvFloat: [0.330 0.331 0.332 ] -xAODTestReadCVe... INFO anInt1 305 aFloat: 600.4 pInt: 1505 pFloat: 4.03 anInt2: 905 dInt1: 1205 dVar1: 1355 dpInt1: 155 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 305 aFloat: 600.4 pInt: 1505 pFloat: 4.03 anInt2: 905 dInt1: 1205 dVar1: 1355 dpInt1: 155 cEL: cvec[5] pvInt: [-160 -159 -158 -157 ] pvFloat: [-0.457 -0.357 -0.257 -0.157 ] dpvFloat: [0.430 0.431 0.432 0.433 ] -xAODTestReadCVe... INFO anInt1 306 aFloat: 600.5 pInt: 1506 pFloat: 5.03 anInt2: 906 dInt1: 1206 dVar1: 1356 dpInt1: 156 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 306 aFloat: 600.5 pInt: 1506 pFloat: 5.03 anInt2: 906 dInt1: 1206 dVar1: 1356 dpInt1: 156 cEL: cvec[4] pvInt: [-150 -149 -148 -147 -146 ] pvFloat: [-0.447 -0.347 -0.247 -0.147 -0.047 ] dpvFloat: [0.530 0.531 0.532 0.533 0.534 ] -xAODTestReadCVe... INFO anInt1 307 aFloat: 600.6 pInt: 1507 pFloat: 6.03 anInt2: 907 dInt1: 1207 dVar1: 1357 dpInt1: 157 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 307 aFloat: 600.6 pInt: 1507 pFloat: 6.03 anInt2: 907 dInt1: 1207 dVar1: 1357 dpInt1: 157 cEL: cvec[3] pvInt: [-140 -139 -138 -137 -136 -135 ] pvFloat: [-0.437 -0.337 -0.237 -0.137 -0.037 0.063 ] dpvFloat: [0.630 0.631 0.632 0.633 0.634 0.635 ] -xAODTestReadCVe... INFO anInt1 308 aFloat: 600.7 pInt: 1508 pFloat: 7.03 anInt2: 908 dInt1: 1208 dVar1: 1358 dpInt1: 158 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 308 aFloat: 600.7 pInt: 1508 pFloat: 7.03 anInt2: 908 dInt1: 1208 dVar1: 1358 dpInt1: 158 cEL: cvec[2] pvInt: [-130 -129 -128 -127 -126 -125 -124 ] pvFloat: [-0.427 -0.327 -0.227 -0.127 -0.027 0.073 0.173 ] dpvFloat: [0.730 0.731 0.732 0.733 0.734 0.735 0.736 ] -xAODTestReadCVe... INFO anInt1 309 aFloat: 600.8 pInt: 1509 pFloat: 8.03 anInt2: 909 dInt1: 1209 dVar1: 1359 dpInt1: 159 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 309 aFloat: 600.8 pInt: 1509 pFloat: 8.03 anInt2: 909 dInt1: 1209 dVar1: 1359 dpInt1: 159 cEL: cvec[1] pvInt: [-120 -119 -118 -117 -116 -115 -114 -113 ] pvFloat: [-0.417 -0.317 -0.217 -0.117 -0.017 0.083 0.183 0.283 ] dpvFloat: [0.830 0.831 0.832 0.833 0.834 0.835 0.836 0.837 ] -xAODTestReadCVe... INFO anInt1 310 aFloat: 600.9 pInt: 1510 pFloat: 9.03 anInt2: 910 dInt1: 1210 dVar1: 1360 dpInt1: 160 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 310 aFloat: 600.9 pInt: 1510 pFloat: 9.03 anInt2: 910 dInt1: 1210 dVar1: 1360 dpInt1: 160 cEL: cvec[0] pvInt: [-110 -109 -108 -107 -106 -105 -104 -103 -102 ] pvFloat: [-0.407 -0.307 -0.207 -0.107 -0.007 0.093 0.193 0.293 0.393 ] dpvFloat: [0.930 0.931 0.932 0.933 0.934 0.935 0.936 0.937 0.938 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 3000 aFloat: 0.3 anInt2: 6000 dInt1: 9000 cEL: cvec[3] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 3000 aFloat: 0.3 anInt2: 6000 dInt1: 9000 cEL: cvec[3] xAODTestRead_copy INFO 2 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 1501 aFloat: 1800 anInt2: 2101 dInt1: 1441 @@ -283,9 +279,9 @@ xAODTestRead_copy INFO anInt1 1506 aFloat: 1800.5 anInt2: 2106 dInt1: 1446 xAODTestRead_copy INFO anInt1 1507 aFloat: 1800.6 anInt2: 2107 dInt1: 1447 xAODTestRead_copy INFO anInt1 1508 aFloat: 1800.7 anInt2: 2108 dInt1: 1448 xAODTestRead_copy INFO copy_cvecWD 1003: 601 602 603 604 605 606 607 608 609 610 -xAODTestReadCVi... INFO copy_cview: 310 309 308 307 306 305 304 303 302 301 -xAODTestReadHVe... INFO copy_hvec: 1201.5 1202.5 1203.5 1204.5 1205.5 1206.5 1207.5 1208.5 1209.5 1210.5 1211.5 1212.5 1213.5 1214.5 1215.5 1216.5 1217.5 1218.5 1219.5 1220.5 -xAODTestReadHVe... INFO copy_hview: 1220.5 1219.5 1218.5 1217.5 1216.5 1215.5 1214.5 1213.5 1212.5 1211.5 1210.5 1209.5 1208.5 1207.5 1206.5 1205.5 1204.5 1203.5 1202.5 1201.5 +xAODTe...View_copy INFO copy_cview: 310 309 308 307 306 305 304 303 302 301 +xAODTe...HVec_copy INFO copy_hvec: 1201.5 1202.5 1203.5 1204.5 1205.5 1206.5 1207.5 1208.5 1209.5 1210.5 1211.5 1212.5 1213.5 1214.5 1215.5 1216.5 1217.5 1218.5 1219.5 1220.5 +xAODTe...HVec_copy INFO copy_hview: 1220.5 1219.5 1218.5 1217.5 1216.5 1215.5 1214.5 1213.5 1212.5 1211.5 1210.5 1209.5 1208.5 1207.5 1206.5 1205.5 1204.5 1203.5 1202.5 1201.5 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #3, run #0 2 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -356,60 +352,60 @@ xAODTestRead INFO cvecWD 1004: 801 802 803 804 805 806 807 808 809 810 xAODTestReadCView INFO cview: 410 409 408 407 406 405 404 403 402 401 xAODTestReadHVec INFO hvec: 1601.5 1602.5 1603.5 1604.5 1605.5 1606.5 1607.5 1608.5 1609.5 1610.5 1611.5 1612.5 1613.5 1614.5 1615.5 1616.5 1617.5 1618.5 1619.5 1620.5 xAODTestReadHVec INFO hview: 1620.5 1619.5 1618.5 1617.5 1616.5 1615.5 1614.5 1613.5 1612.5 1611.5 1610.5 1609.5 1608.5 1607.5 1606.5 1605.5 1604.5 1603.5 1602.5 1601.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 401 aFloat: 800 pInt: 2001 pFloat: 0.04 anInt2: 1201 dInt1: 1601 dVar1: 1801 dpInt1: 201 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 401 aFloat: 800 pInt: 2001 pFloat: 0.04 anInt2: 1201 dInt1: 1601 dVar1: 1801 dpInt1: 201 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 402 aFloat: 800.1 pInt: 2002 pFloat: 1.04 anInt2: 1202 dInt1: 1602 dVar1: 1802 dpInt1: 202 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 402 aFloat: 800.1 pInt: 2002 pFloat: 1.04 anInt2: 1202 dInt1: 1602 dVar1: 1802 dpInt1: 202 cEL: cvec[8] pvInt: [-90 ] pvFloat: [-0.486 ] dpvFloat: [0.140 ] -xAODTestReadCVe... INFO anInt1 403 aFloat: 800.2 pInt: 2003 pFloat: 2.04 anInt2: 1203 dInt1: 1603 dVar1: 1803 dpInt1: 203 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 403 aFloat: 800.2 pInt: 2003 pFloat: 2.04 anInt2: 1203 dInt1: 1603 dVar1: 1803 dpInt1: 203 cEL: cvec[7] pvInt: [-80 -79 ] pvFloat: [-0.476 -0.376 ] dpvFloat: [0.240 0.241 ] -xAODTestReadCVe... INFO anInt1 404 aFloat: 800.3 pInt: 2004 pFloat: 3.04 anInt2: 1204 dInt1: 1604 dVar1: 1804 dpInt1: 204 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 404 aFloat: 800.3 pInt: 2004 pFloat: 3.04 anInt2: 1204 dInt1: 1604 dVar1: 1804 dpInt1: 204 cEL: cvec[6] pvInt: [-70 -69 -68 ] pvFloat: [-0.466 -0.366 -0.266 ] dpvFloat: [0.340 0.341 0.342 ] -xAODTestReadCVe... INFO anInt1 405 aFloat: 800.4 pInt: 2005 pFloat: 4.04 anInt2: 1205 dInt1: 1605 dVar1: 1805 dpInt1: 205 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 405 aFloat: 800.4 pInt: 2005 pFloat: 4.04 anInt2: 1205 dInt1: 1605 dVar1: 1805 dpInt1: 205 cEL: cvec[5] pvInt: [-60 -59 -58 -57 ] pvFloat: [-0.456 -0.356 -0.256 -0.156 ] dpvFloat: [0.440 0.441 0.442 0.443 ] -xAODTestReadCVe... INFO anInt1 406 aFloat: 800.5 pInt: 2006 pFloat: 5.04 anInt2: 1206 dInt1: 1606 dVar1: 1806 dpInt1: 206 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 406 aFloat: 800.5 pInt: 2006 pFloat: 5.04 anInt2: 1206 dInt1: 1606 dVar1: 1806 dpInt1: 206 cEL: cvec[4] pvInt: [-50 -49 -48 -47 -46 ] pvFloat: [-0.446 -0.346 -0.246 -0.146 -0.046 ] dpvFloat: [0.540 0.541 0.542 0.543 0.544 ] -xAODTestReadCVe... INFO anInt1 407 aFloat: 800.6 pInt: 2007 pFloat: 6.04 anInt2: 1207 dInt1: 1607 dVar1: 1807 dpInt1: 207 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 407 aFloat: 800.6 pInt: 2007 pFloat: 6.04 anInt2: 1207 dInt1: 1607 dVar1: 1807 dpInt1: 207 cEL: cvec[3] pvInt: [-40 -39 -38 -37 -36 -35 ] pvFloat: [-0.436 -0.336 -0.236 -0.136 -0.036 0.064 ] dpvFloat: [0.640 0.641 0.642 0.643 0.644 0.645 ] -xAODTestReadCVe... INFO anInt1 408 aFloat: 800.7 pInt: 2008 pFloat: 7.04 anInt2: 1208 dInt1: 1608 dVar1: 1808 dpInt1: 208 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 408 aFloat: 800.7 pInt: 2008 pFloat: 7.04 anInt2: 1208 dInt1: 1608 dVar1: 1808 dpInt1: 208 cEL: cvec[2] pvInt: [-30 -29 -28 -27 -26 -25 -24 ] pvFloat: [-0.426 -0.326 -0.226 -0.126 -0.026 0.074 0.174 ] dpvFloat: [0.740 0.741 0.742 0.743 0.744 0.745 0.746 ] -xAODTestReadCVe... INFO anInt1 409 aFloat: 800.8 pInt: 2009 pFloat: 8.04 anInt2: 1209 dInt1: 1609 dVar1: 1809 dpInt1: 209 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 409 aFloat: 800.8 pInt: 2009 pFloat: 8.04 anInt2: 1209 dInt1: 1609 dVar1: 1809 dpInt1: 209 cEL: cvec[1] pvInt: [-20 -19 -18 -17 -16 -15 -14 -13 ] pvFloat: [-0.416 -0.316 -0.216 -0.116 -0.016 0.084 0.184 0.284 ] dpvFloat: [0.840 0.841 0.842 0.843 0.844 0.845 0.846 0.847 ] -xAODTestReadCVe... INFO anInt1 410 aFloat: 800.9 pInt: 2010 pFloat: 9.04 anInt2: 1210 dInt1: 1610 dVar1: 1810 dpInt1: 210 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 410 aFloat: 800.9 pInt: 2010 pFloat: 9.04 anInt2: 1210 dInt1: 1610 dVar1: 1810 dpInt1: 210 cEL: cvec[0] pvInt: [-10 -9 -8 -7 -6 -5 -4 -3 -2 ] pvFloat: [-0.406 -0.306 -0.206 -0.106 -0.006 0.094 0.194 0.294 0.394 ] dpvFloat: [0.940 0.941 0.942 0.943 0.944 0.945 0.946 0.947 0.948 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 4000 aFloat: 0.4 anInt2: 8000 dInt1: 12000 cEL: cvec[4] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 4000 aFloat: 0.4 anInt2: 8000 dInt1: 12000 cEL: cvec[4] xAODTestRead_copy INFO 3 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 2001 aFloat: 2400 anInt2: 2801 dInt1: 1921 @@ -421,9 +417,9 @@ xAODTestRead_copy INFO anInt1 2006 aFloat: 2400.5 anInt2: 2806 dInt1: 1926 xAODTestRead_copy INFO anInt1 2007 aFloat: 2400.6 anInt2: 2807 dInt1: 1927 xAODTestRead_copy INFO anInt1 2008 aFloat: 2400.7 anInt2: 2808 dInt1: 1928 xAODTestRead_copy INFO copy_cvecWD 1004: 801 802 803 804 805 806 807 808 809 810 -xAODTestReadCVi... INFO copy_cview: 410 409 408 407 406 405 404 403 402 401 -xAODTestReadHVe... INFO copy_hvec: 1601.5 1602.5 1603.5 1604.5 1605.5 1606.5 1607.5 1608.5 1609.5 1610.5 1611.5 1612.5 1613.5 1614.5 1615.5 1616.5 1617.5 1618.5 1619.5 1620.5 -xAODTestReadHVe... INFO copy_hview: 1620.5 1619.5 1618.5 1617.5 1616.5 1615.5 1614.5 1613.5 1612.5 1611.5 1610.5 1609.5 1608.5 1607.5 1606.5 1605.5 1604.5 1603.5 1602.5 1601.5 +xAODTe...View_copy INFO copy_cview: 410 409 408 407 406 405 404 403 402 401 +xAODTe...HVec_copy INFO copy_hvec: 1601.5 1602.5 1603.5 1604.5 1605.5 1606.5 1607.5 1608.5 1609.5 1610.5 1611.5 1612.5 1613.5 1614.5 1615.5 1616.5 1617.5 1618.5 1619.5 1620.5 +xAODTe...HVec_copy INFO copy_hview: 1620.5 1619.5 1618.5 1617.5 1616.5 1615.5 1614.5 1613.5 1612.5 1611.5 1610.5 1609.5 1608.5 1607.5 1606.5 1605.5 1604.5 1603.5 1602.5 1601.5 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #0 3 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #4, run #0 3 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -444,10 +440,10 @@ xAODTestRead INFO cvecWD 1005: 1001 1002 1003 1004 1005 1006 1007 1008 1 xAODTestReadCView INFO cview: xAODTestReadHVec INFO hvec: 2001.5 2002.5 2003.5 2004.5 2005.5 2006.5 2007.5 2008.5 2009.5 2010.5 2011.5 2012.5 2013.5 2014.5 2015.5 2016.5 2017.5 2018.5 2019.5 2020.5 xAODTestReadHVec INFO hview: 2020.5 2019.5 2018.5 2017.5 2016.5 2015.5 2014.5 2013.5 2012.5 2011.5 2010.5 2009.5 2008.5 2007.5 2006.5 2005.5 2004.5 2003.5 2002.5 2001.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 5000 aFloat: 0.5 anInt2: 10000 dInt1: 15000 cEL: [18446744073709551615] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 5000 aFloat: 0.5 anInt2: 10000 dInt1: 15000 cEL: [18446744073709551615] xAODTestRead_copy INFO 4 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 2501 aFloat: 3000 anInt2: 3501 dInt1: 2401 @@ -459,9 +455,9 @@ xAODTestRead_copy INFO anInt1 2506 aFloat: 3000.5 anInt2: 3506 dInt1: 2406 xAODTestRead_copy INFO anInt1 2507 aFloat: 3000.6 anInt2: 3507 dInt1: 2407 xAODTestRead_copy INFO anInt1 2508 aFloat: 3000.7 anInt2: 3508 dInt1: 2408 xAODTestRead_copy INFO copy_cvecWD 1005: 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 -xAODTestReadCVi... INFO copy_cview: -xAODTestReadHVe... INFO copy_hvec: 2001.5 2002.5 2003.5 2004.5 2005.5 2006.5 2007.5 2008.5 2009.5 2010.5 2011.5 2012.5 2013.5 2014.5 2015.5 2016.5 2017.5 2018.5 2019.5 2020.5 -xAODTestReadHVe... INFO copy_hview: 2020.5 2019.5 2018.5 2017.5 2016.5 2015.5 2014.5 2013.5 2012.5 2011.5 2010.5 2009.5 2008.5 2007.5 2006.5 2005.5 2004.5 2003.5 2002.5 2001.5 +xAODTe...View_copy INFO copy_cview: +xAODTe...HVec_copy INFO copy_hvec: 2001.5 2002.5 2003.5 2004.5 2005.5 2006.5 2007.5 2008.5 2009.5 2010.5 2011.5 2012.5 2013.5 2014.5 2015.5 2016.5 2017.5 2018.5 2019.5 2020.5 +xAODTe...HVec_copy INFO copy_hview: 2020.5 2019.5 2018.5 2017.5 2016.5 2015.5 2014.5 2013.5 2012.5 2011.5 2010.5 2009.5 2008.5 2007.5 2006.5 2005.5 2004.5 2003.5 2002.5 2001.5 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #0 4 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #5, run #0 4 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -532,60 +528,60 @@ xAODTestRead INFO cvecWD 1006: 1201 1202 1203 1204 1205 1206 1207 1208 1 xAODTestReadCView INFO cview: 610 609 608 607 606 605 604 603 602 601 xAODTestReadHVec INFO hvec: 2401.5 2402.5 2403.5 2404.5 2405.5 2406.5 2407.5 2408.5 2409.5 2410.5 2411.5 2412.5 2413.5 2414.5 2415.5 2416.5 2417.5 2418.5 2419.5 2420.5 xAODTestReadHVec INFO hview: 2420.5 2419.5 2418.5 2417.5 2416.5 2415.5 2414.5 2413.5 2412.5 2411.5 2410.5 2409.5 2408.5 2407.5 2406.5 2405.5 2404.5 2403.5 2402.5 2401.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 601 aFloat: 1200 pInt: 3001 pFloat: 0.06 anInt2: 1801 dInt1: 2401 dVar1: 2701 dpInt1: 301 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 601 aFloat: 1200 pInt: 3001 pFloat: 0.06 anInt2: 1801 dInt1: 2401 dVar1: 2701 dpInt1: 301 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 602 aFloat: 1200.1 pInt: 3002 pFloat: 1.06 anInt2: 1802 dInt1: 2402 dVar1: 2702 dpInt1: 302 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 602 aFloat: 1200.1 pInt: 3002 pFloat: 1.06 anInt2: 1802 dInt1: 2402 dVar1: 2702 dpInt1: 302 cEL: cvec[8] pvInt: [110 ] pvFloat: [-0.484 ] dpvFloat: [0.160 ] -xAODTestReadCVe... INFO anInt1 603 aFloat: 1200.2 pInt: 3003 pFloat: 2.06 anInt2: 1803 dInt1: 2403 dVar1: 2703 dpInt1: 303 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 603 aFloat: 1200.2 pInt: 3003 pFloat: 2.06 anInt2: 1803 dInt1: 2403 dVar1: 2703 dpInt1: 303 cEL: cvec[7] pvInt: [120 121 ] pvFloat: [-0.474 -0.374 ] dpvFloat: [0.260 0.261 ] -xAODTestReadCVe... INFO anInt1 604 aFloat: 1200.3 pInt: 3004 pFloat: 3.06 anInt2: 1804 dInt1: 2404 dVar1: 2704 dpInt1: 304 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 604 aFloat: 1200.3 pInt: 3004 pFloat: 3.06 anInt2: 1804 dInt1: 2404 dVar1: 2704 dpInt1: 304 cEL: cvec[6] pvInt: [130 131 132 ] pvFloat: [-0.464 -0.364 -0.264 ] dpvFloat: [0.360 0.361 0.362 ] -xAODTestReadCVe... INFO anInt1 605 aFloat: 1200.4 pInt: 3005 pFloat: 4.06 anInt2: 1805 dInt1: 2405 dVar1: 2705 dpInt1: 305 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 605 aFloat: 1200.4 pInt: 3005 pFloat: 4.06 anInt2: 1805 dInt1: 2405 dVar1: 2705 dpInt1: 305 cEL: cvec[5] pvInt: [140 141 142 143 ] pvFloat: [-0.454 -0.354 -0.254 -0.154 ] dpvFloat: [0.460 0.461 0.462 0.463 ] -xAODTestReadCVe... INFO anInt1 606 aFloat: 1200.5 pInt: 3006 pFloat: 5.06 anInt2: 1806 dInt1: 2406 dVar1: 2706 dpInt1: 306 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 606 aFloat: 1200.5 pInt: 3006 pFloat: 5.06 anInt2: 1806 dInt1: 2406 dVar1: 2706 dpInt1: 306 cEL: cvec[4] pvInt: [150 151 152 153 154 ] pvFloat: [-0.444 -0.344 -0.244 -0.144 -0.044 ] dpvFloat: [0.560 0.561 0.562 0.563 0.564 ] -xAODTestReadCVe... INFO anInt1 607 aFloat: 1200.6 pInt: 3007 pFloat: 6.06 anInt2: 1807 dInt1: 2407 dVar1: 2707 dpInt1: 307 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 607 aFloat: 1200.6 pInt: 3007 pFloat: 6.06 anInt2: 1807 dInt1: 2407 dVar1: 2707 dpInt1: 307 cEL: cvec[3] pvInt: [160 161 162 163 164 165 ] pvFloat: [-0.434 -0.334 -0.234 -0.134 -0.034 0.066 ] dpvFloat: [0.660 0.661 0.662 0.663 0.664 0.665 ] -xAODTestReadCVe... INFO anInt1 608 aFloat: 1200.7 pInt: 3008 pFloat: 7.06 anInt2: 1808 dInt1: 2408 dVar1: 2708 dpInt1: 308 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 608 aFloat: 1200.7 pInt: 3008 pFloat: 7.06 anInt2: 1808 dInt1: 2408 dVar1: 2708 dpInt1: 308 cEL: cvec[2] pvInt: [170 171 172 173 174 175 176 ] pvFloat: [-0.424 -0.324 -0.224 -0.124 -0.024 0.076 0.176 ] dpvFloat: [0.760 0.761 0.762 0.763 0.764 0.765 0.766 ] -xAODTestReadCVe... INFO anInt1 609 aFloat: 1200.8 pInt: 3009 pFloat: 8.06 anInt2: 1809 dInt1: 2409 dVar1: 2709 dpInt1: 309 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 609 aFloat: 1200.8 pInt: 3009 pFloat: 8.06 anInt2: 1809 dInt1: 2409 dVar1: 2709 dpInt1: 309 cEL: cvec[1] pvInt: [180 181 182 183 184 185 186 187 ] pvFloat: [-0.414 -0.314 -0.214 -0.114 -0.014 0.086 0.186 0.286 ] dpvFloat: [0.860 0.861 0.862 0.863 0.864 0.865 0.866 0.867 ] -xAODTestReadCVe... INFO anInt1 610 aFloat: 1200.9 pInt: 3010 pFloat: 9.06 anInt2: 1810 dInt1: 2410 dVar1: 2710 dpInt1: 310 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 610 aFloat: 1200.9 pInt: 3010 pFloat: 9.06 anInt2: 1810 dInt1: 2410 dVar1: 2710 dpInt1: 310 cEL: cvec[0] pvInt: [190 191 192 193 194 195 196 197 198 ] pvFloat: [-0.404 -0.304 -0.204 -0.104 -0.004 0.096 0.196 0.296 0.396 ] dpvFloat: [0.960 0.961 0.962 0.963 0.964 0.965 0.966 0.967 0.968 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 6000 aFloat: 0.6 anInt2: 12000 dInt1: 18000 cEL: cvec[6] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 6000 aFloat: 0.6 anInt2: 12000 dInt1: 18000 cEL: cvec[6] xAODTestRead_copy INFO 5 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 3001 aFloat: 3600 anInt2: 4201 dInt1: 2881 @@ -597,9 +593,9 @@ xAODTestRead_copy INFO anInt1 3006 aFloat: 3600.5 anInt2: 4206 dInt1: 2886 xAODTestRead_copy INFO anInt1 3007 aFloat: 3600.6 anInt2: 4207 dInt1: 2887 xAODTestRead_copy INFO anInt1 3008 aFloat: 3600.7 anInt2: 4208 dInt1: 2888 xAODTestRead_copy INFO copy_cvecWD 1006: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 -xAODTestReadCVi... INFO copy_cview: 610 609 608 607 606 605 604 603 602 601 -xAODTestReadHVe... INFO copy_hvec: 2401.5 2402.5 2403.5 2404.5 2405.5 2406.5 2407.5 2408.5 2409.5 2410.5 2411.5 2412.5 2413.5 2414.5 2415.5 2416.5 2417.5 2418.5 2419.5 2420.5 -xAODTestReadHVe... INFO copy_hview: 2420.5 2419.5 2418.5 2417.5 2416.5 2415.5 2414.5 2413.5 2412.5 2411.5 2410.5 2409.5 2408.5 2407.5 2406.5 2405.5 2404.5 2403.5 2402.5 2401.5 +xAODTe...View_copy INFO copy_cview: 610 609 608 607 606 605 604 603 602 601 +xAODTe...HVec_copy INFO copy_hvec: 2401.5 2402.5 2403.5 2404.5 2405.5 2406.5 2407.5 2408.5 2409.5 2410.5 2411.5 2412.5 2413.5 2414.5 2415.5 2416.5 2417.5 2418.5 2419.5 2420.5 +xAODTe...HVec_copy INFO copy_hview: 2420.5 2419.5 2418.5 2417.5 2416.5 2415.5 2414.5 2413.5 2412.5 2411.5 2410.5 2409.5 2408.5 2407.5 2406.5 2405.5 2404.5 2403.5 2402.5 2401.5 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #0 5 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #6, run #0 5 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -670,60 +666,60 @@ xAODTestRead INFO cvecWD 1007: 1401 1402 1403 1404 1405 1406 1407 1408 1 xAODTestReadCView INFO cview: 710 709 708 707 706 705 704 703 702 701 xAODTestReadHVec INFO hvec: 2801.5 2802.5 2803.5 2804.5 2805.5 2806.5 2807.5 2808.5 2809.5 2810.5 2811.5 2812.5 2813.5 2814.5 2815.5 2816.5 2817.5 2818.5 2819.5 2820.5 xAODTestReadHVec INFO hview: 2820.5 2819.5 2818.5 2817.5 2816.5 2815.5 2814.5 2813.5 2812.5 2811.5 2810.5 2809.5 2808.5 2807.5 2806.5 2805.5 2804.5 2803.5 2802.5 2801.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 701 aFloat: 1400 pInt: 3501 pFloat: 0.07 anInt2: 2101 dInt1: 2801 dVar1: 3151 dpInt1: 351 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 701 aFloat: 1400 pInt: 3501 pFloat: 0.07 anInt2: 2101 dInt1: 2801 dVar1: 3151 dpInt1: 351 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 702 aFloat: 1400.1 pInt: 3502 pFloat: 1.07 anInt2: 2102 dInt1: 2802 dVar1: 3152 dpInt1: 352 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 702 aFloat: 1400.1 pInt: 3502 pFloat: 1.07 anInt2: 2102 dInt1: 2802 dVar1: 3152 dpInt1: 352 cEL: cvec[8] pvInt: [210 ] pvFloat: [-0.483 ] dpvFloat: [0.170 ] -xAODTestReadCVe... INFO anInt1 703 aFloat: 1400.2 pInt: 3503 pFloat: 2.07 anInt2: 2103 dInt1: 2803 dVar1: 3153 dpInt1: 353 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 703 aFloat: 1400.2 pInt: 3503 pFloat: 2.07 anInt2: 2103 dInt1: 2803 dVar1: 3153 dpInt1: 353 cEL: cvec[7] pvInt: [220 221 ] pvFloat: [-0.473 -0.373 ] dpvFloat: [0.270 0.271 ] -xAODTestReadCVe... INFO anInt1 704 aFloat: 1400.3 pInt: 3504 pFloat: 3.07 anInt2: 2104 dInt1: 2804 dVar1: 3154 dpInt1: 354 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 704 aFloat: 1400.3 pInt: 3504 pFloat: 3.07 anInt2: 2104 dInt1: 2804 dVar1: 3154 dpInt1: 354 cEL: cvec[6] pvInt: [230 231 232 ] pvFloat: [-0.463 -0.363 -0.263 ] dpvFloat: [0.370 0.371 0.372 ] -xAODTestReadCVe... INFO anInt1 705 aFloat: 1400.4 pInt: 3505 pFloat: 4.07 anInt2: 2105 dInt1: 2805 dVar1: 3155 dpInt1: 355 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 705 aFloat: 1400.4 pInt: 3505 pFloat: 4.07 anInt2: 2105 dInt1: 2805 dVar1: 3155 dpInt1: 355 cEL: cvec[5] pvInt: [240 241 242 243 ] pvFloat: [-0.453 -0.353 -0.253 -0.153 ] dpvFloat: [0.470 0.471 0.472 0.473 ] -xAODTestReadCVe... INFO anInt1 706 aFloat: 1400.5 pInt: 3506 pFloat: 5.07 anInt2: 2106 dInt1: 2806 dVar1: 3156 dpInt1: 356 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 706 aFloat: 1400.5 pInt: 3506 pFloat: 5.07 anInt2: 2106 dInt1: 2806 dVar1: 3156 dpInt1: 356 cEL: cvec[4] pvInt: [250 251 252 253 254 ] pvFloat: [-0.443 -0.343 -0.243 -0.143 -0.043 ] dpvFloat: [0.570 0.571 0.572 0.573 0.574 ] -xAODTestReadCVe... INFO anInt1 707 aFloat: 1400.6 pInt: 3507 pFloat: 6.07 anInt2: 2107 dInt1: 2807 dVar1: 3157 dpInt1: 357 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 707 aFloat: 1400.6 pInt: 3507 pFloat: 6.07 anInt2: 2107 dInt1: 2807 dVar1: 3157 dpInt1: 357 cEL: cvec[3] pvInt: [260 261 262 263 264 265 ] pvFloat: [-0.433 -0.333 -0.233 -0.133 -0.033 0.067 ] dpvFloat: [0.670 0.671 0.672 0.673 0.674 0.675 ] -xAODTestReadCVe... INFO anInt1 708 aFloat: 1400.7 pInt: 3508 pFloat: 7.07 anInt2: 2108 dInt1: 2808 dVar1: 3158 dpInt1: 358 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 708 aFloat: 1400.7 pInt: 3508 pFloat: 7.07 anInt2: 2108 dInt1: 2808 dVar1: 3158 dpInt1: 358 cEL: cvec[2] pvInt: [270 271 272 273 274 275 276 ] pvFloat: [-0.423 -0.323 -0.223 -0.123 -0.023 0.077 0.177 ] dpvFloat: [0.770 0.771 0.772 0.773 0.774 0.775 0.776 ] -xAODTestReadCVe... INFO anInt1 709 aFloat: 1400.8 pInt: 3509 pFloat: 8.07 anInt2: 2109 dInt1: 2809 dVar1: 3159 dpInt1: 359 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 709 aFloat: 1400.8 pInt: 3509 pFloat: 8.07 anInt2: 2109 dInt1: 2809 dVar1: 3159 dpInt1: 359 cEL: cvec[1] pvInt: [280 281 282 283 284 285 286 287 ] pvFloat: [-0.413 -0.313 -0.213 -0.113 -0.013 0.087 0.187 0.287 ] dpvFloat: [0.870 0.871 0.872 0.873 0.874 0.875 0.876 0.877 ] -xAODTestReadCVe... INFO anInt1 710 aFloat: 1400.9 pInt: 3510 pFloat: 9.07 anInt2: 2110 dInt1: 2810 dVar1: 3160 dpInt1: 360 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 710 aFloat: 1400.9 pInt: 3510 pFloat: 9.07 anInt2: 2110 dInt1: 2810 dVar1: 3160 dpInt1: 360 cEL: cvec[0] pvInt: [290 291 292 293 294 295 296 297 298 ] pvFloat: [-0.403 -0.303 -0.203 -0.103 -0.003 0.097 0.197 0.297 0.397 ] dpvFloat: [0.970 0.971 0.972 0.973 0.974 0.975 0.976 0.977 0.978 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 7000 aFloat: 0.7 anInt2: 14000 dInt1: 21000 cEL: cvec[7] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 7000 aFloat: 0.7 anInt2: 14000 dInt1: 21000 cEL: cvec[7] xAODTestRead_copy INFO 6 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 3501 aFloat: 4200 anInt2: 4901 dInt1: 3361 @@ -735,9 +731,9 @@ xAODTestRead_copy INFO anInt1 3506 aFloat: 4200.5 anInt2: 4906 dInt1: 3366 xAODTestRead_copy INFO anInt1 3507 aFloat: 4200.6 anInt2: 4907 dInt1: 3367 xAODTestRead_copy INFO anInt1 3508 aFloat: 4200.7 anInt2: 4908 dInt1: 3368 xAODTestRead_copy INFO copy_cvecWD 1007: 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 -xAODTestReadCVi... INFO copy_cview: 710 709 708 707 706 705 704 703 702 701 -xAODTestReadHVe... INFO copy_hvec: 2801.5 2802.5 2803.5 2804.5 2805.5 2806.5 2807.5 2808.5 2809.5 2810.5 2811.5 2812.5 2813.5 2814.5 2815.5 2816.5 2817.5 2818.5 2819.5 2820.5 -xAODTestReadHVe... INFO copy_hview: 2820.5 2819.5 2818.5 2817.5 2816.5 2815.5 2814.5 2813.5 2812.5 2811.5 2810.5 2809.5 2808.5 2807.5 2806.5 2805.5 2804.5 2803.5 2802.5 2801.5 +xAODTe...View_copy INFO copy_cview: 710 709 708 707 706 705 704 703 702 701 +xAODTe...HVec_copy INFO copy_hvec: 2801.5 2802.5 2803.5 2804.5 2805.5 2806.5 2807.5 2808.5 2809.5 2810.5 2811.5 2812.5 2813.5 2814.5 2815.5 2816.5 2817.5 2818.5 2819.5 2820.5 +xAODTe...HVec_copy INFO copy_hview: 2820.5 2819.5 2818.5 2817.5 2816.5 2815.5 2814.5 2813.5 2812.5 2811.5 2810.5 2809.5 2808.5 2807.5 2806.5 2805.5 2804.5 2803.5 2802.5 2801.5 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #0 6 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #7, run #0 6 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -808,60 +804,60 @@ xAODTestRead INFO cvecWD 1008: 1601 1602 1603 1604 1605 1606 1607 1608 1 xAODTestReadCView INFO cview: 810 809 808 807 806 805 804 803 802 801 xAODTestReadHVec INFO hvec: 3201.5 3202.5 3203.5 3204.5 3205.5 3206.5 3207.5 3208.5 3209.5 3210.5 3211.5 3212.5 3213.5 3214.5 3215.5 3216.5 3217.5 3218.5 3219.5 3220.5 xAODTestReadHVec INFO hview: 3220.5 3219.5 3218.5 3217.5 3216.5 3215.5 3214.5 3213.5 3212.5 3211.5 3210.5 3209.5 3208.5 3207.5 3206.5 3205.5 3204.5 3203.5 3202.5 3201.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 801 aFloat: 1600 pInt: 4001 pFloat: 0.08 anInt2: 2401 dInt1: 3201 dVar1: 3601 dpInt1: 401 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 801 aFloat: 1600 pInt: 4001 pFloat: 0.08 anInt2: 2401 dInt1: 3201 dVar1: 3601 dpInt1: 401 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 802 aFloat: 1600.1 pInt: 4002 pFloat: 1.08 anInt2: 2402 dInt1: 3202 dVar1: 3602 dpInt1: 402 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 802 aFloat: 1600.1 pInt: 4002 pFloat: 1.08 anInt2: 2402 dInt1: 3202 dVar1: 3602 dpInt1: 402 cEL: cvec[8] pvInt: [310 ] pvFloat: [-0.482 ] dpvFloat: [0.180 ] -xAODTestReadCVe... INFO anInt1 803 aFloat: 1600.2 pInt: 4003 pFloat: 2.08 anInt2: 2403 dInt1: 3203 dVar1: 3603 dpInt1: 403 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 803 aFloat: 1600.2 pInt: 4003 pFloat: 2.08 anInt2: 2403 dInt1: 3203 dVar1: 3603 dpInt1: 403 cEL: cvec[7] pvInt: [320 321 ] pvFloat: [-0.472 -0.372 ] dpvFloat: [0.280 0.281 ] -xAODTestReadCVe... INFO anInt1 804 aFloat: 1600.3 pInt: 4004 pFloat: 3.08 anInt2: 2404 dInt1: 3204 dVar1: 3604 dpInt1: 404 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 804 aFloat: 1600.3 pInt: 4004 pFloat: 3.08 anInt2: 2404 dInt1: 3204 dVar1: 3604 dpInt1: 404 cEL: cvec[6] pvInt: [330 331 332 ] pvFloat: [-0.462 -0.362 -0.262 ] dpvFloat: [0.380 0.381 0.382 ] -xAODTestReadCVe... INFO anInt1 805 aFloat: 1600.4 pInt: 4005 pFloat: 4.08 anInt2: 2405 dInt1: 3205 dVar1: 3605 dpInt1: 405 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 805 aFloat: 1600.4 pInt: 4005 pFloat: 4.08 anInt2: 2405 dInt1: 3205 dVar1: 3605 dpInt1: 405 cEL: cvec[5] pvInt: [340 341 342 343 ] pvFloat: [-0.452 -0.352 -0.252 -0.152 ] dpvFloat: [0.480 0.481 0.482 0.483 ] -xAODTestReadCVe... INFO anInt1 806 aFloat: 1600.5 pInt: 4006 pFloat: 5.08 anInt2: 2406 dInt1: 3206 dVar1: 3606 dpInt1: 406 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 806 aFloat: 1600.5 pInt: 4006 pFloat: 5.08 anInt2: 2406 dInt1: 3206 dVar1: 3606 dpInt1: 406 cEL: cvec[4] pvInt: [350 351 352 353 354 ] pvFloat: [-0.442 -0.342 -0.242 -0.142 -0.042 ] dpvFloat: [0.580 0.581 0.582 0.583 0.584 ] -xAODTestReadCVe... INFO anInt1 807 aFloat: 1600.6 pInt: 4007 pFloat: 6.08 anInt2: 2407 dInt1: 3207 dVar1: 3607 dpInt1: 407 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 807 aFloat: 1600.6 pInt: 4007 pFloat: 6.08 anInt2: 2407 dInt1: 3207 dVar1: 3607 dpInt1: 407 cEL: cvec[3] pvInt: [360 361 362 363 364 365 ] pvFloat: [-0.432 -0.332 -0.232 -0.132 -0.032 0.068 ] dpvFloat: [0.680 0.681 0.682 0.683 0.684 0.685 ] -xAODTestReadCVe... INFO anInt1 808 aFloat: 1600.7 pInt: 4008 pFloat: 7.08 anInt2: 2408 dInt1: 3208 dVar1: 3608 dpInt1: 408 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 808 aFloat: 1600.7 pInt: 4008 pFloat: 7.08 anInt2: 2408 dInt1: 3208 dVar1: 3608 dpInt1: 408 cEL: cvec[2] pvInt: [370 371 372 373 374 375 376 ] pvFloat: [-0.422 -0.322 -0.222 -0.122 -0.022 0.078 0.178 ] dpvFloat: [0.780 0.781 0.782 0.783 0.784 0.785 0.786 ] -xAODTestReadCVe... INFO anInt1 809 aFloat: 1600.8 pInt: 4009 pFloat: 8.08 anInt2: 2409 dInt1: 3209 dVar1: 3609 dpInt1: 409 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 809 aFloat: 1600.8 pInt: 4009 pFloat: 8.08 anInt2: 2409 dInt1: 3209 dVar1: 3609 dpInt1: 409 cEL: cvec[1] pvInt: [380 381 382 383 384 385 386 387 ] pvFloat: [-0.412 -0.312 -0.212 -0.112 -0.012 0.088 0.188 0.288 ] dpvFloat: [0.880 0.881 0.882 0.883 0.884 0.885 0.886 0.887 ] -xAODTestReadCVe... INFO anInt1 810 aFloat: 1600.9 pInt: 4010 pFloat: 9.08 anInt2: 2410 dInt1: 3210 dVar1: 3610 dpInt1: 410 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 810 aFloat: 1600.9 pInt: 4010 pFloat: 9.08 anInt2: 2410 dInt1: 3210 dVar1: 3610 dpInt1: 410 cEL: cvec[0] pvInt: [390 391 392 393 394 395 396 397 398 ] pvFloat: [-0.402 -0.302 -0.202 -0.102 -0.002 0.098 0.198 0.298 0.398 ] dpvFloat: [0.980 0.981 0.982 0.983 0.984 0.985 0.986 0.987 0.988 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 8000 aFloat: 0.8 anInt2: 16000 dInt1: 24000 cEL: cvec[8] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 8000 aFloat: 0.8 anInt2: 16000 dInt1: 24000 cEL: cvec[8] xAODTestRead_copy INFO 7 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 4001 aFloat: 4800 anInt2: 5601 dInt1: 3841 @@ -873,9 +869,9 @@ xAODTestRead_copy INFO anInt1 4006 aFloat: 4800.5 anInt2: 5606 dInt1: 3846 xAODTestRead_copy INFO anInt1 4007 aFloat: 4800.6 anInt2: 5607 dInt1: 3847 xAODTestRead_copy INFO anInt1 4008 aFloat: 4800.7 anInt2: 5608 dInt1: 3848 xAODTestRead_copy INFO copy_cvecWD 1008: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 -xAODTestReadCVi... INFO copy_cview: 810 809 808 807 806 805 804 803 802 801 -xAODTestReadHVe... INFO copy_hvec: 3201.5 3202.5 3203.5 3204.5 3205.5 3206.5 3207.5 3208.5 3209.5 3210.5 3211.5 3212.5 3213.5 3214.5 3215.5 3216.5 3217.5 3218.5 3219.5 3220.5 -xAODTestReadHVe... INFO copy_hview: 3220.5 3219.5 3218.5 3217.5 3216.5 3215.5 3214.5 3213.5 3212.5 3211.5 3210.5 3209.5 3208.5 3207.5 3206.5 3205.5 3204.5 3203.5 3202.5 3201.5 +xAODTe...View_copy INFO copy_cview: 810 809 808 807 806 805 804 803 802 801 +xAODTe...HVec_copy INFO copy_hvec: 3201.5 3202.5 3203.5 3204.5 3205.5 3206.5 3207.5 3208.5 3209.5 3210.5 3211.5 3212.5 3213.5 3214.5 3215.5 3216.5 3217.5 3218.5 3219.5 3220.5 +xAODTe...HVec_copy INFO copy_hview: 3220.5 3219.5 3218.5 3217.5 3216.5 3215.5 3214.5 3213.5 3212.5 3211.5 3210.5 3209.5 3208.5 3207.5 3206.5 3205.5 3204.5 3203.5 3202.5 3201.5 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #0 7 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #8, run #0 7 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -946,60 +942,60 @@ xAODTestRead INFO cvecWD 1009: 1801 1802 1803 1804 1805 1806 1807 1808 1 xAODTestReadCView INFO cview: 910 909 908 907 906 905 904 903 902 901 xAODTestReadHVec INFO hvec: 3601.5 3602.5 3603.5 3604.5 3605.5 3606.5 3607.5 3608.5 3609.5 3610.5 3611.5 3612.5 3613.5 3614.5 3615.5 3616.5 3617.5 3618.5 3619.5 3620.5 xAODTestReadHVec INFO hview: 3620.5 3619.5 3618.5 3617.5 3616.5 3615.5 3614.5 3613.5 3612.5 3611.5 3610.5 3609.5 3608.5 3607.5 3606.5 3605.5 3604.5 3603.5 3602.5 3601.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 901 aFloat: 1800 pInt: 4501 pFloat: 0.09 anInt2: 2701 dInt1: 3601 dVar1: 4051 dpInt1: 451 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 901 aFloat: 1800 pInt: 4501 pFloat: 0.09 anInt2: 2701 dInt1: 3601 dVar1: 4051 dpInt1: 451 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 902 aFloat: 1800.1 pInt: 4502 pFloat: 1.09 anInt2: 2702 dInt1: 3602 dVar1: 4052 dpInt1: 452 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 902 aFloat: 1800.1 pInt: 4502 pFloat: 1.09 anInt2: 2702 dInt1: 3602 dVar1: 4052 dpInt1: 452 cEL: cvec[8] pvInt: [410 ] pvFloat: [-0.481 ] dpvFloat: [0.190 ] -xAODTestReadCVe... INFO anInt1 903 aFloat: 1800.2 pInt: 4503 pFloat: 2.09 anInt2: 2703 dInt1: 3603 dVar1: 4053 dpInt1: 453 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 903 aFloat: 1800.2 pInt: 4503 pFloat: 2.09 anInt2: 2703 dInt1: 3603 dVar1: 4053 dpInt1: 453 cEL: cvec[7] pvInt: [420 421 ] pvFloat: [-0.471 -0.371 ] dpvFloat: [0.290 0.291 ] -xAODTestReadCVe... INFO anInt1 904 aFloat: 1800.3 pInt: 4504 pFloat: 3.09 anInt2: 2704 dInt1: 3604 dVar1: 4054 dpInt1: 454 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 904 aFloat: 1800.3 pInt: 4504 pFloat: 3.09 anInt2: 2704 dInt1: 3604 dVar1: 4054 dpInt1: 454 cEL: cvec[6] pvInt: [430 431 432 ] pvFloat: [-0.461 -0.361 -0.261 ] dpvFloat: [0.390 0.391 0.392 ] -xAODTestReadCVe... INFO anInt1 905 aFloat: 1800.4 pInt: 4505 pFloat: 4.09 anInt2: 2705 dInt1: 3605 dVar1: 4055 dpInt1: 455 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 905 aFloat: 1800.4 pInt: 4505 pFloat: 4.09 anInt2: 2705 dInt1: 3605 dVar1: 4055 dpInt1: 455 cEL: cvec[5] pvInt: [440 441 442 443 ] pvFloat: [-0.451 -0.351 -0.251 -0.151 ] dpvFloat: [0.490 0.491 0.492 0.493 ] -xAODTestReadCVe... INFO anInt1 906 aFloat: 1800.5 pInt: 4506 pFloat: 5.09 anInt2: 2706 dInt1: 3606 dVar1: 4056 dpInt1: 456 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 906 aFloat: 1800.5 pInt: 4506 pFloat: 5.09 anInt2: 2706 dInt1: 3606 dVar1: 4056 dpInt1: 456 cEL: cvec[4] pvInt: [450 451 452 453 454 ] pvFloat: [-0.441 -0.341 -0.241 -0.141 -0.041 ] dpvFloat: [0.590 0.591 0.592 0.593 0.594 ] -xAODTestReadCVe... INFO anInt1 907 aFloat: 1800.6 pInt: 4507 pFloat: 6.09 anInt2: 2707 dInt1: 3607 dVar1: 4057 dpInt1: 457 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 907 aFloat: 1800.6 pInt: 4507 pFloat: 6.09 anInt2: 2707 dInt1: 3607 dVar1: 4057 dpInt1: 457 cEL: cvec[3] pvInt: [460 461 462 463 464 465 ] pvFloat: [-0.431 -0.331 -0.231 -0.131 -0.031 0.069 ] dpvFloat: [0.690 0.691 0.692 0.693 0.694 0.695 ] -xAODTestReadCVe... INFO anInt1 908 aFloat: 1800.7 pInt: 4508 pFloat: 7.09 anInt2: 2708 dInt1: 3608 dVar1: 4058 dpInt1: 458 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 908 aFloat: 1800.7 pInt: 4508 pFloat: 7.09 anInt2: 2708 dInt1: 3608 dVar1: 4058 dpInt1: 458 cEL: cvec[2] pvInt: [470 471 472 473 474 475 476 ] pvFloat: [-0.421 -0.321 -0.221 -0.121 -0.021 0.079 0.179 ] dpvFloat: [0.790 0.791 0.792 0.793 0.794 0.795 0.796 ] -xAODTestReadCVe... INFO anInt1 909 aFloat: 1800.8 pInt: 4509 pFloat: 8.09 anInt2: 2709 dInt1: 3609 dVar1: 4059 dpInt1: 459 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 909 aFloat: 1800.8 pInt: 4509 pFloat: 8.09 anInt2: 2709 dInt1: 3609 dVar1: 4059 dpInt1: 459 cEL: cvec[1] pvInt: [480 481 482 483 484 485 486 487 ] pvFloat: [-0.411 -0.311 -0.211 -0.111 -0.011 0.089 0.189 0.289 ] dpvFloat: [0.890 0.891 0.892 0.893 0.894 0.895 0.896 0.897 ] -xAODTestReadCVe... INFO anInt1 910 aFloat: 1800.9 pInt: 4510 pFloat: 9.09 anInt2: 2710 dInt1: 3610 dVar1: 4060 dpInt1: 460 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 910 aFloat: 1800.9 pInt: 4510 pFloat: 9.09 anInt2: 2710 dInt1: 3610 dVar1: 4060 dpInt1: 460 cEL: cvec[0] pvInt: [490 491 492 493 494 495 496 497 498 ] pvFloat: [-0.401 -0.301 -0.201 -0.101 -0.001 0.099 0.199 0.299 0.399 ] dpvFloat: [0.990 0.991 0.992 0.993 0.994 0.995 0.996 0.997 0.998 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 9000 aFloat: 0.9 anInt2: 18000 dInt1: 27000 cEL: cvec[9] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 9000 aFloat: 0.9 anInt2: 18000 dInt1: 27000 cEL: cvec[9] xAODTestRead_copy INFO 8 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 4501 aFloat: 5400 anInt2: 6301 dInt1: 4321 @@ -1011,9 +1007,9 @@ xAODTestRead_copy INFO anInt1 4506 aFloat: 5400.5 anInt2: 6306 dInt1: 4326 xAODTestRead_copy INFO anInt1 4507 aFloat: 5400.6 anInt2: 6307 dInt1: 4327 xAODTestRead_copy INFO anInt1 4508 aFloat: 5400.7 anInt2: 6308 dInt1: 4328 xAODTestRead_copy INFO copy_cvecWD 1009: 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 -xAODTestReadCVi... INFO copy_cview: 910 909 908 907 906 905 904 903 902 901 -xAODTestReadHVe... INFO copy_hvec: 3601.5 3602.5 3603.5 3604.5 3605.5 3606.5 3607.5 3608.5 3609.5 3610.5 3611.5 3612.5 3613.5 3614.5 3615.5 3616.5 3617.5 3618.5 3619.5 3620.5 -xAODTestReadHVe... INFO copy_hview: 3620.5 3619.5 3618.5 3617.5 3616.5 3615.5 3614.5 3613.5 3612.5 3611.5 3610.5 3609.5 3608.5 3607.5 3606.5 3605.5 3604.5 3603.5 3602.5 3601.5 +xAODTe...View_copy INFO copy_cview: 910 909 908 907 906 905 904 903 902 901 +xAODTe...HVec_copy INFO copy_hvec: 3601.5 3602.5 3603.5 3604.5 3605.5 3606.5 3607.5 3608.5 3609.5 3610.5 3611.5 3612.5 3613.5 3614.5 3615.5 3616.5 3617.5 3618.5 3619.5 3620.5 +xAODTe...HVec_copy INFO copy_hview: 3620.5 3619.5 3618.5 3617.5 3616.5 3615.5 3614.5 3613.5 3612.5 3611.5 3610.5 3609.5 3608.5 3607.5 3606.5 3605.5 3604.5 3603.5 3602.5 3601.5 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #0 8 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #9, run #0 8 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1084,60 +1080,60 @@ xAODTestRead INFO cvecWD 1010: 2001 2002 2003 2004 2005 2006 2007 2008 2 xAODTestReadCView INFO cview: 1010 1009 1008 1007 1006 1005 1004 1003 1002 1001 xAODTestReadHVec INFO hvec: 4001.5 4002.5 4003.5 4004.5 4005.5 4006.5 4007.5 4008.5 4009.5 4010.5 4011.5 4012.5 4013.5 4014.5 4015.5 4016.5 4017.5 4018.5 4019.5 4020.5 xAODTestReadHVec INFO hview: 4020.5 4019.5 4018.5 4017.5 4016.5 4015.5 4014.5 4013.5 4012.5 4011.5 4010.5 4009.5 4008.5 4007.5 4006.5 4005.5 4004.5 4003.5 4002.5 4001.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1001 aFloat: 2000 pInt: 5001 pFloat: 0.10 anInt2: 3001 dInt1: 4001 dVar1: 4501 dpInt1: 501 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1001 aFloat: 2000 pInt: 5001 pFloat: 0.10 anInt2: 3001 dInt1: 4001 dVar1: 4501 dpInt1: 501 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1002 aFloat: 2000.1 pInt: 5002 pFloat: 1.10 anInt2: 3002 dInt1: 4002 dVar1: 4502 dpInt1: 502 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1002 aFloat: 2000.1 pInt: 5002 pFloat: 1.10 anInt2: 3002 dInt1: 4002 dVar1: 4502 dpInt1: 502 cEL: cvec[8] pvInt: [510 ] pvFloat: [-0.480 ] dpvFloat: [0.200 ] -xAODTestReadCVe... INFO anInt1 1003 aFloat: 2000.2 pInt: 5003 pFloat: 2.10 anInt2: 3003 dInt1: 4003 dVar1: 4503 dpInt1: 503 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1003 aFloat: 2000.2 pInt: 5003 pFloat: 2.10 anInt2: 3003 dInt1: 4003 dVar1: 4503 dpInt1: 503 cEL: cvec[7] pvInt: [520 521 ] pvFloat: [-0.470 -0.370 ] dpvFloat: [0.300 0.301 ] -xAODTestReadCVe... INFO anInt1 1004 aFloat: 2000.3 pInt: 5004 pFloat: 3.10 anInt2: 3004 dInt1: 4004 dVar1: 4504 dpInt1: 504 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1004 aFloat: 2000.3 pInt: 5004 pFloat: 3.10 anInt2: 3004 dInt1: 4004 dVar1: 4504 dpInt1: 504 cEL: cvec[6] pvInt: [530 531 532 ] pvFloat: [-0.460 -0.360 -0.260 ] dpvFloat: [0.400 0.401 0.402 ] -xAODTestReadCVe... INFO anInt1 1005 aFloat: 2000.4 pInt: 5005 pFloat: 4.10 anInt2: 3005 dInt1: 4005 dVar1: 4505 dpInt1: 505 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1005 aFloat: 2000.4 pInt: 5005 pFloat: 4.10 anInt2: 3005 dInt1: 4005 dVar1: 4505 dpInt1: 505 cEL: cvec[5] pvInt: [540 541 542 543 ] pvFloat: [-0.450 -0.350 -0.250 -0.150 ] dpvFloat: [0.500 0.501 0.502 0.503 ] -xAODTestReadCVe... INFO anInt1 1006 aFloat: 2000.5 pInt: 5006 pFloat: 5.10 anInt2: 3006 dInt1: 4006 dVar1: 4506 dpInt1: 506 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1006 aFloat: 2000.5 pInt: 5006 pFloat: 5.10 anInt2: 3006 dInt1: 4006 dVar1: 4506 dpInt1: 506 cEL: cvec[4] pvInt: [550 551 552 553 554 ] pvFloat: [-0.440 -0.340 -0.240 -0.140 -0.040 ] dpvFloat: [0.600 0.601 0.602 0.603 0.604 ] -xAODTestReadCVe... INFO anInt1 1007 aFloat: 2000.6 pInt: 5007 pFloat: 6.10 anInt2: 3007 dInt1: 4007 dVar1: 4507 dpInt1: 507 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1007 aFloat: 2000.6 pInt: 5007 pFloat: 6.10 anInt2: 3007 dInt1: 4007 dVar1: 4507 dpInt1: 507 cEL: cvec[3] pvInt: [560 561 562 563 564 565 ] pvFloat: [-0.430 -0.330 -0.230 -0.130 -0.030 0.070 ] dpvFloat: [0.700 0.701 0.702 0.703 0.704 0.705 ] -xAODTestReadCVe... INFO anInt1 1008 aFloat: 2000.7 pInt: 5008 pFloat: 7.10 anInt2: 3008 dInt1: 4008 dVar1: 4508 dpInt1: 508 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1008 aFloat: 2000.7 pInt: 5008 pFloat: 7.10 anInt2: 3008 dInt1: 4008 dVar1: 4508 dpInt1: 508 cEL: cvec[2] pvInt: [570 571 572 573 574 575 576 ] pvFloat: [-0.420 -0.320 -0.220 -0.120 -0.020 0.080 0.180 ] dpvFloat: [0.800 0.801 0.802 0.803 0.804 0.805 0.806 ] -xAODTestReadCVe... INFO anInt1 1009 aFloat: 2000.8 pInt: 5009 pFloat: 8.10 anInt2: 3009 dInt1: 4009 dVar1: 4509 dpInt1: 509 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1009 aFloat: 2000.8 pInt: 5009 pFloat: 8.10 anInt2: 3009 dInt1: 4009 dVar1: 4509 dpInt1: 509 cEL: cvec[1] pvInt: [580 581 582 583 584 585 586 587 ] pvFloat: [-0.410 -0.310 -0.210 -0.110 -0.010 0.090 0.190 0.290 ] dpvFloat: [0.900 0.901 0.902 0.903 0.904 0.905 0.906 0.907 ] -xAODTestReadCVe... INFO anInt1 1010 aFloat: 2000.9 pInt: 5010 pFloat: 9.10 anInt2: 3010 dInt1: 4010 dVar1: 4510 dpInt1: 510 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1010 aFloat: 2000.9 pInt: 5010 pFloat: 9.10 anInt2: 3010 dInt1: 4010 dVar1: 4510 dpInt1: 510 cEL: cvec[0] pvInt: [590 591 592 593 594 595 596 597 598 ] pvFloat: [-0.400 -0.300 -0.200 -0.100 0.000 0.100 0.200 0.300 0.400 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 10000 aFloat: 1 anInt2: 20000 dInt1: 30000 cEL: cvec[0] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 10000 aFloat: 1 anInt2: 20000 dInt1: 30000 cEL: cvec[0] xAODTestRead_copy INFO 9 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 5001 aFloat: 6000 anInt2: 7001 dInt1: 4801 @@ -1149,9 +1145,9 @@ xAODTestRead_copy INFO anInt1 5006 aFloat: 6000.5 anInt2: 7006 dInt1: 4806 xAODTestRead_copy INFO anInt1 5007 aFloat: 6000.6 anInt2: 7007 dInt1: 4807 xAODTestRead_copy INFO anInt1 5008 aFloat: 6000.7 anInt2: 7008 dInt1: 4808 xAODTestRead_copy INFO copy_cvecWD 1010: 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 -xAODTestReadCVi... INFO copy_cview: 1010 1009 1008 1007 1006 1005 1004 1003 1002 1001 -xAODTestReadHVe... INFO copy_hvec: 4001.5 4002.5 4003.5 4004.5 4005.5 4006.5 4007.5 4008.5 4009.5 4010.5 4011.5 4012.5 4013.5 4014.5 4015.5 4016.5 4017.5 4018.5 4019.5 4020.5 -xAODTestReadHVe... INFO copy_hview: 4020.5 4019.5 4018.5 4017.5 4016.5 4015.5 4014.5 4013.5 4012.5 4011.5 4010.5 4009.5 4008.5 4007.5 4006.5 4005.5 4004.5 4003.5 4002.5 4001.5 +xAODTe...View_copy INFO copy_cview: 1010 1009 1008 1007 1006 1005 1004 1003 1002 1001 +xAODTe...HVec_copy INFO copy_hvec: 4001.5 4002.5 4003.5 4004.5 4005.5 4006.5 4007.5 4008.5 4009.5 4010.5 4011.5 4012.5 4013.5 4014.5 4015.5 4016.5 4017.5 4018.5 4019.5 4020.5 +xAODTe...HVec_copy INFO copy_hview: 4020.5 4019.5 4018.5 4017.5 4016.5 4015.5 4014.5 4013.5 4012.5 4011.5 4010.5 4009.5 4008.5 4007.5 4006.5 4005.5 4004.5 4003.5 4002.5 4001.5 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #0 9 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #10, run #0 9 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1222,60 +1218,60 @@ xAODTestRead INFO cvecWD 1011: 2201 2202 2203 2204 2205 2206 2207 2208 2 xAODTestReadCView INFO cview: 1110 1109 1108 1107 1106 1105 1104 1103 1102 1101 xAODTestReadHVec INFO hvec: 4401.5 4402.5 4403.5 4404.5 4405.5 4406.5 4407.5 4408.5 4409.5 4410.5 4411.5 4412.5 4413.5 4414.5 4415.5 4416.5 4417.5 4418.5 4419.5 4420.5 xAODTestReadHVec INFO hview: 4420.5 4419.5 4418.5 4417.5 4416.5 4415.5 4414.5 4413.5 4412.5 4411.5 4410.5 4409.5 4408.5 4407.5 4406.5 4405.5 4404.5 4403.5 4402.5 4401.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1101 aFloat: 2200 pInt: 5501 pFloat: 0.11 anInt2: 3301 dInt1: 4401 dVar1: 4951 dpInt1: 551 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1101 aFloat: 2200 pInt: 5501 pFloat: 0.11 anInt2: 3301 dInt1: 4401 dVar1: 4951 dpInt1: 551 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1102 aFloat: 2200.1 pInt: 5502 pFloat: 1.11 anInt2: 3302 dInt1: 4402 dVar1: 4952 dpInt1: 552 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1102 aFloat: 2200.1 pInt: 5502 pFloat: 1.11 anInt2: 3302 dInt1: 4402 dVar1: 4952 dpInt1: 552 cEL: cvec[8] pvInt: [610 ] pvFloat: [-0.479 ] dpvFloat: [0.210 ] -xAODTestReadCVe... INFO anInt1 1103 aFloat: 2200.2 pInt: 5503 pFloat: 2.11 anInt2: 3303 dInt1: 4403 dVar1: 4953 dpInt1: 553 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1103 aFloat: 2200.2 pInt: 5503 pFloat: 2.11 anInt2: 3303 dInt1: 4403 dVar1: 4953 dpInt1: 553 cEL: cvec[7] pvInt: [620 621 ] pvFloat: [-0.469 -0.369 ] dpvFloat: [0.310 0.311 ] -xAODTestReadCVe... INFO anInt1 1104 aFloat: 2200.3 pInt: 5504 pFloat: 3.11 anInt2: 3304 dInt1: 4404 dVar1: 4954 dpInt1: 554 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1104 aFloat: 2200.3 pInt: 5504 pFloat: 3.11 anInt2: 3304 dInt1: 4404 dVar1: 4954 dpInt1: 554 cEL: cvec[6] pvInt: [630 631 632 ] pvFloat: [-0.459 -0.359 -0.259 ] dpvFloat: [0.410 0.411 0.412 ] -xAODTestReadCVe... INFO anInt1 1105 aFloat: 2200.4 pInt: 5505 pFloat: 4.11 anInt2: 3305 dInt1: 4405 dVar1: 4955 dpInt1: 555 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1105 aFloat: 2200.4 pInt: 5505 pFloat: 4.11 anInt2: 3305 dInt1: 4405 dVar1: 4955 dpInt1: 555 cEL: cvec[5] pvInt: [640 641 642 643 ] pvFloat: [-0.449 -0.349 -0.249 -0.149 ] dpvFloat: [0.510 0.511 0.512 0.513 ] -xAODTestReadCVe... INFO anInt1 1106 aFloat: 2200.5 pInt: 5506 pFloat: 5.11 anInt2: 3306 dInt1: 4406 dVar1: 4956 dpInt1: 556 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1106 aFloat: 2200.5 pInt: 5506 pFloat: 5.11 anInt2: 3306 dInt1: 4406 dVar1: 4956 dpInt1: 556 cEL: cvec[4] pvInt: [650 651 652 653 654 ] pvFloat: [-0.439 -0.339 -0.239 -0.139 -0.039 ] dpvFloat: [0.610 0.611 0.612 0.613 0.614 ] -xAODTestReadCVe... INFO anInt1 1107 aFloat: 2200.6 pInt: 5507 pFloat: 6.11 anInt2: 3307 dInt1: 4407 dVar1: 4957 dpInt1: 557 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1107 aFloat: 2200.6 pInt: 5507 pFloat: 6.11 anInt2: 3307 dInt1: 4407 dVar1: 4957 dpInt1: 557 cEL: cvec[3] pvInt: [660 661 662 663 664 665 ] pvFloat: [-0.429 -0.329 -0.229 -0.129 -0.029 0.071 ] dpvFloat: [0.710 0.711 0.712 0.713 0.714 0.715 ] -xAODTestReadCVe... INFO anInt1 1108 aFloat: 2200.7 pInt: 5508 pFloat: 7.11 anInt2: 3308 dInt1: 4408 dVar1: 4958 dpInt1: 558 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1108 aFloat: 2200.7 pInt: 5508 pFloat: 7.11 anInt2: 3308 dInt1: 4408 dVar1: 4958 dpInt1: 558 cEL: cvec[2] pvInt: [670 671 672 673 674 675 676 ] pvFloat: [-0.419 -0.319 -0.219 -0.119 -0.019 0.081 0.181 ] dpvFloat: [0.810 0.811 0.812 0.813 0.814 0.815 0.816 ] -xAODTestReadCVe... INFO anInt1 1109 aFloat: 2200.8 pInt: 5509 pFloat: 8.11 anInt2: 3309 dInt1: 4409 dVar1: 4959 dpInt1: 559 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1109 aFloat: 2200.8 pInt: 5509 pFloat: 8.11 anInt2: 3309 dInt1: 4409 dVar1: 4959 dpInt1: 559 cEL: cvec[1] pvInt: [680 681 682 683 684 685 686 687 ] pvFloat: [-0.409 -0.309 -0.209 -0.109 -0.009 0.091 0.191 0.291 ] dpvFloat: [0.910 0.911 0.912 0.913 0.914 0.915 0.916 0.917 ] -xAODTestReadCVe... INFO anInt1 1110 aFloat: 2200.9 pInt: 5510 pFloat: 9.11 anInt2: 3310 dInt1: 4410 dVar1: 4960 dpInt1: 560 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1110 aFloat: 2200.9 pInt: 5510 pFloat: 9.11 anInt2: 3310 dInt1: 4410 dVar1: 4960 dpInt1: 560 cEL: cvec[0] pvInt: [690 691 692 693 694 695 696 697 698 ] pvFloat: [-0.399 -0.299 -0.199 -0.099 0.001 0.101 0.201 0.301 0.401 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 11000 aFloat: 1.1 anInt2: 22000 dInt1: 33000 cEL: cvec[1] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 11000 aFloat: 1.1 anInt2: 22000 dInt1: 33000 cEL: cvec[1] xAODTestRead_copy INFO 10 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 5501 aFloat: 6600 anInt2: 7701 dInt1: 5281 @@ -1287,9 +1283,9 @@ xAODTestRead_copy INFO anInt1 5506 aFloat: 6600.5 anInt2: 7706 dInt1: 5286 xAODTestRead_copy INFO anInt1 5507 aFloat: 6600.6 anInt2: 7707 dInt1: 5287 xAODTestRead_copy INFO anInt1 5508 aFloat: 6600.7 anInt2: 7708 dInt1: 5288 xAODTestRead_copy INFO copy_cvecWD 1011: 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 -xAODTestReadCVi... INFO copy_cview: 1110 1109 1108 1107 1106 1105 1104 1103 1102 1101 -xAODTestReadHVe... INFO copy_hvec: 4401.5 4402.5 4403.5 4404.5 4405.5 4406.5 4407.5 4408.5 4409.5 4410.5 4411.5 4412.5 4413.5 4414.5 4415.5 4416.5 4417.5 4418.5 4419.5 4420.5 -xAODTestReadHVe... INFO copy_hview: 4420.5 4419.5 4418.5 4417.5 4416.5 4415.5 4414.5 4413.5 4412.5 4411.5 4410.5 4409.5 4408.5 4407.5 4406.5 4405.5 4404.5 4403.5 4402.5 4401.5 +xAODTe...View_copy INFO copy_cview: 1110 1109 1108 1107 1106 1105 1104 1103 1102 1101 +xAODTe...HVec_copy INFO copy_hvec: 4401.5 4402.5 4403.5 4404.5 4405.5 4406.5 4407.5 4408.5 4409.5 4410.5 4411.5 4412.5 4413.5 4414.5 4415.5 4416.5 4417.5 4418.5 4419.5 4420.5 +xAODTe...HVec_copy INFO copy_hview: 4420.5 4419.5 4418.5 4417.5 4416.5 4415.5 4414.5 4413.5 4412.5 4411.5 4410.5 4409.5 4408.5 4407.5 4406.5 4405.5 4404.5 4403.5 4402.5 4401.5 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #0 10 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #11, run #0 10 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1360,60 +1356,60 @@ xAODTestRead INFO cvecWD 1012: 2401 2402 2403 2404 2405 2406 2407 2408 2 xAODTestReadCView INFO cview: 1210 1209 1208 1207 1206 1205 1204 1203 1202 1201 xAODTestReadHVec INFO hvec: 4801.5 4802.5 4803.5 4804.5 4805.5 4806.5 4807.5 4808.5 4809.5 4810.5 4811.5 4812.5 4813.5 4814.5 4815.5 4816.5 4817.5 4818.5 4819.5 4820.5 xAODTestReadHVec INFO hview: 4820.5 4819.5 4818.5 4817.5 4816.5 4815.5 4814.5 4813.5 4812.5 4811.5 4810.5 4809.5 4808.5 4807.5 4806.5 4805.5 4804.5 4803.5 4802.5 4801.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1201 aFloat: 2400 pInt: 6001 pFloat: 0.12 anInt2: 3601 dInt1: 4801 dVar1: 5401 dpInt1: 601 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1201 aFloat: 2400 pInt: 6001 pFloat: 0.12 anInt2: 3601 dInt1: 4801 dVar1: 5401 dpInt1: 601 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1202 aFloat: 2400.1 pInt: 6002 pFloat: 1.12 anInt2: 3602 dInt1: 4802 dVar1: 5402 dpInt1: 602 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1202 aFloat: 2400.1 pInt: 6002 pFloat: 1.12 anInt2: 3602 dInt1: 4802 dVar1: 5402 dpInt1: 602 cEL: cvec[8] pvInt: [710 ] pvFloat: [-0.478 ] dpvFloat: [0.220 ] -xAODTestReadCVe... INFO anInt1 1203 aFloat: 2400.2 pInt: 6003 pFloat: 2.12 anInt2: 3603 dInt1: 4803 dVar1: 5403 dpInt1: 603 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1203 aFloat: 2400.2 pInt: 6003 pFloat: 2.12 anInt2: 3603 dInt1: 4803 dVar1: 5403 dpInt1: 603 cEL: cvec[7] pvInt: [720 721 ] pvFloat: [-0.468 -0.368 ] dpvFloat: [0.320 0.321 ] -xAODTestReadCVe... INFO anInt1 1204 aFloat: 2400.3 pInt: 6004 pFloat: 3.12 anInt2: 3604 dInt1: 4804 dVar1: 5404 dpInt1: 604 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1204 aFloat: 2400.3 pInt: 6004 pFloat: 3.12 anInt2: 3604 dInt1: 4804 dVar1: 5404 dpInt1: 604 cEL: cvec[6] pvInt: [730 731 732 ] pvFloat: [-0.458 -0.358 -0.258 ] dpvFloat: [0.420 0.421 0.422 ] -xAODTestReadCVe... INFO anInt1 1205 aFloat: 2400.4 pInt: 6005 pFloat: 4.12 anInt2: 3605 dInt1: 4805 dVar1: 5405 dpInt1: 605 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1205 aFloat: 2400.4 pInt: 6005 pFloat: 4.12 anInt2: 3605 dInt1: 4805 dVar1: 5405 dpInt1: 605 cEL: cvec[5] pvInt: [740 741 742 743 ] pvFloat: [-0.448 -0.348 -0.248 -0.148 ] dpvFloat: [0.520 0.521 0.522 0.523 ] -xAODTestReadCVe... INFO anInt1 1206 aFloat: 2400.5 pInt: 6006 pFloat: 5.12 anInt2: 3606 dInt1: 4806 dVar1: 5406 dpInt1: 606 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1206 aFloat: 2400.5 pInt: 6006 pFloat: 5.12 anInt2: 3606 dInt1: 4806 dVar1: 5406 dpInt1: 606 cEL: cvec[4] pvInt: [750 751 752 753 754 ] pvFloat: [-0.438 -0.338 -0.238 -0.138 -0.038 ] dpvFloat: [0.620 0.621 0.622 0.623 0.624 ] -xAODTestReadCVe... INFO anInt1 1207 aFloat: 2400.6 pInt: 6007 pFloat: 6.12 anInt2: 3607 dInt1: 4807 dVar1: 5407 dpInt1: 607 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1207 aFloat: 2400.6 pInt: 6007 pFloat: 6.12 anInt2: 3607 dInt1: 4807 dVar1: 5407 dpInt1: 607 cEL: cvec[3] pvInt: [760 761 762 763 764 765 ] pvFloat: [-0.428 -0.328 -0.228 -0.128 -0.028 0.072 ] dpvFloat: [0.720 0.721 0.722 0.723 0.724 0.725 ] -xAODTestReadCVe... INFO anInt1 1208 aFloat: 2400.7 pInt: 6008 pFloat: 7.12 anInt2: 3608 dInt1: 4808 dVar1: 5408 dpInt1: 608 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1208 aFloat: 2400.7 pInt: 6008 pFloat: 7.12 anInt2: 3608 dInt1: 4808 dVar1: 5408 dpInt1: 608 cEL: cvec[2] pvInt: [770 771 772 773 774 775 776 ] pvFloat: [-0.418 -0.318 -0.218 -0.118 -0.018 0.082 0.182 ] dpvFloat: [0.820 0.821 0.822 0.823 0.824 0.825 0.826 ] -xAODTestReadCVe... INFO anInt1 1209 aFloat: 2400.8 pInt: 6009 pFloat: 8.12 anInt2: 3609 dInt1: 4809 dVar1: 5409 dpInt1: 609 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1209 aFloat: 2400.8 pInt: 6009 pFloat: 8.12 anInt2: 3609 dInt1: 4809 dVar1: 5409 dpInt1: 609 cEL: cvec[1] pvInt: [780 781 782 783 784 785 786 787 ] pvFloat: [-0.408 -0.308 -0.208 -0.108 -0.008 0.092 0.192 0.292 ] dpvFloat: [0.920 0.921 0.922 0.923 0.924 0.925 0.926 0.927 ] -xAODTestReadCVe... INFO anInt1 1210 aFloat: 2400.9 pInt: 6010 pFloat: 9.12 anInt2: 3610 dInt1: 4810 dVar1: 5410 dpInt1: 610 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1210 aFloat: 2400.9 pInt: 6010 pFloat: 9.12 anInt2: 3610 dInt1: 4810 dVar1: 5410 dpInt1: 610 cEL: cvec[0] pvInt: [790 791 792 793 794 795 796 797 798 ] pvFloat: [-0.398 -0.298 -0.198 -0.098 0.002 0.102 0.202 0.302 0.402 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 12000 aFloat: 1.2 anInt2: 24000 dInt1: 36000 cEL: cvec[2] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 12000 aFloat: 1.2 anInt2: 24000 dInt1: 36000 cEL: cvec[2] xAODTestRead_copy INFO 11 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 6001 aFloat: 7200 anInt2: 8401 dInt1: 5761 @@ -1425,9 +1421,9 @@ xAODTestRead_copy INFO anInt1 6006 aFloat: 7200.5 anInt2: 8406 dInt1: 5766 xAODTestRead_copy INFO anInt1 6007 aFloat: 7200.6 anInt2: 8407 dInt1: 5767 xAODTestRead_copy INFO anInt1 6008 aFloat: 7200.7 anInt2: 8408 dInt1: 5768 xAODTestRead_copy INFO copy_cvecWD 1012: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 -xAODTestReadCVi... INFO copy_cview: 1210 1209 1208 1207 1206 1205 1204 1203 1202 1201 -xAODTestReadHVe... INFO copy_hvec: 4801.5 4802.5 4803.5 4804.5 4805.5 4806.5 4807.5 4808.5 4809.5 4810.5 4811.5 4812.5 4813.5 4814.5 4815.5 4816.5 4817.5 4818.5 4819.5 4820.5 -xAODTestReadHVe... INFO copy_hview: 4820.5 4819.5 4818.5 4817.5 4816.5 4815.5 4814.5 4813.5 4812.5 4811.5 4810.5 4809.5 4808.5 4807.5 4806.5 4805.5 4804.5 4803.5 4802.5 4801.5 +xAODTe...View_copy INFO copy_cview: 1210 1209 1208 1207 1206 1205 1204 1203 1202 1201 +xAODTe...HVec_copy INFO copy_hvec: 4801.5 4802.5 4803.5 4804.5 4805.5 4806.5 4807.5 4808.5 4809.5 4810.5 4811.5 4812.5 4813.5 4814.5 4815.5 4816.5 4817.5 4818.5 4819.5 4820.5 +xAODTe...HVec_copy INFO copy_hview: 4820.5 4819.5 4818.5 4817.5 4816.5 4815.5 4814.5 4813.5 4812.5 4811.5 4810.5 4809.5 4808.5 4807.5 4806.5 4805.5 4804.5 4803.5 4802.5 4801.5 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #0 11 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #12, run #0 11 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1498,60 +1494,60 @@ xAODTestRead INFO cvecWD 1013: 2601 2602 2603 2604 2605 2606 2607 2608 2 xAODTestReadCView INFO cview: 1310 1309 1308 1307 1306 1305 1304 1303 1302 1301 xAODTestReadHVec INFO hvec: 5201.5 5202.5 5203.5 5204.5 5205.5 5206.5 5207.5 5208.5 5209.5 5210.5 5211.5 5212.5 5213.5 5214.5 5215.5 5216.5 5217.5 5218.5 5219.5 5220.5 xAODTestReadHVec INFO hview: 5220.5 5219.5 5218.5 5217.5 5216.5 5215.5 5214.5 5213.5 5212.5 5211.5 5210.5 5209.5 5208.5 5207.5 5206.5 5205.5 5204.5 5203.5 5202.5 5201.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1301 aFloat: 2600 pInt: 6501 pFloat: 0.13 anInt2: 3901 dInt1: 5201 dVar1: 5851 dpInt1: 651 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1301 aFloat: 2600 pInt: 6501 pFloat: 0.13 anInt2: 3901 dInt1: 5201 dVar1: 5851 dpInt1: 651 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1302 aFloat: 2600.1 pInt: 6502 pFloat: 1.13 anInt2: 3902 dInt1: 5202 dVar1: 5852 dpInt1: 652 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1302 aFloat: 2600.1 pInt: 6502 pFloat: 1.13 anInt2: 3902 dInt1: 5202 dVar1: 5852 dpInt1: 652 cEL: cvec[8] pvInt: [810 ] pvFloat: [-0.477 ] dpvFloat: [0.230 ] -xAODTestReadCVe... INFO anInt1 1303 aFloat: 2600.2 pInt: 6503 pFloat: 2.13 anInt2: 3903 dInt1: 5203 dVar1: 5853 dpInt1: 653 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1303 aFloat: 2600.2 pInt: 6503 pFloat: 2.13 anInt2: 3903 dInt1: 5203 dVar1: 5853 dpInt1: 653 cEL: cvec[7] pvInt: [820 821 ] pvFloat: [-0.467 -0.367 ] dpvFloat: [0.330 0.331 ] -xAODTestReadCVe... INFO anInt1 1304 aFloat: 2600.3 pInt: 6504 pFloat: 3.13 anInt2: 3904 dInt1: 5204 dVar1: 5854 dpInt1: 654 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1304 aFloat: 2600.3 pInt: 6504 pFloat: 3.13 anInt2: 3904 dInt1: 5204 dVar1: 5854 dpInt1: 654 cEL: cvec[6] pvInt: [830 831 832 ] pvFloat: [-0.457 -0.357 -0.257 ] dpvFloat: [0.430 0.431 0.432 ] -xAODTestReadCVe... INFO anInt1 1305 aFloat: 2600.4 pInt: 6505 pFloat: 4.13 anInt2: 3905 dInt1: 5205 dVar1: 5855 dpInt1: 655 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1305 aFloat: 2600.4 pInt: 6505 pFloat: 4.13 anInt2: 3905 dInt1: 5205 dVar1: 5855 dpInt1: 655 cEL: cvec[5] pvInt: [840 841 842 843 ] pvFloat: [-0.447 -0.347 -0.247 -0.147 ] dpvFloat: [0.530 0.531 0.532 0.533 ] -xAODTestReadCVe... INFO anInt1 1306 aFloat: 2600.5 pInt: 6506 pFloat: 5.13 anInt2: 3906 dInt1: 5206 dVar1: 5856 dpInt1: 656 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1306 aFloat: 2600.5 pInt: 6506 pFloat: 5.13 anInt2: 3906 dInt1: 5206 dVar1: 5856 dpInt1: 656 cEL: cvec[4] pvInt: [850 851 852 853 854 ] pvFloat: [-0.437 -0.337 -0.237 -0.137 -0.037 ] dpvFloat: [0.630 0.631 0.632 0.633 0.634 ] -xAODTestReadCVe... INFO anInt1 1307 aFloat: 2600.6 pInt: 6507 pFloat: 6.13 anInt2: 3907 dInt1: 5207 dVar1: 5857 dpInt1: 657 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1307 aFloat: 2600.6 pInt: 6507 pFloat: 6.13 anInt2: 3907 dInt1: 5207 dVar1: 5857 dpInt1: 657 cEL: cvec[3] pvInt: [860 861 862 863 864 865 ] pvFloat: [-0.427 -0.327 -0.227 -0.127 -0.027 0.073 ] dpvFloat: [0.730 0.731 0.732 0.733 0.734 0.735 ] -xAODTestReadCVe... INFO anInt1 1308 aFloat: 2600.7 pInt: 6508 pFloat: 7.13 anInt2: 3908 dInt1: 5208 dVar1: 5858 dpInt1: 658 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1308 aFloat: 2600.7 pInt: 6508 pFloat: 7.13 anInt2: 3908 dInt1: 5208 dVar1: 5858 dpInt1: 658 cEL: cvec[2] pvInt: [870 871 872 873 874 875 876 ] pvFloat: [-0.417 -0.317 -0.217 -0.117 -0.017 0.083 0.183 ] dpvFloat: [0.830 0.831 0.832 0.833 0.834 0.835 0.836 ] -xAODTestReadCVe... INFO anInt1 1309 aFloat: 2600.8 pInt: 6509 pFloat: 8.13 anInt2: 3909 dInt1: 5209 dVar1: 5859 dpInt1: 659 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1309 aFloat: 2600.8 pInt: 6509 pFloat: 8.13 anInt2: 3909 dInt1: 5209 dVar1: 5859 dpInt1: 659 cEL: cvec[1] pvInt: [880 881 882 883 884 885 886 887 ] pvFloat: [-0.407 -0.307 -0.207 -0.107 -0.007 0.093 0.193 0.293 ] dpvFloat: [0.930 0.931 0.932 0.933 0.934 0.935 0.936 0.937 ] -xAODTestReadCVe... INFO anInt1 1310 aFloat: 2600.9 pInt: 6510 pFloat: 9.13 anInt2: 3910 dInt1: 5210 dVar1: 5860 dpInt1: 660 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1310 aFloat: 2600.9 pInt: 6510 pFloat: 9.13 anInt2: 3910 dInt1: 5210 dVar1: 5860 dpInt1: 660 cEL: cvec[0] pvInt: [890 891 892 893 894 895 896 897 898 ] pvFloat: [-0.397 -0.297 -0.197 -0.097 0.003 0.103 0.203 0.303 0.403 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 13000 aFloat: 1.3 anInt2: 26000 dInt1: 39000 cEL: cvec[3] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 13000 aFloat: 1.3 anInt2: 26000 dInt1: 39000 cEL: cvec[3] xAODTestRead_copy INFO 12 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 6501 aFloat: 7800 anInt2: 9101 dInt1: 6241 @@ -1563,9 +1559,9 @@ xAODTestRead_copy INFO anInt1 6506 aFloat: 7800.5 anInt2: 9106 dInt1: 6246 xAODTestRead_copy INFO anInt1 6507 aFloat: 7800.6 anInt2: 9107 dInt1: 6247 xAODTestRead_copy INFO anInt1 6508 aFloat: 7800.7 anInt2: 9108 dInt1: 6248 xAODTestRead_copy INFO copy_cvecWD 1013: 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 -xAODTestReadCVi... INFO copy_cview: 1310 1309 1308 1307 1306 1305 1304 1303 1302 1301 -xAODTestReadHVe... INFO copy_hvec: 5201.5 5202.5 5203.5 5204.5 5205.5 5206.5 5207.5 5208.5 5209.5 5210.5 5211.5 5212.5 5213.5 5214.5 5215.5 5216.5 5217.5 5218.5 5219.5 5220.5 -xAODTestReadHVe... INFO copy_hview: 5220.5 5219.5 5218.5 5217.5 5216.5 5215.5 5214.5 5213.5 5212.5 5211.5 5210.5 5209.5 5208.5 5207.5 5206.5 5205.5 5204.5 5203.5 5202.5 5201.5 +xAODTe...View_copy INFO copy_cview: 1310 1309 1308 1307 1306 1305 1304 1303 1302 1301 +xAODTe...HVec_copy INFO copy_hvec: 5201.5 5202.5 5203.5 5204.5 5205.5 5206.5 5207.5 5208.5 5209.5 5210.5 5211.5 5212.5 5213.5 5214.5 5215.5 5216.5 5217.5 5218.5 5219.5 5220.5 +xAODTe...HVec_copy INFO copy_hview: 5220.5 5219.5 5218.5 5217.5 5216.5 5215.5 5214.5 5213.5 5212.5 5211.5 5210.5 5209.5 5208.5 5207.5 5206.5 5205.5 5204.5 5203.5 5202.5 5201.5 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #0 12 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #13, run #0 12 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1636,60 +1632,60 @@ xAODTestRead INFO cvecWD 1014: 2801 2802 2803 2804 2805 2806 2807 2808 2 xAODTestReadCView INFO cview: 1410 1409 1408 1407 1406 1405 1404 1403 1402 1401 xAODTestReadHVec INFO hvec: 5601.5 5602.5 5603.5 5604.5 5605.5 5606.5 5607.5 5608.5 5609.5 5610.5 5611.5 5612.5 5613.5 5614.5 5615.5 5616.5 5617.5 5618.5 5619.5 5620.5 xAODTestReadHVec INFO hview: 5620.5 5619.5 5618.5 5617.5 5616.5 5615.5 5614.5 5613.5 5612.5 5611.5 5610.5 5609.5 5608.5 5607.5 5606.5 5605.5 5604.5 5603.5 5602.5 5601.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1401 aFloat: 2800 pInt: 7001 pFloat: 0.14 anInt2: 4201 dInt1: 5601 dVar1: 6301 dpInt1: 701 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1401 aFloat: 2800 pInt: 7001 pFloat: 0.14 anInt2: 4201 dInt1: 5601 dVar1: 6301 dpInt1: 701 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1402 aFloat: 2800.1 pInt: 7002 pFloat: 1.14 anInt2: 4202 dInt1: 5602 dVar1: 6302 dpInt1: 702 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1402 aFloat: 2800.1 pInt: 7002 pFloat: 1.14 anInt2: 4202 dInt1: 5602 dVar1: 6302 dpInt1: 702 cEL: cvec[8] pvInt: [910 ] pvFloat: [-0.476 ] dpvFloat: [0.240 ] -xAODTestReadCVe... INFO anInt1 1403 aFloat: 2800.2 pInt: 7003 pFloat: 2.14 anInt2: 4203 dInt1: 5603 dVar1: 6303 dpInt1: 703 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1403 aFloat: 2800.2 pInt: 7003 pFloat: 2.14 anInt2: 4203 dInt1: 5603 dVar1: 6303 dpInt1: 703 cEL: cvec[7] pvInt: [920 921 ] pvFloat: [-0.466 -0.366 ] dpvFloat: [0.340 0.341 ] -xAODTestReadCVe... INFO anInt1 1404 aFloat: 2800.3 pInt: 7004 pFloat: 3.14 anInt2: 4204 dInt1: 5604 dVar1: 6304 dpInt1: 704 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1404 aFloat: 2800.3 pInt: 7004 pFloat: 3.14 anInt2: 4204 dInt1: 5604 dVar1: 6304 dpInt1: 704 cEL: cvec[6] pvInt: [930 931 932 ] pvFloat: [-0.456 -0.356 -0.256 ] dpvFloat: [0.440 0.441 0.442 ] -xAODTestReadCVe... INFO anInt1 1405 aFloat: 2800.4 pInt: 7005 pFloat: 4.14 anInt2: 4205 dInt1: 5605 dVar1: 6305 dpInt1: 705 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1405 aFloat: 2800.4 pInt: 7005 pFloat: 4.14 anInt2: 4205 dInt1: 5605 dVar1: 6305 dpInt1: 705 cEL: cvec[5] pvInt: [940 941 942 943 ] pvFloat: [-0.446 -0.346 -0.246 -0.146 ] dpvFloat: [0.540 0.541 0.542 0.543 ] -xAODTestReadCVe... INFO anInt1 1406 aFloat: 2800.5 pInt: 7006 pFloat: 5.14 anInt2: 4206 dInt1: 5606 dVar1: 6306 dpInt1: 706 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1406 aFloat: 2800.5 pInt: 7006 pFloat: 5.14 anInt2: 4206 dInt1: 5606 dVar1: 6306 dpInt1: 706 cEL: cvec[4] pvInt: [950 951 952 953 954 ] pvFloat: [-0.436 -0.336 -0.236 -0.136 -0.036 ] dpvFloat: [0.640 0.641 0.642 0.643 0.644 ] -xAODTestReadCVe... INFO anInt1 1407 aFloat: 2800.6 pInt: 7007 pFloat: 6.14 anInt2: 4207 dInt1: 5607 dVar1: 6307 dpInt1: 707 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1407 aFloat: 2800.6 pInt: 7007 pFloat: 6.14 anInt2: 4207 dInt1: 5607 dVar1: 6307 dpInt1: 707 cEL: cvec[3] pvInt: [960 961 962 963 964 965 ] pvFloat: [-0.426 -0.326 -0.226 -0.126 -0.026 0.074 ] dpvFloat: [0.740 0.741 0.742 0.743 0.744 0.745 ] -xAODTestReadCVe... INFO anInt1 1408 aFloat: 2800.7 pInt: 7008 pFloat: 7.14 anInt2: 4208 dInt1: 5608 dVar1: 6308 dpInt1: 708 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1408 aFloat: 2800.7 pInt: 7008 pFloat: 7.14 anInt2: 4208 dInt1: 5608 dVar1: 6308 dpInt1: 708 cEL: cvec[2] pvInt: [970 971 972 973 974 975 976 ] pvFloat: [-0.416 -0.316 -0.216 -0.116 -0.016 0.084 0.184 ] dpvFloat: [0.840 0.841 0.842 0.843 0.844 0.845 0.846 ] -xAODTestReadCVe... INFO anInt1 1409 aFloat: 2800.8 pInt: 7009 pFloat: 8.14 anInt2: 4209 dInt1: 5609 dVar1: 6309 dpInt1: 709 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1409 aFloat: 2800.8 pInt: 7009 pFloat: 8.14 anInt2: 4209 dInt1: 5609 dVar1: 6309 dpInt1: 709 cEL: cvec[1] pvInt: [980 981 982 983 984 985 986 987 ] pvFloat: [-0.406 -0.306 -0.206 -0.106 -0.006 0.094 0.194 0.294 ] dpvFloat: [0.940 0.941 0.942 0.943 0.944 0.945 0.946 0.947 ] -xAODTestReadCVe... INFO anInt1 1410 aFloat: 2800.9 pInt: 7010 pFloat: 9.14 anInt2: 4210 dInt1: 5610 dVar1: 6310 dpInt1: 710 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1410 aFloat: 2800.9 pInt: 7010 pFloat: 9.14 anInt2: 4210 dInt1: 5610 dVar1: 6310 dpInt1: 710 cEL: cvec[0] pvInt: [990 991 992 993 994 995 996 997 998 ] pvFloat: [-0.396 -0.296 -0.196 -0.096 0.004 0.104 0.204 0.304 0.404 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 14000 aFloat: 1.4 anInt2: 28000 dInt1: 42000 cEL: cvec[4] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 14000 aFloat: 1.4 anInt2: 28000 dInt1: 42000 cEL: cvec[4] xAODTestRead_copy INFO 13 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 7001 aFloat: 8400 anInt2: 9801 dInt1: 6721 @@ -1701,9 +1697,9 @@ xAODTestRead_copy INFO anInt1 7006 aFloat: 8400.5 anInt2: 9806 dInt1: 6726 xAODTestRead_copy INFO anInt1 7007 aFloat: 8400.6 anInt2: 9807 dInt1: 6727 xAODTestRead_copy INFO anInt1 7008 aFloat: 8400.7 anInt2: 9808 dInt1: 6728 xAODTestRead_copy INFO copy_cvecWD 1014: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 -xAODTestReadCVi... INFO copy_cview: 1410 1409 1408 1407 1406 1405 1404 1403 1402 1401 -xAODTestReadHVe... INFO copy_hvec: 5601.5 5602.5 5603.5 5604.5 5605.5 5606.5 5607.5 5608.5 5609.5 5610.5 5611.5 5612.5 5613.5 5614.5 5615.5 5616.5 5617.5 5618.5 5619.5 5620.5 -xAODTestReadHVe... INFO copy_hview: 5620.5 5619.5 5618.5 5617.5 5616.5 5615.5 5614.5 5613.5 5612.5 5611.5 5610.5 5609.5 5608.5 5607.5 5606.5 5605.5 5604.5 5603.5 5602.5 5601.5 +xAODTe...View_copy INFO copy_cview: 1410 1409 1408 1407 1406 1405 1404 1403 1402 1401 +xAODTe...HVec_copy INFO copy_hvec: 5601.5 5602.5 5603.5 5604.5 5605.5 5606.5 5607.5 5608.5 5609.5 5610.5 5611.5 5612.5 5613.5 5614.5 5615.5 5616.5 5617.5 5618.5 5619.5 5620.5 +xAODTe...HVec_copy INFO copy_hview: 5620.5 5619.5 5618.5 5617.5 5616.5 5615.5 5614.5 5613.5 5612.5 5611.5 5610.5 5609.5 5608.5 5607.5 5606.5 5605.5 5604.5 5603.5 5602.5 5601.5 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #0 13 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #14, run #0 13 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1774,60 +1770,60 @@ xAODTestRead INFO cvecWD 1015: 3001 3002 3003 3004 3005 3006 3007 3008 3 xAODTestReadCView INFO cview: 1510 1509 1508 1507 1506 1505 1504 1503 1502 1501 xAODTestReadHVec INFO hvec: 6001.5 6002.5 6003.5 6004.5 6005.5 6006.5 6007.5 6008.5 6009.5 6010.5 6011.5 6012.5 6013.5 6014.5 6015.5 6016.5 6017.5 6018.5 6019.5 6020.5 xAODTestReadHVec INFO hview: 6020.5 6019.5 6018.5 6017.5 6016.5 6015.5 6014.5 6013.5 6012.5 6011.5 6010.5 6009.5 6008.5 6007.5 6006.5 6005.5 6004.5 6003.5 6002.5 6001.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1501 aFloat: 3000 pInt: 7501 pFloat: 0.15 anInt2: 4501 dInt1: 6001 dVar1: 6751 dpInt1: 751 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1501 aFloat: 3000 pInt: 7501 pFloat: 0.15 anInt2: 4501 dInt1: 6001 dVar1: 6751 dpInt1: 751 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1502 aFloat: 3000.1 pInt: 7502 pFloat: 1.15 anInt2: 4502 dInt1: 6002 dVar1: 6752 dpInt1: 752 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1502 aFloat: 3000.1 pInt: 7502 pFloat: 1.15 anInt2: 4502 dInt1: 6002 dVar1: 6752 dpInt1: 752 cEL: cvec[8] pvInt: [1010 ] pvFloat: [-0.475 ] dpvFloat: [0.250 ] -xAODTestReadCVe... INFO anInt1 1503 aFloat: 3000.2 pInt: 7503 pFloat: 2.15 anInt2: 4503 dInt1: 6003 dVar1: 6753 dpInt1: 753 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1503 aFloat: 3000.2 pInt: 7503 pFloat: 2.15 anInt2: 4503 dInt1: 6003 dVar1: 6753 dpInt1: 753 cEL: cvec[7] pvInt: [1020 1021 ] pvFloat: [-0.465 -0.365 ] dpvFloat: [0.350 0.351 ] -xAODTestReadCVe... INFO anInt1 1504 aFloat: 3000.3 pInt: 7504 pFloat: 3.15 anInt2: 4504 dInt1: 6004 dVar1: 6754 dpInt1: 754 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1504 aFloat: 3000.3 pInt: 7504 pFloat: 3.15 anInt2: 4504 dInt1: 6004 dVar1: 6754 dpInt1: 754 cEL: cvec[6] pvInt: [1030 1031 1032 ] pvFloat: [-0.455 -0.355 -0.255 ] dpvFloat: [0.450 0.451 0.452 ] -xAODTestReadCVe... INFO anInt1 1505 aFloat: 3000.4 pInt: 7505 pFloat: 4.15 anInt2: 4505 dInt1: 6005 dVar1: 6755 dpInt1: 755 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1505 aFloat: 3000.4 pInt: 7505 pFloat: 4.15 anInt2: 4505 dInt1: 6005 dVar1: 6755 dpInt1: 755 cEL: cvec[5] pvInt: [1040 1041 1042 1043 ] pvFloat: [-0.445 -0.345 -0.245 -0.145 ] dpvFloat: [0.550 0.551 0.552 0.553 ] -xAODTestReadCVe... INFO anInt1 1506 aFloat: 3000.5 pInt: 7506 pFloat: 5.15 anInt2: 4506 dInt1: 6006 dVar1: 6756 dpInt1: 756 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1506 aFloat: 3000.5 pInt: 7506 pFloat: 5.15 anInt2: 4506 dInt1: 6006 dVar1: 6756 dpInt1: 756 cEL: cvec[4] pvInt: [1050 1051 1052 1053 1054 ] pvFloat: [-0.435 -0.335 -0.235 -0.135 -0.035 ] dpvFloat: [0.650 0.651 0.652 0.653 0.654 ] -xAODTestReadCVe... INFO anInt1 1507 aFloat: 3000.6 pInt: 7507 pFloat: 6.15 anInt2: 4507 dInt1: 6007 dVar1: 6757 dpInt1: 757 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1507 aFloat: 3000.6 pInt: 7507 pFloat: 6.15 anInt2: 4507 dInt1: 6007 dVar1: 6757 dpInt1: 757 cEL: cvec[3] pvInt: [1060 1061 1062 1063 1064 1065 ] pvFloat: [-0.425 -0.325 -0.225 -0.125 -0.025 0.075 ] dpvFloat: [0.750 0.751 0.752 0.753 0.754 0.755 ] -xAODTestReadCVe... INFO anInt1 1508 aFloat: 3000.7 pInt: 7508 pFloat: 7.15 anInt2: 4508 dInt1: 6008 dVar1: 6758 dpInt1: 758 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1508 aFloat: 3000.7 pInt: 7508 pFloat: 7.15 anInt2: 4508 dInt1: 6008 dVar1: 6758 dpInt1: 758 cEL: cvec[2] pvInt: [1070 1071 1072 1073 1074 1075 1076 ] pvFloat: [-0.415 -0.315 -0.215 -0.115 -0.015 0.085 0.185 ] dpvFloat: [0.850 0.851 0.852 0.853 0.854 0.855 0.856 ] -xAODTestReadCVe... INFO anInt1 1509 aFloat: 3000.8 pInt: 7509 pFloat: 8.15 anInt2: 4509 dInt1: 6009 dVar1: 6759 dpInt1: 759 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1509 aFloat: 3000.8 pInt: 7509 pFloat: 8.15 anInt2: 4509 dInt1: 6009 dVar1: 6759 dpInt1: 759 cEL: cvec[1] pvInt: [1080 1081 1082 1083 1084 1085 1086 1087 ] pvFloat: [-0.405 -0.305 -0.205 -0.105 -0.005 0.095 0.195 0.295 ] dpvFloat: [0.950 0.951 0.952 0.953 0.954 0.955 0.956 0.957 ] -xAODTestReadCVe... INFO anInt1 1510 aFloat: 3000.9 pInt: 7510 pFloat: 9.15 anInt2: 4510 dInt1: 6010 dVar1: 6760 dpInt1: 760 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1510 aFloat: 3000.9 pInt: 7510 pFloat: 9.15 anInt2: 4510 dInt1: 6010 dVar1: 6760 dpInt1: 760 cEL: cvec[0] pvInt: [1090 1091 1092 1093 1094 1095 1096 1097 1098 ] pvFloat: [-0.395 -0.295 -0.195 -0.095 0.005 0.105 0.205 0.305 0.405 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 15000 aFloat: 1.5 anInt2: 30000 dInt1: 45000 cEL: cvec[5] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 15000 aFloat: 1.5 anInt2: 30000 dInt1: 45000 cEL: cvec[5] xAODTestRead_copy INFO 14 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 7501 aFloat: 9000 anInt2: 10501 dInt1: 7201 @@ -1839,9 +1835,9 @@ xAODTestRead_copy INFO anInt1 7506 aFloat: 9000.5 anInt2: 10506 dInt1: 7206 xAODTestRead_copy INFO anInt1 7507 aFloat: 9000.6 anInt2: 10507 dInt1: 7207 xAODTestRead_copy INFO anInt1 7508 aFloat: 9000.7 anInt2: 10508 dInt1: 7208 xAODTestRead_copy INFO copy_cvecWD 1015: 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 -xAODTestReadCVi... INFO copy_cview: 1510 1509 1508 1507 1506 1505 1504 1503 1502 1501 -xAODTestReadHVe... INFO copy_hvec: 6001.5 6002.5 6003.5 6004.5 6005.5 6006.5 6007.5 6008.5 6009.5 6010.5 6011.5 6012.5 6013.5 6014.5 6015.5 6016.5 6017.5 6018.5 6019.5 6020.5 -xAODTestReadHVe... INFO copy_hview: 6020.5 6019.5 6018.5 6017.5 6016.5 6015.5 6014.5 6013.5 6012.5 6011.5 6010.5 6009.5 6008.5 6007.5 6006.5 6005.5 6004.5 6003.5 6002.5 6001.5 +xAODTe...View_copy INFO copy_cview: 1510 1509 1508 1507 1506 1505 1504 1503 1502 1501 +xAODTe...HVec_copy INFO copy_hvec: 6001.5 6002.5 6003.5 6004.5 6005.5 6006.5 6007.5 6008.5 6009.5 6010.5 6011.5 6012.5 6013.5 6014.5 6015.5 6016.5 6017.5 6018.5 6019.5 6020.5 +xAODTe...HVec_copy INFO copy_hview: 6020.5 6019.5 6018.5 6017.5 6016.5 6015.5 6014.5 6013.5 6012.5 6011.5 6010.5 6009.5 6008.5 6007.5 6006.5 6005.5 6004.5 6003.5 6002.5 6001.5 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #0 14 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #15, run #0 14 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -1912,60 +1908,60 @@ xAODTestRead INFO cvecWD 1016: 3201 3202 3203 3204 3205 3206 3207 3208 3 xAODTestReadCView INFO cview: 1610 1609 1608 1607 1606 1605 1604 1603 1602 1601 xAODTestReadHVec INFO hvec: 6401.5 6402.5 6403.5 6404.5 6405.5 6406.5 6407.5 6408.5 6409.5 6410.5 6411.5 6412.5 6413.5 6414.5 6415.5 6416.5 6417.5 6418.5 6419.5 6420.5 xAODTestReadHVec INFO hview: 6420.5 6419.5 6418.5 6417.5 6416.5 6415.5 6414.5 6413.5 6412.5 6411.5 6410.5 6409.5 6408.5 6407.5 6406.5 6405.5 6404.5 6403.5 6402.5 6401.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1601 aFloat: 3200 pInt: 8001 pFloat: 0.16 anInt2: 4801 dInt1: 6401 dVar1: 7201 dpInt1: 801 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1601 aFloat: 3200 pInt: 8001 pFloat: 0.16 anInt2: 4801 dInt1: 6401 dVar1: 7201 dpInt1: 801 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1602 aFloat: 3200.1 pInt: 8002 pFloat: 1.16 anInt2: 4802 dInt1: 6402 dVar1: 7202 dpInt1: 802 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1602 aFloat: 3200.1 pInt: 8002 pFloat: 1.16 anInt2: 4802 dInt1: 6402 dVar1: 7202 dpInt1: 802 cEL: cvec[8] pvInt: [1110 ] pvFloat: [-0.474 ] dpvFloat: [0.260 ] -xAODTestReadCVe... INFO anInt1 1603 aFloat: 3200.2 pInt: 8003 pFloat: 2.16 anInt2: 4803 dInt1: 6403 dVar1: 7203 dpInt1: 803 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1603 aFloat: 3200.2 pInt: 8003 pFloat: 2.16 anInt2: 4803 dInt1: 6403 dVar1: 7203 dpInt1: 803 cEL: cvec[7] pvInt: [1120 1121 ] pvFloat: [-0.464 -0.364 ] dpvFloat: [0.360 0.361 ] -xAODTestReadCVe... INFO anInt1 1604 aFloat: 3200.3 pInt: 8004 pFloat: 3.16 anInt2: 4804 dInt1: 6404 dVar1: 7204 dpInt1: 804 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1604 aFloat: 3200.3 pInt: 8004 pFloat: 3.16 anInt2: 4804 dInt1: 6404 dVar1: 7204 dpInt1: 804 cEL: cvec[6] pvInt: [1130 1131 1132 ] pvFloat: [-0.454 -0.354 -0.254 ] dpvFloat: [0.460 0.461 0.462 ] -xAODTestReadCVe... INFO anInt1 1605 aFloat: 3200.4 pInt: 8005 pFloat: 4.16 anInt2: 4805 dInt1: 6405 dVar1: 7205 dpInt1: 805 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1605 aFloat: 3200.4 pInt: 8005 pFloat: 4.16 anInt2: 4805 dInt1: 6405 dVar1: 7205 dpInt1: 805 cEL: cvec[5] pvInt: [1140 1141 1142 1143 ] pvFloat: [-0.444 -0.344 -0.244 -0.144 ] dpvFloat: [0.560 0.561 0.562 0.563 ] -xAODTestReadCVe... INFO anInt1 1606 aFloat: 3200.5 pInt: 8006 pFloat: 5.16 anInt2: 4806 dInt1: 6406 dVar1: 7206 dpInt1: 806 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1606 aFloat: 3200.5 pInt: 8006 pFloat: 5.16 anInt2: 4806 dInt1: 6406 dVar1: 7206 dpInt1: 806 cEL: cvec[4] pvInt: [1150 1151 1152 1153 1154 ] pvFloat: [-0.434 -0.334 -0.234 -0.134 -0.034 ] dpvFloat: [0.660 0.661 0.662 0.663 0.664 ] -xAODTestReadCVe... INFO anInt1 1607 aFloat: 3200.6 pInt: 8007 pFloat: 6.16 anInt2: 4807 dInt1: 6407 dVar1: 7207 dpInt1: 807 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1607 aFloat: 3200.6 pInt: 8007 pFloat: 6.16 anInt2: 4807 dInt1: 6407 dVar1: 7207 dpInt1: 807 cEL: cvec[3] pvInt: [1160 1161 1162 1163 1164 1165 ] pvFloat: [-0.424 -0.324 -0.224 -0.124 -0.024 0.076 ] dpvFloat: [0.760 0.761 0.762 0.763 0.764 0.765 ] -xAODTestReadCVe... INFO anInt1 1608 aFloat: 3200.7 pInt: 8008 pFloat: 7.16 anInt2: 4808 dInt1: 6408 dVar1: 7208 dpInt1: 808 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1608 aFloat: 3200.7 pInt: 8008 pFloat: 7.16 anInt2: 4808 dInt1: 6408 dVar1: 7208 dpInt1: 808 cEL: cvec[2] pvInt: [1170 1171 1172 1173 1174 1175 1176 ] pvFloat: [-0.414 -0.314 -0.214 -0.114 -0.014 0.086 0.186 ] dpvFloat: [0.860 0.861 0.862 0.863 0.864 0.865 0.866 ] -xAODTestReadCVe... INFO anInt1 1609 aFloat: 3200.8 pInt: 8009 pFloat: 8.16 anInt2: 4809 dInt1: 6409 dVar1: 7209 dpInt1: 809 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1609 aFloat: 3200.8 pInt: 8009 pFloat: 8.16 anInt2: 4809 dInt1: 6409 dVar1: 7209 dpInt1: 809 cEL: cvec[1] pvInt: [1180 1181 1182 1183 1184 1185 1186 1187 ] pvFloat: [-0.404 -0.304 -0.204 -0.104 -0.004 0.096 0.196 0.296 ] dpvFloat: [0.960 0.961 0.962 0.963 0.964 0.965 0.966 0.967 ] -xAODTestReadCVe... INFO anInt1 1610 aFloat: 3200.9 pInt: 8010 pFloat: 9.16 anInt2: 4810 dInt1: 6410 dVar1: 7210 dpInt1: 810 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1610 aFloat: 3200.9 pInt: 8010 pFloat: 9.16 anInt2: 4810 dInt1: 6410 dVar1: 7210 dpInt1: 810 cEL: cvec[0] pvInt: [1190 1191 1192 1193 1194 1195 1196 1197 1198 ] pvFloat: [-0.394 -0.294 -0.194 -0.094 0.006 0.106 0.206 0.306 0.406 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 16000 aFloat: 1.6 anInt2: 32000 dInt1: 48000 cEL: cvec[6] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 16000 aFloat: 1.6 anInt2: 32000 dInt1: 48000 cEL: cvec[6] xAODTestRead_copy INFO 15 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 8001 aFloat: 9600 anInt2: 11201 dInt1: 7681 @@ -1977,9 +1973,9 @@ xAODTestRead_copy INFO anInt1 8006 aFloat: 9600.5 anInt2: 11206 dInt1: 7686 xAODTestRead_copy INFO anInt1 8007 aFloat: 9600.6 anInt2: 11207 dInt1: 7687 xAODTestRead_copy INFO anInt1 8008 aFloat: 9600.7 anInt2: 11208 dInt1: 7688 xAODTestRead_copy INFO copy_cvecWD 1016: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 -xAODTestReadCVi... INFO copy_cview: 1610 1609 1608 1607 1606 1605 1604 1603 1602 1601 -xAODTestReadHVe... INFO copy_hvec: 6401.5 6402.5 6403.5 6404.5 6405.5 6406.5 6407.5 6408.5 6409.5 6410.5 6411.5 6412.5 6413.5 6414.5 6415.5 6416.5 6417.5 6418.5 6419.5 6420.5 -xAODTestReadHVe... INFO copy_hview: 6420.5 6419.5 6418.5 6417.5 6416.5 6415.5 6414.5 6413.5 6412.5 6411.5 6410.5 6409.5 6408.5 6407.5 6406.5 6405.5 6404.5 6403.5 6402.5 6401.5 +xAODTe...View_copy INFO copy_cview: 1610 1609 1608 1607 1606 1605 1604 1603 1602 1601 +xAODTe...HVec_copy INFO copy_hvec: 6401.5 6402.5 6403.5 6404.5 6405.5 6406.5 6407.5 6408.5 6409.5 6410.5 6411.5 6412.5 6413.5 6414.5 6415.5 6416.5 6417.5 6418.5 6419.5 6420.5 +xAODTe...HVec_copy INFO copy_hview: 6420.5 6419.5 6418.5 6417.5 6416.5 6415.5 6414.5 6413.5 6412.5 6411.5 6410.5 6409.5 6408.5 6407.5 6406.5 6405.5 6404.5 6403.5 6402.5 6401.5 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #0 15 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #16, run #0 15 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -2050,60 +2046,60 @@ xAODTestRead INFO cvecWD 1017: 3401 3402 3403 3404 3405 3406 3407 3408 3 xAODTestReadCView INFO cview: 1710 1709 1708 1707 1706 1705 1704 1703 1702 1701 xAODTestReadHVec INFO hvec: 6801.5 6802.5 6803.5 6804.5 6805.5 6806.5 6807.5 6808.5 6809.5 6810.5 6811.5 6812.5 6813.5 6814.5 6815.5 6816.5 6817.5 6818.5 6819.5 6820.5 xAODTestReadHVec INFO hview: 6820.5 6819.5 6818.5 6817.5 6816.5 6815.5 6814.5 6813.5 6812.5 6811.5 6810.5 6809.5 6808.5 6807.5 6806.5 6805.5 6804.5 6803.5 6802.5 6801.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1701 aFloat: 3400 pInt: 8501 pFloat: 0.17 anInt2: 5101 dInt1: 6801 dVar1: 7651 dpInt1: 851 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1701 aFloat: 3400 pInt: 8501 pFloat: 0.17 anInt2: 5101 dInt1: 6801 dVar1: 7651 dpInt1: 851 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1702 aFloat: 3400.1 pInt: 8502 pFloat: 1.17 anInt2: 5102 dInt1: 6802 dVar1: 7652 dpInt1: 852 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1702 aFloat: 3400.1 pInt: 8502 pFloat: 1.17 anInt2: 5102 dInt1: 6802 dVar1: 7652 dpInt1: 852 cEL: cvec[8] pvInt: [1210 ] pvFloat: [-0.473 ] dpvFloat: [0.270 ] -xAODTestReadCVe... INFO anInt1 1703 aFloat: 3400.2 pInt: 8503 pFloat: 2.17 anInt2: 5103 dInt1: 6803 dVar1: 7653 dpInt1: 853 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1703 aFloat: 3400.2 pInt: 8503 pFloat: 2.17 anInt2: 5103 dInt1: 6803 dVar1: 7653 dpInt1: 853 cEL: cvec[7] pvInt: [1220 1221 ] pvFloat: [-0.463 -0.363 ] dpvFloat: [0.370 0.371 ] -xAODTestReadCVe... INFO anInt1 1704 aFloat: 3400.3 pInt: 8504 pFloat: 3.17 anInt2: 5104 dInt1: 6804 dVar1: 7654 dpInt1: 854 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1704 aFloat: 3400.3 pInt: 8504 pFloat: 3.17 anInt2: 5104 dInt1: 6804 dVar1: 7654 dpInt1: 854 cEL: cvec[6] pvInt: [1230 1231 1232 ] pvFloat: [-0.453 -0.353 -0.253 ] dpvFloat: [0.470 0.471 0.472 ] -xAODTestReadCVe... INFO anInt1 1705 aFloat: 3400.4 pInt: 8505 pFloat: 4.17 anInt2: 5105 dInt1: 6805 dVar1: 7655 dpInt1: 855 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1705 aFloat: 3400.4 pInt: 8505 pFloat: 4.17 anInt2: 5105 dInt1: 6805 dVar1: 7655 dpInt1: 855 cEL: cvec[5] pvInt: [1240 1241 1242 1243 ] pvFloat: [-0.443 -0.343 -0.243 -0.143 ] dpvFloat: [0.570 0.571 0.572 0.573 ] -xAODTestReadCVe... INFO anInt1 1706 aFloat: 3400.5 pInt: 8506 pFloat: 5.17 anInt2: 5106 dInt1: 6806 dVar1: 7656 dpInt1: 856 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1706 aFloat: 3400.5 pInt: 8506 pFloat: 5.17 anInt2: 5106 dInt1: 6806 dVar1: 7656 dpInt1: 856 cEL: cvec[4] pvInt: [1250 1251 1252 1253 1254 ] pvFloat: [-0.433 -0.333 -0.233 -0.133 -0.033 ] dpvFloat: [0.670 0.671 0.672 0.673 0.674 ] -xAODTestReadCVe... INFO anInt1 1707 aFloat: 3400.6 pInt: 8507 pFloat: 6.17 anInt2: 5107 dInt1: 6807 dVar1: 7657 dpInt1: 857 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1707 aFloat: 3400.6 pInt: 8507 pFloat: 6.17 anInt2: 5107 dInt1: 6807 dVar1: 7657 dpInt1: 857 cEL: cvec[3] pvInt: [1260 1261 1262 1263 1264 1265 ] pvFloat: [-0.423 -0.323 -0.223 -0.123 -0.023 0.077 ] dpvFloat: [0.770 0.771 0.772 0.773 0.774 0.775 ] -xAODTestReadCVe... INFO anInt1 1708 aFloat: 3400.7 pInt: 8508 pFloat: 7.17 anInt2: 5108 dInt1: 6808 dVar1: 7658 dpInt1: 858 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1708 aFloat: 3400.7 pInt: 8508 pFloat: 7.17 anInt2: 5108 dInt1: 6808 dVar1: 7658 dpInt1: 858 cEL: cvec[2] pvInt: [1270 1271 1272 1273 1274 1275 1276 ] pvFloat: [-0.413 -0.313 -0.213 -0.113 -0.013 0.087 0.187 ] dpvFloat: [0.870 0.871 0.872 0.873 0.874 0.875 0.876 ] -xAODTestReadCVe... INFO anInt1 1709 aFloat: 3400.8 pInt: 8509 pFloat: 8.17 anInt2: 5109 dInt1: 6809 dVar1: 7659 dpInt1: 859 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1709 aFloat: 3400.8 pInt: 8509 pFloat: 8.17 anInt2: 5109 dInt1: 6809 dVar1: 7659 dpInt1: 859 cEL: cvec[1] pvInt: [1280 1281 1282 1283 1284 1285 1286 1287 ] pvFloat: [-0.403 -0.303 -0.203 -0.103 -0.003 0.097 0.197 0.297 ] dpvFloat: [0.970 0.971 0.972 0.973 0.974 0.975 0.976 0.977 ] -xAODTestReadCVe... INFO anInt1 1710 aFloat: 3400.9 pInt: 8510 pFloat: 9.17 anInt2: 5110 dInt1: 6810 dVar1: 7660 dpInt1: 860 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1710 aFloat: 3400.9 pInt: 8510 pFloat: 9.17 anInt2: 5110 dInt1: 6810 dVar1: 7660 dpInt1: 860 cEL: cvec[0] pvInt: [1290 1291 1292 1293 1294 1295 1296 1297 1298 ] pvFloat: [-0.393 -0.293 -0.193 -0.093 0.007 0.107 0.207 0.307 0.407 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 17000 aFloat: 1.7 anInt2: 34000 dInt1: 51000 cEL: cvec[7] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 17000 aFloat: 1.7 anInt2: 34000 dInt1: 51000 cEL: cvec[7] xAODTestRead_copy INFO 16 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 8501 aFloat: 10200 anInt2: 11901 dInt1: 8161 @@ -2115,9 +2111,9 @@ xAODTestRead_copy INFO anInt1 8506 aFloat: 10200.5 anInt2: 11906 dInt1: 8166 xAODTestRead_copy INFO anInt1 8507 aFloat: 10200.6 anInt2: 11907 dInt1: 8167 xAODTestRead_copy INFO anInt1 8508 aFloat: 10200.7 anInt2: 11908 dInt1: 8168 xAODTestRead_copy INFO copy_cvecWD 1017: 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 -xAODTestReadCVi... INFO copy_cview: 1710 1709 1708 1707 1706 1705 1704 1703 1702 1701 -xAODTestReadHVe... INFO copy_hvec: 6801.5 6802.5 6803.5 6804.5 6805.5 6806.5 6807.5 6808.5 6809.5 6810.5 6811.5 6812.5 6813.5 6814.5 6815.5 6816.5 6817.5 6818.5 6819.5 6820.5 -xAODTestReadHVe... INFO copy_hview: 6820.5 6819.5 6818.5 6817.5 6816.5 6815.5 6814.5 6813.5 6812.5 6811.5 6810.5 6809.5 6808.5 6807.5 6806.5 6805.5 6804.5 6803.5 6802.5 6801.5 +xAODTe...View_copy INFO copy_cview: 1710 1709 1708 1707 1706 1705 1704 1703 1702 1701 +xAODTe...HVec_copy INFO copy_hvec: 6801.5 6802.5 6803.5 6804.5 6805.5 6806.5 6807.5 6808.5 6809.5 6810.5 6811.5 6812.5 6813.5 6814.5 6815.5 6816.5 6817.5 6818.5 6819.5 6820.5 +xAODTe...HVec_copy INFO copy_hview: 6820.5 6819.5 6818.5 6817.5 6816.5 6815.5 6814.5 6813.5 6812.5 6811.5 6810.5 6809.5 6808.5 6807.5 6806.5 6805.5 6804.5 6803.5 6802.5 6801.5 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #0 16 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #17, run #0 16 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -2188,60 +2184,60 @@ xAODTestRead INFO cvecWD 1018: 3601 3602 3603 3604 3605 3606 3607 3608 3 xAODTestReadCView INFO cview: 1810 1809 1808 1807 1806 1805 1804 1803 1802 1801 xAODTestReadHVec INFO hvec: 7201.5 7202.5 7203.5 7204.5 7205.5 7206.5 7207.5 7208.5 7209.5 7210.5 7211.5 7212.5 7213.5 7214.5 7215.5 7216.5 7217.5 7218.5 7219.5 7220.5 xAODTestReadHVec INFO hview: 7220.5 7219.5 7218.5 7217.5 7216.5 7215.5 7214.5 7213.5 7212.5 7211.5 7210.5 7209.5 7208.5 7207.5 7206.5 7205.5 7204.5 7203.5 7202.5 7201.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1801 aFloat: 3600 pInt: 9001 pFloat: 0.18 anInt2: 5401 dInt1: 7201 dVar1: 8101 dpInt1: 901 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1801 aFloat: 3600 pInt: 9001 pFloat: 0.18 anInt2: 5401 dInt1: 7201 dVar1: 8101 dpInt1: 901 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1802 aFloat: 3600.1 pInt: 9002 pFloat: 1.18 anInt2: 5402 dInt1: 7202 dVar1: 8102 dpInt1: 902 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1802 aFloat: 3600.1 pInt: 9002 pFloat: 1.18 anInt2: 5402 dInt1: 7202 dVar1: 8102 dpInt1: 902 cEL: cvec[8] pvInt: [1310 ] pvFloat: [-0.472 ] dpvFloat: [0.280 ] -xAODTestReadCVe... INFO anInt1 1803 aFloat: 3600.2 pInt: 9003 pFloat: 2.18 anInt2: 5403 dInt1: 7203 dVar1: 8103 dpInt1: 903 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1803 aFloat: 3600.2 pInt: 9003 pFloat: 2.18 anInt2: 5403 dInt1: 7203 dVar1: 8103 dpInt1: 903 cEL: cvec[7] pvInt: [1320 1321 ] pvFloat: [-0.462 -0.362 ] dpvFloat: [0.380 0.381 ] -xAODTestReadCVe... INFO anInt1 1804 aFloat: 3600.3 pInt: 9004 pFloat: 3.18 anInt2: 5404 dInt1: 7204 dVar1: 8104 dpInt1: 904 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1804 aFloat: 3600.3 pInt: 9004 pFloat: 3.18 anInt2: 5404 dInt1: 7204 dVar1: 8104 dpInt1: 904 cEL: cvec[6] pvInt: [1330 1331 1332 ] pvFloat: [-0.452 -0.352 -0.252 ] dpvFloat: [0.480 0.481 0.482 ] -xAODTestReadCVe... INFO anInt1 1805 aFloat: 3600.4 pInt: 9005 pFloat: 4.18 anInt2: 5405 dInt1: 7205 dVar1: 8105 dpInt1: 905 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1805 aFloat: 3600.4 pInt: 9005 pFloat: 4.18 anInt2: 5405 dInt1: 7205 dVar1: 8105 dpInt1: 905 cEL: cvec[5] pvInt: [1340 1341 1342 1343 ] pvFloat: [-0.442 -0.342 -0.242 -0.142 ] dpvFloat: [0.580 0.581 0.582 0.583 ] -xAODTestReadCVe... INFO anInt1 1806 aFloat: 3600.5 pInt: 9006 pFloat: 5.18 anInt2: 5406 dInt1: 7206 dVar1: 8106 dpInt1: 906 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1806 aFloat: 3600.5 pInt: 9006 pFloat: 5.18 anInt2: 5406 dInt1: 7206 dVar1: 8106 dpInt1: 906 cEL: cvec[4] pvInt: [1350 1351 1352 1353 1354 ] pvFloat: [-0.432 -0.332 -0.232 -0.132 -0.032 ] dpvFloat: [0.680 0.681 0.682 0.683 0.684 ] -xAODTestReadCVe... INFO anInt1 1807 aFloat: 3600.6 pInt: 9007 pFloat: 6.18 anInt2: 5407 dInt1: 7207 dVar1: 8107 dpInt1: 907 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1807 aFloat: 3600.6 pInt: 9007 pFloat: 6.18 anInt2: 5407 dInt1: 7207 dVar1: 8107 dpInt1: 907 cEL: cvec[3] pvInt: [1360 1361 1362 1363 1364 1365 ] pvFloat: [-0.422 -0.322 -0.222 -0.122 -0.022 0.078 ] dpvFloat: [0.780 0.781 0.782 0.783 0.784 0.785 ] -xAODTestReadCVe... INFO anInt1 1808 aFloat: 3600.7 pInt: 9008 pFloat: 7.18 anInt2: 5408 dInt1: 7208 dVar1: 8108 dpInt1: 908 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1808 aFloat: 3600.7 pInt: 9008 pFloat: 7.18 anInt2: 5408 dInt1: 7208 dVar1: 8108 dpInt1: 908 cEL: cvec[2] pvInt: [1370 1371 1372 1373 1374 1375 1376 ] pvFloat: [-0.412 -0.312 -0.212 -0.112 -0.012 0.088 0.188 ] dpvFloat: [0.880 0.881 0.882 0.883 0.884 0.885 0.886 ] -xAODTestReadCVe... INFO anInt1 1809 aFloat: 3600.8 pInt: 9009 pFloat: 8.18 anInt2: 5409 dInt1: 7209 dVar1: 8109 dpInt1: 909 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1809 aFloat: 3600.8 pInt: 9009 pFloat: 8.18 anInt2: 5409 dInt1: 7209 dVar1: 8109 dpInt1: 909 cEL: cvec[1] pvInt: [1380 1381 1382 1383 1384 1385 1386 1387 ] pvFloat: [-0.402 -0.302 -0.202 -0.102 -0.002 0.098 0.198 0.298 ] dpvFloat: [0.980 0.981 0.982 0.983 0.984 0.985 0.986 0.987 ] -xAODTestReadCVe... INFO anInt1 1810 aFloat: 3600.9 pInt: 9010 pFloat: 9.18 anInt2: 5410 dInt1: 7210 dVar1: 8110 dpInt1: 910 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1810 aFloat: 3600.9 pInt: 9010 pFloat: 9.18 anInt2: 5410 dInt1: 7210 dVar1: 8110 dpInt1: 910 cEL: cvec[0] pvInt: [1390 1391 1392 1393 1394 1395 1396 1397 1398 ] pvFloat: [-0.392 -0.292 -0.192 -0.092 0.008 0.108 0.208 0.308 0.408 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 18000 aFloat: 1.8 anInt2: 36000 dInt1: 54000 cEL: cvec[8] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 18000 aFloat: 1.8 anInt2: 36000 dInt1: 54000 cEL: cvec[8] xAODTestRead_copy INFO 17 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 9001 aFloat: 10800 anInt2: 12601 dInt1: 8641 @@ -2253,9 +2249,9 @@ xAODTestRead_copy INFO anInt1 9006 aFloat: 10800.5 anInt2: 12606 dInt1: 8646 xAODTestRead_copy INFO anInt1 9007 aFloat: 10800.6 anInt2: 12607 dInt1: 8647 xAODTestRead_copy INFO anInt1 9008 aFloat: 10800.7 anInt2: 12608 dInt1: 8648 xAODTestRead_copy INFO copy_cvecWD 1018: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 -xAODTestReadCVi... INFO copy_cview: 1810 1809 1808 1807 1806 1805 1804 1803 1802 1801 -xAODTestReadHVe... INFO copy_hvec: 7201.5 7202.5 7203.5 7204.5 7205.5 7206.5 7207.5 7208.5 7209.5 7210.5 7211.5 7212.5 7213.5 7214.5 7215.5 7216.5 7217.5 7218.5 7219.5 7220.5 -xAODTestReadHVe... INFO copy_hview: 7220.5 7219.5 7218.5 7217.5 7216.5 7215.5 7214.5 7213.5 7212.5 7211.5 7210.5 7209.5 7208.5 7207.5 7206.5 7205.5 7204.5 7203.5 7202.5 7201.5 +xAODTe...View_copy INFO copy_cview: 1810 1809 1808 1807 1806 1805 1804 1803 1802 1801 +xAODTe...HVec_copy INFO copy_hvec: 7201.5 7202.5 7203.5 7204.5 7205.5 7206.5 7207.5 7208.5 7209.5 7210.5 7211.5 7212.5 7213.5 7214.5 7215.5 7216.5 7217.5 7218.5 7219.5 7220.5 +xAODTe...HVec_copy INFO copy_hview: 7220.5 7219.5 7218.5 7217.5 7216.5 7215.5 7214.5 7213.5 7212.5 7211.5 7210.5 7209.5 7208.5 7207.5 7206.5 7205.5 7204.5 7203.5 7202.5 7201.5 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #0 17 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #18, run #0 17 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -2326,60 +2322,60 @@ xAODTestRead INFO cvecWD 1019: 3801 3802 3803 3804 3805 3806 3807 3808 3 xAODTestReadCView INFO cview: 1910 1909 1908 1907 1906 1905 1904 1903 1902 1901 xAODTestReadHVec INFO hvec: 7601.5 7602.5 7603.5 7604.5 7605.5 7606.5 7607.5 7608.5 7609.5 7610.5 7611.5 7612.5 7613.5 7614.5 7615.5 7616.5 7617.5 7618.5 7619.5 7620.5 xAODTestReadHVec INFO hview: 7620.5 7619.5 7618.5 7617.5 7616.5 7615.5 7614.5 7613.5 7612.5 7611.5 7610.5 7609.5 7608.5 7607.5 7606.5 7605.5 7604.5 7603.5 7602.5 7601.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 1901 aFloat: 3800 pInt: 9501 pFloat: 0.19 anInt2: 5701 dInt1: 7601 dVar1: 8551 dpInt1: 951 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 1901 aFloat: 3800 pInt: 9501 pFloat: 0.19 anInt2: 5701 dInt1: 7601 dVar1: 8551 dpInt1: 951 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 1902 aFloat: 3800.1 pInt: 9502 pFloat: 1.19 anInt2: 5702 dInt1: 7602 dVar1: 8552 dpInt1: 952 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 1902 aFloat: 3800.1 pInt: 9502 pFloat: 1.19 anInt2: 5702 dInt1: 7602 dVar1: 8552 dpInt1: 952 cEL: cvec[8] pvInt: [1410 ] pvFloat: [-0.471 ] dpvFloat: [0.290 ] -xAODTestReadCVe... INFO anInt1 1903 aFloat: 3800.2 pInt: 9503 pFloat: 2.19 anInt2: 5703 dInt1: 7603 dVar1: 8553 dpInt1: 953 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 1903 aFloat: 3800.2 pInt: 9503 pFloat: 2.19 anInt2: 5703 dInt1: 7603 dVar1: 8553 dpInt1: 953 cEL: cvec[7] pvInt: [1420 1421 ] pvFloat: [-0.461 -0.361 ] dpvFloat: [0.390 0.391 ] -xAODTestReadCVe... INFO anInt1 1904 aFloat: 3800.3 pInt: 9504 pFloat: 3.19 anInt2: 5704 dInt1: 7604 dVar1: 8554 dpInt1: 954 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 1904 aFloat: 3800.3 pInt: 9504 pFloat: 3.19 anInt2: 5704 dInt1: 7604 dVar1: 8554 dpInt1: 954 cEL: cvec[6] pvInt: [1430 1431 1432 ] pvFloat: [-0.451 -0.351 -0.251 ] dpvFloat: [0.490 0.491 0.492 ] -xAODTestReadCVe... INFO anInt1 1905 aFloat: 3800.4 pInt: 9505 pFloat: 4.19 anInt2: 5705 dInt1: 7605 dVar1: 8555 dpInt1: 955 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 1905 aFloat: 3800.4 pInt: 9505 pFloat: 4.19 anInt2: 5705 dInt1: 7605 dVar1: 8555 dpInt1: 955 cEL: cvec[5] pvInt: [1440 1441 1442 1443 ] pvFloat: [-0.441 -0.341 -0.241 -0.141 ] dpvFloat: [0.590 0.591 0.592 0.593 ] -xAODTestReadCVe... INFO anInt1 1906 aFloat: 3800.5 pInt: 9506 pFloat: 5.19 anInt2: 5706 dInt1: 7606 dVar1: 8556 dpInt1: 956 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 1906 aFloat: 3800.5 pInt: 9506 pFloat: 5.19 anInt2: 5706 dInt1: 7606 dVar1: 8556 dpInt1: 956 cEL: cvec[4] pvInt: [1450 1451 1452 1453 1454 ] pvFloat: [-0.431 -0.331 -0.231 -0.131 -0.031 ] dpvFloat: [0.690 0.691 0.692 0.693 0.694 ] -xAODTestReadCVe... INFO anInt1 1907 aFloat: 3800.6 pInt: 9507 pFloat: 6.19 anInt2: 5707 dInt1: 7607 dVar1: 8557 dpInt1: 957 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 1907 aFloat: 3800.6 pInt: 9507 pFloat: 6.19 anInt2: 5707 dInt1: 7607 dVar1: 8557 dpInt1: 957 cEL: cvec[3] pvInt: [1460 1461 1462 1463 1464 1465 ] pvFloat: [-0.421 -0.321 -0.221 -0.121 -0.021 0.079 ] dpvFloat: [0.790 0.791 0.792 0.793 0.794 0.795 ] -xAODTestReadCVe... INFO anInt1 1908 aFloat: 3800.7 pInt: 9508 pFloat: 7.19 anInt2: 5708 dInt1: 7608 dVar1: 8558 dpInt1: 958 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 1908 aFloat: 3800.7 pInt: 9508 pFloat: 7.19 anInt2: 5708 dInt1: 7608 dVar1: 8558 dpInt1: 958 cEL: cvec[2] pvInt: [1470 1471 1472 1473 1474 1475 1476 ] pvFloat: [-0.411 -0.311 -0.211 -0.111 -0.011 0.089 0.189 ] dpvFloat: [0.890 0.891 0.892 0.893 0.894 0.895 0.896 ] -xAODTestReadCVe... INFO anInt1 1909 aFloat: 3800.8 pInt: 9509 pFloat: 8.19 anInt2: 5709 dInt1: 7609 dVar1: 8559 dpInt1: 959 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 1909 aFloat: 3800.8 pInt: 9509 pFloat: 8.19 anInt2: 5709 dInt1: 7609 dVar1: 8559 dpInt1: 959 cEL: cvec[1] pvInt: [1480 1481 1482 1483 1484 1485 1486 1487 ] pvFloat: [-0.401 -0.301 -0.201 -0.101 -0.001 0.099 0.199 0.299 ] dpvFloat: [0.990 0.991 0.992 0.993 0.994 0.995 0.996 0.997 ] -xAODTestReadCVe... INFO anInt1 1910 aFloat: 3800.9 pInt: 9510 pFloat: 9.19 anInt2: 5710 dInt1: 7610 dVar1: 8560 dpInt1: 960 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 1910 aFloat: 3800.9 pInt: 9510 pFloat: 9.19 anInt2: 5710 dInt1: 7610 dVar1: 8560 dpInt1: 960 cEL: cvec[0] pvInt: [1490 1491 1492 1493 1494 1495 1496 1497 1498 ] pvFloat: [-0.391 -0.291 -0.191 -0.091 0.009 0.109 0.209 0.309 0.409 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 19000 aFloat: 1.9 anInt2: 38000 dInt1: 57000 cEL: cvec[9] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 19000 aFloat: 1.9 anInt2: 38000 dInt1: 57000 cEL: cvec[9] xAODTestRead_copy INFO 18 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 9501 aFloat: 11400 anInt2: 13301 dInt1: 9121 @@ -2391,9 +2387,9 @@ xAODTestRead_copy INFO anInt1 9506 aFloat: 11400.5 anInt2: 13306 dInt1: 9126 xAODTestRead_copy INFO anInt1 9507 aFloat: 11400.6 anInt2: 13307 dInt1: 9127 xAODTestRead_copy INFO anInt1 9508 aFloat: 11400.7 anInt2: 13308 dInt1: 9128 xAODTestRead_copy INFO copy_cvecWD 1019: 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 -xAODTestReadCVi... INFO copy_cview: 1910 1909 1908 1907 1906 1905 1904 1903 1902 1901 -xAODTestReadHVe... INFO copy_hvec: 7601.5 7602.5 7603.5 7604.5 7605.5 7606.5 7607.5 7608.5 7609.5 7610.5 7611.5 7612.5 7613.5 7614.5 7615.5 7616.5 7617.5 7618.5 7619.5 7620.5 -xAODTestReadHVe... INFO copy_hview: 7620.5 7619.5 7618.5 7617.5 7616.5 7615.5 7614.5 7613.5 7612.5 7611.5 7610.5 7609.5 7608.5 7607.5 7606.5 7605.5 7604.5 7603.5 7602.5 7601.5 +xAODTe...View_copy INFO copy_cview: 1910 1909 1908 1907 1906 1905 1904 1903 1902 1901 +xAODTe...HVec_copy INFO copy_hvec: 7601.5 7602.5 7603.5 7604.5 7605.5 7606.5 7607.5 7608.5 7609.5 7610.5 7611.5 7612.5 7613.5 7614.5 7615.5 7616.5 7617.5 7618.5 7619.5 7620.5 +xAODTe...HVec_copy INFO copy_hview: 7620.5 7619.5 7618.5 7617.5 7616.5 7615.5 7614.5 7613.5 7612.5 7611.5 7610.5 7609.5 7608.5 7607.5 7606.5 7605.5 7604.5 7603.5 7602.5 7601.5 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #0 18 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -2464,60 +2460,60 @@ xAODTestRead INFO cvecWD 1020: 4001 4002 4003 4004 4005 4006 4007 4008 4 xAODTestReadCView INFO cview: 2010 2009 2008 2007 2006 2005 2004 2003 2002 2001 xAODTestReadHVec INFO hvec: 8001.5 8002.5 8003.5 8004.5 8005.5 8006.5 8007.5 8008.5 8009.5 8010.5 8011.5 8012.5 8013.5 8014.5 8015.5 8016.5 8017.5 8018.5 8019.5 8020.5 xAODTestReadHVec INFO hview: 8020.5 8019.5 8018.5 8017.5 8016.5 8015.5 8014.5 8013.5 8012.5 8011.5 8010.5 8009.5 8008.5 8007.5 8006.5 8005.5 8004.5 8003.5 8002.5 8001.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 2001 aFloat: 4000 pInt: 10001 pFloat: 0.20 anInt2: 6001 dInt1: 8001 dVar1: 9001 dpInt1: 1001 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 2001 aFloat: 4000 pInt: 10001 pFloat: 0.20 anInt2: 6001 dInt1: 8001 dVar1: 9001 dpInt1: 1001 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 2002 aFloat: 4000.1 pInt: 10002 pFloat: 1.20 anInt2: 6002 dInt1: 8002 dVar1: 9002 dpInt1: 1002 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 2002 aFloat: 4000.1 pInt: 10002 pFloat: 1.20 anInt2: 6002 dInt1: 8002 dVar1: 9002 dpInt1: 1002 cEL: cvec[8] pvInt: [1510 ] pvFloat: [-0.470 ] dpvFloat: [0.300 ] -xAODTestReadCVe... INFO anInt1 2003 aFloat: 4000.2 pInt: 10003 pFloat: 2.20 anInt2: 6003 dInt1: 8003 dVar1: 9003 dpInt1: 1003 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 2003 aFloat: 4000.2 pInt: 10003 pFloat: 2.20 anInt2: 6003 dInt1: 8003 dVar1: 9003 dpInt1: 1003 cEL: cvec[7] pvInt: [1520 1521 ] pvFloat: [-0.460 -0.360 ] dpvFloat: [0.400 0.401 ] -xAODTestReadCVe... INFO anInt1 2004 aFloat: 4000.3 pInt: 10004 pFloat: 3.20 anInt2: 6004 dInt1: 8004 dVar1: 9004 dpInt1: 1004 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 2004 aFloat: 4000.3 pInt: 10004 pFloat: 3.20 anInt2: 6004 dInt1: 8004 dVar1: 9004 dpInt1: 1004 cEL: cvec[6] pvInt: [1530 1531 1532 ] pvFloat: [-0.450 -0.350 -0.250 ] dpvFloat: [0.500 0.501 0.502 ] -xAODTestReadCVe... INFO anInt1 2005 aFloat: 4000.4 pInt: 10005 pFloat: 4.20 anInt2: 6005 dInt1: 8005 dVar1: 9005 dpInt1: 1005 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 2005 aFloat: 4000.4 pInt: 10005 pFloat: 4.20 anInt2: 6005 dInt1: 8005 dVar1: 9005 dpInt1: 1005 cEL: cvec[5] pvInt: [1540 1541 1542 1543 ] pvFloat: [-0.440 -0.340 -0.240 -0.140 ] dpvFloat: [0.600 0.601 0.602 0.603 ] -xAODTestReadCVe... INFO anInt1 2006 aFloat: 4000.5 pInt: 10006 pFloat: 5.20 anInt2: 6006 dInt1: 8006 dVar1: 9006 dpInt1: 1006 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 2006 aFloat: 4000.5 pInt: 10006 pFloat: 5.20 anInt2: 6006 dInt1: 8006 dVar1: 9006 dpInt1: 1006 cEL: cvec[4] pvInt: [1550 1551 1552 1553 1554 ] pvFloat: [-0.430 -0.330 -0.230 -0.130 -0.030 ] dpvFloat: [0.700 0.701 0.702 0.703 0.704 ] -xAODTestReadCVe... INFO anInt1 2007 aFloat: 4000.6 pInt: 10007 pFloat: 6.20 anInt2: 6007 dInt1: 8007 dVar1: 9007 dpInt1: 1007 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 2007 aFloat: 4000.6 pInt: 10007 pFloat: 6.20 anInt2: 6007 dInt1: 8007 dVar1: 9007 dpInt1: 1007 cEL: cvec[3] pvInt: [1560 1561 1562 1563 1564 1565 ] pvFloat: [-0.420 -0.320 -0.220 -0.120 -0.020 0.080 ] dpvFloat: [0.800 0.801 0.802 0.803 0.804 0.805 ] -xAODTestReadCVe... INFO anInt1 2008 aFloat: 4000.7 pInt: 10008 pFloat: 7.20 anInt2: 6008 dInt1: 8008 dVar1: 9008 dpInt1: 1008 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 2008 aFloat: 4000.7 pInt: 10008 pFloat: 7.20 anInt2: 6008 dInt1: 8008 dVar1: 9008 dpInt1: 1008 cEL: cvec[2] pvInt: [1570 1571 1572 1573 1574 1575 1576 ] pvFloat: [-0.410 -0.310 -0.210 -0.110 -0.010 0.090 0.190 ] dpvFloat: [0.900 0.901 0.902 0.903 0.904 0.905 0.906 ] -xAODTestReadCVe... INFO anInt1 2009 aFloat: 4000.8 pInt: 10009 pFloat: 8.20 anInt2: 6009 dInt1: 8009 dVar1: 9009 dpInt1: 1009 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 2009 aFloat: 4000.8 pInt: 10009 pFloat: 8.20 anInt2: 6009 dInt1: 8009 dVar1: 9009 dpInt1: 1009 cEL: cvec[1] pvInt: [1580 1581 1582 1583 1584 1585 1586 1587 ] pvFloat: [-0.400 -0.300 -0.200 -0.100 0.000 0.100 0.200 0.300 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCVe... INFO anInt1 2010 aFloat: 4000.9 pInt: 10010 pFloat: 9.20 anInt2: 6010 dInt1: 8010 dVar1: 9010 dpInt1: 1010 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 2010 aFloat: 4000.9 pInt: 10010 pFloat: 9.20 anInt2: 6010 dInt1: 8010 dVar1: 9010 dpInt1: 1010 cEL: cvec[0] pvInt: [1590 1591 1592 1593 1594 1595 1596 1597 1598 ] pvFloat: [-0.390 -0.290 -0.190 -0.090 0.010 0.110 0.210 0.310 0.410 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 20000 aFloat: 2 anInt2: 40000 dInt1: 60000 cEL: cvec[0] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 20000 aFloat: 2 anInt2: 40000 dInt1: 60000 cEL: cvec[0] xAODTestRead_copy INFO 19 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 10001 aFloat: 12000 anInt2: 14001 dInt1: 9601 @@ -2529,9 +2525,9 @@ xAODTestRead_copy INFO anInt1 10006 aFloat: 12000.5 anInt2: 14006 dInt1: 960 xAODTestRead_copy INFO anInt1 10007 aFloat: 12000.6 anInt2: 14007 dInt1: 9607 xAODTestRead_copy INFO anInt1 10008 aFloat: 12000.7 anInt2: 14008 dInt1: 9608 xAODTestRead_copy INFO copy_cvecWD 1020: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 -xAODTestReadCVi... INFO copy_cview: 2010 2009 2008 2007 2006 2005 2004 2003 2002 2001 -xAODTestReadHVe... INFO copy_hvec: 8001.5 8002.5 8003.5 8004.5 8005.5 8006.5 8007.5 8008.5 8009.5 8010.5 8011.5 8012.5 8013.5 8014.5 8015.5 8016.5 8017.5 8018.5 8019.5 8020.5 -xAODTestReadHVe... INFO copy_hview: 8020.5 8019.5 8018.5 8017.5 8016.5 8015.5 8014.5 8013.5 8012.5 8011.5 8010.5 8009.5 8008.5 8007.5 8006.5 8005.5 8004.5 8003.5 8002.5 8001.5 +xAODTe...View_copy INFO copy_cview: 2010 2009 2008 2007 2006 2005 2004 2003 2002 2001 +xAODTe...HVec_copy INFO copy_hvec: 8001.5 8002.5 8003.5 8004.5 8005.5 8006.5 8007.5 8008.5 8009.5 8010.5 8011.5 8012.5 8013.5 8014.5 8015.5 8016.5 8017.5 8018.5 8019.5 8020.5 +xAODTe...HVec_copy INFO copy_hview: 8020.5 8019.5 8018.5 8017.5 8016.5 8015.5 8014.5 8013.5 8012.5 8011.5 8010.5 8009.5 8008.5 8007.5 8006.5 8005.5 8004.5 8003.5 8002.5 8001.5 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== xAODTestReadCVec INFO cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt @@ -2602,60 +2598,60 @@ xAODTestRead INFO cvecWD 1021: 4201 4202 4203 4204 4205 4206 4207 4208 4 xAODTestReadCView INFO cview: 2110 2109 2108 2107 2106 2105 2104 2103 2102 2101 xAODTestReadHVec INFO hvec: 8401.5 8402.5 8403.5 8404.5 8405.5 8406.5 8407.5 8408.5 8409.5 8410.5 8411.5 8412.5 8413.5 8414.5 8415.5 8416.5 8417.5 8418.5 8419.5 8420.5 xAODTestReadHVec INFO hview: 8420.5 8419.5 8418.5 8417.5 8416.5 8415.5 8414.5 8413.5 8412.5 8411.5 8410.5 8409.5 8408.5 8407.5 8406.5 8405.5 8404.5 8403.5 8402.5 8401.5 -xAODTestReadCVe... INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVe... INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVe... INFO anInt1 2101 aFloat: 4200 pInt: 10501 pFloat: 0.21 anInt2: 6301 dInt1: 8401 dVar1: 9451 dpInt1: 1051 cEL: cvec[9] +xAODTe...CVec_copy INFO copy_cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTe...CVec_copy INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTe...CVec_copy INFO anInt1 2101 aFloat: 4200 pInt: 10501 pFloat: 0.21 anInt2: 6301 dInt1: 8401 dVar1: 9451 dpInt1: 1051 cEL: cvec[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVe... INFO anInt1 2102 aFloat: 4200.1 pInt: 10502 pFloat: 1.21 anInt2: 6302 dInt1: 8402 dVar1: 9452 dpInt1: 1052 cEL: cvec[8] +xAODTe...CVec_copy INFO anInt1 2102 aFloat: 4200.1 pInt: 10502 pFloat: 1.21 anInt2: 6302 dInt1: 8402 dVar1: 9452 dpInt1: 1052 cEL: cvec[8] pvInt: [1610 ] pvFloat: [-0.469 ] dpvFloat: [0.310 ] -xAODTestReadCVe... INFO anInt1 2103 aFloat: 4200.2 pInt: 10503 pFloat: 2.21 anInt2: 6303 dInt1: 8403 dVar1: 9453 dpInt1: 1053 cEL: cvec[7] +xAODTe...CVec_copy INFO anInt1 2103 aFloat: 4200.2 pInt: 10503 pFloat: 2.21 anInt2: 6303 dInt1: 8403 dVar1: 9453 dpInt1: 1053 cEL: cvec[7] pvInt: [1620 1621 ] pvFloat: [-0.459 -0.359 ] dpvFloat: [0.410 0.411 ] -xAODTestReadCVe... INFO anInt1 2104 aFloat: 4200.3 pInt: 10504 pFloat: 3.21 anInt2: 6304 dInt1: 8404 dVar1: 9454 dpInt1: 1054 cEL: cvec[6] +xAODTe...CVec_copy INFO anInt1 2104 aFloat: 4200.3 pInt: 10504 pFloat: 3.21 anInt2: 6304 dInt1: 8404 dVar1: 9454 dpInt1: 1054 cEL: cvec[6] pvInt: [1630 1631 1632 ] pvFloat: [-0.449 -0.349 -0.249 ] dpvFloat: [0.510 0.511 0.512 ] -xAODTestReadCVe... INFO anInt1 2105 aFloat: 4200.4 pInt: 10505 pFloat: 4.21 anInt2: 6305 dInt1: 8405 dVar1: 9455 dpInt1: 1055 cEL: cvec[5] +xAODTe...CVec_copy INFO anInt1 2105 aFloat: 4200.4 pInt: 10505 pFloat: 4.21 anInt2: 6305 dInt1: 8405 dVar1: 9455 dpInt1: 1055 cEL: cvec[5] pvInt: [1640 1641 1642 1643 ] pvFloat: [-0.439 -0.339 -0.239 -0.139 ] dpvFloat: [0.610 0.611 0.612 0.613 ] -xAODTestReadCVe... INFO anInt1 2106 aFloat: 4200.5 pInt: 10506 pFloat: 5.21 anInt2: 6306 dInt1: 8406 dVar1: 9456 dpInt1: 1056 cEL: cvec[4] +xAODTe...CVec_copy INFO anInt1 2106 aFloat: 4200.5 pInt: 10506 pFloat: 5.21 anInt2: 6306 dInt1: 8406 dVar1: 9456 dpInt1: 1056 cEL: cvec[4] pvInt: [1650 1651 1652 1653 1654 ] pvFloat: [-0.429 -0.329 -0.229 -0.129 -0.029 ] dpvFloat: [0.710 0.711 0.712 0.713 0.714 ] -xAODTestReadCVe... INFO anInt1 2107 aFloat: 4200.6 pInt: 10507 pFloat: 6.21 anInt2: 6307 dInt1: 8407 dVar1: 9457 dpInt1: 1057 cEL: cvec[3] +xAODTe...CVec_copy INFO anInt1 2107 aFloat: 4200.6 pInt: 10507 pFloat: 6.21 anInt2: 6307 dInt1: 8407 dVar1: 9457 dpInt1: 1057 cEL: cvec[3] pvInt: [1660 1661 1662 1663 1664 1665 ] pvFloat: [-0.419 -0.319 -0.219 -0.119 -0.019 0.081 ] dpvFloat: [0.810 0.811 0.812 0.813 0.814 0.815 ] -xAODTestReadCVe... INFO anInt1 2108 aFloat: 4200.7 pInt: 10508 pFloat: 7.21 anInt2: 6308 dInt1: 8408 dVar1: 9458 dpInt1: 1058 cEL: cvec[2] +xAODTe...CVec_copy INFO anInt1 2108 aFloat: 4200.7 pInt: 10508 pFloat: 7.21 anInt2: 6308 dInt1: 8408 dVar1: 9458 dpInt1: 1058 cEL: cvec[2] pvInt: [1670 1671 1672 1673 1674 1675 1676 ] pvFloat: [-0.409 -0.309 -0.209 -0.109 -0.009 0.091 0.191 ] dpvFloat: [0.910 0.911 0.912 0.913 0.914 0.915 0.916 ] -xAODTestReadCVe... INFO anInt1 2109 aFloat: 4200.8 pInt: 10509 pFloat: 8.21 anInt2: 6309 dInt1: 8409 dVar1: 9459 dpInt1: 1059 cEL: cvec[1] +xAODTe...CVec_copy INFO anInt1 2109 aFloat: 4200.8 pInt: 10509 pFloat: 8.21 anInt2: 6309 dInt1: 8409 dVar1: 9459 dpInt1: 1059 cEL: cvec[1] pvInt: [1680 1681 1682 1683 1684 1685 1686 1687 ] pvFloat: [-0.399 -0.299 -0.199 -0.099 0.001 0.101 0.201 0.301 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCVe... INFO anInt1 2110 aFloat: 4200.9 pInt: 10510 pFloat: 9.21 anInt2: 6310 dInt1: 8410 dVar1: 9460 dpInt1: 1060 cEL: cvec[0] +xAODTe...CVec_copy INFO anInt1 2110 aFloat: 4200.9 pInt: 10510 pFloat: 9.21 anInt2: 6310 dInt1: 8410 dVar1: 9460 dpInt1: 1060 cEL: cvec[0] pvInt: [1690 1691 1692 1693 1694 1695 1696 1697 1698 ] pvFloat: [-0.389 -0.289 -0.189 -0.089 0.011 0.111 0.211 0.311 0.411 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCIn... INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base -xAODTestReadCIn... INFO cinfo anInt1 21000 aFloat: 2.1 anInt2: 42000 dInt1: 63000 cEL: cvec[1] +xAODTe...Info_copy INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Base +xAODTe...Info_copy INFO cinfo anInt1 21000 aFloat: 2.1 anInt2: 42000 dInt1: 63000 cEL: cvec[1] xAODTestRead_copy INFO 20 xAODTestRead_copy INFO ctrig aux items: aFloat anInt anInt2 dInt1 xAODTestRead_copy INFO anInt1 10501 aFloat: 12600 anInt2: 14701 dInt1: 10081 @@ -2667,15 +2663,11 @@ xAODTestRead_copy INFO anInt1 10506 aFloat: 12600.5 anInt2: 14706 dInt1: 100 xAODTestRead_copy INFO anInt1 10507 aFloat: 12600.6 anInt2: 14707 dInt1: 10087 xAODTestRead_copy INFO anInt1 10508 aFloat: 12600.7 anInt2: 14708 dInt1: 10088 xAODTestRead_copy INFO copy_cvecWD 1021: 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 -xAODTestReadCVi... INFO copy_cview: 2110 2109 2108 2107 2106 2105 2104 2103 2102 2101 -xAODTestReadHVe... INFO copy_hvec: 8401.5 8402.5 8403.5 8404.5 8405.5 8406.5 8407.5 8408.5 8409.5 8410.5 8411.5 8412.5 8413.5 8414.5 8415.5 8416.5 8417.5 8418.5 8419.5 8420.5 -xAODTestReadHVe... INFO copy_hview: 8420.5 8419.5 8418.5 8417.5 8416.5 8415.5 8414.5 8413.5 8412.5 8411.5 8410.5 8409.5 8408.5 8407.5 8406.5 8405.5 8404.5 8403.5 8402.5 8401.5 +xAODTe...View_copy INFO copy_cview: 2110 2109 2108 2107 2106 2105 2104 2103 2102 2101 +xAODTe...HVec_copy INFO copy_hvec: 8401.5 8402.5 8403.5 8404.5 8405.5 8406.5 8407.5 8408.5 8409.5 8410.5 8411.5 8412.5 8413.5 8414.5 8415.5 8416.5 8417.5 8418.5 8419.5 8420.5 +xAODTe...HVec_copy INFO copy_hview: 8420.5 8419.5 8418.5 8417.5 8416.5 8415.5 8414.5 8413.5 8412.5 8411.5 8410.5 8409.5 8408.5 8407.5 8406.5 8405.5 8404.5 8403.5 8402.5 8401.5 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestRead3_catalog.xml' does not exist. New file created. -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3MT.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3MT.ref index fbfe97bd75ca4a8302793d5e9f4c46c1dd9a3028..9f415adfc544a2c6000bb7cb478eaf88188233de 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3MT.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3MT.ref @@ -1,135 +1,55 @@ -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO configuring AthenaHive with [1] concurrent threads and [1] concurrent events -Py:AlgScheduler INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 1 threads -MessageSvc INFO Activating in a separate thread ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -AthenaHiveEventLoopMgr INFO Initializing AthenaHiveEventLoopMgr -MetaDataSvc INFO Initializing MetaDataSvc -EventSelector INFO EventSelection with query -PyComponentMgr 0 INFO Initializing PyComponentMgr... -LoadReadDicts 0 INFO Initializing LoadReadDicts... -ThreadPoolSvc 0 INFO no thread init tools attached -AvalancheSchedulerSvc 0 INFO Activating scheduler in a separate thread -AvalancheSchedulerSvc 0 INFO Found 19 algorithms -AvalancheSchedulerSvc 0 INFO Data Dependencies for Algorithms: - BeginIncFiringAlg - none - IncidentProcAlg1 - none - SGInputLoader - none - LoadReadDicts - none - cvecCnv - o OUTPUT ( 'DMTest::CVec' , 'StoreGateSvc+cvec' ) - o OUTPUT ( 'SG::AuxVectorBase' , 'StoreGateSvc+cvec' ) - xAODTestReadCVec - o INPUT ( 'DMTest::CVec' , 'StoreGateSvc+cvec' ) - xAODTestReadCInfo - o INPUT ( 'DMTest::C' , 'StoreGateSvc+cinfo' ) - xAODTestRead - o INPUT ( 'DMTest::CVec' , 'StoreGateSvc+ctrig' ) - o INPUT ( 'DMTest::CVecWithData' , 'StoreGateSvc+cvecWD' ) - xAODTestReadCView - o INPUT ( 'DMTest::CView' , 'StoreGateSvc+cview' ) - xAODTestReadHVec - o INPUT ( 'DMTest::HVec' , 'StoreGateSvc+hvec' ) - o INPUT ( 'DMTest::HVec' , 'StoreGateSvc+hview' ) - xAODTestReadCVec_copy - o INPUT ( 'DMTest::CVec' , 'StoreGateSvc+copy_cvec' ) - xAODTestReadCInfo_copy - o INPUT ( 'DMTest::C' , 'StoreGateSvc+copy_cinfo' ) - xAODTestRead_copy - o INPUT ( 'DMTest::CVec' , 'StoreGateSvc+copy_ctrig' ) - o INPUT ( 'DMTest::CVecWithData' , 'StoreGateSvc+copy_cvecWD' ) - xAODTestReadCView_copy - o INPUT ( 'DMTest::CView' , 'StoreGateSvc+copy_cview' ) - xAODTestReadHVec_copy - o INPUT ( 'DMTest::HVec' , 'StoreGateSvc+copy_hvec' ) - o INPUT ( 'DMTest::HVec' , 'StoreGateSvc+copy_hview' ) - EndIncFiringAlg - none - IncidentProcAlg2 - none - EndAlgorithmsFiringAlg - none - IncidentProcAlg3 - none -AvalancheSchedulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::C' , 'StoreGateSvc+cinfo' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadCInfo -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::C' , 'StoreGateSvc+copy_cinfo' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadCInfo_copy -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+copy_ctrig' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestRead_copy -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+copy_cvec' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadCVec_copy -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+ctrig' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestRead -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::CVecWithData' , 'StoreGateSvc+copy_cvecWD' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestRead_copy -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::CVecWithData' , 'StoreGateSvc+cvecWD' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestRead -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::CView' , 'StoreGateSvc+copy_cview' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadCView_copy -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::CView' , 'StoreGateSvc+cview' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadCView -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::HVec' , 'StoreGateSvc+copy_hvec' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadHVec_copy -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::HVec' , 'StoreGateSvc+copy_hview' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadHVec_copy -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::HVec' , 'StoreGateSvc+hvec' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadHVec -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::HVec' , 'StoreGateSvc+hview' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadHVec -PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules -PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully -AvalancheSchedulerSvc 0 INFO Concurrency level information: -AvalancheSchedulerSvc 0 INFO o Number of events in flight: 1 -AvalancheSchedulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 -AvalancheSchedulerSvc 0 INFO Task scheduling settings: -AvalancheSchedulerSvc 0 INFO o Avalanche generation mode: disabled -AvalancheSchedulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled -AvalancheSchedulerSvc 0 INFO o Scheduling of condition tasks: disabled -PrecedenceSvc 0 INFO -==================== Control Flow Configuration ================== - - AthMasterSeq [Seq] [Sequential] [Prompt] - AthAlgEvtSeq [Seq] [Sequential] - AthBeginSeq [Seq] [Sequential] [Prompt] - BeginIncFiringAlg [Alg] [n= 0] - IncidentProcAlg1 [Alg] [n= 0] [unclonable] - AthAllAlgSeq [Seq] [Concurrent] - AthAlgSeq [Seq] [Concurrent] [PASS] - SGInputLoader [Alg] [n= 1] - LoadReadDicts [Alg] [n= 1] [unclonable] - cvecCnv [Alg] [n= 0] - xAODTestReadCVec [Alg] [n= 0] - xAODTestReadCInfo [Alg] [n= 0] - xAODTestRead [Alg] [n= 0] - xAODTestReadCView [Alg] [n= 0] - xAODTestReadHVec [Alg] [n= 0] - xAODTestReadCVec_copy [Alg] [n= 0] - xAODTestReadCInfo_copy [Alg] [n= 0] - xAODTestRead_copy [Alg] [n= 0] - xAODTestReadCView_copy [Alg] [n= 0] - xAODTestReadHVec_copy [Alg] [n= 0] - AthCondSeq [Seq] [Concurrent] - AthEndSeq [Seq] [Sequential] [Prompt] - EndIncFiringAlg [Alg] [n= 0] - IncidentProcAlg2 [Alg] [n= 0] [unclonable] - AthOutSeq [Seq] [Concurrent] - EndAlgorithmsFiringAlg [Alg] [n= 0] - IncidentProcAlg3 [Alg] [n= 0] [unclonable] - -AthenaHiveEventLoopMgr 0 INFO Setup EventSelector service EventSelector -ApplicationMgr 0 INFO Application Manager Initialized successfully -ApplicationMgr 0 INFO Application Manager Started successfully -AthenaHiveEventLoopMgr 0 INFO Starting loop on events -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== +Athena...ntLoopMgr INFO Initializing AthenaHiveEventLoopMgr +PyComponentMgr 0 INFO Initializing PyComponentMgr... +LoadReadDicts 0 INFO Initializing LoadReadDicts... +ThreadPoolSvc 0 INFO no thread init tools attached +Avalan...edulerSvc 0 INFO Activating scheduler in a separate thread +Avalan...edulerSvc 0 INFO Found 18 algorithms +Avalan...edulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm +Avalan...edulerSvc 0 INFO o ( 'DMTest::C' , 'StoreGateSvc+cinfo' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadCInfo +Avalan...edulerSvc 0 INFO o ( 'DMTest::C' , 'StoreGateSvc+copy_cinfo' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadCInfo_copy +Avalan...edulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+copy_ctrig' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestRead_copy +Avalan...edulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+copy_cvec' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadCVec_copy +Avalan...edulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+ctrig' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestRead +Avalan...edulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+cvec' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadCVec +Avalan...edulerSvc 0 INFO o ( 'DMTest::CVecWithData' , 'StoreGateSvc+copy_cvecWD' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestRead_copy +Avalan...edulerSvc 0 INFO o ( 'DMTest::CVecWithData' , 'StoreGateSvc+cvecWD' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestRead +Avalan...edulerSvc 0 INFO o ( 'DMTest::CView' , 'StoreGateSvc+copy_cview' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadCView_copy +Avalan...edulerSvc 0 INFO o ( 'DMTest::CView' , 'StoreGateSvc+cview' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadCView +Avalan...edulerSvc 0 INFO o ( 'DMTest::HVec' , 'StoreGateSvc+copy_hvec' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadHVec_copy +Avalan...edulerSvc 0 INFO o ( 'DMTest::HVec' , 'StoreGateSvc+copy_hview' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadHVec_copy +Avalan...edulerSvc 0 INFO o ( 'DMTest::HVec' , 'StoreGateSvc+hvec' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadHVec +Avalan...edulerSvc 0 INFO o ( 'DMTest::HVec' , 'StoreGateSvc+hview' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadHVec +PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules +PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully +Avalan...edulerSvc 0 INFO Concurrency level information: +Avalan...edulerSvc 0 INFO o Number of events in flight: 1 +Avalan...edulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 +Avalan...edulerSvc 0 INFO Task scheduling settings: +Avalan...edulerSvc 0 INFO o Avalanche generation mode: disabled +Avalan...edulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled +Avalan...edulerSvc 0 INFO o Scheduling of condition tasks: disabled +EventSelector 0 INFO EventSelection with query +Athena...ntLoopMgr 0 INFO Setup EventSelector service EventSelector +ApplicationMgr 0 INFO Application Manager Initialized successfully +ApplicationMgr 0 INFO Application Manager Started successfully +Athena...ntLoopMgr 0 INFO Starting loop on events +Athena...ntLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== +Athena...ntLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -210,8 +130,8 @@ AthenaHiveEventLoopMgr 0 0 INFO ===>>> pvFloat: [-0.408 -0.308 -0.208 -0.108 -0.008 0.092 0.192 0.292 0.392 ] dpvFloat: [0.920 0.921 0.922 0.923 0.924 0.925 0.926 0.927 0.928 ] -AthenaHiveEventLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== -AthenaHiveEventLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== +Athena...ntLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== +Athena...ntLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -292,8 +212,8 @@ AthenaHiveEventLoopMgr 1 0 INFO ===>>> pvFloat: [-0.407 -0.307 -0.207 -0.107 -0.007 0.093 0.193 0.293 0.393 ] dpvFloat: [0.930 0.931 0.932 0.933 0.934 0.935 0.936 0.937 0.938 ] -AthenaHiveEventLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== -AthenaHiveEventLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== +Athena...ntLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== +Athena...ntLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -374,10 +294,10 @@ AthenaHiveEventLoopMgr 2 0 INFO ===>>> pvFloat: [-0.406 -0.306 -0.206 -0.106 -0.006 0.094 0.194 0.294 0.394 ] dpvFloat: [0.940 0.941 0.942 0.943 0.944 0.945 0.946 0.947 0.948 ] -AthenaHiveEventLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== -AthenaHiveEventLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== -AthenaHiveEventLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== -AthenaHiveEventLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== +Athena...ntLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== +Athena...ntLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== +Athena...ntLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== +Athena...ntLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -458,8 +378,8 @@ AthenaHiveEventLoopMgr 4 0 INFO ===>>> pvFloat: [-0.404 -0.304 -0.204 -0.104 -0.004 0.096 0.196 0.296 0.396 ] dpvFloat: [0.960 0.961 0.962 0.963 0.964 0.965 0.966 0.967 0.968 ] -AthenaHiveEventLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== -AthenaHiveEventLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== +Athena...ntLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== +Athena...ntLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -540,8 +460,8 @@ AthenaHiveEventLoopMgr 5 0 INFO ===>>> pvFloat: [-0.403 -0.303 -0.203 -0.103 -0.003 0.097 0.197 0.297 0.397 ] dpvFloat: [0.970 0.971 0.972 0.973 0.974 0.975 0.976 0.977 0.978 ] -AthenaHiveEventLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== -AthenaHiveEventLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== +Athena...ntLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== +Athena...ntLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -622,8 +542,8 @@ AthenaHiveEventLoopMgr 6 0 INFO ===>>> pvFloat: [-0.402 -0.302 -0.202 -0.102 -0.002 0.098 0.198 0.298 0.398 ] dpvFloat: [0.980 0.981 0.982 0.983 0.984 0.985 0.986 0.987 0.988 ] -AthenaHiveEventLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== -AthenaHiveEventLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== +Athena...ntLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== +Athena...ntLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -704,8 +624,8 @@ AthenaHiveEventLoopMgr 7 0 INFO ===>>> pvFloat: [-0.401 -0.301 -0.201 -0.101 -0.001 0.099 0.199 0.299 0.399 ] dpvFloat: [0.990 0.991 0.992 0.993 0.994 0.995 0.996 0.997 0.998 ] -AthenaHiveEventLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== -AthenaHiveEventLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== +Athena...ntLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== +Athena...ntLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -786,8 +706,8 @@ AthenaHiveEventLoopMgr 8 0 INFO ===>>> pvFloat: [-0.400 -0.300 -0.200 -0.100 0.000 0.100 0.200 0.300 0.400 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== -AthenaHiveEventLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== +Athena...ntLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== +Athena...ntLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -868,8 +788,8 @@ AthenaHiveEventLoopMgr 9 0 INFO ===>>> pvFloat: [-0.399 -0.299 -0.199 -0.099 0.001 0.101 0.201 0.301 0.401 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== -AthenaHiveEventLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== +Athena...ntLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== +Athena...ntLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -950,8 +870,8 @@ AthenaHiveEventLoopMgr 10 0 INFO ===>>> pvFloat: [-0.398 -0.298 -0.198 -0.098 0.002 0.102 0.202 0.302 0.402 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== -AthenaHiveEventLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== +Athena...ntLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== +Athena...ntLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -1032,8 +952,8 @@ AthenaHiveEventLoopMgr 11 0 INFO ===>>> pvFloat: [-0.397 -0.297 -0.197 -0.097 0.003 0.103 0.203 0.303 0.403 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== -AthenaHiveEventLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== +Athena...ntLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== +Athena...ntLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -1114,8 +1034,8 @@ AthenaHiveEventLoopMgr 12 0 INFO ===>>> pvFloat: [-0.396 -0.296 -0.196 -0.096 0.004 0.104 0.204 0.304 0.404 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== -AthenaHiveEventLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== +Athena...ntLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== +Athena...ntLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -1196,8 +1116,8 @@ AthenaHiveEventLoopMgr 13 0 INFO ===>>> pvFloat: [-0.395 -0.295 -0.195 -0.095 0.005 0.105 0.205 0.305 0.405 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== -AthenaHiveEventLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== +Athena...ntLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== +Athena...ntLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -1278,8 +1198,8 @@ AthenaHiveEventLoopMgr 14 0 INFO ===>>> pvFloat: [-0.394 -0.294 -0.194 -0.094 0.006 0.106 0.206 0.306 0.406 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== -AthenaHiveEventLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== +Athena...ntLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== +Athena...ntLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -1360,8 +1280,8 @@ AthenaHiveEventLoopMgr 15 0 INFO ===>>> pvFloat: [-0.393 -0.293 -0.193 -0.093 0.007 0.107 0.207 0.307 0.407 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== -AthenaHiveEventLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== +Athena...ntLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== +Athena...ntLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -1442,8 +1362,8 @@ AthenaHiveEventLoopMgr 16 0 INFO ===>>> pvFloat: [-0.392 -0.292 -0.192 -0.092 0.008 0.108 0.208 0.308 0.408 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== -AthenaHiveEventLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== +Athena...ntLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== +Athena...ntLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -1524,8 +1444,8 @@ AthenaHiveEventLoopMgr 17 0 INFO ===>>> pvFloat: [-0.391 -0.291 -0.191 -0.091 0.009 0.109 0.209 0.309 0.409 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== -AthenaHiveEventLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== +Athena...ntLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== +Athena...ntLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -1606,8 +1526,8 @@ AthenaHiveEventLoopMgr 18 0 INFO ===>>> pvFloat: [-0.390 -0.290 -0.190 -0.090 0.010 0.110 0.210 0.310 0.410 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== -AthenaHiveEventLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== +Athena...ntLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== +Athena...ntLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== pvInt: [] pvFloat: [] dpvFloat: [] @@ -1688,12 +1608,8 @@ AthenaHiveEventLoopMgr 19 0 INFO ===>>> pvFloat: [-0.389 -0.289 -0.189 -0.089 0.011 0.111 0.211 0.311 0.411 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -AthenaHiveEventLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== -ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestRead3MT_catalog.xml' does not exist. New file created. -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.finalize() INFO Service finalized successfully -ApplicationMgr INFO Application Manager Finalized successfully -ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +Athena...ntLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== +ApplicationMgr INFO Application Manager Stopped successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3MT_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3MT_jo.py deleted file mode 100644 index 83061927ffe5299287b0ff9a60283607c4addf20..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3MT_jo.py +++ /dev/null @@ -1,15 +0,0 @@ -# -# $Id$ -# -# File: share/xAODTestRead3MT_jo.py -# Author: snyder@bnl.gov -# Date: May 2019 -# Purpose: Testing dependency propagation. -# - -FILECATALOG = 'xAODTestRead3MT_catalog.xml' -include ('DataModelRunTests/xAODTestRead3_jo.py') - -from AthenaCommon.AlgScheduler import AlgScheduler -AlgScheduler.ShowControlFlow( True ) -AlgScheduler.ShowDataDependencies( True ) diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3_jo.py deleted file mode 100644 index f03f3138f0fbf0129c8c0374456d8619d644a3e1..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead3_jo.py +++ /dev/null @@ -1,83 +0,0 @@ -# -# $Id$ -# -# File: share/xAODTestRead3_jo.py -# Author: snyder@bnl.gov -# Date: May 2014 -# Purpose: Test reading objects with xAOD data. -# Read output of xAODTestTypelessRead_jo.py. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "xaoddata3.root" ] - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from AthenaServices.AthenaServicesConf import AthReadAlg -topSequence += AthReadAlg ('cvecCnv', - Key = 'DMTest::CVec/cvec') - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestReadCVec -from DataModelTestDataRead.DataModelTestDataReadConf import \ - DMTest__xAODTestReadCInfo, \ - DMTest__xAODTestReadCView, \ - DMTest__xAODTestReadHVec, \ - DMTest__xAODTestRead -topSequence += DMTest__xAODTestReadCVec ("xAODTestReadCVec") -topSequence += DMTest__xAODTestReadCInfo ("xAODTestReadCInfo") -topSequence += DMTest__xAODTestRead ("xAODTestRead", - GVecReadKey = '') -topSequence += DMTest__xAODTestReadCView ('xAODTestReadCView') -topSequence += DMTest__xAODTestReadHVec ("xAODTestReadHVec") -topSequence += DMTest__xAODTestReadCVec ("xAODTestReadCVec_copy", - CVecKey = "copy_cvec") -topSequence += DMTest__xAODTestReadCInfo ("xAODTestReadCInfo_copy", - CInfoKey = "copy_cinfo") -topSequence += DMTest__xAODTestRead ("xAODTestRead_copy", - CTrigReadKey = 'copy_ctrig', - GVecReadKey = '', - CVecWDReadKey = 'copy_cvecWD') -topSequence += DMTest__xAODTestReadCView ("xAODTestReadCView_copy", - CViewKey = "copy_cview") -topSequence += DMTest__xAODTestReadHVec ("xAODTestReadHVec_copy", - HVecKey = "copy_hvec", - HViewKey = "copy_hview") - - -# Avoid races when running tests in parallel. -if 'FILECATALOG' not in globals(): - FILECATALOG = 'xAODTestRead3_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') - diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilter.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilter.ref index 7746649905e7e1f97542b82cf7e7813b3f4b7035..dc0709e3c22e025e675a2bef76f90e92bc7d9a65 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilter.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilter.ref @@ -1,16 +1,15 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... +DecisionSvc INFO Inserting stream: OutputStreamStream1 with no Algs +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +Output...ream1Tool INFO Initializing OutputStreamStream1.StreamStream1Tool MetaDataSvc INFO Initializing MetaDataSvc EventSelector INFO EventSelection with query -DecisionSvc INFO Inserting stream: Stream1 with no Algs -Stream1.Stream1... INFO Initializing Stream1.Stream1Tool -Stream1 INFO Data output: xaoddata_filt.root -Stream1 INFO ../O reinitialization... +Output...amStream1 INFO Data output: xaoddata_filt.root +Output...amStream1 INFO ../O reinitialization... AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully @@ -55,12 +54,10 @@ AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -Stream1 INFO Metadata records written: 21 +Output...amStream1 INFO Metadata records written: 21 ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestReadFilter_catalog.xml' does not exist. New file created. AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilterRead.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilterRead.ref index 5d5eaa12b3501e7f84b09f40afd74d41d05a140d..f562f5ccf58664b683520c6524daa4308ad35e57 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilterRead.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilterRead.ref @@ -1,11 +1,7 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... -MetaDataSvc INFO Initializing MetaDataSvc EventSelector INFO EventSelection with query AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully @@ -607,10 +603,6 @@ xAODTestReadCInfo INFO cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt1Ba xAODTestReadCInfo INFO cinfo anInt1 21111 aFloat: 113.1 anInt2: 42111 dInt1: 63111 cEL: cvec[1] AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestReadFilterRead_catalog.xml' does not exist. New file created. -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilterRead_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilterRead_jo.py deleted file mode 100644 index 4029742b49cc746899588c7160d416f51326fd84..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilterRead_jo.py +++ /dev/null @@ -1,57 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODTestReadRemap_jo.py -# Author: snyder@bnl.gov -# Date: Aug 2016 -# Purpose: Test reading xAOD objects data with remapping on input. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "xaoddata_filt.root" ] - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestReadCVec -from DataModelTestDataRead.DataModelTestDataReadConf import \ - DMTest__xAODTestReadCInfo - - -topSequence += DMTest__xAODTestReadCVec ('xAODTestReadCVec') -topSequence += DMTest__xAODTestReadCInfo ('xAODTestReadCInfo') - - -# Avoid races when running tests in parallel. -FILECATALOG = 'xAODTestReadFilterRead_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilter_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilter_jo.py deleted file mode 100644 index 952308abb3d571b6f82ceb34008353fa736e8365..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilter_jo.py +++ /dev/null @@ -1,103 +0,0 @@ -# -# $Id$ -# -# File: DataModelRuntests/share/xAODTestReadFilter_jo.py -# Author: snyder@bnl.gov -# Date: Sep 2016 -# Purpose: Test reading xAOD objects data with renaming on input. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "xaoddata.root" ] - -from SGComps import AddressRemappingSvc -AddressRemappingSvc.addInputRename ('DMTest::CVec', 'cvec', 'cvec_renamed') -AddressRemappingSvc.addInputRename ('DMTest::CAuxContainer', - 'cvecAux.', 'cvec_renamedAux.') - -#-------------------------------------------------------------- -# Define output -#-------------------------------------------------------------- -# ItemList: -include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" ) -fullItemList+=["DMTest::CVec#cvec"] -fullItemList+=["xAOD::AuxContainerBase!#cvecAux."] -fullItemList+=["DMTest::C#cinfo"] -fullItemList+=["DMTest::CInfoAuxContainer#cinfoAux."] - -ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += ["DEFAULT_SPLITLEVEL='1'"] - -from OutputStreamAthenaPool.MultipleStreamManager import MSMgr - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestWriteCInfo, \ - DMTest__xAODTestDecor -from DataModelTestDataRead.DataModelTestDataReadConf import \ - DMTest__xAODTestFilterCVec - - -topSequence += DMTest__xAODTestFilterCVec ('xAODTestFilterCVec') -topSequence += DMTest__xAODTestWriteCInfo ('xAODTestWriteCInfo', - Offset = 111) -topSequence += DMTest__xAODTestDecor ('xAODTestDecor', - DoCVec = False, - DoCTrig = False) - - -# Stream's output file -Stream1_Augmented = MSMgr.NewPoolStream ('Stream1', 'xaoddata_filt.root',asAlg=True,noTag=True) - -from xAODEventFormatCnv.xAODEventFormatCnvConf import xAODMaker__EventFormatStreamHelperTool -for tool in Stream1_Augmented.GetEventStream().HelperTools: - if isinstance(tool, xAODMaker__EventFormatStreamHelperTool): - tool.TypeNames += [ - 'DataVector<DMTest::C_v1>', - 'DMTest::CAuxContainer_v1', - 'DMTest::C_v1', - ] - break - - - -Stream1 = Stream1_Augmented.GetEventStream() -Stream1.WritingTool.SubLevelBranchName = '<key>' -Stream1.ItemList += fullItemList # List of DO's to write out - - -# Avoid races when running tests in parallel. -FILECATALOG = 'xAODTestReadFilter_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') - diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadMT_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadMT_jo.py deleted file mode 100644 index 5bcd258d240ccc85a19e8960fd64914124471957..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadMT_jo.py +++ /dev/null @@ -1,10 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODTestReadMT_jo.py -# Author: snyder@bnl.gov -# Date: May 2019 -# Purpose: Test data depedencies. -# - -include ('DataModelRunTests/xAODTestRead_jo.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRename.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRename.ref index 069a873ad50a2fc1cffb3fbccb41a835769f4e10..e3666b3d750d76b4fbcfe4a3881d30c95bfafbd2 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRename.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRename.ref @@ -1,11 +1,7 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... -MetaDataSvc INFO Initializing MetaDataSvc EventSelector INFO EventSelection with query AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully @@ -1122,10 +1118,6 @@ xAODTestReadDecor INFO cinfo.dInt1_renamedBase: 63001 xAODTestReadDecor INFO cinfo.dInt1_renamed: 63000 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestReadRename_catalog.xml' does not exist. New file created. -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRenameMT.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRenameMT.ref index 7b3e7bced2488bef1cba92325431714dea273940..49f15f6567690c4d320b3976c4a8e30259a943c0 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRenameMT.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRenameMT.ref @@ -1,1156 +1,1145 @@ -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO configuring AthenaHive with [1] concurrent threads and [1] concurrent events -Py:AlgScheduler INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 1 threads -MessageSvc INFO Activating in a separate thread ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -AthenaHiveEventLoopMgr INFO Initializing AthenaHiveEventLoopMgr -MetaDataSvc INFO Initializing MetaDataSvc -EventSelector INFO EventSelection with query -PyComponentMgr 0 INFO Initializing PyComponentMgr... -LoadReadDicts 0 INFO Initializing LoadReadDicts... -ThreadPoolSvc 0 INFO no thread init tools attached -AvalancheSchedulerSvc 0 INFO Activating scheduler in a separate thread -AvalancheSchedulerSvc 0 INFO Found 10 algorithms -AvalancheSchedulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+cvec_renamed' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadCVec -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+cvec_renamed.dInt1_renamed' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadDecor -AvalancheSchedulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+cinfo.dInt1_renamed' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadDecor -AvalancheSchedulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+cinfo.dInt1_renamedBase' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadDecor -PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules -PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully -AvalancheSchedulerSvc 0 INFO Concurrency level information: -AvalancheSchedulerSvc 0 INFO o Number of events in flight: 1 -AvalancheSchedulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 -AvalancheSchedulerSvc 0 INFO Task scheduling settings: -AvalancheSchedulerSvc 0 INFO o Avalanche generation mode: disabled -AvalancheSchedulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled -AvalancheSchedulerSvc 0 INFO o Scheduling of condition tasks: disabled -AthenaHiveEventLoopMgr 0 INFO Setup EventSelector service EventSelector -ApplicationMgr 0 INFO Application Manager Initialized successfully -ApplicationMgr 0 INFO Application Manager Started successfully -AthenaHiveEventLoopMgr 0 INFO Starting loop on events -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== -xAODTestReadCVec 0 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 0 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 0 0 INFO anInt1 201 aFloat: 400 pInt: 1001 pFloat: 0.02 anInt2: 601 dVar1: 901 dpInt1: 101 cEL: cvec_renamed[9] +Athena...ntLoopMgr INFO Initializing AthenaHiveEventLoopMgr +PyComponentMgr 0 INFO Initializing PyComponentMgr... +LoadReadDicts 0 INFO Initializing LoadReadDicts... +ThreadPoolSvc 0 INFO no thread init tools attached +Avalan...edulerSvc 0 INFO Activating scheduler in a separate thread +Avalan...edulerSvc 0 INFO Found 10 algorithms +Avalan...edulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm +Avalan...edulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+cvec_renamed' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadCVec +Avalan...edulerSvc 0 INFO o ( 'DMTest::CVec' , 'StoreGateSvc+cvec_renamed.dInt1_renamed' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadDecor +Avalan...edulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+cinfo.dInt1_renamed' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadDecor +Avalan...edulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+cinfo.dInt1_renamedBase' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadDecor +PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules +PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully +Avalan...edulerSvc 0 INFO Concurrency level information: +Avalan...edulerSvc 0 INFO o Number of events in flight: 1 +Avalan...edulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 +Avalan...edulerSvc 0 INFO Task scheduling settings: +Avalan...edulerSvc 0 INFO o Avalanche generation mode: disabled +Avalan...edulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled +Avalan...edulerSvc 0 INFO o Scheduling of condition tasks: disabled +EventSelector 0 INFO EventSelection with query +Athena...ntLoopMgr 0 INFO Setup EventSelector service EventSelector +ApplicationMgr 0 INFO Application Manager Initialized successfully +ApplicationMgr 0 INFO Application Manager Started successfully +Athena...ntLoopMgr 0 INFO Starting loop on events +Athena...ntLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== +Athena...ntLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== +xAODTestReadCVec 0 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 0 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 0 0 INFO anInt1 201 aFloat: 400 pInt: 1001 pFloat: 0.02 anInt2: 601 dVar1: 901 dpInt1: 101 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 0 0 INFO anInt1 202 aFloat: 400.1 pInt: 1002 pFloat: 1.02 anInt2: 602 dVar1: 902 dpInt1: 102 cEL: cvec_renamed[8] +xAODTestReadCVec 0 0 INFO anInt1 202 aFloat: 400.1 pInt: 1002 pFloat: 1.02 anInt2: 602 dVar1: 902 dpInt1: 102 cEL: cvec_renamed[8] pvInt: [-290 ] pvFloat: [-0.488 ] dpvFloat: [0.120 ] -xAODTestReadCVec 0 0 INFO anInt1 203 aFloat: 400.2 pInt: 1003 pFloat: 2.02 anInt2: 603 dVar1: 903 dpInt1: 103 cEL: cvec_renamed[7] +xAODTestReadCVec 0 0 INFO anInt1 203 aFloat: 400.2 pInt: 1003 pFloat: 2.02 anInt2: 603 dVar1: 903 dpInt1: 103 cEL: cvec_renamed[7] pvInt: [-280 -279 ] pvFloat: [-0.478 -0.378 ] dpvFloat: [0.220 0.221 ] -xAODTestReadCVec 0 0 INFO anInt1 204 aFloat: 400.3 pInt: 1004 pFloat: 3.02 anInt2: 604 dVar1: 904 dpInt1: 104 cEL: cvec_renamed[6] +xAODTestReadCVec 0 0 INFO anInt1 204 aFloat: 400.3 pInt: 1004 pFloat: 3.02 anInt2: 604 dVar1: 904 dpInt1: 104 cEL: cvec_renamed[6] pvInt: [-270 -269 -268 ] pvFloat: [-0.468 -0.368 -0.268 ] dpvFloat: [0.320 0.321 0.322 ] -xAODTestReadCVec 0 0 INFO anInt1 205 aFloat: 400.4 pInt: 1005 pFloat: 4.02 anInt2: 605 dVar1: 905 dpInt1: 105 cEL: cvec_renamed[5] +xAODTestReadCVec 0 0 INFO anInt1 205 aFloat: 400.4 pInt: 1005 pFloat: 4.02 anInt2: 605 dVar1: 905 dpInt1: 105 cEL: cvec_renamed[5] pvInt: [-260 -259 -258 -257 ] pvFloat: [-0.458 -0.358 -0.258 -0.158 ] dpvFloat: [0.420 0.421 0.422 0.423 ] -xAODTestReadCVec 0 0 INFO anInt1 206 aFloat: 400.5 pInt: 1006 pFloat: 5.02 anInt2: 606 dVar1: 906 dpInt1: 106 cEL: cvec_renamed[4] +xAODTestReadCVec 0 0 INFO anInt1 206 aFloat: 400.5 pInt: 1006 pFloat: 5.02 anInt2: 606 dVar1: 906 dpInt1: 106 cEL: cvec_renamed[4] pvInt: [-250 -249 -248 -247 -246 ] pvFloat: [-0.448 -0.348 -0.248 -0.148 -0.048 ] dpvFloat: [0.520 0.521 0.522 0.523 0.524 ] -xAODTestReadCVec 0 0 INFO anInt1 207 aFloat: 400.6 pInt: 1007 pFloat: 6.02 anInt2: 607 dVar1: 907 dpInt1: 107 cEL: cvec_renamed[3] +xAODTestReadCVec 0 0 INFO anInt1 207 aFloat: 400.6 pInt: 1007 pFloat: 6.02 anInt2: 607 dVar1: 907 dpInt1: 107 cEL: cvec_renamed[3] pvInt: [-240 -239 -238 -237 -236 -235 ] pvFloat: [-0.438 -0.338 -0.238 -0.138 -0.038 0.062 ] dpvFloat: [0.620 0.621 0.622 0.623 0.624 0.625 ] -xAODTestReadCVec 0 0 INFO anInt1 208 aFloat: 400.7 pInt: 1008 pFloat: 7.02 anInt2: 608 dVar1: 908 dpInt1: 108 cEL: cvec_renamed[2] +xAODTestReadCVec 0 0 INFO anInt1 208 aFloat: 400.7 pInt: 1008 pFloat: 7.02 anInt2: 608 dVar1: 908 dpInt1: 108 cEL: cvec_renamed[2] pvInt: [-230 -229 -228 -227 -226 -225 -224 ] pvFloat: [-0.428 -0.328 -0.228 -0.128 -0.028 0.072 0.172 ] dpvFloat: [0.720 0.721 0.722 0.723 0.724 0.725 0.726 ] -xAODTestReadCVec 0 0 INFO anInt1 209 aFloat: 400.8 pInt: 1009 pFloat: 8.02 anInt2: 609 dVar1: 909 dpInt1: 109 cEL: cvec_renamed[1] +xAODTestReadCVec 0 0 INFO anInt1 209 aFloat: 400.8 pInt: 1009 pFloat: 8.02 anInt2: 609 dVar1: 909 dpInt1: 109 cEL: cvec_renamed[1] pvInt: [-220 -219 -218 -217 -216 -215 -214 -213 ] pvFloat: [-0.418 -0.318 -0.218 -0.118 -0.018 0.082 0.182 0.282 ] dpvFloat: [0.820 0.821 0.822 0.823 0.824 0.825 0.826 0.827 ] -xAODTestReadCVec 0 0 INFO anInt1 210 aFloat: 400.9 pInt: 1010 pFloat: 9.02 anInt2: 610 dVar1: 910 dpInt1: 110 cEL: cvec_renamed[0] +xAODTestReadCVec 0 0 INFO anInt1 210 aFloat: 400.9 pInt: 1010 pFloat: 9.02 anInt2: 610 dVar1: 910 dpInt1: 110 cEL: cvec_renamed[0] pvInt: [-210 -209 -208 -207 -206 -205 -204 -203 -202 ] pvFloat: [-0.408 -0.308 -0.208 -0.108 -0.008 0.092 0.192 0.292 0.392 ] dpvFloat: [0.920 0.921 0.922 0.923 0.924 0.925 0.926 0.927 0.928 ] -xAODTestReadDecor 0 0 INFO cvec_renamed.dInt1_renamed: 801 802 803 804 805 806 807 808 809 810 -xAODTestReadDecor 0 0 INFO cinfo.dInt1_renamed: 6000 -xAODTestReadDecor 0 0 INFO cinfo.dInt1_renamedBase: 6001 -xAODTestReadDecor 0 0 INFO cinfo.dInt1_renamed: 6000 -AthenaHiveEventLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== -AthenaHiveEventLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== -xAODTestReadCVec 1 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 1 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 1 0 INFO anInt1 301 aFloat: 600 pInt: 1501 pFloat: 0.03 anInt2: 901 dVar1: 1351 dpInt1: 151 cEL: cvec_renamed[9] +xAODTestReadDecor 0 0 INFO cvec_renamed.dInt1_renamed: 801 802 803 804 805 806 807 808 809 810 +xAODTestReadDecor 0 0 INFO cinfo.dInt1_renamed: 6000 +xAODTestReadDecor 0 0 INFO cinfo.dInt1_renamedBase: 6001 +xAODTestReadDecor 0 0 INFO cinfo.dInt1_renamed: 6000 +Athena...ntLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== +Athena...ntLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== +xAODTestReadCVec 1 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 1 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 1 0 INFO anInt1 301 aFloat: 600 pInt: 1501 pFloat: 0.03 anInt2: 901 dVar1: 1351 dpInt1: 151 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 1 0 INFO anInt1 302 aFloat: 600.1 pInt: 1502 pFloat: 1.03 anInt2: 902 dVar1: 1352 dpInt1: 152 cEL: cvec_renamed[8] +xAODTestReadCVec 1 0 INFO anInt1 302 aFloat: 600.1 pInt: 1502 pFloat: 1.03 anInt2: 902 dVar1: 1352 dpInt1: 152 cEL: cvec_renamed[8] pvInt: [-190 ] pvFloat: [-0.487 ] dpvFloat: [0.130 ] -xAODTestReadCVec 1 0 INFO anInt1 303 aFloat: 600.2 pInt: 1503 pFloat: 2.03 anInt2: 903 dVar1: 1353 dpInt1: 153 cEL: cvec_renamed[7] +xAODTestReadCVec 1 0 INFO anInt1 303 aFloat: 600.2 pInt: 1503 pFloat: 2.03 anInt2: 903 dVar1: 1353 dpInt1: 153 cEL: cvec_renamed[7] pvInt: [-180 -179 ] pvFloat: [-0.477 -0.377 ] dpvFloat: [0.230 0.231 ] -xAODTestReadCVec 1 0 INFO anInt1 304 aFloat: 600.3 pInt: 1504 pFloat: 3.03 anInt2: 904 dVar1: 1354 dpInt1: 154 cEL: cvec_renamed[6] +xAODTestReadCVec 1 0 INFO anInt1 304 aFloat: 600.3 pInt: 1504 pFloat: 3.03 anInt2: 904 dVar1: 1354 dpInt1: 154 cEL: cvec_renamed[6] pvInt: [-170 -169 -168 ] pvFloat: [-0.467 -0.367 -0.267 ] dpvFloat: [0.330 0.331 0.332 ] -xAODTestReadCVec 1 0 INFO anInt1 305 aFloat: 600.4 pInt: 1505 pFloat: 4.03 anInt2: 905 dVar1: 1355 dpInt1: 155 cEL: cvec_renamed[5] +xAODTestReadCVec 1 0 INFO anInt1 305 aFloat: 600.4 pInt: 1505 pFloat: 4.03 anInt2: 905 dVar1: 1355 dpInt1: 155 cEL: cvec_renamed[5] pvInt: [-160 -159 -158 -157 ] pvFloat: [-0.457 -0.357 -0.257 -0.157 ] dpvFloat: [0.430 0.431 0.432 0.433 ] -xAODTestReadCVec 1 0 INFO anInt1 306 aFloat: 600.5 pInt: 1506 pFloat: 5.03 anInt2: 906 dVar1: 1356 dpInt1: 156 cEL: cvec_renamed[4] +xAODTestReadCVec 1 0 INFO anInt1 306 aFloat: 600.5 pInt: 1506 pFloat: 5.03 anInt2: 906 dVar1: 1356 dpInt1: 156 cEL: cvec_renamed[4] pvInt: [-150 -149 -148 -147 -146 ] pvFloat: [-0.447 -0.347 -0.247 -0.147 -0.047 ] dpvFloat: [0.530 0.531 0.532 0.533 0.534 ] -xAODTestReadCVec 1 0 INFO anInt1 307 aFloat: 600.6 pInt: 1507 pFloat: 6.03 anInt2: 907 dVar1: 1357 dpInt1: 157 cEL: cvec_renamed[3] +xAODTestReadCVec 1 0 INFO anInt1 307 aFloat: 600.6 pInt: 1507 pFloat: 6.03 anInt2: 907 dVar1: 1357 dpInt1: 157 cEL: cvec_renamed[3] pvInt: [-140 -139 -138 -137 -136 -135 ] pvFloat: [-0.437 -0.337 -0.237 -0.137 -0.037 0.063 ] dpvFloat: [0.630 0.631 0.632 0.633 0.634 0.635 ] -xAODTestReadCVec 1 0 INFO anInt1 308 aFloat: 600.7 pInt: 1508 pFloat: 7.03 anInt2: 908 dVar1: 1358 dpInt1: 158 cEL: cvec_renamed[2] +xAODTestReadCVec 1 0 INFO anInt1 308 aFloat: 600.7 pInt: 1508 pFloat: 7.03 anInt2: 908 dVar1: 1358 dpInt1: 158 cEL: cvec_renamed[2] pvInt: [-130 -129 -128 -127 -126 -125 -124 ] pvFloat: [-0.427 -0.327 -0.227 -0.127 -0.027 0.073 0.173 ] dpvFloat: [0.730 0.731 0.732 0.733 0.734 0.735 0.736 ] -xAODTestReadCVec 1 0 INFO anInt1 309 aFloat: 600.8 pInt: 1509 pFloat: 8.03 anInt2: 909 dVar1: 1359 dpInt1: 159 cEL: cvec_renamed[1] +xAODTestReadCVec 1 0 INFO anInt1 309 aFloat: 600.8 pInt: 1509 pFloat: 8.03 anInt2: 909 dVar1: 1359 dpInt1: 159 cEL: cvec_renamed[1] pvInt: [-120 -119 -118 -117 -116 -115 -114 -113 ] pvFloat: [-0.417 -0.317 -0.217 -0.117 -0.017 0.083 0.183 0.283 ] dpvFloat: [0.830 0.831 0.832 0.833 0.834 0.835 0.836 0.837 ] -xAODTestReadCVec 1 0 INFO anInt1 310 aFloat: 600.9 pInt: 1510 pFloat: 9.03 anInt2: 910 dVar1: 1360 dpInt1: 160 cEL: cvec_renamed[0] +xAODTestReadCVec 1 0 INFO anInt1 310 aFloat: 600.9 pInt: 1510 pFloat: 9.03 anInt2: 910 dVar1: 1360 dpInt1: 160 cEL: cvec_renamed[0] pvInt: [-110 -109 -108 -107 -106 -105 -104 -103 -102 ] pvFloat: [-0.407 -0.307 -0.207 -0.107 -0.007 0.093 0.193 0.293 0.393 ] dpvFloat: [0.930 0.931 0.932 0.933 0.934 0.935 0.936 0.937 0.938 ] -xAODTestReadDecor 1 0 INFO cvec_renamed.dInt1_renamed: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 -xAODTestReadDecor 1 0 INFO cinfo.dInt1_renamed: 9000 -xAODTestReadDecor 1 0 INFO cinfo.dInt1_renamedBase: 9001 -xAODTestReadDecor 1 0 INFO cinfo.dInt1_renamed: 9000 -AthenaHiveEventLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== -AthenaHiveEventLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== -xAODTestReadCVec 2 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 2 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 2 0 INFO anInt1 401 aFloat: 800 pInt: 2001 pFloat: 0.04 anInt2: 1201 dVar1: 1801 dpInt1: 201 cEL: cvec_renamed[9] +xAODTestReadDecor 1 0 INFO cvec_renamed.dInt1_renamed: 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 +xAODTestReadDecor 1 0 INFO cinfo.dInt1_renamed: 9000 +xAODTestReadDecor 1 0 INFO cinfo.dInt1_renamedBase: 9001 +xAODTestReadDecor 1 0 INFO cinfo.dInt1_renamed: 9000 +Athena...ntLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== +Athena...ntLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== +xAODTestReadCVec 2 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 2 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 2 0 INFO anInt1 401 aFloat: 800 pInt: 2001 pFloat: 0.04 anInt2: 1201 dVar1: 1801 dpInt1: 201 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 2 0 INFO anInt1 402 aFloat: 800.1 pInt: 2002 pFloat: 1.04 anInt2: 1202 dVar1: 1802 dpInt1: 202 cEL: cvec_renamed[8] +xAODTestReadCVec 2 0 INFO anInt1 402 aFloat: 800.1 pInt: 2002 pFloat: 1.04 anInt2: 1202 dVar1: 1802 dpInt1: 202 cEL: cvec_renamed[8] pvInt: [-90 ] pvFloat: [-0.486 ] dpvFloat: [0.140 ] -xAODTestReadCVec 2 0 INFO anInt1 403 aFloat: 800.2 pInt: 2003 pFloat: 2.04 anInt2: 1203 dVar1: 1803 dpInt1: 203 cEL: cvec_renamed[7] +xAODTestReadCVec 2 0 INFO anInt1 403 aFloat: 800.2 pInt: 2003 pFloat: 2.04 anInt2: 1203 dVar1: 1803 dpInt1: 203 cEL: cvec_renamed[7] pvInt: [-80 -79 ] pvFloat: [-0.476 -0.376 ] dpvFloat: [0.240 0.241 ] -xAODTestReadCVec 2 0 INFO anInt1 404 aFloat: 800.3 pInt: 2004 pFloat: 3.04 anInt2: 1204 dVar1: 1804 dpInt1: 204 cEL: cvec_renamed[6] +xAODTestReadCVec 2 0 INFO anInt1 404 aFloat: 800.3 pInt: 2004 pFloat: 3.04 anInt2: 1204 dVar1: 1804 dpInt1: 204 cEL: cvec_renamed[6] pvInt: [-70 -69 -68 ] pvFloat: [-0.466 -0.366 -0.266 ] dpvFloat: [0.340 0.341 0.342 ] -xAODTestReadCVec 2 0 INFO anInt1 405 aFloat: 800.4 pInt: 2005 pFloat: 4.04 anInt2: 1205 dVar1: 1805 dpInt1: 205 cEL: cvec_renamed[5] +xAODTestReadCVec 2 0 INFO anInt1 405 aFloat: 800.4 pInt: 2005 pFloat: 4.04 anInt2: 1205 dVar1: 1805 dpInt1: 205 cEL: cvec_renamed[5] pvInt: [-60 -59 -58 -57 ] pvFloat: [-0.456 -0.356 -0.256 -0.156 ] dpvFloat: [0.440 0.441 0.442 0.443 ] -xAODTestReadCVec 2 0 INFO anInt1 406 aFloat: 800.5 pInt: 2006 pFloat: 5.04 anInt2: 1206 dVar1: 1806 dpInt1: 206 cEL: cvec_renamed[4] +xAODTestReadCVec 2 0 INFO anInt1 406 aFloat: 800.5 pInt: 2006 pFloat: 5.04 anInt2: 1206 dVar1: 1806 dpInt1: 206 cEL: cvec_renamed[4] pvInt: [-50 -49 -48 -47 -46 ] pvFloat: [-0.446 -0.346 -0.246 -0.146 -0.046 ] dpvFloat: [0.540 0.541 0.542 0.543 0.544 ] -xAODTestReadCVec 2 0 INFO anInt1 407 aFloat: 800.6 pInt: 2007 pFloat: 6.04 anInt2: 1207 dVar1: 1807 dpInt1: 207 cEL: cvec_renamed[3] +xAODTestReadCVec 2 0 INFO anInt1 407 aFloat: 800.6 pInt: 2007 pFloat: 6.04 anInt2: 1207 dVar1: 1807 dpInt1: 207 cEL: cvec_renamed[3] pvInt: [-40 -39 -38 -37 -36 -35 ] pvFloat: [-0.436 -0.336 -0.236 -0.136 -0.036 0.064 ] dpvFloat: [0.640 0.641 0.642 0.643 0.644 0.645 ] -xAODTestReadCVec 2 0 INFO anInt1 408 aFloat: 800.7 pInt: 2008 pFloat: 7.04 anInt2: 1208 dVar1: 1808 dpInt1: 208 cEL: cvec_renamed[2] +xAODTestReadCVec 2 0 INFO anInt1 408 aFloat: 800.7 pInt: 2008 pFloat: 7.04 anInt2: 1208 dVar1: 1808 dpInt1: 208 cEL: cvec_renamed[2] pvInt: [-30 -29 -28 -27 -26 -25 -24 ] pvFloat: [-0.426 -0.326 -0.226 -0.126 -0.026 0.074 0.174 ] dpvFloat: [0.740 0.741 0.742 0.743 0.744 0.745 0.746 ] -xAODTestReadCVec 2 0 INFO anInt1 409 aFloat: 800.8 pInt: 2009 pFloat: 8.04 anInt2: 1209 dVar1: 1809 dpInt1: 209 cEL: cvec_renamed[1] +xAODTestReadCVec 2 0 INFO anInt1 409 aFloat: 800.8 pInt: 2009 pFloat: 8.04 anInt2: 1209 dVar1: 1809 dpInt1: 209 cEL: cvec_renamed[1] pvInt: [-20 -19 -18 -17 -16 -15 -14 -13 ] pvFloat: [-0.416 -0.316 -0.216 -0.116 -0.016 0.084 0.184 0.284 ] dpvFloat: [0.840 0.841 0.842 0.843 0.844 0.845 0.846 0.847 ] -xAODTestReadCVec 2 0 INFO anInt1 410 aFloat: 800.9 pInt: 2010 pFloat: 9.04 anInt2: 1210 dVar1: 1810 dpInt1: 210 cEL: cvec_renamed[0] +xAODTestReadCVec 2 0 INFO anInt1 410 aFloat: 800.9 pInt: 2010 pFloat: 9.04 anInt2: 1210 dVar1: 1810 dpInt1: 210 cEL: cvec_renamed[0] pvInt: [-10 -9 -8 -7 -6 -5 -4 -3 -2 ] pvFloat: [-0.406 -0.306 -0.206 -0.106 -0.006 0.094 0.194 0.294 0.394 ] dpvFloat: [0.940 0.941 0.942 0.943 0.944 0.945 0.946 0.947 0.948 ] -xAODTestReadDecor 2 0 INFO cvec_renamed.dInt1_renamed: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 -xAODTestReadDecor 2 0 INFO cinfo.dInt1_renamed: 12000 -xAODTestReadDecor 2 0 INFO cinfo.dInt1_renamedBase: 12001 -xAODTestReadDecor 2 0 INFO cinfo.dInt1_renamed: 12000 -AthenaHiveEventLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== -AthenaHiveEventLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== -xAODTestReadCVec 3 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 3 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadDecor 3 0 INFO cvec_renamed.dInt1_renamed: -xAODTestReadDecor 3 0 INFO cinfo.dInt1_renamed: 15000 -xAODTestReadDecor 3 0 INFO cinfo.dInt1_renamedBase: 15001 -xAODTestReadDecor 3 0 INFO cinfo.dInt1_renamed: 15000 -AthenaHiveEventLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== -AthenaHiveEventLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== -xAODTestReadCVec 4 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 4 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 4 0 INFO anInt1 601 aFloat: 1200 pInt: 3001 pFloat: 0.06 anInt2: 1801 dVar1: 2701 dpInt1: 301 cEL: cvec_renamed[9] +xAODTestReadDecor 2 0 INFO cvec_renamed.dInt1_renamed: 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 +xAODTestReadDecor 2 0 INFO cinfo.dInt1_renamed: 12000 +xAODTestReadDecor 2 0 INFO cinfo.dInt1_renamedBase: 12001 +xAODTestReadDecor 2 0 INFO cinfo.dInt1_renamed: 12000 +Athena...ntLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== +Athena...ntLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== +xAODTestReadCVec 3 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 3 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadDecor 3 0 INFO cvec_renamed.dInt1_renamed: +xAODTestReadDecor 3 0 INFO cinfo.dInt1_renamed: 15000 +xAODTestReadDecor 3 0 INFO cinfo.dInt1_renamedBase: 15001 +xAODTestReadDecor 3 0 INFO cinfo.dInt1_renamed: 15000 +Athena...ntLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== +Athena...ntLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== +xAODTestReadCVec 4 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 4 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 4 0 INFO anInt1 601 aFloat: 1200 pInt: 3001 pFloat: 0.06 anInt2: 1801 dVar1: 2701 dpInt1: 301 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 4 0 INFO anInt1 602 aFloat: 1200.1 pInt: 3002 pFloat: 1.06 anInt2: 1802 dVar1: 2702 dpInt1: 302 cEL: cvec_renamed[8] +xAODTestReadCVec 4 0 INFO anInt1 602 aFloat: 1200.1 pInt: 3002 pFloat: 1.06 anInt2: 1802 dVar1: 2702 dpInt1: 302 cEL: cvec_renamed[8] pvInt: [110 ] pvFloat: [-0.484 ] dpvFloat: [0.160 ] -xAODTestReadCVec 4 0 INFO anInt1 603 aFloat: 1200.2 pInt: 3003 pFloat: 2.06 anInt2: 1803 dVar1: 2703 dpInt1: 303 cEL: cvec_renamed[7] +xAODTestReadCVec 4 0 INFO anInt1 603 aFloat: 1200.2 pInt: 3003 pFloat: 2.06 anInt2: 1803 dVar1: 2703 dpInt1: 303 cEL: cvec_renamed[7] pvInt: [120 121 ] pvFloat: [-0.474 -0.374 ] dpvFloat: [0.260 0.261 ] -xAODTestReadCVec 4 0 INFO anInt1 604 aFloat: 1200.3 pInt: 3004 pFloat: 3.06 anInt2: 1804 dVar1: 2704 dpInt1: 304 cEL: cvec_renamed[6] +xAODTestReadCVec 4 0 INFO anInt1 604 aFloat: 1200.3 pInt: 3004 pFloat: 3.06 anInt2: 1804 dVar1: 2704 dpInt1: 304 cEL: cvec_renamed[6] pvInt: [130 131 132 ] pvFloat: [-0.464 -0.364 -0.264 ] dpvFloat: [0.360 0.361 0.362 ] -xAODTestReadCVec 4 0 INFO anInt1 605 aFloat: 1200.4 pInt: 3005 pFloat: 4.06 anInt2: 1805 dVar1: 2705 dpInt1: 305 cEL: cvec_renamed[5] +xAODTestReadCVec 4 0 INFO anInt1 605 aFloat: 1200.4 pInt: 3005 pFloat: 4.06 anInt2: 1805 dVar1: 2705 dpInt1: 305 cEL: cvec_renamed[5] pvInt: [140 141 142 143 ] pvFloat: [-0.454 -0.354 -0.254 -0.154 ] dpvFloat: [0.460 0.461 0.462 0.463 ] -xAODTestReadCVec 4 0 INFO anInt1 606 aFloat: 1200.5 pInt: 3006 pFloat: 5.06 anInt2: 1806 dVar1: 2706 dpInt1: 306 cEL: cvec_renamed[4] +xAODTestReadCVec 4 0 INFO anInt1 606 aFloat: 1200.5 pInt: 3006 pFloat: 5.06 anInt2: 1806 dVar1: 2706 dpInt1: 306 cEL: cvec_renamed[4] pvInt: [150 151 152 153 154 ] pvFloat: [-0.444 -0.344 -0.244 -0.144 -0.044 ] dpvFloat: [0.560 0.561 0.562 0.563 0.564 ] -xAODTestReadCVec 4 0 INFO anInt1 607 aFloat: 1200.6 pInt: 3007 pFloat: 6.06 anInt2: 1807 dVar1: 2707 dpInt1: 307 cEL: cvec_renamed[3] +xAODTestReadCVec 4 0 INFO anInt1 607 aFloat: 1200.6 pInt: 3007 pFloat: 6.06 anInt2: 1807 dVar1: 2707 dpInt1: 307 cEL: cvec_renamed[3] pvInt: [160 161 162 163 164 165 ] pvFloat: [-0.434 -0.334 -0.234 -0.134 -0.034 0.066 ] dpvFloat: [0.660 0.661 0.662 0.663 0.664 0.665 ] -xAODTestReadCVec 4 0 INFO anInt1 608 aFloat: 1200.7 pInt: 3008 pFloat: 7.06 anInt2: 1808 dVar1: 2708 dpInt1: 308 cEL: cvec_renamed[2] +xAODTestReadCVec 4 0 INFO anInt1 608 aFloat: 1200.7 pInt: 3008 pFloat: 7.06 anInt2: 1808 dVar1: 2708 dpInt1: 308 cEL: cvec_renamed[2] pvInt: [170 171 172 173 174 175 176 ] pvFloat: [-0.424 -0.324 -0.224 -0.124 -0.024 0.076 0.176 ] dpvFloat: [0.760 0.761 0.762 0.763 0.764 0.765 0.766 ] -xAODTestReadCVec 4 0 INFO anInt1 609 aFloat: 1200.8 pInt: 3009 pFloat: 8.06 anInt2: 1809 dVar1: 2709 dpInt1: 309 cEL: cvec_renamed[1] +xAODTestReadCVec 4 0 INFO anInt1 609 aFloat: 1200.8 pInt: 3009 pFloat: 8.06 anInt2: 1809 dVar1: 2709 dpInt1: 309 cEL: cvec_renamed[1] pvInt: [180 181 182 183 184 185 186 187 ] pvFloat: [-0.414 -0.314 -0.214 -0.114 -0.014 0.086 0.186 0.286 ] dpvFloat: [0.860 0.861 0.862 0.863 0.864 0.865 0.866 0.867 ] -xAODTestReadCVec 4 0 INFO anInt1 610 aFloat: 1200.9 pInt: 3010 pFloat: 9.06 anInt2: 1810 dVar1: 2710 dpInt1: 310 cEL: cvec_renamed[0] +xAODTestReadCVec 4 0 INFO anInt1 610 aFloat: 1200.9 pInt: 3010 pFloat: 9.06 anInt2: 1810 dVar1: 2710 dpInt1: 310 cEL: cvec_renamed[0] pvInt: [190 191 192 193 194 195 196 197 198 ] pvFloat: [-0.404 -0.304 -0.204 -0.104 -0.004 0.096 0.196 0.296 0.396 ] dpvFloat: [0.960 0.961 0.962 0.963 0.964 0.965 0.966 0.967 0.968 ] -xAODTestReadDecor 4 0 INFO cvec_renamed.dInt1_renamed: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 -xAODTestReadDecor 4 0 INFO cinfo.dInt1_renamed: 18000 -xAODTestReadDecor 4 0 INFO cinfo.dInt1_renamedBase: 18001 -xAODTestReadDecor 4 0 INFO cinfo.dInt1_renamed: 18000 -AthenaHiveEventLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== -AthenaHiveEventLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== -xAODTestReadCVec 5 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 5 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 5 0 INFO anInt1 701 aFloat: 1400 pInt: 3501 pFloat: 0.07 anInt2: 2101 dVar1: 3151 dpInt1: 351 cEL: cvec_renamed[9] +xAODTestReadDecor 4 0 INFO cvec_renamed.dInt1_renamed: 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 +xAODTestReadDecor 4 0 INFO cinfo.dInt1_renamed: 18000 +xAODTestReadDecor 4 0 INFO cinfo.dInt1_renamedBase: 18001 +xAODTestReadDecor 4 0 INFO cinfo.dInt1_renamed: 18000 +Athena...ntLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== +Athena...ntLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== +xAODTestReadCVec 5 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 5 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 5 0 INFO anInt1 701 aFloat: 1400 pInt: 3501 pFloat: 0.07 anInt2: 2101 dVar1: 3151 dpInt1: 351 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 5 0 INFO anInt1 702 aFloat: 1400.1 pInt: 3502 pFloat: 1.07 anInt2: 2102 dVar1: 3152 dpInt1: 352 cEL: cvec_renamed[8] +xAODTestReadCVec 5 0 INFO anInt1 702 aFloat: 1400.1 pInt: 3502 pFloat: 1.07 anInt2: 2102 dVar1: 3152 dpInt1: 352 cEL: cvec_renamed[8] pvInt: [210 ] pvFloat: [-0.483 ] dpvFloat: [0.170 ] -xAODTestReadCVec 5 0 INFO anInt1 703 aFloat: 1400.2 pInt: 3503 pFloat: 2.07 anInt2: 2103 dVar1: 3153 dpInt1: 353 cEL: cvec_renamed[7] +xAODTestReadCVec 5 0 INFO anInt1 703 aFloat: 1400.2 pInt: 3503 pFloat: 2.07 anInt2: 2103 dVar1: 3153 dpInt1: 353 cEL: cvec_renamed[7] pvInt: [220 221 ] pvFloat: [-0.473 -0.373 ] dpvFloat: [0.270 0.271 ] -xAODTestReadCVec 5 0 INFO anInt1 704 aFloat: 1400.3 pInt: 3504 pFloat: 3.07 anInt2: 2104 dVar1: 3154 dpInt1: 354 cEL: cvec_renamed[6] +xAODTestReadCVec 5 0 INFO anInt1 704 aFloat: 1400.3 pInt: 3504 pFloat: 3.07 anInt2: 2104 dVar1: 3154 dpInt1: 354 cEL: cvec_renamed[6] pvInt: [230 231 232 ] pvFloat: [-0.463 -0.363 -0.263 ] dpvFloat: [0.370 0.371 0.372 ] -xAODTestReadCVec 5 0 INFO anInt1 705 aFloat: 1400.4 pInt: 3505 pFloat: 4.07 anInt2: 2105 dVar1: 3155 dpInt1: 355 cEL: cvec_renamed[5] +xAODTestReadCVec 5 0 INFO anInt1 705 aFloat: 1400.4 pInt: 3505 pFloat: 4.07 anInt2: 2105 dVar1: 3155 dpInt1: 355 cEL: cvec_renamed[5] pvInt: [240 241 242 243 ] pvFloat: [-0.453 -0.353 -0.253 -0.153 ] dpvFloat: [0.470 0.471 0.472 0.473 ] -xAODTestReadCVec 5 0 INFO anInt1 706 aFloat: 1400.5 pInt: 3506 pFloat: 5.07 anInt2: 2106 dVar1: 3156 dpInt1: 356 cEL: cvec_renamed[4] +xAODTestReadCVec 5 0 INFO anInt1 706 aFloat: 1400.5 pInt: 3506 pFloat: 5.07 anInt2: 2106 dVar1: 3156 dpInt1: 356 cEL: cvec_renamed[4] pvInt: [250 251 252 253 254 ] pvFloat: [-0.443 -0.343 -0.243 -0.143 -0.043 ] dpvFloat: [0.570 0.571 0.572 0.573 0.574 ] -xAODTestReadCVec 5 0 INFO anInt1 707 aFloat: 1400.6 pInt: 3507 pFloat: 6.07 anInt2: 2107 dVar1: 3157 dpInt1: 357 cEL: cvec_renamed[3] +xAODTestReadCVec 5 0 INFO anInt1 707 aFloat: 1400.6 pInt: 3507 pFloat: 6.07 anInt2: 2107 dVar1: 3157 dpInt1: 357 cEL: cvec_renamed[3] pvInt: [260 261 262 263 264 265 ] pvFloat: [-0.433 -0.333 -0.233 -0.133 -0.033 0.067 ] dpvFloat: [0.670 0.671 0.672 0.673 0.674 0.675 ] -xAODTestReadCVec 5 0 INFO anInt1 708 aFloat: 1400.7 pInt: 3508 pFloat: 7.07 anInt2: 2108 dVar1: 3158 dpInt1: 358 cEL: cvec_renamed[2] +xAODTestReadCVec 5 0 INFO anInt1 708 aFloat: 1400.7 pInt: 3508 pFloat: 7.07 anInt2: 2108 dVar1: 3158 dpInt1: 358 cEL: cvec_renamed[2] pvInt: [270 271 272 273 274 275 276 ] pvFloat: [-0.423 -0.323 -0.223 -0.123 -0.023 0.077 0.177 ] dpvFloat: [0.770 0.771 0.772 0.773 0.774 0.775 0.776 ] -xAODTestReadCVec 5 0 INFO anInt1 709 aFloat: 1400.8 pInt: 3509 pFloat: 8.07 anInt2: 2109 dVar1: 3159 dpInt1: 359 cEL: cvec_renamed[1] +xAODTestReadCVec 5 0 INFO anInt1 709 aFloat: 1400.8 pInt: 3509 pFloat: 8.07 anInt2: 2109 dVar1: 3159 dpInt1: 359 cEL: cvec_renamed[1] pvInt: [280 281 282 283 284 285 286 287 ] pvFloat: [-0.413 -0.313 -0.213 -0.113 -0.013 0.087 0.187 0.287 ] dpvFloat: [0.870 0.871 0.872 0.873 0.874 0.875 0.876 0.877 ] -xAODTestReadCVec 5 0 INFO anInt1 710 aFloat: 1400.9 pInt: 3510 pFloat: 9.07 anInt2: 2110 dVar1: 3160 dpInt1: 360 cEL: cvec_renamed[0] +xAODTestReadCVec 5 0 INFO anInt1 710 aFloat: 1400.9 pInt: 3510 pFloat: 9.07 anInt2: 2110 dVar1: 3160 dpInt1: 360 cEL: cvec_renamed[0] pvInt: [290 291 292 293 294 295 296 297 298 ] pvFloat: [-0.403 -0.303 -0.203 -0.103 -0.003 0.097 0.197 0.297 0.397 ] dpvFloat: [0.970 0.971 0.972 0.973 0.974 0.975 0.976 0.977 0.978 ] -xAODTestReadDecor 5 0 INFO cvec_renamed.dInt1_renamed: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 -xAODTestReadDecor 5 0 INFO cinfo.dInt1_renamed: 21000 -xAODTestReadDecor 5 0 INFO cinfo.dInt1_renamedBase: 21001 -xAODTestReadDecor 5 0 INFO cinfo.dInt1_renamed: 21000 -AthenaHiveEventLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== -AthenaHiveEventLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== -xAODTestReadCVec 6 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 6 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 6 0 INFO anInt1 801 aFloat: 1600 pInt: 4001 pFloat: 0.08 anInt2: 2401 dVar1: 3601 dpInt1: 401 cEL: cvec_renamed[9] +xAODTestReadDecor 5 0 INFO cvec_renamed.dInt1_renamed: 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 +xAODTestReadDecor 5 0 INFO cinfo.dInt1_renamed: 21000 +xAODTestReadDecor 5 0 INFO cinfo.dInt1_renamedBase: 21001 +xAODTestReadDecor 5 0 INFO cinfo.dInt1_renamed: 21000 +Athena...ntLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== +Athena...ntLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== +xAODTestReadCVec 6 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 6 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 6 0 INFO anInt1 801 aFloat: 1600 pInt: 4001 pFloat: 0.08 anInt2: 2401 dVar1: 3601 dpInt1: 401 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 6 0 INFO anInt1 802 aFloat: 1600.1 pInt: 4002 pFloat: 1.08 anInt2: 2402 dVar1: 3602 dpInt1: 402 cEL: cvec_renamed[8] +xAODTestReadCVec 6 0 INFO anInt1 802 aFloat: 1600.1 pInt: 4002 pFloat: 1.08 anInt2: 2402 dVar1: 3602 dpInt1: 402 cEL: cvec_renamed[8] pvInt: [310 ] pvFloat: [-0.482 ] dpvFloat: [0.180 ] -xAODTestReadCVec 6 0 INFO anInt1 803 aFloat: 1600.2 pInt: 4003 pFloat: 2.08 anInt2: 2403 dVar1: 3603 dpInt1: 403 cEL: cvec_renamed[7] +xAODTestReadCVec 6 0 INFO anInt1 803 aFloat: 1600.2 pInt: 4003 pFloat: 2.08 anInt2: 2403 dVar1: 3603 dpInt1: 403 cEL: cvec_renamed[7] pvInt: [320 321 ] pvFloat: [-0.472 -0.372 ] dpvFloat: [0.280 0.281 ] -xAODTestReadCVec 6 0 INFO anInt1 804 aFloat: 1600.3 pInt: 4004 pFloat: 3.08 anInt2: 2404 dVar1: 3604 dpInt1: 404 cEL: cvec_renamed[6] +xAODTestReadCVec 6 0 INFO anInt1 804 aFloat: 1600.3 pInt: 4004 pFloat: 3.08 anInt2: 2404 dVar1: 3604 dpInt1: 404 cEL: cvec_renamed[6] pvInt: [330 331 332 ] pvFloat: [-0.462 -0.362 -0.262 ] dpvFloat: [0.380 0.381 0.382 ] -xAODTestReadCVec 6 0 INFO anInt1 805 aFloat: 1600.4 pInt: 4005 pFloat: 4.08 anInt2: 2405 dVar1: 3605 dpInt1: 405 cEL: cvec_renamed[5] +xAODTestReadCVec 6 0 INFO anInt1 805 aFloat: 1600.4 pInt: 4005 pFloat: 4.08 anInt2: 2405 dVar1: 3605 dpInt1: 405 cEL: cvec_renamed[5] pvInt: [340 341 342 343 ] pvFloat: [-0.452 -0.352 -0.252 -0.152 ] dpvFloat: [0.480 0.481 0.482 0.483 ] -xAODTestReadCVec 6 0 INFO anInt1 806 aFloat: 1600.5 pInt: 4006 pFloat: 5.08 anInt2: 2406 dVar1: 3606 dpInt1: 406 cEL: cvec_renamed[4] +xAODTestReadCVec 6 0 INFO anInt1 806 aFloat: 1600.5 pInt: 4006 pFloat: 5.08 anInt2: 2406 dVar1: 3606 dpInt1: 406 cEL: cvec_renamed[4] pvInt: [350 351 352 353 354 ] pvFloat: [-0.442 -0.342 -0.242 -0.142 -0.042 ] dpvFloat: [0.580 0.581 0.582 0.583 0.584 ] -xAODTestReadCVec 6 0 INFO anInt1 807 aFloat: 1600.6 pInt: 4007 pFloat: 6.08 anInt2: 2407 dVar1: 3607 dpInt1: 407 cEL: cvec_renamed[3] +xAODTestReadCVec 6 0 INFO anInt1 807 aFloat: 1600.6 pInt: 4007 pFloat: 6.08 anInt2: 2407 dVar1: 3607 dpInt1: 407 cEL: cvec_renamed[3] pvInt: [360 361 362 363 364 365 ] pvFloat: [-0.432 -0.332 -0.232 -0.132 -0.032 0.068 ] dpvFloat: [0.680 0.681 0.682 0.683 0.684 0.685 ] -xAODTestReadCVec 6 0 INFO anInt1 808 aFloat: 1600.7 pInt: 4008 pFloat: 7.08 anInt2: 2408 dVar1: 3608 dpInt1: 408 cEL: cvec_renamed[2] +xAODTestReadCVec 6 0 INFO anInt1 808 aFloat: 1600.7 pInt: 4008 pFloat: 7.08 anInt2: 2408 dVar1: 3608 dpInt1: 408 cEL: cvec_renamed[2] pvInt: [370 371 372 373 374 375 376 ] pvFloat: [-0.422 -0.322 -0.222 -0.122 -0.022 0.078 0.178 ] dpvFloat: [0.780 0.781 0.782 0.783 0.784 0.785 0.786 ] -xAODTestReadCVec 6 0 INFO anInt1 809 aFloat: 1600.8 pInt: 4009 pFloat: 8.08 anInt2: 2409 dVar1: 3609 dpInt1: 409 cEL: cvec_renamed[1] +xAODTestReadCVec 6 0 INFO anInt1 809 aFloat: 1600.8 pInt: 4009 pFloat: 8.08 anInt2: 2409 dVar1: 3609 dpInt1: 409 cEL: cvec_renamed[1] pvInt: [380 381 382 383 384 385 386 387 ] pvFloat: [-0.412 -0.312 -0.212 -0.112 -0.012 0.088 0.188 0.288 ] dpvFloat: [0.880 0.881 0.882 0.883 0.884 0.885 0.886 0.887 ] -xAODTestReadCVec 6 0 INFO anInt1 810 aFloat: 1600.9 pInt: 4010 pFloat: 9.08 anInt2: 2410 dVar1: 3610 dpInt1: 410 cEL: cvec_renamed[0] +xAODTestReadCVec 6 0 INFO anInt1 810 aFloat: 1600.9 pInt: 4010 pFloat: 9.08 anInt2: 2410 dVar1: 3610 dpInt1: 410 cEL: cvec_renamed[0] pvInt: [390 391 392 393 394 395 396 397 398 ] pvFloat: [-0.402 -0.302 -0.202 -0.102 -0.002 0.098 0.198 0.298 0.398 ] dpvFloat: [0.980 0.981 0.982 0.983 0.984 0.985 0.986 0.987 0.988 ] -xAODTestReadDecor 6 0 INFO cvec_renamed.dInt1_renamed: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 -xAODTestReadDecor 6 0 INFO cinfo.dInt1_renamed: 24000 -xAODTestReadDecor 6 0 INFO cinfo.dInt1_renamedBase: 24001 -xAODTestReadDecor 6 0 INFO cinfo.dInt1_renamed: 24000 -AthenaHiveEventLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== -AthenaHiveEventLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== -xAODTestReadCVec 7 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 7 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 7 0 INFO anInt1 901 aFloat: 1800 pInt: 4501 pFloat: 0.09 anInt2: 2701 dVar1: 4051 dpInt1: 451 cEL: cvec_renamed[9] +xAODTestReadDecor 6 0 INFO cvec_renamed.dInt1_renamed: 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 +xAODTestReadDecor 6 0 INFO cinfo.dInt1_renamed: 24000 +xAODTestReadDecor 6 0 INFO cinfo.dInt1_renamedBase: 24001 +xAODTestReadDecor 6 0 INFO cinfo.dInt1_renamed: 24000 +Athena...ntLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== +Athena...ntLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== +xAODTestReadCVec 7 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 7 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 7 0 INFO anInt1 901 aFloat: 1800 pInt: 4501 pFloat: 0.09 anInt2: 2701 dVar1: 4051 dpInt1: 451 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 7 0 INFO anInt1 902 aFloat: 1800.1 pInt: 4502 pFloat: 1.09 anInt2: 2702 dVar1: 4052 dpInt1: 452 cEL: cvec_renamed[8] +xAODTestReadCVec 7 0 INFO anInt1 902 aFloat: 1800.1 pInt: 4502 pFloat: 1.09 anInt2: 2702 dVar1: 4052 dpInt1: 452 cEL: cvec_renamed[8] pvInt: [410 ] pvFloat: [-0.481 ] dpvFloat: [0.190 ] -xAODTestReadCVec 7 0 INFO anInt1 903 aFloat: 1800.2 pInt: 4503 pFloat: 2.09 anInt2: 2703 dVar1: 4053 dpInt1: 453 cEL: cvec_renamed[7] +xAODTestReadCVec 7 0 INFO anInt1 903 aFloat: 1800.2 pInt: 4503 pFloat: 2.09 anInt2: 2703 dVar1: 4053 dpInt1: 453 cEL: cvec_renamed[7] pvInt: [420 421 ] pvFloat: [-0.471 -0.371 ] dpvFloat: [0.290 0.291 ] -xAODTestReadCVec 7 0 INFO anInt1 904 aFloat: 1800.3 pInt: 4504 pFloat: 3.09 anInt2: 2704 dVar1: 4054 dpInt1: 454 cEL: cvec_renamed[6] +xAODTestReadCVec 7 0 INFO anInt1 904 aFloat: 1800.3 pInt: 4504 pFloat: 3.09 anInt2: 2704 dVar1: 4054 dpInt1: 454 cEL: cvec_renamed[6] pvInt: [430 431 432 ] pvFloat: [-0.461 -0.361 -0.261 ] dpvFloat: [0.390 0.391 0.392 ] -xAODTestReadCVec 7 0 INFO anInt1 905 aFloat: 1800.4 pInt: 4505 pFloat: 4.09 anInt2: 2705 dVar1: 4055 dpInt1: 455 cEL: cvec_renamed[5] +xAODTestReadCVec 7 0 INFO anInt1 905 aFloat: 1800.4 pInt: 4505 pFloat: 4.09 anInt2: 2705 dVar1: 4055 dpInt1: 455 cEL: cvec_renamed[5] pvInt: [440 441 442 443 ] pvFloat: [-0.451 -0.351 -0.251 -0.151 ] dpvFloat: [0.490 0.491 0.492 0.493 ] -xAODTestReadCVec 7 0 INFO anInt1 906 aFloat: 1800.5 pInt: 4506 pFloat: 5.09 anInt2: 2706 dVar1: 4056 dpInt1: 456 cEL: cvec_renamed[4] +xAODTestReadCVec 7 0 INFO anInt1 906 aFloat: 1800.5 pInt: 4506 pFloat: 5.09 anInt2: 2706 dVar1: 4056 dpInt1: 456 cEL: cvec_renamed[4] pvInt: [450 451 452 453 454 ] pvFloat: [-0.441 -0.341 -0.241 -0.141 -0.041 ] dpvFloat: [0.590 0.591 0.592 0.593 0.594 ] -xAODTestReadCVec 7 0 INFO anInt1 907 aFloat: 1800.6 pInt: 4507 pFloat: 6.09 anInt2: 2707 dVar1: 4057 dpInt1: 457 cEL: cvec_renamed[3] +xAODTestReadCVec 7 0 INFO anInt1 907 aFloat: 1800.6 pInt: 4507 pFloat: 6.09 anInt2: 2707 dVar1: 4057 dpInt1: 457 cEL: cvec_renamed[3] pvInt: [460 461 462 463 464 465 ] pvFloat: [-0.431 -0.331 -0.231 -0.131 -0.031 0.069 ] dpvFloat: [0.690 0.691 0.692 0.693 0.694 0.695 ] -xAODTestReadCVec 7 0 INFO anInt1 908 aFloat: 1800.7 pInt: 4508 pFloat: 7.09 anInt2: 2708 dVar1: 4058 dpInt1: 458 cEL: cvec_renamed[2] +xAODTestReadCVec 7 0 INFO anInt1 908 aFloat: 1800.7 pInt: 4508 pFloat: 7.09 anInt2: 2708 dVar1: 4058 dpInt1: 458 cEL: cvec_renamed[2] pvInt: [470 471 472 473 474 475 476 ] pvFloat: [-0.421 -0.321 -0.221 -0.121 -0.021 0.079 0.179 ] dpvFloat: [0.790 0.791 0.792 0.793 0.794 0.795 0.796 ] -xAODTestReadCVec 7 0 INFO anInt1 909 aFloat: 1800.8 pInt: 4509 pFloat: 8.09 anInt2: 2709 dVar1: 4059 dpInt1: 459 cEL: cvec_renamed[1] +xAODTestReadCVec 7 0 INFO anInt1 909 aFloat: 1800.8 pInt: 4509 pFloat: 8.09 anInt2: 2709 dVar1: 4059 dpInt1: 459 cEL: cvec_renamed[1] pvInt: [480 481 482 483 484 485 486 487 ] pvFloat: [-0.411 -0.311 -0.211 -0.111 -0.011 0.089 0.189 0.289 ] dpvFloat: [0.890 0.891 0.892 0.893 0.894 0.895 0.896 0.897 ] -xAODTestReadCVec 7 0 INFO anInt1 910 aFloat: 1800.9 pInt: 4510 pFloat: 9.09 anInt2: 2710 dVar1: 4060 dpInt1: 460 cEL: cvec_renamed[0] +xAODTestReadCVec 7 0 INFO anInt1 910 aFloat: 1800.9 pInt: 4510 pFloat: 9.09 anInt2: 2710 dVar1: 4060 dpInt1: 460 cEL: cvec_renamed[0] pvInt: [490 491 492 493 494 495 496 497 498 ] pvFloat: [-0.401 -0.301 -0.201 -0.101 -0.001 0.099 0.199 0.299 0.399 ] dpvFloat: [0.990 0.991 0.992 0.993 0.994 0.995 0.996 0.997 0.998 ] -xAODTestReadDecor 7 0 INFO cvec_renamed.dInt1_renamed: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 -xAODTestReadDecor 7 0 INFO cinfo.dInt1_renamed: 27000 -xAODTestReadDecor 7 0 INFO cinfo.dInt1_renamedBase: 27001 -xAODTestReadDecor 7 0 INFO cinfo.dInt1_renamed: 27000 -AthenaHiveEventLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== -AthenaHiveEventLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== -xAODTestReadCVec 8 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 8 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 8 0 INFO anInt1 1001 aFloat: 2000 pInt: 5001 pFloat: 0.10 anInt2: 3001 dVar1: 4501 dpInt1: 501 cEL: cvec_renamed[9] +xAODTestReadDecor 7 0 INFO cvec_renamed.dInt1_renamed: 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 +xAODTestReadDecor 7 0 INFO cinfo.dInt1_renamed: 27000 +xAODTestReadDecor 7 0 INFO cinfo.dInt1_renamedBase: 27001 +xAODTestReadDecor 7 0 INFO cinfo.dInt1_renamed: 27000 +Athena...ntLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== +Athena...ntLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== +xAODTestReadCVec 8 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 8 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 8 0 INFO anInt1 1001 aFloat: 2000 pInt: 5001 pFloat: 0.10 anInt2: 3001 dVar1: 4501 dpInt1: 501 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 8 0 INFO anInt1 1002 aFloat: 2000.1 pInt: 5002 pFloat: 1.10 anInt2: 3002 dVar1: 4502 dpInt1: 502 cEL: cvec_renamed[8] +xAODTestReadCVec 8 0 INFO anInt1 1002 aFloat: 2000.1 pInt: 5002 pFloat: 1.10 anInt2: 3002 dVar1: 4502 dpInt1: 502 cEL: cvec_renamed[8] pvInt: [510 ] pvFloat: [-0.480 ] dpvFloat: [0.200 ] -xAODTestReadCVec 8 0 INFO anInt1 1003 aFloat: 2000.2 pInt: 5003 pFloat: 2.10 anInt2: 3003 dVar1: 4503 dpInt1: 503 cEL: cvec_renamed[7] +xAODTestReadCVec 8 0 INFO anInt1 1003 aFloat: 2000.2 pInt: 5003 pFloat: 2.10 anInt2: 3003 dVar1: 4503 dpInt1: 503 cEL: cvec_renamed[7] pvInt: [520 521 ] pvFloat: [-0.470 -0.370 ] dpvFloat: [0.300 0.301 ] -xAODTestReadCVec 8 0 INFO anInt1 1004 aFloat: 2000.3 pInt: 5004 pFloat: 3.10 anInt2: 3004 dVar1: 4504 dpInt1: 504 cEL: cvec_renamed[6] +xAODTestReadCVec 8 0 INFO anInt1 1004 aFloat: 2000.3 pInt: 5004 pFloat: 3.10 anInt2: 3004 dVar1: 4504 dpInt1: 504 cEL: cvec_renamed[6] pvInt: [530 531 532 ] pvFloat: [-0.460 -0.360 -0.260 ] dpvFloat: [0.400 0.401 0.402 ] -xAODTestReadCVec 8 0 INFO anInt1 1005 aFloat: 2000.4 pInt: 5005 pFloat: 4.10 anInt2: 3005 dVar1: 4505 dpInt1: 505 cEL: cvec_renamed[5] +xAODTestReadCVec 8 0 INFO anInt1 1005 aFloat: 2000.4 pInt: 5005 pFloat: 4.10 anInt2: 3005 dVar1: 4505 dpInt1: 505 cEL: cvec_renamed[5] pvInt: [540 541 542 543 ] pvFloat: [-0.450 -0.350 -0.250 -0.150 ] dpvFloat: [0.500 0.501 0.502 0.503 ] -xAODTestReadCVec 8 0 INFO anInt1 1006 aFloat: 2000.5 pInt: 5006 pFloat: 5.10 anInt2: 3006 dVar1: 4506 dpInt1: 506 cEL: cvec_renamed[4] +xAODTestReadCVec 8 0 INFO anInt1 1006 aFloat: 2000.5 pInt: 5006 pFloat: 5.10 anInt2: 3006 dVar1: 4506 dpInt1: 506 cEL: cvec_renamed[4] pvInt: [550 551 552 553 554 ] pvFloat: [-0.440 -0.340 -0.240 -0.140 -0.040 ] dpvFloat: [0.600 0.601 0.602 0.603 0.604 ] -xAODTestReadCVec 8 0 INFO anInt1 1007 aFloat: 2000.6 pInt: 5007 pFloat: 6.10 anInt2: 3007 dVar1: 4507 dpInt1: 507 cEL: cvec_renamed[3] +xAODTestReadCVec 8 0 INFO anInt1 1007 aFloat: 2000.6 pInt: 5007 pFloat: 6.10 anInt2: 3007 dVar1: 4507 dpInt1: 507 cEL: cvec_renamed[3] pvInt: [560 561 562 563 564 565 ] pvFloat: [-0.430 -0.330 -0.230 -0.130 -0.030 0.070 ] dpvFloat: [0.700 0.701 0.702 0.703 0.704 0.705 ] -xAODTestReadCVec 8 0 INFO anInt1 1008 aFloat: 2000.7 pInt: 5008 pFloat: 7.10 anInt2: 3008 dVar1: 4508 dpInt1: 508 cEL: cvec_renamed[2] +xAODTestReadCVec 8 0 INFO anInt1 1008 aFloat: 2000.7 pInt: 5008 pFloat: 7.10 anInt2: 3008 dVar1: 4508 dpInt1: 508 cEL: cvec_renamed[2] pvInt: [570 571 572 573 574 575 576 ] pvFloat: [-0.420 -0.320 -0.220 -0.120 -0.020 0.080 0.180 ] dpvFloat: [0.800 0.801 0.802 0.803 0.804 0.805 0.806 ] -xAODTestReadCVec 8 0 INFO anInt1 1009 aFloat: 2000.8 pInt: 5009 pFloat: 8.10 anInt2: 3009 dVar1: 4509 dpInt1: 509 cEL: cvec_renamed[1] +xAODTestReadCVec 8 0 INFO anInt1 1009 aFloat: 2000.8 pInt: 5009 pFloat: 8.10 anInt2: 3009 dVar1: 4509 dpInt1: 509 cEL: cvec_renamed[1] pvInt: [580 581 582 583 584 585 586 587 ] pvFloat: [-0.410 -0.310 -0.210 -0.110 -0.010 0.090 0.190 0.290 ] dpvFloat: [0.900 0.901 0.902 0.903 0.904 0.905 0.906 0.907 ] -xAODTestReadCVec 8 0 INFO anInt1 1010 aFloat: 2000.9 pInt: 5010 pFloat: 9.10 anInt2: 3010 dVar1: 4510 dpInt1: 510 cEL: cvec_renamed[0] +xAODTestReadCVec 8 0 INFO anInt1 1010 aFloat: 2000.9 pInt: 5010 pFloat: 9.10 anInt2: 3010 dVar1: 4510 dpInt1: 510 cEL: cvec_renamed[0] pvInt: [590 591 592 593 594 595 596 597 598 ] pvFloat: [-0.400 -0.300 -0.200 -0.100 0.000 0.100 0.200 0.300 0.400 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 8 0 INFO cvec_renamed.dInt1_renamed: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 -xAODTestReadDecor 8 0 INFO cinfo.dInt1_renamed: 30000 -xAODTestReadDecor 8 0 INFO cinfo.dInt1_renamedBase: 30001 -xAODTestReadDecor 8 0 INFO cinfo.dInt1_renamed: 30000 -AthenaHiveEventLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== -AthenaHiveEventLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== -xAODTestReadCVec 9 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 9 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 9 0 INFO anInt1 1101 aFloat: 2200 pInt: 5501 pFloat: 0.11 anInt2: 3301 dVar1: 4951 dpInt1: 551 cEL: cvec_renamed[9] +xAODTestReadDecor 8 0 INFO cvec_renamed.dInt1_renamed: 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 +xAODTestReadDecor 8 0 INFO cinfo.dInt1_renamed: 30000 +xAODTestReadDecor 8 0 INFO cinfo.dInt1_renamedBase: 30001 +xAODTestReadDecor 8 0 INFO cinfo.dInt1_renamed: 30000 +Athena...ntLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== +Athena...ntLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== +xAODTestReadCVec 9 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 9 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 9 0 INFO anInt1 1101 aFloat: 2200 pInt: 5501 pFloat: 0.11 anInt2: 3301 dVar1: 4951 dpInt1: 551 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 9 0 INFO anInt1 1102 aFloat: 2200.1 pInt: 5502 pFloat: 1.11 anInt2: 3302 dVar1: 4952 dpInt1: 552 cEL: cvec_renamed[8] +xAODTestReadCVec 9 0 INFO anInt1 1102 aFloat: 2200.1 pInt: 5502 pFloat: 1.11 anInt2: 3302 dVar1: 4952 dpInt1: 552 cEL: cvec_renamed[8] pvInt: [610 ] pvFloat: [-0.479 ] dpvFloat: [0.210 ] -xAODTestReadCVec 9 0 INFO anInt1 1103 aFloat: 2200.2 pInt: 5503 pFloat: 2.11 anInt2: 3303 dVar1: 4953 dpInt1: 553 cEL: cvec_renamed[7] +xAODTestReadCVec 9 0 INFO anInt1 1103 aFloat: 2200.2 pInt: 5503 pFloat: 2.11 anInt2: 3303 dVar1: 4953 dpInt1: 553 cEL: cvec_renamed[7] pvInt: [620 621 ] pvFloat: [-0.469 -0.369 ] dpvFloat: [0.310 0.311 ] -xAODTestReadCVec 9 0 INFO anInt1 1104 aFloat: 2200.3 pInt: 5504 pFloat: 3.11 anInt2: 3304 dVar1: 4954 dpInt1: 554 cEL: cvec_renamed[6] +xAODTestReadCVec 9 0 INFO anInt1 1104 aFloat: 2200.3 pInt: 5504 pFloat: 3.11 anInt2: 3304 dVar1: 4954 dpInt1: 554 cEL: cvec_renamed[6] pvInt: [630 631 632 ] pvFloat: [-0.459 -0.359 -0.259 ] dpvFloat: [0.410 0.411 0.412 ] -xAODTestReadCVec 9 0 INFO anInt1 1105 aFloat: 2200.4 pInt: 5505 pFloat: 4.11 anInt2: 3305 dVar1: 4955 dpInt1: 555 cEL: cvec_renamed[5] +xAODTestReadCVec 9 0 INFO anInt1 1105 aFloat: 2200.4 pInt: 5505 pFloat: 4.11 anInt2: 3305 dVar1: 4955 dpInt1: 555 cEL: cvec_renamed[5] pvInt: [640 641 642 643 ] pvFloat: [-0.449 -0.349 -0.249 -0.149 ] dpvFloat: [0.510 0.511 0.512 0.513 ] -xAODTestReadCVec 9 0 INFO anInt1 1106 aFloat: 2200.5 pInt: 5506 pFloat: 5.11 anInt2: 3306 dVar1: 4956 dpInt1: 556 cEL: cvec_renamed[4] +xAODTestReadCVec 9 0 INFO anInt1 1106 aFloat: 2200.5 pInt: 5506 pFloat: 5.11 anInt2: 3306 dVar1: 4956 dpInt1: 556 cEL: cvec_renamed[4] pvInt: [650 651 652 653 654 ] pvFloat: [-0.439 -0.339 -0.239 -0.139 -0.039 ] dpvFloat: [0.610 0.611 0.612 0.613 0.614 ] -xAODTestReadCVec 9 0 INFO anInt1 1107 aFloat: 2200.6 pInt: 5507 pFloat: 6.11 anInt2: 3307 dVar1: 4957 dpInt1: 557 cEL: cvec_renamed[3] +xAODTestReadCVec 9 0 INFO anInt1 1107 aFloat: 2200.6 pInt: 5507 pFloat: 6.11 anInt2: 3307 dVar1: 4957 dpInt1: 557 cEL: cvec_renamed[3] pvInt: [660 661 662 663 664 665 ] pvFloat: [-0.429 -0.329 -0.229 -0.129 -0.029 0.071 ] dpvFloat: [0.710 0.711 0.712 0.713 0.714 0.715 ] -xAODTestReadCVec 9 0 INFO anInt1 1108 aFloat: 2200.7 pInt: 5508 pFloat: 7.11 anInt2: 3308 dVar1: 4958 dpInt1: 558 cEL: cvec_renamed[2] +xAODTestReadCVec 9 0 INFO anInt1 1108 aFloat: 2200.7 pInt: 5508 pFloat: 7.11 anInt2: 3308 dVar1: 4958 dpInt1: 558 cEL: cvec_renamed[2] pvInt: [670 671 672 673 674 675 676 ] pvFloat: [-0.419 -0.319 -0.219 -0.119 -0.019 0.081 0.181 ] dpvFloat: [0.810 0.811 0.812 0.813 0.814 0.815 0.816 ] -xAODTestReadCVec 9 0 INFO anInt1 1109 aFloat: 2200.8 pInt: 5509 pFloat: 8.11 anInt2: 3309 dVar1: 4959 dpInt1: 559 cEL: cvec_renamed[1] +xAODTestReadCVec 9 0 INFO anInt1 1109 aFloat: 2200.8 pInt: 5509 pFloat: 8.11 anInt2: 3309 dVar1: 4959 dpInt1: 559 cEL: cvec_renamed[1] pvInt: [680 681 682 683 684 685 686 687 ] pvFloat: [-0.409 -0.309 -0.209 -0.109 -0.009 0.091 0.191 0.291 ] dpvFloat: [0.910 0.911 0.912 0.913 0.914 0.915 0.916 0.917 ] -xAODTestReadCVec 9 0 INFO anInt1 1110 aFloat: 2200.9 pInt: 5510 pFloat: 9.11 anInt2: 3310 dVar1: 4960 dpInt1: 560 cEL: cvec_renamed[0] +xAODTestReadCVec 9 0 INFO anInt1 1110 aFloat: 2200.9 pInt: 5510 pFloat: 9.11 anInt2: 3310 dVar1: 4960 dpInt1: 560 cEL: cvec_renamed[0] pvInt: [690 691 692 693 694 695 696 697 698 ] pvFloat: [-0.399 -0.299 -0.199 -0.099 0.001 0.101 0.201 0.301 0.401 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 9 0 INFO cvec_renamed.dInt1_renamed: 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 -xAODTestReadDecor 9 0 INFO cinfo.dInt1_renamed: 33000 -xAODTestReadDecor 9 0 INFO cinfo.dInt1_renamedBase: 33001 -xAODTestReadDecor 9 0 INFO cinfo.dInt1_renamed: 33000 -AthenaHiveEventLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== -AthenaHiveEventLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== -xAODTestReadCVec 10 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 10 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 10 0 INFO anInt1 1201 aFloat: 2400 pInt: 6001 pFloat: 0.12 anInt2: 3601 dVar1: 5401 dpInt1: 601 cEL: cvec_renamed[9] +xAODTestReadDecor 9 0 INFO cvec_renamed.dInt1_renamed: 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 +xAODTestReadDecor 9 0 INFO cinfo.dInt1_renamed: 33000 +xAODTestReadDecor 9 0 INFO cinfo.dInt1_renamedBase: 33001 +xAODTestReadDecor 9 0 INFO cinfo.dInt1_renamed: 33000 +Athena...ntLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== +Athena...ntLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== +xAODTestReadCVec 10 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 10 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 10 0 INFO anInt1 1201 aFloat: 2400 pInt: 6001 pFloat: 0.12 anInt2: 3601 dVar1: 5401 dpInt1: 601 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 10 0 INFO anInt1 1202 aFloat: 2400.1 pInt: 6002 pFloat: 1.12 anInt2: 3602 dVar1: 5402 dpInt1: 602 cEL: cvec_renamed[8] +xAODTestReadCVec 10 0 INFO anInt1 1202 aFloat: 2400.1 pInt: 6002 pFloat: 1.12 anInt2: 3602 dVar1: 5402 dpInt1: 602 cEL: cvec_renamed[8] pvInt: [710 ] pvFloat: [-0.478 ] dpvFloat: [0.220 ] -xAODTestReadCVec 10 0 INFO anInt1 1203 aFloat: 2400.2 pInt: 6003 pFloat: 2.12 anInt2: 3603 dVar1: 5403 dpInt1: 603 cEL: cvec_renamed[7] +xAODTestReadCVec 10 0 INFO anInt1 1203 aFloat: 2400.2 pInt: 6003 pFloat: 2.12 anInt2: 3603 dVar1: 5403 dpInt1: 603 cEL: cvec_renamed[7] pvInt: [720 721 ] pvFloat: [-0.468 -0.368 ] dpvFloat: [0.320 0.321 ] -xAODTestReadCVec 10 0 INFO anInt1 1204 aFloat: 2400.3 pInt: 6004 pFloat: 3.12 anInt2: 3604 dVar1: 5404 dpInt1: 604 cEL: cvec_renamed[6] +xAODTestReadCVec 10 0 INFO anInt1 1204 aFloat: 2400.3 pInt: 6004 pFloat: 3.12 anInt2: 3604 dVar1: 5404 dpInt1: 604 cEL: cvec_renamed[6] pvInt: [730 731 732 ] pvFloat: [-0.458 -0.358 -0.258 ] dpvFloat: [0.420 0.421 0.422 ] -xAODTestReadCVec 10 0 INFO anInt1 1205 aFloat: 2400.4 pInt: 6005 pFloat: 4.12 anInt2: 3605 dVar1: 5405 dpInt1: 605 cEL: cvec_renamed[5] +xAODTestReadCVec 10 0 INFO anInt1 1205 aFloat: 2400.4 pInt: 6005 pFloat: 4.12 anInt2: 3605 dVar1: 5405 dpInt1: 605 cEL: cvec_renamed[5] pvInt: [740 741 742 743 ] pvFloat: [-0.448 -0.348 -0.248 -0.148 ] dpvFloat: [0.520 0.521 0.522 0.523 ] -xAODTestReadCVec 10 0 INFO anInt1 1206 aFloat: 2400.5 pInt: 6006 pFloat: 5.12 anInt2: 3606 dVar1: 5406 dpInt1: 606 cEL: cvec_renamed[4] +xAODTestReadCVec 10 0 INFO anInt1 1206 aFloat: 2400.5 pInt: 6006 pFloat: 5.12 anInt2: 3606 dVar1: 5406 dpInt1: 606 cEL: cvec_renamed[4] pvInt: [750 751 752 753 754 ] pvFloat: [-0.438 -0.338 -0.238 -0.138 -0.038 ] dpvFloat: [0.620 0.621 0.622 0.623 0.624 ] -xAODTestReadCVec 10 0 INFO anInt1 1207 aFloat: 2400.6 pInt: 6007 pFloat: 6.12 anInt2: 3607 dVar1: 5407 dpInt1: 607 cEL: cvec_renamed[3] +xAODTestReadCVec 10 0 INFO anInt1 1207 aFloat: 2400.6 pInt: 6007 pFloat: 6.12 anInt2: 3607 dVar1: 5407 dpInt1: 607 cEL: cvec_renamed[3] pvInt: [760 761 762 763 764 765 ] pvFloat: [-0.428 -0.328 -0.228 -0.128 -0.028 0.072 ] dpvFloat: [0.720 0.721 0.722 0.723 0.724 0.725 ] -xAODTestReadCVec 10 0 INFO anInt1 1208 aFloat: 2400.7 pInt: 6008 pFloat: 7.12 anInt2: 3608 dVar1: 5408 dpInt1: 608 cEL: cvec_renamed[2] +xAODTestReadCVec 10 0 INFO anInt1 1208 aFloat: 2400.7 pInt: 6008 pFloat: 7.12 anInt2: 3608 dVar1: 5408 dpInt1: 608 cEL: cvec_renamed[2] pvInt: [770 771 772 773 774 775 776 ] pvFloat: [-0.418 -0.318 -0.218 -0.118 -0.018 0.082 0.182 ] dpvFloat: [0.820 0.821 0.822 0.823 0.824 0.825 0.826 ] -xAODTestReadCVec 10 0 INFO anInt1 1209 aFloat: 2400.8 pInt: 6009 pFloat: 8.12 anInt2: 3609 dVar1: 5409 dpInt1: 609 cEL: cvec_renamed[1] +xAODTestReadCVec 10 0 INFO anInt1 1209 aFloat: 2400.8 pInt: 6009 pFloat: 8.12 anInt2: 3609 dVar1: 5409 dpInt1: 609 cEL: cvec_renamed[1] pvInt: [780 781 782 783 784 785 786 787 ] pvFloat: [-0.408 -0.308 -0.208 -0.108 -0.008 0.092 0.192 0.292 ] dpvFloat: [0.920 0.921 0.922 0.923 0.924 0.925 0.926 0.927 ] -xAODTestReadCVec 10 0 INFO anInt1 1210 aFloat: 2400.9 pInt: 6010 pFloat: 9.12 anInt2: 3610 dVar1: 5410 dpInt1: 610 cEL: cvec_renamed[0] +xAODTestReadCVec 10 0 INFO anInt1 1210 aFloat: 2400.9 pInt: 6010 pFloat: 9.12 anInt2: 3610 dVar1: 5410 dpInt1: 610 cEL: cvec_renamed[0] pvInt: [790 791 792 793 794 795 796 797 798 ] pvFloat: [-0.398 -0.298 -0.198 -0.098 0.002 0.102 0.202 0.302 0.402 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 10 0 INFO cvec_renamed.dInt1_renamed: 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 -xAODTestReadDecor 10 0 INFO cinfo.dInt1_renamed: 36000 -xAODTestReadDecor 10 0 INFO cinfo.dInt1_renamedBase: 36001 -xAODTestReadDecor 10 0 INFO cinfo.dInt1_renamed: 36000 -AthenaHiveEventLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== -AthenaHiveEventLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== -xAODTestReadCVec 11 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 11 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 11 0 INFO anInt1 1301 aFloat: 2600 pInt: 6501 pFloat: 0.13 anInt2: 3901 dVar1: 5851 dpInt1: 651 cEL: cvec_renamed[9] +xAODTestReadDecor 10 0 INFO cvec_renamed.dInt1_renamed: 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 +xAODTestReadDecor 10 0 INFO cinfo.dInt1_renamed: 36000 +xAODTestReadDecor 10 0 INFO cinfo.dInt1_renamedBase: 36001 +xAODTestReadDecor 10 0 INFO cinfo.dInt1_renamed: 36000 +Athena...ntLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== +Athena...ntLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== +xAODTestReadCVec 11 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 11 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 11 0 INFO anInt1 1301 aFloat: 2600 pInt: 6501 pFloat: 0.13 anInt2: 3901 dVar1: 5851 dpInt1: 651 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 11 0 INFO anInt1 1302 aFloat: 2600.1 pInt: 6502 pFloat: 1.13 anInt2: 3902 dVar1: 5852 dpInt1: 652 cEL: cvec_renamed[8] +xAODTestReadCVec 11 0 INFO anInt1 1302 aFloat: 2600.1 pInt: 6502 pFloat: 1.13 anInt2: 3902 dVar1: 5852 dpInt1: 652 cEL: cvec_renamed[8] pvInt: [810 ] pvFloat: [-0.477 ] dpvFloat: [0.230 ] -xAODTestReadCVec 11 0 INFO anInt1 1303 aFloat: 2600.2 pInt: 6503 pFloat: 2.13 anInt2: 3903 dVar1: 5853 dpInt1: 653 cEL: cvec_renamed[7] +xAODTestReadCVec 11 0 INFO anInt1 1303 aFloat: 2600.2 pInt: 6503 pFloat: 2.13 anInt2: 3903 dVar1: 5853 dpInt1: 653 cEL: cvec_renamed[7] pvInt: [820 821 ] pvFloat: [-0.467 -0.367 ] dpvFloat: [0.330 0.331 ] -xAODTestReadCVec 11 0 INFO anInt1 1304 aFloat: 2600.3 pInt: 6504 pFloat: 3.13 anInt2: 3904 dVar1: 5854 dpInt1: 654 cEL: cvec_renamed[6] +xAODTestReadCVec 11 0 INFO anInt1 1304 aFloat: 2600.3 pInt: 6504 pFloat: 3.13 anInt2: 3904 dVar1: 5854 dpInt1: 654 cEL: cvec_renamed[6] pvInt: [830 831 832 ] pvFloat: [-0.457 -0.357 -0.257 ] dpvFloat: [0.430 0.431 0.432 ] -xAODTestReadCVec 11 0 INFO anInt1 1305 aFloat: 2600.4 pInt: 6505 pFloat: 4.13 anInt2: 3905 dVar1: 5855 dpInt1: 655 cEL: cvec_renamed[5] +xAODTestReadCVec 11 0 INFO anInt1 1305 aFloat: 2600.4 pInt: 6505 pFloat: 4.13 anInt2: 3905 dVar1: 5855 dpInt1: 655 cEL: cvec_renamed[5] pvInt: [840 841 842 843 ] pvFloat: [-0.447 -0.347 -0.247 -0.147 ] dpvFloat: [0.530 0.531 0.532 0.533 ] -xAODTestReadCVec 11 0 INFO anInt1 1306 aFloat: 2600.5 pInt: 6506 pFloat: 5.13 anInt2: 3906 dVar1: 5856 dpInt1: 656 cEL: cvec_renamed[4] +xAODTestReadCVec 11 0 INFO anInt1 1306 aFloat: 2600.5 pInt: 6506 pFloat: 5.13 anInt2: 3906 dVar1: 5856 dpInt1: 656 cEL: cvec_renamed[4] pvInt: [850 851 852 853 854 ] pvFloat: [-0.437 -0.337 -0.237 -0.137 -0.037 ] dpvFloat: [0.630 0.631 0.632 0.633 0.634 ] -xAODTestReadCVec 11 0 INFO anInt1 1307 aFloat: 2600.6 pInt: 6507 pFloat: 6.13 anInt2: 3907 dVar1: 5857 dpInt1: 657 cEL: cvec_renamed[3] +xAODTestReadCVec 11 0 INFO anInt1 1307 aFloat: 2600.6 pInt: 6507 pFloat: 6.13 anInt2: 3907 dVar1: 5857 dpInt1: 657 cEL: cvec_renamed[3] pvInt: [860 861 862 863 864 865 ] pvFloat: [-0.427 -0.327 -0.227 -0.127 -0.027 0.073 ] dpvFloat: [0.730 0.731 0.732 0.733 0.734 0.735 ] -xAODTestReadCVec 11 0 INFO anInt1 1308 aFloat: 2600.7 pInt: 6508 pFloat: 7.13 anInt2: 3908 dVar1: 5858 dpInt1: 658 cEL: cvec_renamed[2] +xAODTestReadCVec 11 0 INFO anInt1 1308 aFloat: 2600.7 pInt: 6508 pFloat: 7.13 anInt2: 3908 dVar1: 5858 dpInt1: 658 cEL: cvec_renamed[2] pvInt: [870 871 872 873 874 875 876 ] pvFloat: [-0.417 -0.317 -0.217 -0.117 -0.017 0.083 0.183 ] dpvFloat: [0.830 0.831 0.832 0.833 0.834 0.835 0.836 ] -xAODTestReadCVec 11 0 INFO anInt1 1309 aFloat: 2600.8 pInt: 6509 pFloat: 8.13 anInt2: 3909 dVar1: 5859 dpInt1: 659 cEL: cvec_renamed[1] +xAODTestReadCVec 11 0 INFO anInt1 1309 aFloat: 2600.8 pInt: 6509 pFloat: 8.13 anInt2: 3909 dVar1: 5859 dpInt1: 659 cEL: cvec_renamed[1] pvInt: [880 881 882 883 884 885 886 887 ] pvFloat: [-0.407 -0.307 -0.207 -0.107 -0.007 0.093 0.193 0.293 ] dpvFloat: [0.930 0.931 0.932 0.933 0.934 0.935 0.936 0.937 ] -xAODTestReadCVec 11 0 INFO anInt1 1310 aFloat: 2600.9 pInt: 6510 pFloat: 9.13 anInt2: 3910 dVar1: 5860 dpInt1: 660 cEL: cvec_renamed[0] +xAODTestReadCVec 11 0 INFO anInt1 1310 aFloat: 2600.9 pInt: 6510 pFloat: 9.13 anInt2: 3910 dVar1: 5860 dpInt1: 660 cEL: cvec_renamed[0] pvInt: [890 891 892 893 894 895 896 897 898 ] pvFloat: [-0.397 -0.297 -0.197 -0.097 0.003 0.103 0.203 0.303 0.403 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 11 0 INFO cvec_renamed.dInt1_renamed: 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 -xAODTestReadDecor 11 0 INFO cinfo.dInt1_renamed: 39000 -xAODTestReadDecor 11 0 INFO cinfo.dInt1_renamedBase: 39001 -xAODTestReadDecor 11 0 INFO cinfo.dInt1_renamed: 39000 -AthenaHiveEventLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== -AthenaHiveEventLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== -xAODTestReadCVec 12 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 12 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 12 0 INFO anInt1 1401 aFloat: 2800 pInt: 7001 pFloat: 0.14 anInt2: 4201 dVar1: 6301 dpInt1: 701 cEL: cvec_renamed[9] +xAODTestReadDecor 11 0 INFO cvec_renamed.dInt1_renamed: 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 +xAODTestReadDecor 11 0 INFO cinfo.dInt1_renamed: 39000 +xAODTestReadDecor 11 0 INFO cinfo.dInt1_renamedBase: 39001 +xAODTestReadDecor 11 0 INFO cinfo.dInt1_renamed: 39000 +Athena...ntLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== +Athena...ntLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== +xAODTestReadCVec 12 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 12 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 12 0 INFO anInt1 1401 aFloat: 2800 pInt: 7001 pFloat: 0.14 anInt2: 4201 dVar1: 6301 dpInt1: 701 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 12 0 INFO anInt1 1402 aFloat: 2800.1 pInt: 7002 pFloat: 1.14 anInt2: 4202 dVar1: 6302 dpInt1: 702 cEL: cvec_renamed[8] +xAODTestReadCVec 12 0 INFO anInt1 1402 aFloat: 2800.1 pInt: 7002 pFloat: 1.14 anInt2: 4202 dVar1: 6302 dpInt1: 702 cEL: cvec_renamed[8] pvInt: [910 ] pvFloat: [-0.476 ] dpvFloat: [0.240 ] -xAODTestReadCVec 12 0 INFO anInt1 1403 aFloat: 2800.2 pInt: 7003 pFloat: 2.14 anInt2: 4203 dVar1: 6303 dpInt1: 703 cEL: cvec_renamed[7] +xAODTestReadCVec 12 0 INFO anInt1 1403 aFloat: 2800.2 pInt: 7003 pFloat: 2.14 anInt2: 4203 dVar1: 6303 dpInt1: 703 cEL: cvec_renamed[7] pvInt: [920 921 ] pvFloat: [-0.466 -0.366 ] dpvFloat: [0.340 0.341 ] -xAODTestReadCVec 12 0 INFO anInt1 1404 aFloat: 2800.3 pInt: 7004 pFloat: 3.14 anInt2: 4204 dVar1: 6304 dpInt1: 704 cEL: cvec_renamed[6] +xAODTestReadCVec 12 0 INFO anInt1 1404 aFloat: 2800.3 pInt: 7004 pFloat: 3.14 anInt2: 4204 dVar1: 6304 dpInt1: 704 cEL: cvec_renamed[6] pvInt: [930 931 932 ] pvFloat: [-0.456 -0.356 -0.256 ] dpvFloat: [0.440 0.441 0.442 ] -xAODTestReadCVec 12 0 INFO anInt1 1405 aFloat: 2800.4 pInt: 7005 pFloat: 4.14 anInt2: 4205 dVar1: 6305 dpInt1: 705 cEL: cvec_renamed[5] +xAODTestReadCVec 12 0 INFO anInt1 1405 aFloat: 2800.4 pInt: 7005 pFloat: 4.14 anInt2: 4205 dVar1: 6305 dpInt1: 705 cEL: cvec_renamed[5] pvInt: [940 941 942 943 ] pvFloat: [-0.446 -0.346 -0.246 -0.146 ] dpvFloat: [0.540 0.541 0.542 0.543 ] -xAODTestReadCVec 12 0 INFO anInt1 1406 aFloat: 2800.5 pInt: 7006 pFloat: 5.14 anInt2: 4206 dVar1: 6306 dpInt1: 706 cEL: cvec_renamed[4] +xAODTestReadCVec 12 0 INFO anInt1 1406 aFloat: 2800.5 pInt: 7006 pFloat: 5.14 anInt2: 4206 dVar1: 6306 dpInt1: 706 cEL: cvec_renamed[4] pvInt: [950 951 952 953 954 ] pvFloat: [-0.436 -0.336 -0.236 -0.136 -0.036 ] dpvFloat: [0.640 0.641 0.642 0.643 0.644 ] -xAODTestReadCVec 12 0 INFO anInt1 1407 aFloat: 2800.6 pInt: 7007 pFloat: 6.14 anInt2: 4207 dVar1: 6307 dpInt1: 707 cEL: cvec_renamed[3] +xAODTestReadCVec 12 0 INFO anInt1 1407 aFloat: 2800.6 pInt: 7007 pFloat: 6.14 anInt2: 4207 dVar1: 6307 dpInt1: 707 cEL: cvec_renamed[3] pvInt: [960 961 962 963 964 965 ] pvFloat: [-0.426 -0.326 -0.226 -0.126 -0.026 0.074 ] dpvFloat: [0.740 0.741 0.742 0.743 0.744 0.745 ] -xAODTestReadCVec 12 0 INFO anInt1 1408 aFloat: 2800.7 pInt: 7008 pFloat: 7.14 anInt2: 4208 dVar1: 6308 dpInt1: 708 cEL: cvec_renamed[2] +xAODTestReadCVec 12 0 INFO anInt1 1408 aFloat: 2800.7 pInt: 7008 pFloat: 7.14 anInt2: 4208 dVar1: 6308 dpInt1: 708 cEL: cvec_renamed[2] pvInt: [970 971 972 973 974 975 976 ] pvFloat: [-0.416 -0.316 -0.216 -0.116 -0.016 0.084 0.184 ] dpvFloat: [0.840 0.841 0.842 0.843 0.844 0.845 0.846 ] -xAODTestReadCVec 12 0 INFO anInt1 1409 aFloat: 2800.8 pInt: 7009 pFloat: 8.14 anInt2: 4209 dVar1: 6309 dpInt1: 709 cEL: cvec_renamed[1] +xAODTestReadCVec 12 0 INFO anInt1 1409 aFloat: 2800.8 pInt: 7009 pFloat: 8.14 anInt2: 4209 dVar1: 6309 dpInt1: 709 cEL: cvec_renamed[1] pvInt: [980 981 982 983 984 985 986 987 ] pvFloat: [-0.406 -0.306 -0.206 -0.106 -0.006 0.094 0.194 0.294 ] dpvFloat: [0.940 0.941 0.942 0.943 0.944 0.945 0.946 0.947 ] -xAODTestReadCVec 12 0 INFO anInt1 1410 aFloat: 2800.9 pInt: 7010 pFloat: 9.14 anInt2: 4210 dVar1: 6310 dpInt1: 710 cEL: cvec_renamed[0] +xAODTestReadCVec 12 0 INFO anInt1 1410 aFloat: 2800.9 pInt: 7010 pFloat: 9.14 anInt2: 4210 dVar1: 6310 dpInt1: 710 cEL: cvec_renamed[0] pvInt: [990 991 992 993 994 995 996 997 998 ] pvFloat: [-0.396 -0.296 -0.196 -0.096 0.004 0.104 0.204 0.304 0.404 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 12 0 INFO cvec_renamed.dInt1_renamed: 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 -xAODTestReadDecor 12 0 INFO cinfo.dInt1_renamed: 42000 -xAODTestReadDecor 12 0 INFO cinfo.dInt1_renamedBase: 42001 -xAODTestReadDecor 12 0 INFO cinfo.dInt1_renamed: 42000 -AthenaHiveEventLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== -AthenaHiveEventLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== -xAODTestReadCVec 13 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 13 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 13 0 INFO anInt1 1501 aFloat: 3000 pInt: 7501 pFloat: 0.15 anInt2: 4501 dVar1: 6751 dpInt1: 751 cEL: cvec_renamed[9] +xAODTestReadDecor 12 0 INFO cvec_renamed.dInt1_renamed: 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 +xAODTestReadDecor 12 0 INFO cinfo.dInt1_renamed: 42000 +xAODTestReadDecor 12 0 INFO cinfo.dInt1_renamedBase: 42001 +xAODTestReadDecor 12 0 INFO cinfo.dInt1_renamed: 42000 +Athena...ntLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== +Athena...ntLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== +xAODTestReadCVec 13 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 13 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 13 0 INFO anInt1 1501 aFloat: 3000 pInt: 7501 pFloat: 0.15 anInt2: 4501 dVar1: 6751 dpInt1: 751 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 13 0 INFO anInt1 1502 aFloat: 3000.1 pInt: 7502 pFloat: 1.15 anInt2: 4502 dVar1: 6752 dpInt1: 752 cEL: cvec_renamed[8] +xAODTestReadCVec 13 0 INFO anInt1 1502 aFloat: 3000.1 pInt: 7502 pFloat: 1.15 anInt2: 4502 dVar1: 6752 dpInt1: 752 cEL: cvec_renamed[8] pvInt: [1010 ] pvFloat: [-0.475 ] dpvFloat: [0.250 ] -xAODTestReadCVec 13 0 INFO anInt1 1503 aFloat: 3000.2 pInt: 7503 pFloat: 2.15 anInt2: 4503 dVar1: 6753 dpInt1: 753 cEL: cvec_renamed[7] +xAODTestReadCVec 13 0 INFO anInt1 1503 aFloat: 3000.2 pInt: 7503 pFloat: 2.15 anInt2: 4503 dVar1: 6753 dpInt1: 753 cEL: cvec_renamed[7] pvInt: [1020 1021 ] pvFloat: [-0.465 -0.365 ] dpvFloat: [0.350 0.351 ] -xAODTestReadCVec 13 0 INFO anInt1 1504 aFloat: 3000.3 pInt: 7504 pFloat: 3.15 anInt2: 4504 dVar1: 6754 dpInt1: 754 cEL: cvec_renamed[6] +xAODTestReadCVec 13 0 INFO anInt1 1504 aFloat: 3000.3 pInt: 7504 pFloat: 3.15 anInt2: 4504 dVar1: 6754 dpInt1: 754 cEL: cvec_renamed[6] pvInt: [1030 1031 1032 ] pvFloat: [-0.455 -0.355 -0.255 ] dpvFloat: [0.450 0.451 0.452 ] -xAODTestReadCVec 13 0 INFO anInt1 1505 aFloat: 3000.4 pInt: 7505 pFloat: 4.15 anInt2: 4505 dVar1: 6755 dpInt1: 755 cEL: cvec_renamed[5] +xAODTestReadCVec 13 0 INFO anInt1 1505 aFloat: 3000.4 pInt: 7505 pFloat: 4.15 anInt2: 4505 dVar1: 6755 dpInt1: 755 cEL: cvec_renamed[5] pvInt: [1040 1041 1042 1043 ] pvFloat: [-0.445 -0.345 -0.245 -0.145 ] dpvFloat: [0.550 0.551 0.552 0.553 ] -xAODTestReadCVec 13 0 INFO anInt1 1506 aFloat: 3000.5 pInt: 7506 pFloat: 5.15 anInt2: 4506 dVar1: 6756 dpInt1: 756 cEL: cvec_renamed[4] +xAODTestReadCVec 13 0 INFO anInt1 1506 aFloat: 3000.5 pInt: 7506 pFloat: 5.15 anInt2: 4506 dVar1: 6756 dpInt1: 756 cEL: cvec_renamed[4] pvInt: [1050 1051 1052 1053 1054 ] pvFloat: [-0.435 -0.335 -0.235 -0.135 -0.035 ] dpvFloat: [0.650 0.651 0.652 0.653 0.654 ] -xAODTestReadCVec 13 0 INFO anInt1 1507 aFloat: 3000.6 pInt: 7507 pFloat: 6.15 anInt2: 4507 dVar1: 6757 dpInt1: 757 cEL: cvec_renamed[3] +xAODTestReadCVec 13 0 INFO anInt1 1507 aFloat: 3000.6 pInt: 7507 pFloat: 6.15 anInt2: 4507 dVar1: 6757 dpInt1: 757 cEL: cvec_renamed[3] pvInt: [1060 1061 1062 1063 1064 1065 ] pvFloat: [-0.425 -0.325 -0.225 -0.125 -0.025 0.075 ] dpvFloat: [0.750 0.751 0.752 0.753 0.754 0.755 ] -xAODTestReadCVec 13 0 INFO anInt1 1508 aFloat: 3000.7 pInt: 7508 pFloat: 7.15 anInt2: 4508 dVar1: 6758 dpInt1: 758 cEL: cvec_renamed[2] +xAODTestReadCVec 13 0 INFO anInt1 1508 aFloat: 3000.7 pInt: 7508 pFloat: 7.15 anInt2: 4508 dVar1: 6758 dpInt1: 758 cEL: cvec_renamed[2] pvInt: [1070 1071 1072 1073 1074 1075 1076 ] pvFloat: [-0.415 -0.315 -0.215 -0.115 -0.015 0.085 0.185 ] dpvFloat: [0.850 0.851 0.852 0.853 0.854 0.855 0.856 ] -xAODTestReadCVec 13 0 INFO anInt1 1509 aFloat: 3000.8 pInt: 7509 pFloat: 8.15 anInt2: 4509 dVar1: 6759 dpInt1: 759 cEL: cvec_renamed[1] +xAODTestReadCVec 13 0 INFO anInt1 1509 aFloat: 3000.8 pInt: 7509 pFloat: 8.15 anInt2: 4509 dVar1: 6759 dpInt1: 759 cEL: cvec_renamed[1] pvInt: [1080 1081 1082 1083 1084 1085 1086 1087 ] pvFloat: [-0.405 -0.305 -0.205 -0.105 -0.005 0.095 0.195 0.295 ] dpvFloat: [0.950 0.951 0.952 0.953 0.954 0.955 0.956 0.957 ] -xAODTestReadCVec 13 0 INFO anInt1 1510 aFloat: 3000.9 pInt: 7510 pFloat: 9.15 anInt2: 4510 dVar1: 6760 dpInt1: 760 cEL: cvec_renamed[0] +xAODTestReadCVec 13 0 INFO anInt1 1510 aFloat: 3000.9 pInt: 7510 pFloat: 9.15 anInt2: 4510 dVar1: 6760 dpInt1: 760 cEL: cvec_renamed[0] pvInt: [1090 1091 1092 1093 1094 1095 1096 1097 1098 ] pvFloat: [-0.395 -0.295 -0.195 -0.095 0.005 0.105 0.205 0.305 0.405 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 13 0 INFO cvec_renamed.dInt1_renamed: 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 -xAODTestReadDecor 13 0 INFO cinfo.dInt1_renamed: 45000 -xAODTestReadDecor 13 0 INFO cinfo.dInt1_renamedBase: 45001 -xAODTestReadDecor 13 0 INFO cinfo.dInt1_renamed: 45000 -AthenaHiveEventLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== -AthenaHiveEventLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== -xAODTestReadCVec 14 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 14 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 14 0 INFO anInt1 1601 aFloat: 3200 pInt: 8001 pFloat: 0.16 anInt2: 4801 dVar1: 7201 dpInt1: 801 cEL: cvec_renamed[9] +xAODTestReadDecor 13 0 INFO cvec_renamed.dInt1_renamed: 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 +xAODTestReadDecor 13 0 INFO cinfo.dInt1_renamed: 45000 +xAODTestReadDecor 13 0 INFO cinfo.dInt1_renamedBase: 45001 +xAODTestReadDecor 13 0 INFO cinfo.dInt1_renamed: 45000 +Athena...ntLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== +Athena...ntLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== +xAODTestReadCVec 14 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 14 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 14 0 INFO anInt1 1601 aFloat: 3200 pInt: 8001 pFloat: 0.16 anInt2: 4801 dVar1: 7201 dpInt1: 801 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 14 0 INFO anInt1 1602 aFloat: 3200.1 pInt: 8002 pFloat: 1.16 anInt2: 4802 dVar1: 7202 dpInt1: 802 cEL: cvec_renamed[8] +xAODTestReadCVec 14 0 INFO anInt1 1602 aFloat: 3200.1 pInt: 8002 pFloat: 1.16 anInt2: 4802 dVar1: 7202 dpInt1: 802 cEL: cvec_renamed[8] pvInt: [1110 ] pvFloat: [-0.474 ] dpvFloat: [0.260 ] -xAODTestReadCVec 14 0 INFO anInt1 1603 aFloat: 3200.2 pInt: 8003 pFloat: 2.16 anInt2: 4803 dVar1: 7203 dpInt1: 803 cEL: cvec_renamed[7] +xAODTestReadCVec 14 0 INFO anInt1 1603 aFloat: 3200.2 pInt: 8003 pFloat: 2.16 anInt2: 4803 dVar1: 7203 dpInt1: 803 cEL: cvec_renamed[7] pvInt: [1120 1121 ] pvFloat: [-0.464 -0.364 ] dpvFloat: [0.360 0.361 ] -xAODTestReadCVec 14 0 INFO anInt1 1604 aFloat: 3200.3 pInt: 8004 pFloat: 3.16 anInt2: 4804 dVar1: 7204 dpInt1: 804 cEL: cvec_renamed[6] +xAODTestReadCVec 14 0 INFO anInt1 1604 aFloat: 3200.3 pInt: 8004 pFloat: 3.16 anInt2: 4804 dVar1: 7204 dpInt1: 804 cEL: cvec_renamed[6] pvInt: [1130 1131 1132 ] pvFloat: [-0.454 -0.354 -0.254 ] dpvFloat: [0.460 0.461 0.462 ] -xAODTestReadCVec 14 0 INFO anInt1 1605 aFloat: 3200.4 pInt: 8005 pFloat: 4.16 anInt2: 4805 dVar1: 7205 dpInt1: 805 cEL: cvec_renamed[5] +xAODTestReadCVec 14 0 INFO anInt1 1605 aFloat: 3200.4 pInt: 8005 pFloat: 4.16 anInt2: 4805 dVar1: 7205 dpInt1: 805 cEL: cvec_renamed[5] pvInt: [1140 1141 1142 1143 ] pvFloat: [-0.444 -0.344 -0.244 -0.144 ] dpvFloat: [0.560 0.561 0.562 0.563 ] -xAODTestReadCVec 14 0 INFO anInt1 1606 aFloat: 3200.5 pInt: 8006 pFloat: 5.16 anInt2: 4806 dVar1: 7206 dpInt1: 806 cEL: cvec_renamed[4] +xAODTestReadCVec 14 0 INFO anInt1 1606 aFloat: 3200.5 pInt: 8006 pFloat: 5.16 anInt2: 4806 dVar1: 7206 dpInt1: 806 cEL: cvec_renamed[4] pvInt: [1150 1151 1152 1153 1154 ] pvFloat: [-0.434 -0.334 -0.234 -0.134 -0.034 ] dpvFloat: [0.660 0.661 0.662 0.663 0.664 ] -xAODTestReadCVec 14 0 INFO anInt1 1607 aFloat: 3200.6 pInt: 8007 pFloat: 6.16 anInt2: 4807 dVar1: 7207 dpInt1: 807 cEL: cvec_renamed[3] +xAODTestReadCVec 14 0 INFO anInt1 1607 aFloat: 3200.6 pInt: 8007 pFloat: 6.16 anInt2: 4807 dVar1: 7207 dpInt1: 807 cEL: cvec_renamed[3] pvInt: [1160 1161 1162 1163 1164 1165 ] pvFloat: [-0.424 -0.324 -0.224 -0.124 -0.024 0.076 ] dpvFloat: [0.760 0.761 0.762 0.763 0.764 0.765 ] -xAODTestReadCVec 14 0 INFO anInt1 1608 aFloat: 3200.7 pInt: 8008 pFloat: 7.16 anInt2: 4808 dVar1: 7208 dpInt1: 808 cEL: cvec_renamed[2] +xAODTestReadCVec 14 0 INFO anInt1 1608 aFloat: 3200.7 pInt: 8008 pFloat: 7.16 anInt2: 4808 dVar1: 7208 dpInt1: 808 cEL: cvec_renamed[2] pvInt: [1170 1171 1172 1173 1174 1175 1176 ] pvFloat: [-0.414 -0.314 -0.214 -0.114 -0.014 0.086 0.186 ] dpvFloat: [0.860 0.861 0.862 0.863 0.864 0.865 0.866 ] -xAODTestReadCVec 14 0 INFO anInt1 1609 aFloat: 3200.8 pInt: 8009 pFloat: 8.16 anInt2: 4809 dVar1: 7209 dpInt1: 809 cEL: cvec_renamed[1] +xAODTestReadCVec 14 0 INFO anInt1 1609 aFloat: 3200.8 pInt: 8009 pFloat: 8.16 anInt2: 4809 dVar1: 7209 dpInt1: 809 cEL: cvec_renamed[1] pvInt: [1180 1181 1182 1183 1184 1185 1186 1187 ] pvFloat: [-0.404 -0.304 -0.204 -0.104 -0.004 0.096 0.196 0.296 ] dpvFloat: [0.960 0.961 0.962 0.963 0.964 0.965 0.966 0.967 ] -xAODTestReadCVec 14 0 INFO anInt1 1610 aFloat: 3200.9 pInt: 8010 pFloat: 9.16 anInt2: 4810 dVar1: 7210 dpInt1: 810 cEL: cvec_renamed[0] +xAODTestReadCVec 14 0 INFO anInt1 1610 aFloat: 3200.9 pInt: 8010 pFloat: 9.16 anInt2: 4810 dVar1: 7210 dpInt1: 810 cEL: cvec_renamed[0] pvInt: [1190 1191 1192 1193 1194 1195 1196 1197 1198 ] pvFloat: [-0.394 -0.294 -0.194 -0.094 0.006 0.106 0.206 0.306 0.406 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 14 0 INFO cvec_renamed.dInt1_renamed: 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 -xAODTestReadDecor 14 0 INFO cinfo.dInt1_renamed: 48000 -xAODTestReadDecor 14 0 INFO cinfo.dInt1_renamedBase: 48001 -xAODTestReadDecor 14 0 INFO cinfo.dInt1_renamed: 48000 -AthenaHiveEventLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== -AthenaHiveEventLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== -xAODTestReadCVec 15 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 15 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 15 0 INFO anInt1 1701 aFloat: 3400 pInt: 8501 pFloat: 0.17 anInt2: 5101 dVar1: 7651 dpInt1: 851 cEL: cvec_renamed[9] +xAODTestReadDecor 14 0 INFO cvec_renamed.dInt1_renamed: 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 +xAODTestReadDecor 14 0 INFO cinfo.dInt1_renamed: 48000 +xAODTestReadDecor 14 0 INFO cinfo.dInt1_renamedBase: 48001 +xAODTestReadDecor 14 0 INFO cinfo.dInt1_renamed: 48000 +Athena...ntLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== +Athena...ntLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== +xAODTestReadCVec 15 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 15 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 15 0 INFO anInt1 1701 aFloat: 3400 pInt: 8501 pFloat: 0.17 anInt2: 5101 dVar1: 7651 dpInt1: 851 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 15 0 INFO anInt1 1702 aFloat: 3400.1 pInt: 8502 pFloat: 1.17 anInt2: 5102 dVar1: 7652 dpInt1: 852 cEL: cvec_renamed[8] +xAODTestReadCVec 15 0 INFO anInt1 1702 aFloat: 3400.1 pInt: 8502 pFloat: 1.17 anInt2: 5102 dVar1: 7652 dpInt1: 852 cEL: cvec_renamed[8] pvInt: [1210 ] pvFloat: [-0.473 ] dpvFloat: [0.270 ] -xAODTestReadCVec 15 0 INFO anInt1 1703 aFloat: 3400.2 pInt: 8503 pFloat: 2.17 anInt2: 5103 dVar1: 7653 dpInt1: 853 cEL: cvec_renamed[7] +xAODTestReadCVec 15 0 INFO anInt1 1703 aFloat: 3400.2 pInt: 8503 pFloat: 2.17 anInt2: 5103 dVar1: 7653 dpInt1: 853 cEL: cvec_renamed[7] pvInt: [1220 1221 ] pvFloat: [-0.463 -0.363 ] dpvFloat: [0.370 0.371 ] -xAODTestReadCVec 15 0 INFO anInt1 1704 aFloat: 3400.3 pInt: 8504 pFloat: 3.17 anInt2: 5104 dVar1: 7654 dpInt1: 854 cEL: cvec_renamed[6] +xAODTestReadCVec 15 0 INFO anInt1 1704 aFloat: 3400.3 pInt: 8504 pFloat: 3.17 anInt2: 5104 dVar1: 7654 dpInt1: 854 cEL: cvec_renamed[6] pvInt: [1230 1231 1232 ] pvFloat: [-0.453 -0.353 -0.253 ] dpvFloat: [0.470 0.471 0.472 ] -xAODTestReadCVec 15 0 INFO anInt1 1705 aFloat: 3400.4 pInt: 8505 pFloat: 4.17 anInt2: 5105 dVar1: 7655 dpInt1: 855 cEL: cvec_renamed[5] +xAODTestReadCVec 15 0 INFO anInt1 1705 aFloat: 3400.4 pInt: 8505 pFloat: 4.17 anInt2: 5105 dVar1: 7655 dpInt1: 855 cEL: cvec_renamed[5] pvInt: [1240 1241 1242 1243 ] pvFloat: [-0.443 -0.343 -0.243 -0.143 ] dpvFloat: [0.570 0.571 0.572 0.573 ] -xAODTestReadCVec 15 0 INFO anInt1 1706 aFloat: 3400.5 pInt: 8506 pFloat: 5.17 anInt2: 5106 dVar1: 7656 dpInt1: 856 cEL: cvec_renamed[4] +xAODTestReadCVec 15 0 INFO anInt1 1706 aFloat: 3400.5 pInt: 8506 pFloat: 5.17 anInt2: 5106 dVar1: 7656 dpInt1: 856 cEL: cvec_renamed[4] pvInt: [1250 1251 1252 1253 1254 ] pvFloat: [-0.433 -0.333 -0.233 -0.133 -0.033 ] dpvFloat: [0.670 0.671 0.672 0.673 0.674 ] -xAODTestReadCVec 15 0 INFO anInt1 1707 aFloat: 3400.6 pInt: 8507 pFloat: 6.17 anInt2: 5107 dVar1: 7657 dpInt1: 857 cEL: cvec_renamed[3] +xAODTestReadCVec 15 0 INFO anInt1 1707 aFloat: 3400.6 pInt: 8507 pFloat: 6.17 anInt2: 5107 dVar1: 7657 dpInt1: 857 cEL: cvec_renamed[3] pvInt: [1260 1261 1262 1263 1264 1265 ] pvFloat: [-0.423 -0.323 -0.223 -0.123 -0.023 0.077 ] dpvFloat: [0.770 0.771 0.772 0.773 0.774 0.775 ] -xAODTestReadCVec 15 0 INFO anInt1 1708 aFloat: 3400.7 pInt: 8508 pFloat: 7.17 anInt2: 5108 dVar1: 7658 dpInt1: 858 cEL: cvec_renamed[2] +xAODTestReadCVec 15 0 INFO anInt1 1708 aFloat: 3400.7 pInt: 8508 pFloat: 7.17 anInt2: 5108 dVar1: 7658 dpInt1: 858 cEL: cvec_renamed[2] pvInt: [1270 1271 1272 1273 1274 1275 1276 ] pvFloat: [-0.413 -0.313 -0.213 -0.113 -0.013 0.087 0.187 ] dpvFloat: [0.870 0.871 0.872 0.873 0.874 0.875 0.876 ] -xAODTestReadCVec 15 0 INFO anInt1 1709 aFloat: 3400.8 pInt: 8509 pFloat: 8.17 anInt2: 5109 dVar1: 7659 dpInt1: 859 cEL: cvec_renamed[1] +xAODTestReadCVec 15 0 INFO anInt1 1709 aFloat: 3400.8 pInt: 8509 pFloat: 8.17 anInt2: 5109 dVar1: 7659 dpInt1: 859 cEL: cvec_renamed[1] pvInt: [1280 1281 1282 1283 1284 1285 1286 1287 ] pvFloat: [-0.403 -0.303 -0.203 -0.103 -0.003 0.097 0.197 0.297 ] dpvFloat: [0.970 0.971 0.972 0.973 0.974 0.975 0.976 0.977 ] -xAODTestReadCVec 15 0 INFO anInt1 1710 aFloat: 3400.9 pInt: 8510 pFloat: 9.17 anInt2: 5110 dVar1: 7660 dpInt1: 860 cEL: cvec_renamed[0] +xAODTestReadCVec 15 0 INFO anInt1 1710 aFloat: 3400.9 pInt: 8510 pFloat: 9.17 anInt2: 5110 dVar1: 7660 dpInt1: 860 cEL: cvec_renamed[0] pvInt: [1290 1291 1292 1293 1294 1295 1296 1297 1298 ] pvFloat: [-0.393 -0.293 -0.193 -0.093 0.007 0.107 0.207 0.307 0.407 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 15 0 INFO cvec_renamed.dInt1_renamed: 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 -xAODTestReadDecor 15 0 INFO cinfo.dInt1_renamed: 51000 -xAODTestReadDecor 15 0 INFO cinfo.dInt1_renamedBase: 51001 -xAODTestReadDecor 15 0 INFO cinfo.dInt1_renamed: 51000 -AthenaHiveEventLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== -AthenaHiveEventLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== -xAODTestReadCVec 16 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 16 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 16 0 INFO anInt1 1801 aFloat: 3600 pInt: 9001 pFloat: 0.18 anInt2: 5401 dVar1: 8101 dpInt1: 901 cEL: cvec_renamed[9] +xAODTestReadDecor 15 0 INFO cvec_renamed.dInt1_renamed: 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 +xAODTestReadDecor 15 0 INFO cinfo.dInt1_renamed: 51000 +xAODTestReadDecor 15 0 INFO cinfo.dInt1_renamedBase: 51001 +xAODTestReadDecor 15 0 INFO cinfo.dInt1_renamed: 51000 +Athena...ntLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== +Athena...ntLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== +xAODTestReadCVec 16 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 16 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 16 0 INFO anInt1 1801 aFloat: 3600 pInt: 9001 pFloat: 0.18 anInt2: 5401 dVar1: 8101 dpInt1: 901 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 16 0 INFO anInt1 1802 aFloat: 3600.1 pInt: 9002 pFloat: 1.18 anInt2: 5402 dVar1: 8102 dpInt1: 902 cEL: cvec_renamed[8] +xAODTestReadCVec 16 0 INFO anInt1 1802 aFloat: 3600.1 pInt: 9002 pFloat: 1.18 anInt2: 5402 dVar1: 8102 dpInt1: 902 cEL: cvec_renamed[8] pvInt: [1310 ] pvFloat: [-0.472 ] dpvFloat: [0.280 ] -xAODTestReadCVec 16 0 INFO anInt1 1803 aFloat: 3600.2 pInt: 9003 pFloat: 2.18 anInt2: 5403 dVar1: 8103 dpInt1: 903 cEL: cvec_renamed[7] +xAODTestReadCVec 16 0 INFO anInt1 1803 aFloat: 3600.2 pInt: 9003 pFloat: 2.18 anInt2: 5403 dVar1: 8103 dpInt1: 903 cEL: cvec_renamed[7] pvInt: [1320 1321 ] pvFloat: [-0.462 -0.362 ] dpvFloat: [0.380 0.381 ] -xAODTestReadCVec 16 0 INFO anInt1 1804 aFloat: 3600.3 pInt: 9004 pFloat: 3.18 anInt2: 5404 dVar1: 8104 dpInt1: 904 cEL: cvec_renamed[6] +xAODTestReadCVec 16 0 INFO anInt1 1804 aFloat: 3600.3 pInt: 9004 pFloat: 3.18 anInt2: 5404 dVar1: 8104 dpInt1: 904 cEL: cvec_renamed[6] pvInt: [1330 1331 1332 ] pvFloat: [-0.452 -0.352 -0.252 ] dpvFloat: [0.480 0.481 0.482 ] -xAODTestReadCVec 16 0 INFO anInt1 1805 aFloat: 3600.4 pInt: 9005 pFloat: 4.18 anInt2: 5405 dVar1: 8105 dpInt1: 905 cEL: cvec_renamed[5] +xAODTestReadCVec 16 0 INFO anInt1 1805 aFloat: 3600.4 pInt: 9005 pFloat: 4.18 anInt2: 5405 dVar1: 8105 dpInt1: 905 cEL: cvec_renamed[5] pvInt: [1340 1341 1342 1343 ] pvFloat: [-0.442 -0.342 -0.242 -0.142 ] dpvFloat: [0.580 0.581 0.582 0.583 ] -xAODTestReadCVec 16 0 INFO anInt1 1806 aFloat: 3600.5 pInt: 9006 pFloat: 5.18 anInt2: 5406 dVar1: 8106 dpInt1: 906 cEL: cvec_renamed[4] +xAODTestReadCVec 16 0 INFO anInt1 1806 aFloat: 3600.5 pInt: 9006 pFloat: 5.18 anInt2: 5406 dVar1: 8106 dpInt1: 906 cEL: cvec_renamed[4] pvInt: [1350 1351 1352 1353 1354 ] pvFloat: [-0.432 -0.332 -0.232 -0.132 -0.032 ] dpvFloat: [0.680 0.681 0.682 0.683 0.684 ] -xAODTestReadCVec 16 0 INFO anInt1 1807 aFloat: 3600.6 pInt: 9007 pFloat: 6.18 anInt2: 5407 dVar1: 8107 dpInt1: 907 cEL: cvec_renamed[3] +xAODTestReadCVec 16 0 INFO anInt1 1807 aFloat: 3600.6 pInt: 9007 pFloat: 6.18 anInt2: 5407 dVar1: 8107 dpInt1: 907 cEL: cvec_renamed[3] pvInt: [1360 1361 1362 1363 1364 1365 ] pvFloat: [-0.422 -0.322 -0.222 -0.122 -0.022 0.078 ] dpvFloat: [0.780 0.781 0.782 0.783 0.784 0.785 ] -xAODTestReadCVec 16 0 INFO anInt1 1808 aFloat: 3600.7 pInt: 9008 pFloat: 7.18 anInt2: 5408 dVar1: 8108 dpInt1: 908 cEL: cvec_renamed[2] +xAODTestReadCVec 16 0 INFO anInt1 1808 aFloat: 3600.7 pInt: 9008 pFloat: 7.18 anInt2: 5408 dVar1: 8108 dpInt1: 908 cEL: cvec_renamed[2] pvInt: [1370 1371 1372 1373 1374 1375 1376 ] pvFloat: [-0.412 -0.312 -0.212 -0.112 -0.012 0.088 0.188 ] dpvFloat: [0.880 0.881 0.882 0.883 0.884 0.885 0.886 ] -xAODTestReadCVec 16 0 INFO anInt1 1809 aFloat: 3600.8 pInt: 9009 pFloat: 8.18 anInt2: 5409 dVar1: 8109 dpInt1: 909 cEL: cvec_renamed[1] +xAODTestReadCVec 16 0 INFO anInt1 1809 aFloat: 3600.8 pInt: 9009 pFloat: 8.18 anInt2: 5409 dVar1: 8109 dpInt1: 909 cEL: cvec_renamed[1] pvInt: [1380 1381 1382 1383 1384 1385 1386 1387 ] pvFloat: [-0.402 -0.302 -0.202 -0.102 -0.002 0.098 0.198 0.298 ] dpvFloat: [0.980 0.981 0.982 0.983 0.984 0.985 0.986 0.987 ] -xAODTestReadCVec 16 0 INFO anInt1 1810 aFloat: 3600.9 pInt: 9010 pFloat: 9.18 anInt2: 5410 dVar1: 8110 dpInt1: 910 cEL: cvec_renamed[0] +xAODTestReadCVec 16 0 INFO anInt1 1810 aFloat: 3600.9 pInt: 9010 pFloat: 9.18 anInt2: 5410 dVar1: 8110 dpInt1: 910 cEL: cvec_renamed[0] pvInt: [1390 1391 1392 1393 1394 1395 1396 1397 1398 ] pvFloat: [-0.392 -0.292 -0.192 -0.092 0.008 0.108 0.208 0.308 0.408 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 16 0 INFO cvec_renamed.dInt1_renamed: 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 -xAODTestReadDecor 16 0 INFO cinfo.dInt1_renamed: 54000 -xAODTestReadDecor 16 0 INFO cinfo.dInt1_renamedBase: 54001 -xAODTestReadDecor 16 0 INFO cinfo.dInt1_renamed: 54000 -AthenaHiveEventLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== -AthenaHiveEventLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== -xAODTestReadCVec 17 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 17 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 17 0 INFO anInt1 1901 aFloat: 3800 pInt: 9501 pFloat: 0.19 anInt2: 5701 dVar1: 8551 dpInt1: 951 cEL: cvec_renamed[9] +xAODTestReadDecor 16 0 INFO cvec_renamed.dInt1_renamed: 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 +xAODTestReadDecor 16 0 INFO cinfo.dInt1_renamed: 54000 +xAODTestReadDecor 16 0 INFO cinfo.dInt1_renamedBase: 54001 +xAODTestReadDecor 16 0 INFO cinfo.dInt1_renamed: 54000 +Athena...ntLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== +Athena...ntLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== +xAODTestReadCVec 17 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 17 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 17 0 INFO anInt1 1901 aFloat: 3800 pInt: 9501 pFloat: 0.19 anInt2: 5701 dVar1: 8551 dpInt1: 951 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 17 0 INFO anInt1 1902 aFloat: 3800.1 pInt: 9502 pFloat: 1.19 anInt2: 5702 dVar1: 8552 dpInt1: 952 cEL: cvec_renamed[8] +xAODTestReadCVec 17 0 INFO anInt1 1902 aFloat: 3800.1 pInt: 9502 pFloat: 1.19 anInt2: 5702 dVar1: 8552 dpInt1: 952 cEL: cvec_renamed[8] pvInt: [1410 ] pvFloat: [-0.471 ] dpvFloat: [0.290 ] -xAODTestReadCVec 17 0 INFO anInt1 1903 aFloat: 3800.2 pInt: 9503 pFloat: 2.19 anInt2: 5703 dVar1: 8553 dpInt1: 953 cEL: cvec_renamed[7] +xAODTestReadCVec 17 0 INFO anInt1 1903 aFloat: 3800.2 pInt: 9503 pFloat: 2.19 anInt2: 5703 dVar1: 8553 dpInt1: 953 cEL: cvec_renamed[7] pvInt: [1420 1421 ] pvFloat: [-0.461 -0.361 ] dpvFloat: [0.390 0.391 ] -xAODTestReadCVec 17 0 INFO anInt1 1904 aFloat: 3800.3 pInt: 9504 pFloat: 3.19 anInt2: 5704 dVar1: 8554 dpInt1: 954 cEL: cvec_renamed[6] +xAODTestReadCVec 17 0 INFO anInt1 1904 aFloat: 3800.3 pInt: 9504 pFloat: 3.19 anInt2: 5704 dVar1: 8554 dpInt1: 954 cEL: cvec_renamed[6] pvInt: [1430 1431 1432 ] pvFloat: [-0.451 -0.351 -0.251 ] dpvFloat: [0.490 0.491 0.492 ] -xAODTestReadCVec 17 0 INFO anInt1 1905 aFloat: 3800.4 pInt: 9505 pFloat: 4.19 anInt2: 5705 dVar1: 8555 dpInt1: 955 cEL: cvec_renamed[5] +xAODTestReadCVec 17 0 INFO anInt1 1905 aFloat: 3800.4 pInt: 9505 pFloat: 4.19 anInt2: 5705 dVar1: 8555 dpInt1: 955 cEL: cvec_renamed[5] pvInt: [1440 1441 1442 1443 ] pvFloat: [-0.441 -0.341 -0.241 -0.141 ] dpvFloat: [0.590 0.591 0.592 0.593 ] -xAODTestReadCVec 17 0 INFO anInt1 1906 aFloat: 3800.5 pInt: 9506 pFloat: 5.19 anInt2: 5706 dVar1: 8556 dpInt1: 956 cEL: cvec_renamed[4] +xAODTestReadCVec 17 0 INFO anInt1 1906 aFloat: 3800.5 pInt: 9506 pFloat: 5.19 anInt2: 5706 dVar1: 8556 dpInt1: 956 cEL: cvec_renamed[4] pvInt: [1450 1451 1452 1453 1454 ] pvFloat: [-0.431 -0.331 -0.231 -0.131 -0.031 ] dpvFloat: [0.690 0.691 0.692 0.693 0.694 ] -xAODTestReadCVec 17 0 INFO anInt1 1907 aFloat: 3800.6 pInt: 9507 pFloat: 6.19 anInt2: 5707 dVar1: 8557 dpInt1: 957 cEL: cvec_renamed[3] +xAODTestReadCVec 17 0 INFO anInt1 1907 aFloat: 3800.6 pInt: 9507 pFloat: 6.19 anInt2: 5707 dVar1: 8557 dpInt1: 957 cEL: cvec_renamed[3] pvInt: [1460 1461 1462 1463 1464 1465 ] pvFloat: [-0.421 -0.321 -0.221 -0.121 -0.021 0.079 ] dpvFloat: [0.790 0.791 0.792 0.793 0.794 0.795 ] -xAODTestReadCVec 17 0 INFO anInt1 1908 aFloat: 3800.7 pInt: 9508 pFloat: 7.19 anInt2: 5708 dVar1: 8558 dpInt1: 958 cEL: cvec_renamed[2] +xAODTestReadCVec 17 0 INFO anInt1 1908 aFloat: 3800.7 pInt: 9508 pFloat: 7.19 anInt2: 5708 dVar1: 8558 dpInt1: 958 cEL: cvec_renamed[2] pvInt: [1470 1471 1472 1473 1474 1475 1476 ] pvFloat: [-0.411 -0.311 -0.211 -0.111 -0.011 0.089 0.189 ] dpvFloat: [0.890 0.891 0.892 0.893 0.894 0.895 0.896 ] -xAODTestReadCVec 17 0 INFO anInt1 1909 aFloat: 3800.8 pInt: 9509 pFloat: 8.19 anInt2: 5709 dVar1: 8559 dpInt1: 959 cEL: cvec_renamed[1] +xAODTestReadCVec 17 0 INFO anInt1 1909 aFloat: 3800.8 pInt: 9509 pFloat: 8.19 anInt2: 5709 dVar1: 8559 dpInt1: 959 cEL: cvec_renamed[1] pvInt: [1480 1481 1482 1483 1484 1485 1486 1487 ] pvFloat: [-0.401 -0.301 -0.201 -0.101 -0.001 0.099 0.199 0.299 ] dpvFloat: [0.990 0.991 0.992 0.993 0.994 0.995 0.996 0.997 ] -xAODTestReadCVec 17 0 INFO anInt1 1910 aFloat: 3800.9 pInt: 9510 pFloat: 9.19 anInt2: 5710 dVar1: 8560 dpInt1: 960 cEL: cvec_renamed[0] +xAODTestReadCVec 17 0 INFO anInt1 1910 aFloat: 3800.9 pInt: 9510 pFloat: 9.19 anInt2: 5710 dVar1: 8560 dpInt1: 960 cEL: cvec_renamed[0] pvInt: [1490 1491 1492 1493 1494 1495 1496 1497 1498 ] pvFloat: [-0.391 -0.291 -0.191 -0.091 0.009 0.109 0.209 0.309 0.409 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 17 0 INFO cvec_renamed.dInt1_renamed: 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 -xAODTestReadDecor 17 0 INFO cinfo.dInt1_renamed: 57000 -xAODTestReadDecor 17 0 INFO cinfo.dInt1_renamedBase: 57001 -xAODTestReadDecor 17 0 INFO cinfo.dInt1_renamed: 57000 -AthenaHiveEventLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== -AthenaHiveEventLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== -xAODTestReadCVec 18 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 18 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 18 0 INFO anInt1 2001 aFloat: 4000 pInt: 10001 pFloat: 0.20 anInt2: 6001 dVar1: 9001 dpInt1: 1001 cEL: cvec_renamed[9] +xAODTestReadDecor 17 0 INFO cvec_renamed.dInt1_renamed: 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 +xAODTestReadDecor 17 0 INFO cinfo.dInt1_renamed: 57000 +xAODTestReadDecor 17 0 INFO cinfo.dInt1_renamedBase: 57001 +xAODTestReadDecor 17 0 INFO cinfo.dInt1_renamed: 57000 +Athena...ntLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== +Athena...ntLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== +xAODTestReadCVec 18 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 18 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 18 0 INFO anInt1 2001 aFloat: 4000 pInt: 10001 pFloat: 0.20 anInt2: 6001 dVar1: 9001 dpInt1: 1001 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 18 0 INFO anInt1 2002 aFloat: 4000.1 pInt: 10002 pFloat: 1.20 anInt2: 6002 dVar1: 9002 dpInt1: 1002 cEL: cvec_renamed[8] +xAODTestReadCVec 18 0 INFO anInt1 2002 aFloat: 4000.1 pInt: 10002 pFloat: 1.20 anInt2: 6002 dVar1: 9002 dpInt1: 1002 cEL: cvec_renamed[8] pvInt: [1510 ] pvFloat: [-0.470 ] dpvFloat: [0.300 ] -xAODTestReadCVec 18 0 INFO anInt1 2003 aFloat: 4000.2 pInt: 10003 pFloat: 2.20 anInt2: 6003 dVar1: 9003 dpInt1: 1003 cEL: cvec_renamed[7] +xAODTestReadCVec 18 0 INFO anInt1 2003 aFloat: 4000.2 pInt: 10003 pFloat: 2.20 anInt2: 6003 dVar1: 9003 dpInt1: 1003 cEL: cvec_renamed[7] pvInt: [1520 1521 ] pvFloat: [-0.460 -0.360 ] dpvFloat: [0.400 0.401 ] -xAODTestReadCVec 18 0 INFO anInt1 2004 aFloat: 4000.3 pInt: 10004 pFloat: 3.20 anInt2: 6004 dVar1: 9004 dpInt1: 1004 cEL: cvec_renamed[6] +xAODTestReadCVec 18 0 INFO anInt1 2004 aFloat: 4000.3 pInt: 10004 pFloat: 3.20 anInt2: 6004 dVar1: 9004 dpInt1: 1004 cEL: cvec_renamed[6] pvInt: [1530 1531 1532 ] pvFloat: [-0.450 -0.350 -0.250 ] dpvFloat: [0.500 0.501 0.502 ] -xAODTestReadCVec 18 0 INFO anInt1 2005 aFloat: 4000.4 pInt: 10005 pFloat: 4.20 anInt2: 6005 dVar1: 9005 dpInt1: 1005 cEL: cvec_renamed[5] +xAODTestReadCVec 18 0 INFO anInt1 2005 aFloat: 4000.4 pInt: 10005 pFloat: 4.20 anInt2: 6005 dVar1: 9005 dpInt1: 1005 cEL: cvec_renamed[5] pvInt: [1540 1541 1542 1543 ] pvFloat: [-0.440 -0.340 -0.240 -0.140 ] dpvFloat: [0.600 0.601 0.602 0.603 ] -xAODTestReadCVec 18 0 INFO anInt1 2006 aFloat: 4000.5 pInt: 10006 pFloat: 5.20 anInt2: 6006 dVar1: 9006 dpInt1: 1006 cEL: cvec_renamed[4] +xAODTestReadCVec 18 0 INFO anInt1 2006 aFloat: 4000.5 pInt: 10006 pFloat: 5.20 anInt2: 6006 dVar1: 9006 dpInt1: 1006 cEL: cvec_renamed[4] pvInt: [1550 1551 1552 1553 1554 ] pvFloat: [-0.430 -0.330 -0.230 -0.130 -0.030 ] dpvFloat: [0.700 0.701 0.702 0.703 0.704 ] -xAODTestReadCVec 18 0 INFO anInt1 2007 aFloat: 4000.6 pInt: 10007 pFloat: 6.20 anInt2: 6007 dVar1: 9007 dpInt1: 1007 cEL: cvec_renamed[3] +xAODTestReadCVec 18 0 INFO anInt1 2007 aFloat: 4000.6 pInt: 10007 pFloat: 6.20 anInt2: 6007 dVar1: 9007 dpInt1: 1007 cEL: cvec_renamed[3] pvInt: [1560 1561 1562 1563 1564 1565 ] pvFloat: [-0.420 -0.320 -0.220 -0.120 -0.020 0.080 ] dpvFloat: [0.800 0.801 0.802 0.803 0.804 0.805 ] -xAODTestReadCVec 18 0 INFO anInt1 2008 aFloat: 4000.7 pInt: 10008 pFloat: 7.20 anInt2: 6008 dVar1: 9008 dpInt1: 1008 cEL: cvec_renamed[2] +xAODTestReadCVec 18 0 INFO anInt1 2008 aFloat: 4000.7 pInt: 10008 pFloat: 7.20 anInt2: 6008 dVar1: 9008 dpInt1: 1008 cEL: cvec_renamed[2] pvInt: [1570 1571 1572 1573 1574 1575 1576 ] pvFloat: [-0.410 -0.310 -0.210 -0.110 -0.010 0.090 0.190 ] dpvFloat: [0.900 0.901 0.902 0.903 0.904 0.905 0.906 ] -xAODTestReadCVec 18 0 INFO anInt1 2009 aFloat: 4000.8 pInt: 10009 pFloat: 8.20 anInt2: 6009 dVar1: 9009 dpInt1: 1009 cEL: cvec_renamed[1] +xAODTestReadCVec 18 0 INFO anInt1 2009 aFloat: 4000.8 pInt: 10009 pFloat: 8.20 anInt2: 6009 dVar1: 9009 dpInt1: 1009 cEL: cvec_renamed[1] pvInt: [1580 1581 1582 1583 1584 1585 1586 1587 ] pvFloat: [-0.400 -0.300 -0.200 -0.100 0.000 0.100 0.200 0.300 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCVec 18 0 INFO anInt1 2010 aFloat: 4000.9 pInt: 10010 pFloat: 9.20 anInt2: 6010 dVar1: 9010 dpInt1: 1010 cEL: cvec_renamed[0] +xAODTestReadCVec 18 0 INFO anInt1 2010 aFloat: 4000.9 pInt: 10010 pFloat: 9.20 anInt2: 6010 dVar1: 9010 dpInt1: 1010 cEL: cvec_renamed[0] pvInt: [1590 1591 1592 1593 1594 1595 1596 1597 1598 ] pvFloat: [-0.390 -0.290 -0.190 -0.090 0.010 0.110 0.210 0.310 0.410 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 18 0 INFO cvec_renamed.dInt1_renamed: 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 -xAODTestReadDecor 18 0 INFO cinfo.dInt1_renamed: 60000 -xAODTestReadDecor 18 0 INFO cinfo.dInt1_renamedBase: 60001 -xAODTestReadDecor 18 0 INFO cinfo.dInt1_renamed: 60000 -AthenaHiveEventLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== -AthenaHiveEventLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== -xAODTestReadCVec 19 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt -xAODTestReadCVec 19 0 INFO Type of aux store: DMTest::CAuxContainer_v1 -xAODTestReadCVec 19 0 INFO anInt1 2101 aFloat: 4200 pInt: 10501 pFloat: 0.21 anInt2: 6301 dVar1: 9451 dpInt1: 1051 cEL: cvec_renamed[9] +xAODTestReadDecor 18 0 INFO cvec_renamed.dInt1_renamed: 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 +xAODTestReadDecor 18 0 INFO cinfo.dInt1_renamed: 60000 +xAODTestReadDecor 18 0 INFO cinfo.dInt1_renamedBase: 60001 +xAODTestReadDecor 18 0 INFO cinfo.dInt1_renamed: 60000 +Athena...ntLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== +Athena...ntLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== +xAODTestReadCVec 19 0 INFO cvec_renamed aux items: aFloat anInt anInt2 cEL dInt1_renamed dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt +xAODTestReadCVec 19 0 INFO Type of aux store: DMTest::CAuxContainer_v1 +xAODTestReadCVec 19 0 INFO anInt1 2101 aFloat: 4200 pInt: 10501 pFloat: 0.21 anInt2: 6301 dVar1: 9451 dpInt1: 1051 cEL: cvec_renamed[9] pvInt: [] pvFloat: [] dpvFloat: [] -xAODTestReadCVec 19 0 INFO anInt1 2102 aFloat: 4200.1 pInt: 10502 pFloat: 1.21 anInt2: 6302 dVar1: 9452 dpInt1: 1052 cEL: cvec_renamed[8] +xAODTestReadCVec 19 0 INFO anInt1 2102 aFloat: 4200.1 pInt: 10502 pFloat: 1.21 anInt2: 6302 dVar1: 9452 dpInt1: 1052 cEL: cvec_renamed[8] pvInt: [1610 ] pvFloat: [-0.469 ] dpvFloat: [0.310 ] -xAODTestReadCVec 19 0 INFO anInt1 2103 aFloat: 4200.2 pInt: 10503 pFloat: 2.21 anInt2: 6303 dVar1: 9453 dpInt1: 1053 cEL: cvec_renamed[7] +xAODTestReadCVec 19 0 INFO anInt1 2103 aFloat: 4200.2 pInt: 10503 pFloat: 2.21 anInt2: 6303 dVar1: 9453 dpInt1: 1053 cEL: cvec_renamed[7] pvInt: [1620 1621 ] pvFloat: [-0.459 -0.359 ] dpvFloat: [0.410 0.411 ] -xAODTestReadCVec 19 0 INFO anInt1 2104 aFloat: 4200.3 pInt: 10504 pFloat: 3.21 anInt2: 6304 dVar1: 9454 dpInt1: 1054 cEL: cvec_renamed[6] +xAODTestReadCVec 19 0 INFO anInt1 2104 aFloat: 4200.3 pInt: 10504 pFloat: 3.21 anInt2: 6304 dVar1: 9454 dpInt1: 1054 cEL: cvec_renamed[6] pvInt: [1630 1631 1632 ] pvFloat: [-0.449 -0.349 -0.249 ] dpvFloat: [0.510 0.511 0.512 ] -xAODTestReadCVec 19 0 INFO anInt1 2105 aFloat: 4200.4 pInt: 10505 pFloat: 4.21 anInt2: 6305 dVar1: 9455 dpInt1: 1055 cEL: cvec_renamed[5] +xAODTestReadCVec 19 0 INFO anInt1 2105 aFloat: 4200.4 pInt: 10505 pFloat: 4.21 anInt2: 6305 dVar1: 9455 dpInt1: 1055 cEL: cvec_renamed[5] pvInt: [1640 1641 1642 1643 ] pvFloat: [-0.439 -0.339 -0.239 -0.139 ] dpvFloat: [0.610 0.611 0.612 0.613 ] -xAODTestReadCVec 19 0 INFO anInt1 2106 aFloat: 4200.5 pInt: 10506 pFloat: 5.21 anInt2: 6306 dVar1: 9456 dpInt1: 1056 cEL: cvec_renamed[4] +xAODTestReadCVec 19 0 INFO anInt1 2106 aFloat: 4200.5 pInt: 10506 pFloat: 5.21 anInt2: 6306 dVar1: 9456 dpInt1: 1056 cEL: cvec_renamed[4] pvInt: [1650 1651 1652 1653 1654 ] pvFloat: [-0.429 -0.329 -0.229 -0.129 -0.029 ] dpvFloat: [0.710 0.711 0.712 0.713 0.714 ] -xAODTestReadCVec 19 0 INFO anInt1 2107 aFloat: 4200.6 pInt: 10507 pFloat: 6.21 anInt2: 6307 dVar1: 9457 dpInt1: 1057 cEL: cvec_renamed[3] +xAODTestReadCVec 19 0 INFO anInt1 2107 aFloat: 4200.6 pInt: 10507 pFloat: 6.21 anInt2: 6307 dVar1: 9457 dpInt1: 1057 cEL: cvec_renamed[3] pvInt: [1660 1661 1662 1663 1664 1665 ] pvFloat: [-0.419 -0.319 -0.219 -0.119 -0.019 0.081 ] dpvFloat: [0.810 0.811 0.812 0.813 0.814 0.815 ] -xAODTestReadCVec 19 0 INFO anInt1 2108 aFloat: 4200.7 pInt: 10508 pFloat: 7.21 anInt2: 6308 dVar1: 9458 dpInt1: 1058 cEL: cvec_renamed[2] +xAODTestReadCVec 19 0 INFO anInt1 2108 aFloat: 4200.7 pInt: 10508 pFloat: 7.21 anInt2: 6308 dVar1: 9458 dpInt1: 1058 cEL: cvec_renamed[2] pvInt: [1670 1671 1672 1673 1674 1675 1676 ] pvFloat: [-0.409 -0.309 -0.209 -0.109 -0.009 0.091 0.191 ] dpvFloat: [0.910 0.911 0.912 0.913 0.914 0.915 0.916 ] -xAODTestReadCVec 19 0 INFO anInt1 2109 aFloat: 4200.8 pInt: 10509 pFloat: 8.21 anInt2: 6309 dVar1: 9459 dpInt1: 1059 cEL: cvec_renamed[1] +xAODTestReadCVec 19 0 INFO anInt1 2109 aFloat: 4200.8 pInt: 10509 pFloat: 8.21 anInt2: 6309 dVar1: 9459 dpInt1: 1059 cEL: cvec_renamed[1] pvInt: [1680 1681 1682 1683 1684 1685 1686 1687 ] pvFloat: [-0.399 -0.299 -0.199 -0.099 0.001 0.101 0.201 0.301 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadCVec 19 0 INFO anInt1 2110 aFloat: 4200.9 pInt: 10510 pFloat: 9.21 anInt2: 6310 dVar1: 9460 dpInt1: 1060 cEL: cvec_renamed[0] +xAODTestReadCVec 19 0 INFO anInt1 2110 aFloat: 4200.9 pInt: 10510 pFloat: 9.21 anInt2: 6310 dVar1: 9460 dpInt1: 1060 cEL: cvec_renamed[0] pvInt: [1690 1691 1692 1693 1694 1695 1696 1697 1698 ] pvFloat: [-0.389 -0.289 -0.189 -0.089 0.011 0.111 0.211 0.311 0.411 ] dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ] -xAODTestReadDecor 19 0 INFO cvec_renamed.dInt1_renamed: 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 -xAODTestReadDecor 19 0 INFO cinfo.dInt1_renamed: 63000 -xAODTestReadDecor 19 0 INFO cinfo.dInt1_renamedBase: 63001 -xAODTestReadDecor 19 0 INFO cinfo.dInt1_renamed: 63000 -AthenaHiveEventLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== -ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestReadRenameMT_catalog.xml' does not exist. New file created. -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.finalize() INFO Service finalized successfully -ApplicationMgr INFO Application Manager Finalized successfully -ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +xAODTestReadDecor 19 0 INFO cvec_renamed.dInt1_renamed: 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 +xAODTestReadDecor 19 0 INFO cinfo.dInt1_renamed: 63000 +xAODTestReadDecor 19 0 INFO cinfo.dInt1_renamedBase: 63001 +xAODTestReadDecor 19 0 INFO cinfo.dInt1_renamed: 63000 +Athena...ntLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== +ApplicationMgr INFO Application Manager Stopped successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRenameMT_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRenameMT_jo.py deleted file mode 100755 index 353dbd0074712ec7253a3a30692a1cbcdd9f9d91..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRenameMT_jo.py +++ /dev/null @@ -1,11 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODReadRenameMT_jo.py -# Author: snyder@bnl.gov -# Date: Nov, 2018 -# Purpose: Test reading xAOD objects data with renaming on input with hive. -# - -FILECATALOG = 'xAODTestReadRenameMT_catalog.xml' -include ('DataModelRunTests/xAODTestReadRename_jo.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRename_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRename_jo.py deleted file mode 100755 index d76009eb81c0ef9bfcff992d12523c9bbbed7914..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadRename_jo.py +++ /dev/null @@ -1,73 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODTestReadRename_jo.py -# Author: snyder@bnl.gov -# Date: Aug 2016 -# Purpose: Test reading xAOD objects data with renaming on input. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "xaoddata.root" ] - -from SGComps import AddressRemappingSvc -AddressRemappingSvc.addInputRename ('DMTest::CVec', 'cvec', 'cvec_renamed') -AddressRemappingSvc.addInputRename ('DMTest::CAuxContainer', - 'cvecAux.', 'cvec_renamedAux.') - -AddressRemappingSvc.addInputRename ('DMTest::CVec', 'cvec.dInt1', - 'cvec_renamed.dInt1_renamed') -AddressRemappingSvc.addInputRename ('DMTest::C', 'cinfo.dInt1', - 'cinfo.dInt1_renamed') -AddressRemappingSvc.addInputRename ('DMTest::C', 'cinfo.dInt1Base', - 'cinfo.dInt1_renamedBase') - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestReadDecor, \ - DMTest__xAODTestReadCVec - - -topSequence += DMTest__xAODTestReadCVec ('xAODTestReadCVec', - CVecKey = 'cvec_renamed') -topSequence += DMTest__xAODTestReadDecor ('xAODTestReadDecor', - CVecName = 'cvec_renamed', - DecorName = 'dInt1_renamed') - - -# Avoid races when running tests in parallel. -if 'FILECATALOG' not in globals(): - FILECATALOG = 'xAODTestReadRename_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') - diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadThinned.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadThinned.ref index 8acfc0466a45915246e20dd473e84e0177256139..3dd8976d4f2cbe7e33616d281b579002b5f62129 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadThinned.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadThinned.ref @@ -1,11 +1,7 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadWriteDicts INFO Initializing LoadWriteDicts... -MetaDataSvc INFO Initializing MetaDataSvc EventSelector INFO EventSelection with query AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully @@ -762,10 +758,6 @@ xAODTestReadCLinks INFO (cvec:5) (cvec:4) (:inv) (:inv) (cvec:3) (cvec:2) (: xAODTestReadCVec2 INFO cvec2 2101 2102 2103 2105 2106 2107 2109 2110 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestReadThinned_catalog.xml' does not exist. New file created. -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadThinned_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadThinned_jo.py deleted file mode 100644 index d8a8b916d224ee13eb6337f239ed9c754f1b6e92..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadThinned_jo.py +++ /dev/null @@ -1,58 +0,0 @@ -# -# File: DataModelRunTests/share/xAODTestReadThinned_jo.py -# Author: snyder@bnl.gov -# Date: Aug 2019 -# Purpose: Test thinning xAOD objects. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadWriteDicts.py') - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "xaodthinned1.root" ] - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestReadCVec, \ - DMTest__xAODTestReadCLinks -topSequence += DMTest__xAODTestReadCVec ("xAODTestReadCVec") -topSequence += DMTest__xAODTestReadCLinks ("xAODTestReadCLinks") - -topSequence += DMTest__xAODTestReadCVec ("xAODTestReadCVec2", - CVecKey = "cvec2", - Brief = True) - - -# Avoid races when running tests in parallel. -if 'FILECATALOG' not in globals(): - FILECATALOG = 'xAODTestReadThinned_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') - diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead_jo.py deleted file mode 100755 index 0dd3220f918211fc0cb27c571374bdbb18cd172a..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead_jo.py +++ /dev/null @@ -1,161 +0,0 @@ -# -# File: share/xAODTestRead_jo.py -# Author: snyder@bnl.gov -# Date: May 2014 -# Purpose: Test reading xAOD objects data. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "xaoddata.root" ] - -#-------------------------------------------------------------- -# Define output -#-------------------------------------------------------------- -# ItemList: -include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" ) -fullItemList+=["DMTest::CVec#cvec"] -fullItemList+=["xAOD::AuxContainerBase!#cvecAux."] -fullItemList+=["DMTest::CVecWithData#cvecWD"] -fullItemList+=["DMTest::CView#cview"] -fullItemList+=["DMTest::CAuxContainer#cvecWDAux."] -fullItemList+=["DMTest::GVec#gvec"] -fullItemList+=["DMTest::GAuxContainer#gvecAux."] -fullItemList+=["DMTest::CVec#ctrig"] -fullItemList+=["DMTest::CTrigAuxContainer#ctrigAux."] -fullItemList+=["DMTest::C#cinfo"] -fullItemList+=["DMTest::CInfoAuxContainer#cinfoAux."] -fullItemList+=["DMTest::HVec#hvec"] -fullItemList+=["DMTest::HAuxContainer#hvecAux."] -fullItemList+=["DMTest::HView#hview"] - -fullItemList+=["DMTest::CVec#copy_cvec"] -fullItemList+=["DMTest::CAuxContainer#copy_cvecAux."] -fullItemList+=["DMTest::CVecWithData#copy_cvecWD"] -fullItemList+=["DMTest::CView#copy_cview"] -fullItemList+=["DMTest::CAuxContainer#copy_cvecWDAux."] -fullItemList+=["DMTest::GVec#copy_gvec"] -fullItemList+=["DMTest::GAuxContainer#copy_gvecAux."] -fullItemList+=["DMTest::CVec#copy_ctrig"] -fullItemList+=["DMTest::CTrigAuxContainer#copy_ctrigAux."] -fullItemList+=["DMTest::C#copy_cinfo"] -fullItemList+=["DMTest::CInfoAuxContainer#copy_cinfoAux."] -fullItemList+=["DMTest::HVec#copy_hvec"] -fullItemList+=["DMTest::HAuxContainer#copy_hvecAux."] -fullItemList+=["DMTest::HView#copy_hview"] - -fullItemList+=["DMTest::CVec#scopy_cvec"] -fullItemList+=["xAOD::ShallowAuxContainer#scopy_cvecAux."] -fullItemList+=["DMTest::CVecWithData#scopy_cvecWD"] -fullItemList+=["xAOD::ShallowAuxContainer#scopy_cvecWDAux."] -fullItemList+=["DMTest::CVec#scopy_ctrig"] -fullItemList+=["xAOD::ShallowAuxContainer#scopy_ctrigAux."] -fullItemList+=["DMTest::C#scopy_cinfo"] -fullItemList+=["xAOD::ShallowAuxInfo#scopy_cinfoAux."] -fullItemList+=["DMTest::HVec#scopy_hvec"] -fullItemList+=["xAOD::ShallowAuxContainer#scopy_hvecAux."] - -fullItemList+=["xAOD::EventInfo#EventInfo"] -fullItemList+=["xAOD::EventAuxInfo#EventInfoAux."] - -ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += ["DEFAULT_SPLITLEVEL='1'"] - -from OutputStreamAthenaPool.MultipleStreamManager import MSMgr - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestReadCVec, \ - DMTest__xAODTestDecor, \ - DMTest__xAODTestShallowCopy -from DataModelTestDataRead.DataModelTestDataReadConf import \ - DMTest__xAODTestReadCInfo, \ - DMTest__xAODTestRead, \ - DMTest__xAODTestReadCView, \ - DMTest__xAODTestReadHVec, \ - DMTest__xAODTestClearDecor, \ - DMTest__xAODTestShallowCopyHVec - - -topSequence += DMTest__xAODTestReadCVec ('xAODTestReadCVec', - WriteKey = 'copy_cvec') -topSequence += DMTest__xAODTestReadCInfo ('xAODTestReadCInfo', - WriteKey = 'copy_cinfo') -topSequence += DMTest__xAODTestRead ('xAODTestRead', - CTrigWriteKey = 'copy_ctrig', - GVecWriteKey = 'copy_gvec', - CVecWDWriteKey = 'copy_cvecWD') -topSequence += DMTest__xAODTestReadCView ('xAODTestReadCView', - WriteKey = 'copy_cview') -topSequence += DMTest__xAODTestReadHVec ('xAODTestReadHVec', - VecWriteKey = 'copy_hvec', - ViewWriteKey = 'copy_hview') - -topSequence += DMTest__xAODTestDecor ('AuxDataTestDecor1', - DecorName = 'dInt100', - Offset = 100) - -topSequence += DMTest__xAODTestShallowCopy ('xAODTestShallowCopy') -topSequence += DMTest__xAODTestShallowCopyHVec ('xAODTestShallowCopyHVec') - -topSequence += DMTest__xAODTestDecor ('AuxDataTestDecor1_scopy', - ReadPrefix = 'scopy_', - DecorName = 'dInt150', - Offset = 300) - -topSequence += DMTest__xAODTestReadCVec ('xAODTestReadFwdLink', - CVecKey = 'CVecFwdLink') - -# Stream's output file -Stream1_Augmented = MSMgr.NewPoolStream ('Stream1', 'xaoddata2.root',asAlg=True, noTag=True) -Stream1 = Stream1_Augmented.GetEventStream() -Stream1.WritingTool.SubLevelBranchName = '<key>' -Stream1.ItemList += fullItemList # List of DO's to write out - -from xAODEventFormatCnv.xAODEventFormatCnvConf import xAODMaker__EventFormatStreamHelperTool -for tool in Stream1.HelperTools: - if isinstance(tool, xAODMaker__EventFormatStreamHelperTool): - tool.TypeNames += [ - 'DataVector<DMTest::C_v1>', - 'DMTest::CAuxContainer_v1', - 'DMTest::CVecWithData_v1', - 'DMTest::CTrigAuxContainer_v1', - 'DMTest::C_v1', - 'DMTest::CInfoAuxContainer_v1', - ] - break - -# Avoid races when running tests in parallel. -FILECATALOG = 'xAODTestRead_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1.ref index d71a3a8cf4c7a8c1b51883f8e0b365ba3599805f..18c87bae0a9b7893e56d9bc095ca99002e98e36e 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1.ref @@ -1,100 +1,97 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -MetaDataSvc INFO Initializing MetaDataSvc +EventInfoCnvAlg INFO Initializing EventInfoCnvAlg +EventI...foCnvTool INFO Beam spot information not available +EventI...foCnvTool INFO Will not fill beam spot information into xAOD::EventInfo xAODTestAlg WARNING Implicit circular data dependency detected for id ( 'SG::AuxElement' , 'StoreGateSvc+cinfo2' ) EventSelector INFO Enter McEventSelector Initialization AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully -EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventP...stencySvc INFO Added successfully Conversion service:McCnvSvc AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 2000; S 100 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 2000; S 100 +xAODTe...adSymlink INFO C (as AuxElement): 2000; S 100 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 2000; S 100 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 3000; S 200 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 3000; S 200 +xAODTe...adSymlink INFO C (as AuxElement): 3000; S 200 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 3000; S 200 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #3, run #0 2 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 4000; S 300 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 4000; S 300 +xAODTe...adSymlink INFO C (as AuxElement): 4000; S 300 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 4000; S 300 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #0 3 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #4, run #0 3 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 5000; S 400 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 5000; S 400 +xAODTe...adSymlink INFO C (as AuxElement): 5000; S 400 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 5000; S 400 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #0 4 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #5, run #0 4 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 6000; S 500 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 6000; S 500 +xAODTe...adSymlink INFO C (as AuxElement): 6000; S 500 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 6000; S 500 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #0 5 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #6, run #0 5 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 7000; S 600 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 7000; S 600 +xAODTe...adSymlink INFO C (as AuxElement): 7000; S 600 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 7000; S 600 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #0 6 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #7, run #0 6 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 8000; S 700 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 8000; S 700 +xAODTe...adSymlink INFO C (as AuxElement): 8000; S 700 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 8000; S 700 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #0 7 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #8, run #0 7 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 9000; S 800 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 9000; S 800 +xAODTe...adSymlink INFO C (as AuxElement): 9000; S 800 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 9000; S 800 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #0 8 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #9, run #0 8 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 10000; S 900 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 10000; S 900 +xAODTe...adSymlink INFO C (as AuxElement): 10000; S 900 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 10000; S 900 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #0 9 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #10, run #0 9 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 11000; S 1000 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 11000; S 1000 +xAODTe...adSymlink INFO C (as AuxElement): 11000; S 1000 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 11000; S 1000 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #0 10 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #11, run #0 10 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 12000; S 1100 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 12000; S 1100 +xAODTe...adSymlink INFO C (as AuxElement): 12000; S 1100 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 12000; S 1100 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #0 11 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #12, run #0 11 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 13000; S 1200 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 13000; S 1200 +xAODTe...adSymlink INFO C (as AuxElement): 13000; S 1200 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 13000; S 1200 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #0 12 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #13, run #0 12 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 14000; S 1300 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 14000; S 1300 +xAODTe...adSymlink INFO C (as AuxElement): 14000; S 1300 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 14000; S 1300 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #0 13 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #14, run #0 13 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 15000; S 1400 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 15000; S 1400 +xAODTe...adSymlink INFO C (as AuxElement): 15000; S 1400 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 15000; S 1400 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #0 14 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #15, run #0 14 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 16000; S 1500 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 16000; S 1500 +xAODTe...adSymlink INFO C (as AuxElement): 16000; S 1500 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 16000; S 1500 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #0 15 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #16, run #0 15 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 17000; S 1600 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 17000; S 1600 +xAODTe...adSymlink INFO C (as AuxElement): 17000; S 1600 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 17000; S 1600 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #0 16 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #17, run #0 16 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 18000; S 1700 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 18000; S 1700 +xAODTe...adSymlink INFO C (as AuxElement): 18000; S 1700 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 18000; S 1700 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #0 17 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #18, run #0 17 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 19000; S 1800 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 19000; S 1800 +xAODTe...adSymlink INFO C (as AuxElement): 19000; S 1800 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 19000; S 1800 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #0 18 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 20000; S 1900 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 20000; S 1900 +xAODTe...adSymlink INFO C (as AuxElement): 20000; S 1900 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 20000; S 1900 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 21000; S 2000 -xAODTestAlg.xAO... INFO From tool: C (as AuxElement): 21000; S 2000 +xAODTe...adSymlink INFO C (as AuxElement): 21000; S 2000 +xAODTe...mlinkTool INFO From tool: C (as AuxElement): 21000; S 2000 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully -AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1MT.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1MT.ref index ffdddca993c80fbcf17a81f02656ecd0be47a3d4..4443bb6d8a47ac6820fa52a2bc3147b8229833d9 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1MT.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1MT.ref @@ -1,29 +1,22 @@ -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO configuring AthenaHive with [1] concurrent threads and [1] concurrent events -Py:AlgScheduler INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 1 threads -MessageSvc INFO Activating in a separate thread ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -AthenaHiveEventLoopMgr INFO Initializing AthenaHiveEventLoopMgr -MetaDataSvc INFO Initializing MetaDataSvc -xAODTestAlg 0 WARNING Implicit circular data dependency detected for id ( 'SG::AuxElement' , 'StoreGateSvc+cinfo2' ) -ThreadPoolSvc 0 INFO no thread init tools attached -AvalancheSchedulerSvc 0 INFO Activating scheduler in a separate thread -AvalancheSchedulerSvc 0 INFO Found 13 algorithms -AvalancheSchedulerSvc 0 INFO Data Dependencies for Algorithms: +Athena...ntLoopMgr INFO Initializing AthenaHiveEventLoopMgr +EventInfoCnvAlg 0 INFO Initializing EventInfoCnvAlg +EventI...foCnvTool 0 INFO Beam spot information not available +EventI...foCnvTool 0 INFO Will not fill beam spot information into xAOD::EventInfo +ThreadPoolSvc 0 INFO no thread init tools attached +Avalan...edulerSvc 0 INFO Activating scheduler in a separate thread +Avalan...edulerSvc 0 INFO Found 13 algorithms +Avalan...edulerSvc 0 INFO Data Dependencies for Algorithms: BeginIncFiringAlg none IncidentProcAlg1 none - xAODMaker::EventInfoCnvAlg + SGInputLoader + none + EventInfoCnvAlg o INPUT ( 'EventInfo' , 'StoreGateSvc+McEventInfo' ) o OUTPUT ( 'SG::AuxElement' , 'StoreGateSvc+EventInfo' ) - o OUTPUT ( 'SG::AuxVectorBase' , 'StoreGateSvc+PileupEventInfo' ) o OUTPUT ( 'xAOD::EventInfo' , 'StoreGateSvc+EventInfo' ) - o OUTPUT ( 'xAOD::EventInfoContainer' , 'StoreGateSvc+PileupEventInfo' ) - SGInputLoader - none xAODTestWriteCVec o OUTPUT ( 'DMTest::CVec' , 'StoreGateSvc+cvec' ) o OUTPUT ( 'DMTest::CVec' , 'StoreGateSvc+cvec.dtest' ) @@ -59,89 +52,67 @@ AvalancheSchedulerSvc 0 INFO Data Depe none IncidentProcAlg3 none -AvalancheSchedulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm -AvalancheSchedulerSvc 0 INFO o ( 'EventInfo' , 'StoreGateSvc+McEventInfo' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODMaker::EventInfoCnvAlg -PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules -PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully -AvalancheSchedulerSvc 0 INFO Concurrency level information: -AvalancheSchedulerSvc 0 INFO o Number of events in flight: 1 -AvalancheSchedulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 -AvalancheSchedulerSvc 0 INFO Task scheduling settings: -AvalancheSchedulerSvc 0 INFO o Avalanche generation mode: disabled -AvalancheSchedulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled -AvalancheSchedulerSvc 0 INFO o Scheduling of condition tasks: disabled -EventSelector 0 INFO Enter McEventSelector Initialization -AthenaHiveEventLoopMgr 0 INFO Setup EventSelector service EventSelector -ApplicationMgr 0 INFO Application Manager Initialized successfully -ApplicationMgr 0 INFO Application Manager Started successfully -AthenaHiveEventLoopMgr 0 INFO Starting loop on events -EventPersistencySvc 0 0 INFO Added successfully Conversion service:McCnvSvc -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 0 0 INFO From tool: C (as AuxElement): 2000; S 100 -AthenaHiveEventLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== -AthenaHiveEventLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 1 0 INFO From tool: C (as AuxElement): 3000; S 200 -AthenaHiveEventLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== -AthenaHiveEventLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 2 0 INFO From tool: C (as AuxElement): 4000; S 300 -AthenaHiveEventLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== -AthenaHiveEventLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 3 0 INFO From tool: C (as AuxElement): 5000; S 400 -AthenaHiveEventLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== -AthenaHiveEventLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 4 0 INFO From tool: C (as AuxElement): 6000; S 500 -AthenaHiveEventLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== -AthenaHiveEventLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 5 0 INFO From tool: C (as AuxElement): 7000; S 600 -AthenaHiveEventLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== -AthenaHiveEventLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 6 0 INFO From tool: C (as AuxElement): 8000; S 700 -AthenaHiveEventLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== -AthenaHiveEventLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 7 0 INFO From tool: C (as AuxElement): 9000; S 800 -AthenaHiveEventLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== -AthenaHiveEventLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 8 0 INFO From tool: C (as AuxElement): 10000; S 900 -AthenaHiveEventLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== -AthenaHiveEventLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 9 0 INFO From tool: C (as AuxElement): 11000; S 1000 -AthenaHiveEventLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== -AthenaHiveEventLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 10 0 INFO From tool: C (as AuxElement): 12000; S 1100 -AthenaHiveEventLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== -AthenaHiveEventLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 11 0 INFO From tool: C (as AuxElement): 13000; S 1200 -AthenaHiveEventLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== -AthenaHiveEventLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 12 0 INFO From tool: C (as AuxElement): 14000; S 1300 -AthenaHiveEventLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== -AthenaHiveEventLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 13 0 INFO From tool: C (as AuxElement): 15000; S 1400 -AthenaHiveEventLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== -AthenaHiveEventLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 14 0 INFO From tool: C (as AuxElement): 16000; S 1500 -AthenaHiveEventLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== -AthenaHiveEventLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 15 0 INFO From tool: C (as AuxElement): 17000; S 1600 -AthenaHiveEventLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== -AthenaHiveEventLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 16 0 INFO From tool: C (as AuxElement): 18000; S 1700 -AthenaHiveEventLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== -AthenaHiveEventLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 17 0 INFO From tool: C (as AuxElement): 19000; S 1800 -AthenaHiveEventLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== -AthenaHiveEventLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 18 0 INFO From tool: C (as AuxElement): 20000; S 1900 -AthenaHiveEventLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== -AthenaHiveEventLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== -xAODTestAlg.xAODTestReadSymlinkTool 19 0 INFO From tool: C (as AuxElement): 21000; S 2000 -AthenaHiveEventLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== -ApplicationMgr INFO Application Manager Stopped successfully -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.finalize() INFO Service finalized successfully -ApplicationMgr INFO Application Manager Finalized successfully -ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +Avalan...edulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm +Avalan...edulerSvc 0 INFO o ( 'EventInfo' , 'StoreGateSvc+McEventInfo' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * EventInfoCnvAlg +PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules +PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully +Avalan...edulerSvc 0 INFO Concurrency level information: +Avalan...edulerSvc 0 INFO o Number of events in flight: 1 +Avalan...edulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 +Avalan...edulerSvc 0 INFO Task scheduling settings: +Avalan...edulerSvc 0 INFO o Avalanche generation mode: disabled +Avalan...edulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled +Avalan...edulerSvc 0 INFO o Scheduling of condition tasks: disabled +EventSelector 0 INFO Enter McEventSelector Initialization +Athena...ntLoopMgr 0 INFO Setup EventSelector service EventSelector +ApplicationMgr 0 INFO Application Manager Initialized successfully +ApplicationMgr 0 INFO Application Manager Started successfully +Athena...ntLoopMgr 0 INFO Starting loop on events +EventP...stencySvc 0 0 INFO Added successfully Conversion service:McCnvSvc +Athena...ntLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== +Athena...ntLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== +Athena...ntLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== +Athena...ntLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== +Athena...ntLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== +Athena...ntLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== +Athena...ntLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== +Athena...ntLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== +Athena...ntLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== +Athena...ntLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== +Athena...ntLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== +Athena...ntLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== +Athena...ntLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== +Athena...ntLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== +Athena...ntLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== +Athena...ntLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== +Athena...ntLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== +Athena...ntLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== +Athena...ntLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== +Athena...ntLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== +Athena...ntLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== +Athena...ntLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== +Athena...ntLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== +Athena...ntLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== +Athena...ntLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== +Athena...ntLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== +Athena...ntLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== +Athena...ntLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== +Athena...ntLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== +Athena...ntLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== +Athena...ntLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== +Athena...ntLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== +Athena...ntLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== +Athena...ntLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== +Athena...ntLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== +Athena...ntLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== +Athena...ntLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== +Athena...ntLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== +Athena...ntLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== +Athena...ntLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== +Athena...ntLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== +ApplicationMgr INFO Application Manager Stopped successfully +ToolSvc INFO Removing all tools created by ToolSvc +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1MT_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1MT_jo.py deleted file mode 100644 index c950c9d30f5357f931c5c28d030ea56af878bdeb..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1MT_jo.py +++ /dev/null @@ -1,10 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODTestSymlinks1MT_jo.py -# Author: snyder@bnl.gov -# Date: Apr 2017 -# Purpose: Test syminks and hive. -# - -include ('DataModelRunTests/xAODTestSymlinks1_jo.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1_jo.py deleted file mode 100644 index 51d8be6c49d70a76b473ad4606908c3418ffed0f..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks1_jo.py +++ /dev/null @@ -1,71 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODTestSymlinks1_jo.py -# Author: snyder@bnl.gov -# Date: Apr 2017 -# Purpose: Test syminks and hive. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixGeneratorJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool - - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- - -from AthenaCommon.ConcurrencyFlags import jobproperties as jp -nThreads = jp.ConcurrencyFlags.NumThreads() -if nThreads >= 1: - from AthenaCommon.AlgScheduler import AlgScheduler - AlgScheduler.ShowDataDependencies (True) - - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestWriteCVec, \ - DMTest__xAODTestWriteCInfo, \ - DMTest__xAODTestReadSymlink, \ - DMTest__xAODTestReadSymlinkTool, \ - DMTest__xAODTestAlg -from DataModelTestDataWrite.DataModelTestDataWriteConf import \ - DMTest__xAODTestWriteCInfoTool, \ - DMTest__xAODTestWriteSymlinks - -topSequence += DMTest__xAODTestWriteCVec ("xAODTestWriteCVec") -topSequence += DMTest__xAODTestWriteCInfo ("xAODTestWriteCInfo") -topSequence += DMTest__xAODTestWriteSymlinks ("xAODTestWriteSymlinks") -topSequence += DMTest__xAODTestReadSymlink ("xAODTestReadSymlink", Key='cinfo') - -writeCInfoTool = DMTest__xAODTestWriteCInfoTool ("xAODTestWriteCInfoTool", - CInfoKey='cinfo2') -readSymlinkTool = DMTest__xAODTestReadSymlinkTool ("xAODTestReadSymlinkTool", - Key='cinfo2') -topSequence += DMTest__xAODTestAlg ("xAODTestAlg", - Tools = [writeCInfoTool, - readSymlinkTool]) - - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2.ref index 4bc3ff75bf2293c0482340cff1b926e2f929d009..2df1a606f741ccffcaea5416a3c5d6c2c48f3f45 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2.ref @@ -1,81 +1,73 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... -MetaDataSvc INFO Initializing MetaDataSvc EventSelector INFO EventSelection with query AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 2000; S 100 +xAODTe...adSymlink INFO C (as AuxElement): 2000; S 100 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 3000; S 200 +xAODTe...adSymlink INFO C (as AuxElement): 3000; S 200 AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #3, run #0 2 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 4000; S 300 +xAODTe...adSymlink INFO C (as AuxElement): 4000; S 300 AthenaEventLoopMgr INFO ===>>> done processing event #3, run #0 3 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #4, run #0 3 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 5000; S 400 +xAODTe...adSymlink INFO C (as AuxElement): 5000; S 400 AthenaEventLoopMgr INFO ===>>> done processing event #4, run #0 4 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #5, run #0 4 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 6000; S 500 +xAODTe...adSymlink INFO C (as AuxElement): 6000; S 500 AthenaEventLoopMgr INFO ===>>> done processing event #5, run #0 5 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #6, run #0 5 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 7000; S 600 +xAODTe...adSymlink INFO C (as AuxElement): 7000; S 600 AthenaEventLoopMgr INFO ===>>> done processing event #6, run #0 6 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #7, run #0 6 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 8000; S 700 +xAODTe...adSymlink INFO C (as AuxElement): 8000; S 700 AthenaEventLoopMgr INFO ===>>> done processing event #7, run #0 7 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #8, run #0 7 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 9000; S 800 +xAODTe...adSymlink INFO C (as AuxElement): 9000; S 800 AthenaEventLoopMgr INFO ===>>> done processing event #8, run #0 8 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #9, run #0 8 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 10000; S 900 +xAODTe...adSymlink INFO C (as AuxElement): 10000; S 900 AthenaEventLoopMgr INFO ===>>> done processing event #9, run #0 9 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #10, run #0 9 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 11000; S 1000 +xAODTe...adSymlink INFO C (as AuxElement): 11000; S 1000 AthenaEventLoopMgr INFO ===>>> done processing event #10, run #0 10 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #11, run #0 10 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 12000; S 1100 +xAODTe...adSymlink INFO C (as AuxElement): 12000; S 1100 AthenaEventLoopMgr INFO ===>>> done processing event #11, run #0 11 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #12, run #0 11 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 13000; S 1200 +xAODTe...adSymlink INFO C (as AuxElement): 13000; S 1200 AthenaEventLoopMgr INFO ===>>> done processing event #12, run #0 12 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #13, run #0 12 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 14000; S 1300 +xAODTe...adSymlink INFO C (as AuxElement): 14000; S 1300 AthenaEventLoopMgr INFO ===>>> done processing event #13, run #0 13 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #14, run #0 13 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 15000; S 1400 +xAODTe...adSymlink INFO C (as AuxElement): 15000; S 1400 AthenaEventLoopMgr INFO ===>>> done processing event #14, run #0 14 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #15, run #0 14 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 16000; S 1500 +xAODTe...adSymlink INFO C (as AuxElement): 16000; S 1500 AthenaEventLoopMgr INFO ===>>> done processing event #15, run #0 15 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #16, run #0 15 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 17000; S 1600 +xAODTe...adSymlink INFO C (as AuxElement): 17000; S 1600 AthenaEventLoopMgr INFO ===>>> done processing event #16, run #0 16 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #17, run #0 16 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 18000; S 1700 +xAODTe...adSymlink INFO C (as AuxElement): 18000; S 1700 AthenaEventLoopMgr INFO ===>>> done processing event #17, run #0 17 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #18, run #0 17 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 19000; S 1800 +xAODTe...adSymlink INFO C (as AuxElement): 19000; S 1800 AthenaEventLoopMgr INFO ===>>> done processing event #18, run #0 18 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 20000; S 1900 +xAODTe...adSymlink INFO C (as AuxElement): 20000; S 1900 AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== -xAODTestReadSym... INFO C (as AuxElement): 21000; S 2000 +xAODTe...adSymlink INFO C (as AuxElement): 21000; S 2000 AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestSymlinks2_catalog.xml' does not exist. New file created. -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2MT.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2MT.ref index 480d42d62fea8eabe6b8fd223bec0f6f7eacf4d7..acb22856bd683d9e8182155346d98a472892545d 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2MT.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2MT.ref @@ -1,19 +1,11 @@ -Py:Athena INFO executing ROOT6Setup -Py:Athena INFO configuring AthenaHive with [1] concurrent threads and [1] concurrent events -Py:AlgScheduler INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 1 threads -MessageSvc INFO Activating in a separate thread ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry -AthenaHiveEventLoopMgr INFO Initializing AthenaHiveEventLoopMgr -MetaDataSvc INFO Initializing MetaDataSvc -EventSelector INFO EventSelection with query -PyComponentMgr 0 INFO Initializing PyComponentMgr... -LoadReadDicts 0 INFO Initializing LoadReadDicts... -ThreadPoolSvc 0 INFO no thread init tools attached -AvalancheSchedulerSvc 0 INFO Activating scheduler in a separate thread -AvalancheSchedulerSvc 0 INFO Found 9 algorithms -AvalancheSchedulerSvc 0 INFO Data Dependencies for Algorithms: +Athena...ntLoopMgr INFO Initializing AthenaHiveEventLoopMgr +PyComponentMgr 0 INFO Initializing PyComponentMgr... +LoadReadDicts 0 INFO Initializing LoadReadDicts... +ThreadPoolSvc 0 INFO no thread init tools attached +Avalan...edulerSvc 0 INFO Activating scheduler in a separate thread +Avalan...edulerSvc 0 INFO Found 9 algorithms +Avalan...edulerSvc 0 INFO Data Dependencies for Algorithms: BeginIncFiringAlg none IncidentProcAlg1 @@ -35,94 +27,91 @@ AvalancheSchedulerSvc 0 INFO Data Depe none IncidentProcAlg3 none -AvalancheSchedulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::S1' , 'StoreGateSvc+S2' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadSymlink -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::S2' , 'StoreGateSvc+S2' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadSymlink -AvalancheSchedulerSvc 0 INFO o ( 'DMTest::S2' , 'StoreGateSvc+S2alias' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadSymlink -AvalancheSchedulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+cinfo' ) required by Algorithm: -AvalancheSchedulerSvc 0 INFO * xAODTestReadSymlink -PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules -PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully -AvalancheSchedulerSvc 0 INFO Concurrency level information: -AvalancheSchedulerSvc 0 INFO o Number of events in flight: 1 -AvalancheSchedulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 -AvalancheSchedulerSvc 0 INFO Task scheduling settings: -AvalancheSchedulerSvc 0 INFO o Avalanche generation mode: disabled -AvalancheSchedulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled -AvalancheSchedulerSvc 0 INFO o Scheduling of condition tasks: disabled -AthenaHiveEventLoopMgr 0 INFO Setup EventSelector service EventSelector -ApplicationMgr 0 INFO Application Manager Initialized successfully -ApplicationMgr 0 INFO Application Manager Started successfully -AthenaHiveEventLoopMgr 0 INFO Starting loop on events -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== -AthenaHiveEventLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== -xAODTestReadSymlink 0 0 INFO C (as AuxElement): 2000; S 100 -AthenaHiveEventLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== -AthenaHiveEventLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== -xAODTestReadSymlink 1 0 INFO C (as AuxElement): 3000; S 200 -AthenaHiveEventLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== -AthenaHiveEventLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== -xAODTestReadSymlink 2 0 INFO C (as AuxElement): 4000; S 300 -AthenaHiveEventLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== -AthenaHiveEventLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== -xAODTestReadSymlink 3 0 INFO C (as AuxElement): 5000; S 400 -AthenaHiveEventLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== -AthenaHiveEventLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== -xAODTestReadSymlink 4 0 INFO C (as AuxElement): 6000; S 500 -AthenaHiveEventLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== -AthenaHiveEventLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== -xAODTestReadSymlink 5 0 INFO C (as AuxElement): 7000; S 600 -AthenaHiveEventLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== -AthenaHiveEventLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== -xAODTestReadSymlink 6 0 INFO C (as AuxElement): 8000; S 700 -AthenaHiveEventLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== -AthenaHiveEventLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== -xAODTestReadSymlink 7 0 INFO C (as AuxElement): 9000; S 800 -AthenaHiveEventLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== -AthenaHiveEventLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== -xAODTestReadSymlink 8 0 INFO C (as AuxElement): 10000; S 900 -AthenaHiveEventLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== -AthenaHiveEventLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== -xAODTestReadSymlink 9 0 INFO C (as AuxElement): 11000; S 1000 -AthenaHiveEventLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== -AthenaHiveEventLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== -xAODTestReadSymlink 10 0 INFO C (as AuxElement): 12000; S 1100 -AthenaHiveEventLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== -AthenaHiveEventLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== -xAODTestReadSymlink 11 0 INFO C (as AuxElement): 13000; S 1200 -AthenaHiveEventLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== -AthenaHiveEventLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== -xAODTestReadSymlink 12 0 INFO C (as AuxElement): 14000; S 1300 -AthenaHiveEventLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== -AthenaHiveEventLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== -xAODTestReadSymlink 13 0 INFO C (as AuxElement): 15000; S 1400 -AthenaHiveEventLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== -AthenaHiveEventLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== -xAODTestReadSymlink 14 0 INFO C (as AuxElement): 16000; S 1500 -AthenaHiveEventLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== -AthenaHiveEventLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== -xAODTestReadSymlink 15 0 INFO C (as AuxElement): 17000; S 1600 -AthenaHiveEventLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== -AthenaHiveEventLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== -xAODTestReadSymlink 16 0 INFO C (as AuxElement): 18000; S 1700 -AthenaHiveEventLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== -AthenaHiveEventLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== -xAODTestReadSymlink 17 0 INFO C (as AuxElement): 19000; S 1800 -AthenaHiveEventLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== -AthenaHiveEventLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== -xAODTestReadSymlink 18 0 INFO C (as AuxElement): 20000; S 1900 -AthenaHiveEventLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== -AthenaHiveEventLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== -xAODTestReadSymlink 19 0 INFO C (as AuxElement): 21000; S 2000 -AthenaHiveEventLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== -ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestSymlinks2MT_catalog.xml' does not exist. New file created. -AthDictLoaderSvc INFO in finalize... -ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.finalize() INFO Service finalized successfully -ApplicationMgr INFO Application Manager Finalized successfully -ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +Avalan...edulerSvc 0 INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm +Avalan...edulerSvc 0 INFO o ( 'DMTest::S1' , 'StoreGateSvc+S2' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadSymlink +Avalan...edulerSvc 0 INFO o ( 'DMTest::S2' , 'StoreGateSvc+S2' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadSymlink +Avalan...edulerSvc 0 INFO o ( 'DMTest::S2' , 'StoreGateSvc+S2alias' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadSymlink +Avalan...edulerSvc 0 INFO o ( 'SG::AuxElement' , 'StoreGateSvc+cinfo' ) required by Algorithm: +Avalan...edulerSvc 0 INFO * xAODTestReadSymlink +PrecedenceSvc 0 INFO Assembling CF and DF task precedence rules +PrecedenceSvc 0 INFO PrecedenceSvc initialized successfully +Avalan...edulerSvc 0 INFO Concurrency level information: +Avalan...edulerSvc 0 INFO o Number of events in flight: 1 +Avalan...edulerSvc 0 INFO o TBB thread pool size: 'ThreadPoolSize':1 +Avalan...edulerSvc 0 INFO Task scheduling settings: +Avalan...edulerSvc 0 INFO o Avalanche generation mode: disabled +Avalan...edulerSvc 0 INFO o Preemptive scheduling of CPU-blocking tasks: disabled +Avalan...edulerSvc 0 INFO o Scheduling of condition tasks: disabled +EventSelector 0 INFO EventSelection with query +Athena...ntLoopMgr 0 INFO Setup EventSelector service EventSelector +ApplicationMgr 0 INFO Application Manager Initialized successfully +ApplicationMgr 0 INFO Application Manager Started successfully +Athena...ntLoopMgr 0 INFO Starting loop on events +Athena...ntLoopMgr 0 0 INFO ===>>> start of run 0 <<<=== +Athena...ntLoopMgr 0 0 INFO ===>>> start processing event #1, run #0 on slot 0, 0 events processed so far <<<=== +xAODTe...adSymlink 0 0 INFO C (as AuxElement): 2000; S 100 +Athena...ntLoopMgr 0 0 INFO ===>>> done processing event #1, run #0 on slot 0, 1 events processed so far <<<=== +Athena...ntLoopMgr 1 0 INFO ===>>> start processing event #2, run #0 on slot 0, 1 events processed so far <<<=== +xAODTe...adSymlink 1 0 INFO C (as AuxElement): 3000; S 200 +Athena...ntLoopMgr 1 0 INFO ===>>> done processing event #2, run #0 on slot 0, 2 events processed so far <<<=== +Athena...ntLoopMgr 2 0 INFO ===>>> start processing event #3, run #0 on slot 0, 2 events processed so far <<<=== +xAODTe...adSymlink 2 0 INFO C (as AuxElement): 4000; S 300 +Athena...ntLoopMgr 2 0 INFO ===>>> done processing event #3, run #0 on slot 0, 3 events processed so far <<<=== +Athena...ntLoopMgr 3 0 INFO ===>>> start processing event #4, run #0 on slot 0, 3 events processed so far <<<=== +xAODTe...adSymlink 3 0 INFO C (as AuxElement): 5000; S 400 +Athena...ntLoopMgr 3 0 INFO ===>>> done processing event #4, run #0 on slot 0, 4 events processed so far <<<=== +Athena...ntLoopMgr 4 0 INFO ===>>> start processing event #5, run #0 on slot 0, 4 events processed so far <<<=== +xAODTe...adSymlink 4 0 INFO C (as AuxElement): 6000; S 500 +Athena...ntLoopMgr 4 0 INFO ===>>> done processing event #5, run #0 on slot 0, 5 events processed so far <<<=== +Athena...ntLoopMgr 5 0 INFO ===>>> start processing event #6, run #0 on slot 0, 5 events processed so far <<<=== +xAODTe...adSymlink 5 0 INFO C (as AuxElement): 7000; S 600 +Athena...ntLoopMgr 5 0 INFO ===>>> done processing event #6, run #0 on slot 0, 6 events processed so far <<<=== +Athena...ntLoopMgr 6 0 INFO ===>>> start processing event #7, run #0 on slot 0, 6 events processed so far <<<=== +xAODTe...adSymlink 6 0 INFO C (as AuxElement): 8000; S 700 +Athena...ntLoopMgr 6 0 INFO ===>>> done processing event #7, run #0 on slot 0, 7 events processed so far <<<=== +Athena...ntLoopMgr 7 0 INFO ===>>> start processing event #8, run #0 on slot 0, 7 events processed so far <<<=== +xAODTe...adSymlink 7 0 INFO C (as AuxElement): 9000; S 800 +Athena...ntLoopMgr 7 0 INFO ===>>> done processing event #8, run #0 on slot 0, 8 events processed so far <<<=== +Athena...ntLoopMgr 8 0 INFO ===>>> start processing event #9, run #0 on slot 0, 8 events processed so far <<<=== +xAODTe...adSymlink 8 0 INFO C (as AuxElement): 10000; S 900 +Athena...ntLoopMgr 8 0 INFO ===>>> done processing event #9, run #0 on slot 0, 9 events processed so far <<<=== +Athena...ntLoopMgr 9 0 INFO ===>>> start processing event #10, run #0 on slot 0, 9 events processed so far <<<=== +xAODTe...adSymlink 9 0 INFO C (as AuxElement): 11000; S 1000 +Athena...ntLoopMgr 9 0 INFO ===>>> done processing event #10, run #0 on slot 0, 10 events processed so far <<<=== +Athena...ntLoopMgr 10 0 INFO ===>>> start processing event #11, run #0 on slot 0, 10 events processed so far <<<=== +xAODTe...adSymlink 10 0 INFO C (as AuxElement): 12000; S 1100 +Athena...ntLoopMgr 10 0 INFO ===>>> done processing event #11, run #0 on slot 0, 11 events processed so far <<<=== +Athena...ntLoopMgr 11 0 INFO ===>>> start processing event #12, run #0 on slot 0, 11 events processed so far <<<=== +xAODTe...adSymlink 11 0 INFO C (as AuxElement): 13000; S 1200 +Athena...ntLoopMgr 11 0 INFO ===>>> done processing event #12, run #0 on slot 0, 12 events processed so far <<<=== +Athena...ntLoopMgr 12 0 INFO ===>>> start processing event #13, run #0 on slot 0, 12 events processed so far <<<=== +xAODTe...adSymlink 12 0 INFO C (as AuxElement): 14000; S 1300 +Athena...ntLoopMgr 12 0 INFO ===>>> done processing event #13, run #0 on slot 0, 13 events processed so far <<<=== +Athena...ntLoopMgr 13 0 INFO ===>>> start processing event #14, run #0 on slot 0, 13 events processed so far <<<=== +xAODTe...adSymlink 13 0 INFO C (as AuxElement): 15000; S 1400 +Athena...ntLoopMgr 13 0 INFO ===>>> done processing event #14, run #0 on slot 0, 14 events processed so far <<<=== +Athena...ntLoopMgr 14 0 INFO ===>>> start processing event #15, run #0 on slot 0, 14 events processed so far <<<=== +xAODTe...adSymlink 14 0 INFO C (as AuxElement): 16000; S 1500 +Athena...ntLoopMgr 14 0 INFO ===>>> done processing event #15, run #0 on slot 0, 15 events processed so far <<<=== +Athena...ntLoopMgr 15 0 INFO ===>>> start processing event #16, run #0 on slot 0, 15 events processed so far <<<=== +xAODTe...adSymlink 15 0 INFO C (as AuxElement): 17000; S 1600 +Athena...ntLoopMgr 15 0 INFO ===>>> done processing event #16, run #0 on slot 0, 16 events processed so far <<<=== +Athena...ntLoopMgr 16 0 INFO ===>>> start processing event #17, run #0 on slot 0, 16 events processed so far <<<=== +xAODTe...adSymlink 16 0 INFO C (as AuxElement): 18000; S 1700 +Athena...ntLoopMgr 16 0 INFO ===>>> done processing event #17, run #0 on slot 0, 17 events processed so far <<<=== +Athena...ntLoopMgr 17 0 INFO ===>>> start processing event #18, run #0 on slot 0, 17 events processed so far <<<=== +xAODTe...adSymlink 17 0 INFO C (as AuxElement): 19000; S 1800 +Athena...ntLoopMgr 17 0 INFO ===>>> done processing event #18, run #0 on slot 0, 18 events processed so far <<<=== +Athena...ntLoopMgr 18 0 INFO ===>>> start processing event #19, run #0 on slot 0, 18 events processed so far <<<=== +xAODTe...adSymlink 18 0 INFO C (as AuxElement): 20000; S 1900 +Athena...ntLoopMgr 18 0 INFO ===>>> done processing event #19, run #0 on slot 0, 19 events processed so far <<<=== +Athena...ntLoopMgr 19 0 INFO ===>>> start processing event #20, run #0 on slot 0, 19 events processed so far <<<=== +xAODTe...adSymlink 19 0 INFO C (as AuxElement): 21000; S 2000 +Athena...ntLoopMgr 19 0 INFO ===>>> done processing event #20, run #0 on slot 0, 20 events processed so far <<<=== +ApplicationMgr INFO Application Manager Stopped successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2MT_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2MT_jo.py deleted file mode 100644 index 10d8b66b7c808a82fd73f1c520db7009385e5015..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2MT_jo.py +++ /dev/null @@ -1,11 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODTestSymlinks2MT_jo.py -# Author: snyder@bnl.gov -# Date: Apr 2017 -# Purpose: Test syminks and hive. -# - -FILECATALOG = 'xAODTestSymlinks2MT_catalog.xml' -include ('DataModelRunTests/xAODTestSymlinks2_jo.py') diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2_jo.py deleted file mode 100644 index f5e4f7b64698601938255f33daf1ae449dea91c3..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestSymlinks2_jo.py +++ /dev/null @@ -1,65 +0,0 @@ -# -# $Id$ -# -# File: DataModelRunTests/share/xAODTestSymlinks2_jo.py -# Author: snyder@bnl.gov -# Date: Apr 2017 -# Purpose: Test syminks and hive. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "xaoddata.root" ] - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- - -from AthenaCommon.ConcurrencyFlags import jobproperties as jp -nThreads = jp.ConcurrencyFlags.NumThreads() -if nThreads >= 1: - from AthenaCommon.AlgScheduler import AlgScheduler - AlgScheduler.ShowDataDependencies (True) - - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestReadSymlink -topSequence += DMTest__xAODTestReadSymlink ("xAODTestReadSymlink", Key='cinfo') - - -# Avoid races when running tests in parallel. -if 'FILECATALOG' not in globals(): - FILECATALOG = 'xAODTestSymlinks2_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') - - diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestTypelessRead.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestTypelessRead.ref index 39a7546b777248e3e8d3fa788fca57b5d8ba975c..f33e5f49cdf0a9a7d315dd1a7483f2090bafec2b 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestTypelessRead.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestTypelessRead.ref @@ -1,24 +1,23 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr PyComponentMgr INFO Initializing PyComponentMgr... LoadReadDicts INFO Initializing LoadReadDicts... +DecisionSvc INFO Inserting stream: OutputStreamStream1 with no Algs +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +Output...ream1Tool INFO Initializing OutputStreamStream1.StreamStream1Tool MetaDataSvc INFO Initializing MetaDataSvc EventSelector INFO EventSelection with query -DecisionSvc INFO Inserting stream: Stream1 with no Algs -Stream1.Stream1... INFO Initializing Stream1.Stream1Tool -Stream1 INFO Data output: xaoddata3.root -Stream1 INFO ../O reinitialization... +Output...amStream1 INFO Data output: xaoddata3.root +Output...amStream1 INFO ../O reinitialization... AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== -xAODTestTypeles... INFO 1 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 400.000; anInt: 201; anInt2: 601; cEL: cvec[9]; dInt1: 801; dVar1: 901; dpInt1: 101; +xAODTe...elessRead INFO 1 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 400.000; anInt: 201; anInt2: 601; cEL: cvec[9]; dInt1: 801; dVar1: 901; dpInt1: 101; dpvFloat: []; pFloat: 0.020; pInt: 1001; pvFloat: []; pvInt: []; @@ -59,11 +58,11 @@ xAODTestTypeles... INFO aFloat: 400.000; anInt: 201; anInt2: 601; cEL: cvec[ pvFloat: [-0.408 -0.308 -0.208 -0.108 -0.008 0.092 0.192 0.292 0.392 ]; pvInt: [-210 -209 -208 -207 -206 -205 -204 -203 -202 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 0.200; anInt: 2000; anInt2: 4000; cEL: cvec[2]; dInt1: 6000; dInt1Base: 6001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 0.200; anInt: 2000; anInt2: 4000; cEL: cvec[2]; dInt1: 6000; dInt1Base: 6001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 1200.000; anInt: 1001; anInt2: 1401; dInt1: 961; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 1200.000; anInt: 1001; anInt2: 1401; dInt1: 961; aFloat: 1200.100; anInt: 1002; anInt2: 1402; dInt1: 962; aFloat: 1200.200; anInt: 1003; anInt2: 1403; dInt1: 963; aFloat: 1200.300; anInt: 1004; anInt2: 1404; dInt1: 964; @@ -72,8 +71,8 @@ xAODTestTypeles... INFO aFloat: 1200.000; anInt: 1001; anInt2: 1401; dInt1: aFloat: 1200.600; anInt: 1007; anInt2: 1407; dInt1: 967; aFloat: 1200.700; anInt: 1008; anInt2: 1408; dInt1: 968; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 401; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 401; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 402; pFloat: 0.000; pInt: 0; @@ -104,8 +103,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 401; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 400.900; anInt: 210; anInt2: 610; cEL: cvec[0]; dInt1: 810; dVar1: 910; dpInt1: 110; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 400.900; anInt: 210; anInt2: 610; cEL: cvec[0]; dInt1: 810; dVar1: 910; dpInt1: 110; dpvFloat: [0.920 0.921 0.922 0.923 0.924 0.925 0.926 0.927 0.928 ]; pFloat: 9.020; pInt: 1010; pvFloat: [-0.408 -0.308 -0.208 -0.108 -0.008 0.092 0.192 0.292 0.392 ]; pvInt: [-210 -209 -208 -207 -206 -205 -204 -203 -202 ]; @@ -146,8 +145,8 @@ xAODTestTypeles... INFO aFloat: 400.900; anInt: 210; anInt2: 610; cEL: cvec[ pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 801.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 801.500; aFloat: 802.500; aFloat: 803.500; aFloat: 804.500; @@ -168,8 +167,8 @@ xAODTestTypeles... INFO aFloat: 801.500; aFloat: 819.500; aFloat: 820.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 820.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 820.500; aFloat: 819.500; aFloat: 818.500; aFloat: 817.500; @@ -192,9 +191,9 @@ xAODTestTypeles... INFO aFloat: 820.500; AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #0 1 events processed so far <<<=== -xAODTestTypeles... INFO 2 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 600.000; anInt: 301; anInt2: 901; cEL: cvec[9]; dInt1: 1201; dVar1: 1351; dpInt1: 151; +xAODTe...elessRead INFO 2 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 600.000; anInt: 301; anInt2: 901; cEL: cvec[9]; dInt1: 1201; dVar1: 1351; dpInt1: 151; dpvFloat: []; pFloat: 0.030; pInt: 1501; pvFloat: []; pvInt: []; @@ -235,11 +234,11 @@ xAODTestTypeles... INFO aFloat: 600.000; anInt: 301; anInt2: 901; cEL: cvec[ pvFloat: [-0.407 -0.307 -0.207 -0.107 -0.007 0.093 0.193 0.293 0.393 ]; pvInt: [-110 -109 -108 -107 -106 -105 -104 -103 -102 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 0.300; anInt: 3000; anInt2: 6000; cEL: cvec[3]; dInt1: 9000; dInt1Base: 9001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 0.300; anInt: 3000; anInt2: 6000; cEL: cvec[3]; dInt1: 9000; dInt1Base: 9001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 1800.000; anInt: 1501; anInt2: 2101; dInt1: 1441; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 1800.000; anInt: 1501; anInt2: 2101; dInt1: 1441; aFloat: 1800.100; anInt: 1502; anInt2: 2102; dInt1: 1442; aFloat: 1800.200; anInt: 1503; anInt2: 2103; dInt1: 1443; aFloat: 1800.300; anInt: 1504; anInt2: 2104; dInt1: 1444; @@ -248,8 +247,8 @@ xAODTestTypeles... INFO aFloat: 1800.000; anInt: 1501; anInt2: 2101; dInt1: aFloat: 1800.600; anInt: 1507; anInt2: 2107; dInt1: 1447; aFloat: 1800.700; anInt: 1508; anInt2: 2108; dInt1: 1448; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 601; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 601; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 602; pFloat: 0.000; pInt: 0; @@ -280,8 +279,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 601; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 600.900; anInt: 310; anInt2: 910; cEL: cvec[0]; dInt1: 1210; dVar1: 1360; dpInt1: 160; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 600.900; anInt: 310; anInt2: 910; cEL: cvec[0]; dInt1: 1210; dVar1: 1360; dpInt1: 160; dpvFloat: [0.930 0.931 0.932 0.933 0.934 0.935 0.936 0.937 0.938 ]; pFloat: 9.030; pInt: 1510; pvFloat: [-0.407 -0.307 -0.207 -0.107 -0.007 0.093 0.193 0.293 0.393 ]; pvInt: [-110 -109 -108 -107 -106 -105 -104 -103 -102 ]; @@ -322,8 +321,8 @@ xAODTestTypeles... INFO aFloat: 600.900; anInt: 310; anInt2: 910; cEL: cvec[ pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 1201.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 1201.500; aFloat: 1202.500; aFloat: 1203.500; aFloat: 1204.500; @@ -344,8 +343,8 @@ xAODTestTypeles... INFO aFloat: 1201.500; aFloat: 1219.500; aFloat: 1220.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 1220.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 1220.500; aFloat: 1219.500; aFloat: 1218.500; aFloat: 1217.500; @@ -368,9 +367,9 @@ xAODTestTypeles... INFO aFloat: 1220.500; AthenaEventLoopMgr INFO ===>>> done processing event #2, run #0 2 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #3, run #0 2 events processed so far <<<=== -xAODTestTypeles... INFO 3 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 800.000; anInt: 401; anInt2: 1201; cEL: cvec[9]; dInt1: 1601; dVar1: 1801; dpInt1: 201; +xAODTe...elessRead INFO 3 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 800.000; anInt: 401; anInt2: 1201; cEL: cvec[9]; dInt1: 1601; dVar1: 1801; dpInt1: 201; dpvFloat: []; pFloat: 0.040; pInt: 2001; pvFloat: []; pvInt: []; @@ -411,11 +410,11 @@ xAODTestTypeles... INFO aFloat: 800.000; anInt: 401; anInt2: 1201; cEL: cvec pvFloat: [-0.406 -0.306 -0.206 -0.106 -0.006 0.094 0.194 0.294 0.394 ]; pvInt: [-10 -9 -8 -7 -6 -5 -4 -3 -2 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 0.400; anInt: 4000; anInt2: 8000; cEL: cvec[4]; dInt1: 12000; dInt1Base: 12001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 0.400; anInt: 4000; anInt2: 8000; cEL: cvec[4]; dInt1: 12000; dInt1Base: 12001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 2400.000; anInt: 2001; anInt2: 2801; dInt1: 1921; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 2400.000; anInt: 2001; anInt2: 2801; dInt1: 1921; aFloat: 2400.100; anInt: 2002; anInt2: 2802; dInt1: 1922; aFloat: 2400.200; anInt: 2003; anInt2: 2803; dInt1: 1923; aFloat: 2400.300; anInt: 2004; anInt2: 2804; dInt1: 1924; @@ -424,8 +423,8 @@ xAODTestTypeles... INFO aFloat: 2400.000; anInt: 2001; anInt2: 2801; dInt1: aFloat: 2400.600; anInt: 2007; anInt2: 2807; dInt1: 1927; aFloat: 2400.700; anInt: 2008; anInt2: 2808; dInt1: 1928; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 801; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 801; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 802; pFloat: 0.000; pInt: 0; @@ -456,8 +455,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 801; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 800.900; anInt: 410; anInt2: 1210; cEL: cvec[0]; dInt1: 1610; dVar1: 1810; dpInt1: 210; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 800.900; anInt: 410; anInt2: 1210; cEL: cvec[0]; dInt1: 1610; dVar1: 1810; dpInt1: 210; dpvFloat: [0.940 0.941 0.942 0.943 0.944 0.945 0.946 0.947 0.948 ]; pFloat: 9.040; pInt: 2010; pvFloat: [-0.406 -0.306 -0.206 -0.106 -0.006 0.094 0.194 0.294 0.394 ]; pvInt: [-10 -9 -8 -7 -6 -5 -4 -3 -2 ]; @@ -498,8 +497,8 @@ xAODTestTypeles... INFO aFloat: 800.900; anInt: 410; anInt2: 1210; cEL: cvec pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 1601.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 1601.500; aFloat: 1602.500; aFloat: 1603.500; aFloat: 1604.500; @@ -520,8 +519,8 @@ xAODTestTypeles... INFO aFloat: 1601.500; aFloat: 1619.500; aFloat: 1620.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 1620.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 1620.500; aFloat: 1619.500; aFloat: 1618.500; aFloat: 1617.500; @@ -544,14 +543,14 @@ xAODTestTypeles... INFO aFloat: 1620.500; AthenaEventLoopMgr INFO ===>>> done processing event #3, run #0 3 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #4, run #0 3 events processed so far <<<=== -xAODTestTypeles... INFO 4 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 0.500; anInt: 5000; anInt2: 10000; cEL: [18446744073709551615]; dInt1: 15000; dInt1Base: 15001; - -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 3000.000; anInt: 2501; anInt2: 3501; dInt1: 2401; +xAODTe...elessRead INFO 4 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 0.500; anInt: 5000; anInt2: 10000; cEL: [18446744073709551615]; dInt1: 15000; dInt1Base: 15001; + +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 3000.000; anInt: 2501; anInt2: 3501; dInt1: 2401; aFloat: 3000.100; anInt: 2502; anInt2: 3502; dInt1: 2402; aFloat: 3000.200; anInt: 2503; anInt2: 3503; dInt1: 2403; aFloat: 3000.300; anInt: 2504; anInt2: 3504; dInt1: 2404; @@ -560,8 +559,8 @@ xAODTestTypeles... INFO aFloat: 3000.000; anInt: 2501; anInt2: 3501; dInt1: aFloat: 3000.600; anInt: 2507; anInt2: 3507; dInt1: 2407; aFloat: 3000.700; anInt: 2508; anInt2: 3508; dInt1: 2408; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 1001; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 1001; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 1002; pFloat: 0.000; pInt: 0; @@ -592,8 +591,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 1001; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 2001.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 2001.500; aFloat: 2002.500; aFloat: 2003.500; aFloat: 2004.500; @@ -614,8 +613,8 @@ xAODTestTypeles... INFO aFloat: 2001.500; aFloat: 2019.500; aFloat: 2020.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 2020.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 2020.500; aFloat: 2019.500; aFloat: 2018.500; aFloat: 2017.500; @@ -638,9 +637,9 @@ xAODTestTypeles... INFO aFloat: 2020.500; AthenaEventLoopMgr INFO ===>>> done processing event #4, run #0 4 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #5, run #0 4 events processed so far <<<=== -xAODTestTypeles... INFO 5 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 1200.000; anInt: 601; anInt2: 1801; cEL: cvec[9]; dInt1: 2401; dVar1: 2701; dpInt1: 301; +xAODTe...elessRead INFO 5 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 1200.000; anInt: 601; anInt2: 1801; cEL: cvec[9]; dInt1: 2401; dVar1: 2701; dpInt1: 301; dpvFloat: []; pFloat: 0.060; pInt: 3001; pvFloat: []; pvInt: []; @@ -681,11 +680,11 @@ xAODTestTypeles... INFO aFloat: 1200.000; anInt: 601; anInt2: 1801; cEL: cve pvFloat: [-0.404 -0.304 -0.204 -0.104 -0.004 0.096 0.196 0.296 0.396 ]; pvInt: [190 191 192 193 194 195 196 197 198 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 0.600; anInt: 6000; anInt2: 12000; cEL: cvec[6]; dInt1: 18000; dInt1Base: 18001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 0.600; anInt: 6000; anInt2: 12000; cEL: cvec[6]; dInt1: 18000; dInt1Base: 18001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 3600.000; anInt: 3001; anInt2: 4201; dInt1: 2881; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 3600.000; anInt: 3001; anInt2: 4201; dInt1: 2881; aFloat: 3600.100; anInt: 3002; anInt2: 4202; dInt1: 2882; aFloat: 3600.200; anInt: 3003; anInt2: 4203; dInt1: 2883; aFloat: 3600.300; anInt: 3004; anInt2: 4204; dInt1: 2884; @@ -694,8 +693,8 @@ xAODTestTypeles... INFO aFloat: 3600.000; anInt: 3001; anInt2: 4201; dInt1: aFloat: 3600.600; anInt: 3007; anInt2: 4207; dInt1: 2887; aFloat: 3600.700; anInt: 3008; anInt2: 4208; dInt1: 2888; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 1201; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 1201; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 1202; pFloat: 0.000; pInt: 0; @@ -726,8 +725,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 1201; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 1200.900; anInt: 610; anInt2: 1810; cEL: cvec[0]; dInt1: 2410; dVar1: 2710; dpInt1: 310; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 1200.900; anInt: 610; anInt2: 1810; cEL: cvec[0]; dInt1: 2410; dVar1: 2710; dpInt1: 310; dpvFloat: [0.960 0.961 0.962 0.963 0.964 0.965 0.966 0.967 0.968 ]; pFloat: 9.060; pInt: 3010; pvFloat: [-0.404 -0.304 -0.204 -0.104 -0.004 0.096 0.196 0.296 0.396 ]; pvInt: [190 191 192 193 194 195 196 197 198 ]; @@ -768,8 +767,8 @@ xAODTestTypeles... INFO aFloat: 1200.900; anInt: 610; anInt2: 1810; cEL: cve pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 2401.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 2401.500; aFloat: 2402.500; aFloat: 2403.500; aFloat: 2404.500; @@ -790,8 +789,8 @@ xAODTestTypeles... INFO aFloat: 2401.500; aFloat: 2419.500; aFloat: 2420.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 2420.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 2420.500; aFloat: 2419.500; aFloat: 2418.500; aFloat: 2417.500; @@ -814,9 +813,9 @@ xAODTestTypeles... INFO aFloat: 2420.500; AthenaEventLoopMgr INFO ===>>> done processing event #5, run #0 5 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #6, run #0 5 events processed so far <<<=== -xAODTestTypeles... INFO 6 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 1400.000; anInt: 701; anInt2: 2101; cEL: cvec[9]; dInt1: 2801; dVar1: 3151; dpInt1: 351; +xAODTe...elessRead INFO 6 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 1400.000; anInt: 701; anInt2: 2101; cEL: cvec[9]; dInt1: 2801; dVar1: 3151; dpInt1: 351; dpvFloat: []; pFloat: 0.070; pInt: 3501; pvFloat: []; pvInt: []; @@ -857,11 +856,11 @@ xAODTestTypeles... INFO aFloat: 1400.000; anInt: 701; anInt2: 2101; cEL: cve pvFloat: [-0.403 -0.303 -0.203 -0.103 -0.003 0.097 0.197 0.297 0.397 ]; pvInt: [290 291 292 293 294 295 296 297 298 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 0.700; anInt: 7000; anInt2: 14000; cEL: cvec[7]; dInt1: 21000; dInt1Base: 21001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 0.700; anInt: 7000; anInt2: 14000; cEL: cvec[7]; dInt1: 21000; dInt1Base: 21001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 4200.000; anInt: 3501; anInt2: 4901; dInt1: 3361; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 4200.000; anInt: 3501; anInt2: 4901; dInt1: 3361; aFloat: 4200.100; anInt: 3502; anInt2: 4902; dInt1: 3362; aFloat: 4200.200; anInt: 3503; anInt2: 4903; dInt1: 3363; aFloat: 4200.300; anInt: 3504; anInt2: 4904; dInt1: 3364; @@ -870,8 +869,8 @@ xAODTestTypeles... INFO aFloat: 4200.000; anInt: 3501; anInt2: 4901; dInt1: aFloat: 4200.600; anInt: 3507; anInt2: 4907; dInt1: 3367; aFloat: 4200.700; anInt: 3508; anInt2: 4908; dInt1: 3368; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 1401; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 1401; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 1402; pFloat: 0.000; pInt: 0; @@ -902,8 +901,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 1401; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 1400.900; anInt: 710; anInt2: 2110; cEL: cvec[0]; dInt1: 2810; dVar1: 3160; dpInt1: 360; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 1400.900; anInt: 710; anInt2: 2110; cEL: cvec[0]; dInt1: 2810; dVar1: 3160; dpInt1: 360; dpvFloat: [0.970 0.971 0.972 0.973 0.974 0.975 0.976 0.977 0.978 ]; pFloat: 9.070; pInt: 3510; pvFloat: [-0.403 -0.303 -0.203 -0.103 -0.003 0.097 0.197 0.297 0.397 ]; pvInt: [290 291 292 293 294 295 296 297 298 ]; @@ -944,8 +943,8 @@ xAODTestTypeles... INFO aFloat: 1400.900; anInt: 710; anInt2: 2110; cEL: cve pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 2801.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 2801.500; aFloat: 2802.500; aFloat: 2803.500; aFloat: 2804.500; @@ -966,8 +965,8 @@ xAODTestTypeles... INFO aFloat: 2801.500; aFloat: 2819.500; aFloat: 2820.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 2820.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 2820.500; aFloat: 2819.500; aFloat: 2818.500; aFloat: 2817.500; @@ -990,9 +989,9 @@ xAODTestTypeles... INFO aFloat: 2820.500; AthenaEventLoopMgr INFO ===>>> done processing event #6, run #0 6 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #7, run #0 6 events processed so far <<<=== -xAODTestTypeles... INFO 7 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 1600.000; anInt: 801; anInt2: 2401; cEL: cvec[9]; dInt1: 3201; dVar1: 3601; dpInt1: 401; +xAODTe...elessRead INFO 7 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 1600.000; anInt: 801; anInt2: 2401; cEL: cvec[9]; dInt1: 3201; dVar1: 3601; dpInt1: 401; dpvFloat: []; pFloat: 0.080; pInt: 4001; pvFloat: []; pvInt: []; @@ -1033,11 +1032,11 @@ xAODTestTypeles... INFO aFloat: 1600.000; anInt: 801; anInt2: 2401; cEL: cve pvFloat: [-0.402 -0.302 -0.202 -0.102 -0.002 0.098 0.198 0.298 0.398 ]; pvInt: [390 391 392 393 394 395 396 397 398 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 0.800; anInt: 8000; anInt2: 16000; cEL: cvec[8]; dInt1: 24000; dInt1Base: 24001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 0.800; anInt: 8000; anInt2: 16000; cEL: cvec[8]; dInt1: 24000; dInt1Base: 24001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 4800.000; anInt: 4001; anInt2: 5601; dInt1: 3841; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 4800.000; anInt: 4001; anInt2: 5601; dInt1: 3841; aFloat: 4800.100; anInt: 4002; anInt2: 5602; dInt1: 3842; aFloat: 4800.200; anInt: 4003; anInt2: 5603; dInt1: 3843; aFloat: 4800.300; anInt: 4004; anInt2: 5604; dInt1: 3844; @@ -1046,8 +1045,8 @@ xAODTestTypeles... INFO aFloat: 4800.000; anInt: 4001; anInt2: 5601; dInt1: aFloat: 4800.600; anInt: 4007; anInt2: 5607; dInt1: 3847; aFloat: 4800.700; anInt: 4008; anInt2: 5608; dInt1: 3848; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 1601; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 1601; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 1602; pFloat: 0.000; pInt: 0; @@ -1078,8 +1077,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 1601; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 1600.900; anInt: 810; anInt2: 2410; cEL: cvec[0]; dInt1: 3210; dVar1: 3610; dpInt1: 410; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 1600.900; anInt: 810; anInt2: 2410; cEL: cvec[0]; dInt1: 3210; dVar1: 3610; dpInt1: 410; dpvFloat: [0.980 0.981 0.982 0.983 0.984 0.985 0.986 0.987 0.988 ]; pFloat: 9.080; pInt: 4010; pvFloat: [-0.402 -0.302 -0.202 -0.102 -0.002 0.098 0.198 0.298 0.398 ]; pvInt: [390 391 392 393 394 395 396 397 398 ]; @@ -1120,8 +1119,8 @@ xAODTestTypeles... INFO aFloat: 1600.900; anInt: 810; anInt2: 2410; cEL: cve pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 3201.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 3201.500; aFloat: 3202.500; aFloat: 3203.500; aFloat: 3204.500; @@ -1142,8 +1141,8 @@ xAODTestTypeles... INFO aFloat: 3201.500; aFloat: 3219.500; aFloat: 3220.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 3220.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 3220.500; aFloat: 3219.500; aFloat: 3218.500; aFloat: 3217.500; @@ -1166,9 +1165,9 @@ xAODTestTypeles... INFO aFloat: 3220.500; AthenaEventLoopMgr INFO ===>>> done processing event #7, run #0 7 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #8, run #0 7 events processed so far <<<=== -xAODTestTypeles... INFO 8 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 1800.000; anInt: 901; anInt2: 2701; cEL: cvec[9]; dInt1: 3601; dVar1: 4051; dpInt1: 451; +xAODTe...elessRead INFO 8 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 1800.000; anInt: 901; anInt2: 2701; cEL: cvec[9]; dInt1: 3601; dVar1: 4051; dpInt1: 451; dpvFloat: []; pFloat: 0.090; pInt: 4501; pvFloat: []; pvInt: []; @@ -1209,11 +1208,11 @@ xAODTestTypeles... INFO aFloat: 1800.000; anInt: 901; anInt2: 2701; cEL: cve pvFloat: [-0.401 -0.301 -0.201 -0.101 -0.001 0.099 0.199 0.299 0.399 ]; pvInt: [490 491 492 493 494 495 496 497 498 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 0.900; anInt: 9000; anInt2: 18000; cEL: cvec[9]; dInt1: 27000; dInt1Base: 27001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 0.900; anInt: 9000; anInt2: 18000; cEL: cvec[9]; dInt1: 27000; dInt1Base: 27001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 5400.000; anInt: 4501; anInt2: 6301; dInt1: 4321; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 5400.000; anInt: 4501; anInt2: 6301; dInt1: 4321; aFloat: 5400.100; anInt: 4502; anInt2: 6302; dInt1: 4322; aFloat: 5400.200; anInt: 4503; anInt2: 6303; dInt1: 4323; aFloat: 5400.300; anInt: 4504; anInt2: 6304; dInt1: 4324; @@ -1222,8 +1221,8 @@ xAODTestTypeles... INFO aFloat: 5400.000; anInt: 4501; anInt2: 6301; dInt1: aFloat: 5400.600; anInt: 4507; anInt2: 6307; dInt1: 4327; aFloat: 5400.700; anInt: 4508; anInt2: 6308; dInt1: 4328; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 1801; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 1801; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 1802; pFloat: 0.000; pInt: 0; @@ -1254,8 +1253,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 1801; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 1800.900; anInt: 910; anInt2: 2710; cEL: cvec[0]; dInt1: 3610; dVar1: 4060; dpInt1: 460; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 1800.900; anInt: 910; anInt2: 2710; cEL: cvec[0]; dInt1: 3610; dVar1: 4060; dpInt1: 460; dpvFloat: [0.990 0.991 0.992 0.993 0.994 0.995 0.996 0.997 0.998 ]; pFloat: 9.090; pInt: 4510; pvFloat: [-0.401 -0.301 -0.201 -0.101 -0.001 0.099 0.199 0.299 0.399 ]; pvInt: [490 491 492 493 494 495 496 497 498 ]; @@ -1296,8 +1295,8 @@ xAODTestTypeles... INFO aFloat: 1800.900; anInt: 910; anInt2: 2710; cEL: cve pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 3601.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 3601.500; aFloat: 3602.500; aFloat: 3603.500; aFloat: 3604.500; @@ -1318,8 +1317,8 @@ xAODTestTypeles... INFO aFloat: 3601.500; aFloat: 3619.500; aFloat: 3620.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 3620.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 3620.500; aFloat: 3619.500; aFloat: 3618.500; aFloat: 3617.500; @@ -1342,9 +1341,9 @@ xAODTestTypeles... INFO aFloat: 3620.500; AthenaEventLoopMgr INFO ===>>> done processing event #8, run #0 8 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #9, run #0 8 events processed so far <<<=== -xAODTestTypeles... INFO 9 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 2000.000; anInt: 1001; anInt2: 3001; cEL: cvec[9]; dInt1: 4001; dVar1: 4501; dpInt1: 501; +xAODTe...elessRead INFO 9 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 2000.000; anInt: 1001; anInt2: 3001; cEL: cvec[9]; dInt1: 4001; dVar1: 4501; dpInt1: 501; dpvFloat: []; pFloat: 0.100; pInt: 5001; pvFloat: []; pvInt: []; @@ -1385,11 +1384,11 @@ xAODTestTypeles... INFO aFloat: 2000.000; anInt: 1001; anInt2: 3001; cEL: cv pvFloat: [-0.400 -0.300 -0.200 -0.100 0.000 0.100 0.200 0.300 0.400 ]; pvInt: [590 591 592 593 594 595 596 597 598 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 1.000; anInt: 10000; anInt2: 20000; cEL: cvec[0]; dInt1: 30000; dInt1Base: 30001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 1.000; anInt: 10000; anInt2: 20000; cEL: cvec[0]; dInt1: 30000; dInt1Base: 30001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 6000.000; anInt: 5001; anInt2: 7001; dInt1: 4801; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 6000.000; anInt: 5001; anInt2: 7001; dInt1: 4801; aFloat: 6000.100; anInt: 5002; anInt2: 7002; dInt1: 4802; aFloat: 6000.200; anInt: 5003; anInt2: 7003; dInt1: 4803; aFloat: 6000.300; anInt: 5004; anInt2: 7004; dInt1: 4804; @@ -1398,8 +1397,8 @@ xAODTestTypeles... INFO aFloat: 6000.000; anInt: 5001; anInt2: 7001; dInt1: aFloat: 6000.600; anInt: 5007; anInt2: 7007; dInt1: 4807; aFloat: 6000.700; anInt: 5008; anInt2: 7008; dInt1: 4808; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 2001; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 2001; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 2002; pFloat: 0.000; pInt: 0; @@ -1430,8 +1429,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 2001; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 2000.900; anInt: 1010; anInt2: 3010; cEL: cvec[0]; dInt1: 4010; dVar1: 4510; dpInt1: 510; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 2000.900; anInt: 1010; anInt2: 3010; cEL: cvec[0]; dInt1: 4010; dVar1: 4510; dpInt1: 510; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.100; pInt: 5010; pvFloat: [-0.400 -0.300 -0.200 -0.100 0.000 0.100 0.200 0.300 0.400 ]; pvInt: [590 591 592 593 594 595 596 597 598 ]; @@ -1472,8 +1471,8 @@ xAODTestTypeles... INFO aFloat: 2000.900; anInt: 1010; anInt2: 3010; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 4001.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 4001.500; aFloat: 4002.500; aFloat: 4003.500; aFloat: 4004.500; @@ -1494,8 +1493,8 @@ xAODTestTypeles... INFO aFloat: 4001.500; aFloat: 4019.500; aFloat: 4020.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 4020.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 4020.500; aFloat: 4019.500; aFloat: 4018.500; aFloat: 4017.500; @@ -1518,9 +1517,9 @@ xAODTestTypeles... INFO aFloat: 4020.500; AthenaEventLoopMgr INFO ===>>> done processing event #9, run #0 9 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #10, run #0 9 events processed so far <<<=== -xAODTestTypeles... INFO 10 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 2200.000; anInt: 1101; anInt2: 3301; cEL: cvec[9]; dInt1: 4401; dVar1: 4951; dpInt1: 551; +xAODTe...elessRead INFO 10 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 2200.000; anInt: 1101; anInt2: 3301; cEL: cvec[9]; dInt1: 4401; dVar1: 4951; dpInt1: 551; dpvFloat: []; pFloat: 0.110; pInt: 5501; pvFloat: []; pvInt: []; @@ -1561,11 +1560,11 @@ xAODTestTypeles... INFO aFloat: 2200.000; anInt: 1101; anInt2: 3301; cEL: cv pvFloat: [-0.399 -0.299 -0.199 -0.099 0.001 0.101 0.201 0.301 0.401 ]; pvInt: [690 691 692 693 694 695 696 697 698 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 1.100; anInt: 11000; anInt2: 22000; cEL: cvec[1]; dInt1: 33000; dInt1Base: 33001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 1.100; anInt: 11000; anInt2: 22000; cEL: cvec[1]; dInt1: 33000; dInt1Base: 33001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 6600.000; anInt: 5501; anInt2: 7701; dInt1: 5281; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 6600.000; anInt: 5501; anInt2: 7701; dInt1: 5281; aFloat: 6600.100; anInt: 5502; anInt2: 7702; dInt1: 5282; aFloat: 6600.200; anInt: 5503; anInt2: 7703; dInt1: 5283; aFloat: 6600.300; anInt: 5504; anInt2: 7704; dInt1: 5284; @@ -1574,8 +1573,8 @@ xAODTestTypeles... INFO aFloat: 6600.000; anInt: 5501; anInt2: 7701; dInt1: aFloat: 6600.600; anInt: 5507; anInt2: 7707; dInt1: 5287; aFloat: 6600.700; anInt: 5508; anInt2: 7708; dInt1: 5288; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 2201; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 2201; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 2202; pFloat: 0.000; pInt: 0; @@ -1606,8 +1605,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 2201; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 2200.900; anInt: 1110; anInt2: 3310; cEL: cvec[0]; dInt1: 4410; dVar1: 4960; dpInt1: 560; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 2200.900; anInt: 1110; anInt2: 3310; cEL: cvec[0]; dInt1: 4410; dVar1: 4960; dpInt1: 560; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.110; pInt: 5510; pvFloat: [-0.399 -0.299 -0.199 -0.099 0.001 0.101 0.201 0.301 0.401 ]; pvInt: [690 691 692 693 694 695 696 697 698 ]; @@ -1648,8 +1647,8 @@ xAODTestTypeles... INFO aFloat: 2200.900; anInt: 1110; anInt2: 3310; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 4401.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 4401.500; aFloat: 4402.500; aFloat: 4403.500; aFloat: 4404.500; @@ -1670,8 +1669,8 @@ xAODTestTypeles... INFO aFloat: 4401.500; aFloat: 4419.500; aFloat: 4420.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 4420.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 4420.500; aFloat: 4419.500; aFloat: 4418.500; aFloat: 4417.500; @@ -1694,9 +1693,9 @@ xAODTestTypeles... INFO aFloat: 4420.500; AthenaEventLoopMgr INFO ===>>> done processing event #10, run #0 10 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #11, run #0 10 events processed so far <<<=== -xAODTestTypeles... INFO 11 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 2400.000; anInt: 1201; anInt2: 3601; cEL: cvec[9]; dInt1: 4801; dVar1: 5401; dpInt1: 601; +xAODTe...elessRead INFO 11 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 2400.000; anInt: 1201; anInt2: 3601; cEL: cvec[9]; dInt1: 4801; dVar1: 5401; dpInt1: 601; dpvFloat: []; pFloat: 0.120; pInt: 6001; pvFloat: []; pvInt: []; @@ -1737,11 +1736,11 @@ xAODTestTypeles... INFO aFloat: 2400.000; anInt: 1201; anInt2: 3601; cEL: cv pvFloat: [-0.398 -0.298 -0.198 -0.098 0.002 0.102 0.202 0.302 0.402 ]; pvInt: [790 791 792 793 794 795 796 797 798 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 1.200; anInt: 12000; anInt2: 24000; cEL: cvec[2]; dInt1: 36000; dInt1Base: 36001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 1.200; anInt: 12000; anInt2: 24000; cEL: cvec[2]; dInt1: 36000; dInt1Base: 36001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 7200.000; anInt: 6001; anInt2: 8401; dInt1: 5761; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 7200.000; anInt: 6001; anInt2: 8401; dInt1: 5761; aFloat: 7200.100; anInt: 6002; anInt2: 8402; dInt1: 5762; aFloat: 7200.200; anInt: 6003; anInt2: 8403; dInt1: 5763; aFloat: 7200.300; anInt: 6004; anInt2: 8404; dInt1: 5764; @@ -1750,8 +1749,8 @@ xAODTestTypeles... INFO aFloat: 7200.000; anInt: 6001; anInt2: 8401; dInt1: aFloat: 7200.600; anInt: 6007; anInt2: 8407; dInt1: 5767; aFloat: 7200.700; anInt: 6008; anInt2: 8408; dInt1: 5768; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 2401; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 2401; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 2402; pFloat: 0.000; pInt: 0; @@ -1782,8 +1781,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 2401; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 2400.900; anInt: 1210; anInt2: 3610; cEL: cvec[0]; dInt1: 4810; dVar1: 5410; dpInt1: 610; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 2400.900; anInt: 1210; anInt2: 3610; cEL: cvec[0]; dInt1: 4810; dVar1: 5410; dpInt1: 610; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.120; pInt: 6010; pvFloat: [-0.398 -0.298 -0.198 -0.098 0.002 0.102 0.202 0.302 0.402 ]; pvInt: [790 791 792 793 794 795 796 797 798 ]; @@ -1824,8 +1823,8 @@ xAODTestTypeles... INFO aFloat: 2400.900; anInt: 1210; anInt2: 3610; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 4801.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 4801.500; aFloat: 4802.500; aFloat: 4803.500; aFloat: 4804.500; @@ -1846,8 +1845,8 @@ xAODTestTypeles... INFO aFloat: 4801.500; aFloat: 4819.500; aFloat: 4820.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 4820.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 4820.500; aFloat: 4819.500; aFloat: 4818.500; aFloat: 4817.500; @@ -1870,9 +1869,9 @@ xAODTestTypeles... INFO aFloat: 4820.500; AthenaEventLoopMgr INFO ===>>> done processing event #11, run #0 11 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #12, run #0 11 events processed so far <<<=== -xAODTestTypeles... INFO 12 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 2600.000; anInt: 1301; anInt2: 3901; cEL: cvec[9]; dInt1: 5201; dVar1: 5851; dpInt1: 651; +xAODTe...elessRead INFO 12 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 2600.000; anInt: 1301; anInt2: 3901; cEL: cvec[9]; dInt1: 5201; dVar1: 5851; dpInt1: 651; dpvFloat: []; pFloat: 0.130; pInt: 6501; pvFloat: []; pvInt: []; @@ -1913,11 +1912,11 @@ xAODTestTypeles... INFO aFloat: 2600.000; anInt: 1301; anInt2: 3901; cEL: cv pvFloat: [-0.397 -0.297 -0.197 -0.097 0.003 0.103 0.203 0.303 0.403 ]; pvInt: [890 891 892 893 894 895 896 897 898 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 1.300; anInt: 13000; anInt2: 26000; cEL: cvec[3]; dInt1: 39000; dInt1Base: 39001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 1.300; anInt: 13000; anInt2: 26000; cEL: cvec[3]; dInt1: 39000; dInt1Base: 39001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 7800.000; anInt: 6501; anInt2: 9101; dInt1: 6241; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 7800.000; anInt: 6501; anInt2: 9101; dInt1: 6241; aFloat: 7800.100; anInt: 6502; anInt2: 9102; dInt1: 6242; aFloat: 7800.200; anInt: 6503; anInt2: 9103; dInt1: 6243; aFloat: 7800.300; anInt: 6504; anInt2: 9104; dInt1: 6244; @@ -1926,8 +1925,8 @@ xAODTestTypeles... INFO aFloat: 7800.000; anInt: 6501; anInt2: 9101; dInt1: aFloat: 7800.600; anInt: 6507; anInt2: 9107; dInt1: 6247; aFloat: 7800.700; anInt: 6508; anInt2: 9108; dInt1: 6248; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 2601; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 2601; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 2602; pFloat: 0.000; pInt: 0; @@ -1958,8 +1957,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 2601; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 2600.900; anInt: 1310; anInt2: 3910; cEL: cvec[0]; dInt1: 5210; dVar1: 5860; dpInt1: 660; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 2600.900; anInt: 1310; anInt2: 3910; cEL: cvec[0]; dInt1: 5210; dVar1: 5860; dpInt1: 660; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.130; pInt: 6510; pvFloat: [-0.397 -0.297 -0.197 -0.097 0.003 0.103 0.203 0.303 0.403 ]; pvInt: [890 891 892 893 894 895 896 897 898 ]; @@ -2000,8 +1999,8 @@ xAODTestTypeles... INFO aFloat: 2600.900; anInt: 1310; anInt2: 3910; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 5201.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 5201.500; aFloat: 5202.500; aFloat: 5203.500; aFloat: 5204.500; @@ -2022,8 +2021,8 @@ xAODTestTypeles... INFO aFloat: 5201.500; aFloat: 5219.500; aFloat: 5220.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 5220.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 5220.500; aFloat: 5219.500; aFloat: 5218.500; aFloat: 5217.500; @@ -2046,9 +2045,9 @@ xAODTestTypeles... INFO aFloat: 5220.500; AthenaEventLoopMgr INFO ===>>> done processing event #12, run #0 12 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #13, run #0 12 events processed so far <<<=== -xAODTestTypeles... INFO 13 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 2800.000; anInt: 1401; anInt2: 4201; cEL: cvec[9]; dInt1: 5601; dVar1: 6301; dpInt1: 701; +xAODTe...elessRead INFO 13 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 2800.000; anInt: 1401; anInt2: 4201; cEL: cvec[9]; dInt1: 5601; dVar1: 6301; dpInt1: 701; dpvFloat: []; pFloat: 0.140; pInt: 7001; pvFloat: []; pvInt: []; @@ -2089,11 +2088,11 @@ xAODTestTypeles... INFO aFloat: 2800.000; anInt: 1401; anInt2: 4201; cEL: cv pvFloat: [-0.396 -0.296 -0.196 -0.096 0.004 0.104 0.204 0.304 0.404 ]; pvInt: [990 991 992 993 994 995 996 997 998 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 1.400; anInt: 14000; anInt2: 28000; cEL: cvec[4]; dInt1: 42000; dInt1Base: 42001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 1.400; anInt: 14000; anInt2: 28000; cEL: cvec[4]; dInt1: 42000; dInt1Base: 42001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 8400.000; anInt: 7001; anInt2: 9801; dInt1: 6721; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 8400.000; anInt: 7001; anInt2: 9801; dInt1: 6721; aFloat: 8400.100; anInt: 7002; anInt2: 9802; dInt1: 6722; aFloat: 8400.200; anInt: 7003; anInt2: 9803; dInt1: 6723; aFloat: 8400.300; anInt: 7004; anInt2: 9804; dInt1: 6724; @@ -2102,8 +2101,8 @@ xAODTestTypeles... INFO aFloat: 8400.000; anInt: 7001; anInt2: 9801; dInt1: aFloat: 8400.600; anInt: 7007; anInt2: 9807; dInt1: 6727; aFloat: 8400.700; anInt: 7008; anInt2: 9808; dInt1: 6728; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 2801; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 2801; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 2802; pFloat: 0.000; pInt: 0; @@ -2134,8 +2133,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 2801; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 2800.900; anInt: 1410; anInt2: 4210; cEL: cvec[0]; dInt1: 5610; dVar1: 6310; dpInt1: 710; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 2800.900; anInt: 1410; anInt2: 4210; cEL: cvec[0]; dInt1: 5610; dVar1: 6310; dpInt1: 710; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.140; pInt: 7010; pvFloat: [-0.396 -0.296 -0.196 -0.096 0.004 0.104 0.204 0.304 0.404 ]; pvInt: [990 991 992 993 994 995 996 997 998 ]; @@ -2176,8 +2175,8 @@ xAODTestTypeles... INFO aFloat: 2800.900; anInt: 1410; anInt2: 4210; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 5601.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 5601.500; aFloat: 5602.500; aFloat: 5603.500; aFloat: 5604.500; @@ -2198,8 +2197,8 @@ xAODTestTypeles... INFO aFloat: 5601.500; aFloat: 5619.500; aFloat: 5620.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 5620.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 5620.500; aFloat: 5619.500; aFloat: 5618.500; aFloat: 5617.500; @@ -2222,9 +2221,9 @@ xAODTestTypeles... INFO aFloat: 5620.500; AthenaEventLoopMgr INFO ===>>> done processing event #13, run #0 13 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #14, run #0 13 events processed so far <<<=== -xAODTestTypeles... INFO 14 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 3000.000; anInt: 1501; anInt2: 4501; cEL: cvec[9]; dInt1: 6001; dVar1: 6751; dpInt1: 751; +xAODTe...elessRead INFO 14 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 3000.000; anInt: 1501; anInt2: 4501; cEL: cvec[9]; dInt1: 6001; dVar1: 6751; dpInt1: 751; dpvFloat: []; pFloat: 0.150; pInt: 7501; pvFloat: []; pvInt: []; @@ -2265,11 +2264,11 @@ xAODTestTypeles... INFO aFloat: 3000.000; anInt: 1501; anInt2: 4501; cEL: cv pvFloat: [-0.395 -0.295 -0.195 -0.095 0.005 0.105 0.205 0.305 0.405 ]; pvInt: [1090 1091 1092 1093 1094 1095 1096 1097 1098 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 1.500; anInt: 15000; anInt2: 30000; cEL: cvec[5]; dInt1: 45000; dInt1Base: 45001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 1.500; anInt: 15000; anInt2: 30000; cEL: cvec[5]; dInt1: 45000; dInt1Base: 45001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 9000.000; anInt: 7501; anInt2: 10501; dInt1: 7201; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 9000.000; anInt: 7501; anInt2: 10501; dInt1: 7201; aFloat: 9000.100; anInt: 7502; anInt2: 10502; dInt1: 7202; aFloat: 9000.200; anInt: 7503; anInt2: 10503; dInt1: 7203; aFloat: 9000.300; anInt: 7504; anInt2: 10504; dInt1: 7204; @@ -2278,8 +2277,8 @@ xAODTestTypeles... INFO aFloat: 9000.000; anInt: 7501; anInt2: 10501; dInt1: aFloat: 9000.600; anInt: 7507; anInt2: 10507; dInt1: 7207; aFloat: 9000.700; anInt: 7508; anInt2: 10508; dInt1: 7208; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 3001; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 3001; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 3002; pFloat: 0.000; pInt: 0; @@ -2310,8 +2309,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 3001; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 3000.900; anInt: 1510; anInt2: 4510; cEL: cvec[0]; dInt1: 6010; dVar1: 6760; dpInt1: 760; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 3000.900; anInt: 1510; anInt2: 4510; cEL: cvec[0]; dInt1: 6010; dVar1: 6760; dpInt1: 760; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.150; pInt: 7510; pvFloat: [-0.395 -0.295 -0.195 -0.095 0.005 0.105 0.205 0.305 0.405 ]; pvInt: [1090 1091 1092 1093 1094 1095 1096 1097 1098 ]; @@ -2352,8 +2351,8 @@ xAODTestTypeles... INFO aFloat: 3000.900; anInt: 1510; anInt2: 4510; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 6001.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 6001.500; aFloat: 6002.500; aFloat: 6003.500; aFloat: 6004.500; @@ -2374,8 +2373,8 @@ xAODTestTypeles... INFO aFloat: 6001.500; aFloat: 6019.500; aFloat: 6020.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 6020.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 6020.500; aFloat: 6019.500; aFloat: 6018.500; aFloat: 6017.500; @@ -2398,9 +2397,9 @@ xAODTestTypeles... INFO aFloat: 6020.500; AthenaEventLoopMgr INFO ===>>> done processing event #14, run #0 14 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #15, run #0 14 events processed so far <<<=== -xAODTestTypeles... INFO 15 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 3200.000; anInt: 1601; anInt2: 4801; cEL: cvec[9]; dInt1: 6401; dVar1: 7201; dpInt1: 801; +xAODTe...elessRead INFO 15 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 3200.000; anInt: 1601; anInt2: 4801; cEL: cvec[9]; dInt1: 6401; dVar1: 7201; dpInt1: 801; dpvFloat: []; pFloat: 0.160; pInt: 8001; pvFloat: []; pvInt: []; @@ -2441,11 +2440,11 @@ xAODTestTypeles... INFO aFloat: 3200.000; anInt: 1601; anInt2: 4801; cEL: cv pvFloat: [-0.394 -0.294 -0.194 -0.094 0.006 0.106 0.206 0.306 0.406 ]; pvInt: [1190 1191 1192 1193 1194 1195 1196 1197 1198 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 1.600; anInt: 16000; anInt2: 32000; cEL: cvec[6]; dInt1: 48000; dInt1Base: 48001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 1.600; anInt: 16000; anInt2: 32000; cEL: cvec[6]; dInt1: 48000; dInt1Base: 48001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 9600.000; anInt: 8001; anInt2: 11201; dInt1: 7681; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 9600.000; anInt: 8001; anInt2: 11201; dInt1: 7681; aFloat: 9600.100; anInt: 8002; anInt2: 11202; dInt1: 7682; aFloat: 9600.200; anInt: 8003; anInt2: 11203; dInt1: 7683; aFloat: 9600.300; anInt: 8004; anInt2: 11204; dInt1: 7684; @@ -2454,8 +2453,8 @@ xAODTestTypeles... INFO aFloat: 9600.000; anInt: 8001; anInt2: 11201; dInt1: aFloat: 9600.600; anInt: 8007; anInt2: 11207; dInt1: 7687; aFloat: 9600.700; anInt: 8008; anInt2: 11208; dInt1: 7688; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 3201; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 3201; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 3202; pFloat: 0.000; pInt: 0; @@ -2486,8 +2485,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 3201; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 3200.900; anInt: 1610; anInt2: 4810; cEL: cvec[0]; dInt1: 6410; dVar1: 7210; dpInt1: 810; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 3200.900; anInt: 1610; anInt2: 4810; cEL: cvec[0]; dInt1: 6410; dVar1: 7210; dpInt1: 810; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.160; pInt: 8010; pvFloat: [-0.394 -0.294 -0.194 -0.094 0.006 0.106 0.206 0.306 0.406 ]; pvInt: [1190 1191 1192 1193 1194 1195 1196 1197 1198 ]; @@ -2528,8 +2527,8 @@ xAODTestTypeles... INFO aFloat: 3200.900; anInt: 1610; anInt2: 4810; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 6401.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 6401.500; aFloat: 6402.500; aFloat: 6403.500; aFloat: 6404.500; @@ -2550,8 +2549,8 @@ xAODTestTypeles... INFO aFloat: 6401.500; aFloat: 6419.500; aFloat: 6420.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 6420.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 6420.500; aFloat: 6419.500; aFloat: 6418.500; aFloat: 6417.500; @@ -2574,9 +2573,9 @@ xAODTestTypeles... INFO aFloat: 6420.500; AthenaEventLoopMgr INFO ===>>> done processing event #15, run #0 15 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #16, run #0 15 events processed so far <<<=== -xAODTestTypeles... INFO 16 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 3400.000; anInt: 1701; anInt2: 5101; cEL: cvec[9]; dInt1: 6801; dVar1: 7651; dpInt1: 851; +xAODTe...elessRead INFO 16 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 3400.000; anInt: 1701; anInt2: 5101; cEL: cvec[9]; dInt1: 6801; dVar1: 7651; dpInt1: 851; dpvFloat: []; pFloat: 0.170; pInt: 8501; pvFloat: []; pvInt: []; @@ -2617,11 +2616,11 @@ xAODTestTypeles... INFO aFloat: 3400.000; anInt: 1701; anInt2: 5101; cEL: cv pvFloat: [-0.393 -0.293 -0.193 -0.093 0.007 0.107 0.207 0.307 0.407 ]; pvInt: [1290 1291 1292 1293 1294 1295 1296 1297 1298 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 1.700; anInt: 17000; anInt2: 34000; cEL: cvec[7]; dInt1: 51000; dInt1Base: 51001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 1.700; anInt: 17000; anInt2: 34000; cEL: cvec[7]; dInt1: 51000; dInt1Base: 51001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 10200.000; anInt: 8501; anInt2: 11901; dInt1: 8161; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 10200.000; anInt: 8501; anInt2: 11901; dInt1: 8161; aFloat: 10200.100; anInt: 8502; anInt2: 11902; dInt1: 8162; aFloat: 10200.200; anInt: 8503; anInt2: 11903; dInt1: 8163; aFloat: 10200.300; anInt: 8504; anInt2: 11904; dInt1: 8164; @@ -2630,8 +2629,8 @@ xAODTestTypeles... INFO aFloat: 10200.000; anInt: 8501; anInt2: 11901; dInt1 aFloat: 10200.600; anInt: 8507; anInt2: 11907; dInt1: 8167; aFloat: 10200.700; anInt: 8508; anInt2: 11908; dInt1: 8168; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 3401; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 3401; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 3402; pFloat: 0.000; pInt: 0; @@ -2662,8 +2661,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 3401; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 3400.900; anInt: 1710; anInt2: 5110; cEL: cvec[0]; dInt1: 6810; dVar1: 7660; dpInt1: 860; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 3400.900; anInt: 1710; anInt2: 5110; cEL: cvec[0]; dInt1: 6810; dVar1: 7660; dpInt1: 860; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.170; pInt: 8510; pvFloat: [-0.393 -0.293 -0.193 -0.093 0.007 0.107 0.207 0.307 0.407 ]; pvInt: [1290 1291 1292 1293 1294 1295 1296 1297 1298 ]; @@ -2704,8 +2703,8 @@ xAODTestTypeles... INFO aFloat: 3400.900; anInt: 1710; anInt2: 5110; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 6801.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 6801.500; aFloat: 6802.500; aFloat: 6803.500; aFloat: 6804.500; @@ -2726,8 +2725,8 @@ xAODTestTypeles... INFO aFloat: 6801.500; aFloat: 6819.500; aFloat: 6820.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 6820.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 6820.500; aFloat: 6819.500; aFloat: 6818.500; aFloat: 6817.500; @@ -2750,9 +2749,9 @@ xAODTestTypeles... INFO aFloat: 6820.500; AthenaEventLoopMgr INFO ===>>> done processing event #16, run #0 16 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #17, run #0 16 events processed so far <<<=== -xAODTestTypeles... INFO 17 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 3600.000; anInt: 1801; anInt2: 5401; cEL: cvec[9]; dInt1: 7201; dVar1: 8101; dpInt1: 901; +xAODTe...elessRead INFO 17 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 3600.000; anInt: 1801; anInt2: 5401; cEL: cvec[9]; dInt1: 7201; dVar1: 8101; dpInt1: 901; dpvFloat: []; pFloat: 0.180; pInt: 9001; pvFloat: []; pvInt: []; @@ -2793,11 +2792,11 @@ xAODTestTypeles... INFO aFloat: 3600.000; anInt: 1801; anInt2: 5401; cEL: cv pvFloat: [-0.392 -0.292 -0.192 -0.092 0.008 0.108 0.208 0.308 0.408 ]; pvInt: [1390 1391 1392 1393 1394 1395 1396 1397 1398 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 1.800; anInt: 18000; anInt2: 36000; cEL: cvec[8]; dInt1: 54000; dInt1Base: 54001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 1.800; anInt: 18000; anInt2: 36000; cEL: cvec[8]; dInt1: 54000; dInt1Base: 54001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 10800.000; anInt: 9001; anInt2: 12601; dInt1: 8641; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 10800.000; anInt: 9001; anInt2: 12601; dInt1: 8641; aFloat: 10800.100; anInt: 9002; anInt2: 12602; dInt1: 8642; aFloat: 10800.200; anInt: 9003; anInt2: 12603; dInt1: 8643; aFloat: 10800.300; anInt: 9004; anInt2: 12604; dInt1: 8644; @@ -2806,8 +2805,8 @@ xAODTestTypeles... INFO aFloat: 10800.000; anInt: 9001; anInt2: 12601; dInt1 aFloat: 10800.600; anInt: 9007; anInt2: 12607; dInt1: 8647; aFloat: 10800.700; anInt: 9008; anInt2: 12608; dInt1: 8648; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 3601; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 3601; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 3602; pFloat: 0.000; pInt: 0; @@ -2838,8 +2837,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 3601; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 3600.900; anInt: 1810; anInt2: 5410; cEL: cvec[0]; dInt1: 7210; dVar1: 8110; dpInt1: 910; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 3600.900; anInt: 1810; anInt2: 5410; cEL: cvec[0]; dInt1: 7210; dVar1: 8110; dpInt1: 910; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.180; pInt: 9010; pvFloat: [-0.392 -0.292 -0.192 -0.092 0.008 0.108 0.208 0.308 0.408 ]; pvInt: [1390 1391 1392 1393 1394 1395 1396 1397 1398 ]; @@ -2880,8 +2879,8 @@ xAODTestTypeles... INFO aFloat: 3600.900; anInt: 1810; anInt2: 5410; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 7201.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 7201.500; aFloat: 7202.500; aFloat: 7203.500; aFloat: 7204.500; @@ -2902,8 +2901,8 @@ xAODTestTypeles... INFO aFloat: 7201.500; aFloat: 7219.500; aFloat: 7220.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 7220.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 7220.500; aFloat: 7219.500; aFloat: 7218.500; aFloat: 7217.500; @@ -2926,9 +2925,9 @@ xAODTestTypeles... INFO aFloat: 7220.500; AthenaEventLoopMgr INFO ===>>> done processing event #17, run #0 17 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #18, run #0 17 events processed so far <<<=== -xAODTestTypeles... INFO 18 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 3800.000; anInt: 1901; anInt2: 5701; cEL: cvec[9]; dInt1: 7601; dVar1: 8551; dpInt1: 951; +xAODTe...elessRead INFO 18 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 3800.000; anInt: 1901; anInt2: 5701; cEL: cvec[9]; dInt1: 7601; dVar1: 8551; dpInt1: 951; dpvFloat: []; pFloat: 0.190; pInt: 9501; pvFloat: []; pvInt: []; @@ -2969,11 +2968,11 @@ xAODTestTypeles... INFO aFloat: 3800.000; anInt: 1901; anInt2: 5701; cEL: cv pvFloat: [-0.391 -0.291 -0.191 -0.091 0.009 0.109 0.209 0.309 0.409 ]; pvInt: [1490 1491 1492 1493 1494 1495 1496 1497 1498 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 1.900; anInt: 19000; anInt2: 38000; cEL: cvec[9]; dInt1: 57000; dInt1Base: 57001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 1.900; anInt: 19000; anInt2: 38000; cEL: cvec[9]; dInt1: 57000; dInt1Base: 57001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 11400.000; anInt: 9501; anInt2: 13301; dInt1: 9121; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 11400.000; anInt: 9501; anInt2: 13301; dInt1: 9121; aFloat: 11400.100; anInt: 9502; anInt2: 13302; dInt1: 9122; aFloat: 11400.200; anInt: 9503; anInt2: 13303; dInt1: 9123; aFloat: 11400.300; anInt: 9504; anInt2: 13304; dInt1: 9124; @@ -2982,8 +2981,8 @@ xAODTestTypeles... INFO aFloat: 11400.000; anInt: 9501; anInt2: 13301; dInt1 aFloat: 11400.600; anInt: 9507; anInt2: 13307; dInt1: 9127; aFloat: 11400.700; anInt: 9508; anInt2: 13308; dInt1: 9128; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 3801; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 3801; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 3802; pFloat: 0.000; pInt: 0; @@ -3014,8 +3013,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 3801; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 3800.900; anInt: 1910; anInt2: 5710; cEL: cvec[0]; dInt1: 7610; dVar1: 8560; dpInt1: 960; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 3800.900; anInt: 1910; anInt2: 5710; cEL: cvec[0]; dInt1: 7610; dVar1: 8560; dpInt1: 960; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.190; pInt: 9510; pvFloat: [-0.391 -0.291 -0.191 -0.091 0.009 0.109 0.209 0.309 0.409 ]; pvInt: [1490 1491 1492 1493 1494 1495 1496 1497 1498 ]; @@ -3056,8 +3055,8 @@ xAODTestTypeles... INFO aFloat: 3800.900; anInt: 1910; anInt2: 5710; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 7601.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 7601.500; aFloat: 7602.500; aFloat: 7603.500; aFloat: 7604.500; @@ -3078,8 +3077,8 @@ xAODTestTypeles... INFO aFloat: 7601.500; aFloat: 7619.500; aFloat: 7620.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 7620.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 7620.500; aFloat: 7619.500; aFloat: 7618.500; aFloat: 7617.500; @@ -3102,9 +3101,9 @@ xAODTestTypeles... INFO aFloat: 7620.500; AthenaEventLoopMgr INFO ===>>> done processing event #18, run #0 18 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events processed so far <<<=== -xAODTestTypeles... INFO 19 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 4000.000; anInt: 2001; anInt2: 6001; cEL: cvec[9]; dInt1: 8001; dVar1: 9001; dpInt1: 1001; +xAODTe...elessRead INFO 19 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 4000.000; anInt: 2001; anInt2: 6001; cEL: cvec[9]; dInt1: 8001; dVar1: 9001; dpInt1: 1001; dpvFloat: []; pFloat: 0.200; pInt: 10001; pvFloat: []; pvInt: []; @@ -3145,11 +3144,11 @@ xAODTestTypeles... INFO aFloat: 4000.000; anInt: 2001; anInt2: 6001; cEL: cv pvFloat: [-0.390 -0.290 -0.190 -0.090 0.010 0.110 0.210 0.310 0.410 ]; pvInt: [1590 1591 1592 1593 1594 1595 1596 1597 1598 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 2.000; anInt: 20000; anInt2: 40000; cEL: cvec[0]; dInt1: 60000; dInt1Base: 60001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 2.000; anInt: 20000; anInt2: 40000; cEL: cvec[0]; dInt1: 60000; dInt1Base: 60001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 12000.000; anInt: 10001; anInt2: 14001; dInt1: 9601; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 12000.000; anInt: 10001; anInt2: 14001; dInt1: 9601; aFloat: 12000.100; anInt: 10002; anInt2: 14002; dInt1: 9602; aFloat: 12000.200; anInt: 10003; anInt2: 14003; dInt1: 9603; aFloat: 12000.300; anInt: 10004; anInt2: 14004; dInt1: 9604; @@ -3158,8 +3157,8 @@ xAODTestTypeles... INFO aFloat: 12000.000; anInt: 10001; anInt2: 14001; dInt aFloat: 12000.600; anInt: 10007; anInt2: 14007; dInt1: 9607; aFloat: 12000.700; anInt: 10008; anInt2: 14008; dInt1: 9608; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 4001; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 4001; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 4002; pFloat: 0.000; pInt: 0; @@ -3190,8 +3189,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 4001; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 4000.900; anInt: 2010; anInt2: 6010; cEL: cvec[0]; dInt1: 8010; dVar1: 9010; dpInt1: 1010; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 4000.900; anInt: 2010; anInt2: 6010; cEL: cvec[0]; dInt1: 8010; dVar1: 9010; dpInt1: 1010; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.200; pInt: 10010; pvFloat: [-0.390 -0.290 -0.190 -0.090 0.010 0.110 0.210 0.310 0.410 ]; pvInt: [1590 1591 1592 1593 1594 1595 1596 1597 1598 ]; @@ -3232,8 +3231,8 @@ xAODTestTypeles... INFO aFloat: 4000.900; anInt: 2010; anInt2: 6010; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 8001.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 8001.500; aFloat: 8002.500; aFloat: 8003.500; aFloat: 8004.500; @@ -3254,8 +3253,8 @@ xAODTestTypeles... INFO aFloat: 8001.500; aFloat: 8019.500; aFloat: 8020.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 8020.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 8020.500; aFloat: 8019.500; aFloat: 8018.500; aFloat: 8017.500; @@ -3278,9 +3277,9 @@ xAODTestTypeles... INFO aFloat: 8020.500; AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== -xAODTestTypeles... INFO 20 -xAODTestTypeles... INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 4200.000; anInt: 2101; anInt2: 6301; cEL: cvec[9]; dInt1: 8401; dVar1: 9451; dpInt1: 1051; +xAODTe...elessRead INFO 20 +xAODTe...elessRead INFO cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 4200.000; anInt: 2101; anInt2: 6301; cEL: cvec[9]; dInt1: 8401; dVar1: 9451; dpInt1: 1051; dpvFloat: []; pFloat: 0.210; pInt: 10501; pvFloat: []; pvInt: []; @@ -3321,11 +3320,11 @@ xAODTestTypeles... INFO aFloat: 4200.000; anInt: 2101; anInt2: 6301; cEL: cv pvFloat: [-0.389 -0.289 -0.189 -0.089 0.011 0.111 0.211 0.311 0.411 ]; pvInt: [1690 1691 1692 1693 1694 1695 1696 1697 1698 ]; -xAODTestTypeles... INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int -xAODTestTypeles... INFO aFloat: 2.100; anInt: 21000; anInt2: 42000; cEL: cvec[1]; dInt1: 63000; dInt1Base: 63001; +xAODTe...elessRead INFO cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dInt1Base/int +xAODTe...elessRead INFO aFloat: 2.100; anInt: 21000; anInt2: 42000; cEL: cvec[1]; dInt1: 63000; dInt1Base: 63001; -xAODTestTypeles... INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int -xAODTestTypeles... INFO aFloat: 12600.000; anInt: 10501; anInt2: 14701; dInt1: 10081; +xAODTe...elessRead INFO ctrig types: aFloat/float anInt/int anInt2/int dInt1/int +xAODTe...elessRead INFO aFloat: 12600.000; anInt: 10501; anInt2: 14701; dInt1: 10081; aFloat: 12600.100; anInt: 10502; anInt2: 14702; dInt1: 10082; aFloat: 12600.200; anInt: 10503; anInt2: 14703; dInt1: 10083; aFloat: 12600.300; anInt: 10504; anInt2: 14704; dInt1: 10084; @@ -3334,8 +3333,8 @@ xAODTestTypeles... INFO aFloat: 12600.000; anInt: 10501; anInt2: 14701; dInt aFloat: 12600.600; anInt: 10507; anInt2: 14707; dInt1: 10087; aFloat: 12600.700; anInt: 10508; anInt2: 14708; dInt1: 10088; -xAODTestTypeles... INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > -xAODTestTypeles... INFO aFloat: 0.000; anInt: 4201; pFloat: 0.000; pInt: 0; +xAODTe...elessRead INFO cvecWD types: aFloat/float anInt/int pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > +xAODTe...elessRead INFO aFloat: 0.000; anInt: 4201; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; aFloat: 0.000; anInt: 4202; pFloat: 0.000; pInt: 0; @@ -3366,8 +3365,8 @@ xAODTestTypeles... INFO aFloat: 0.000; anInt: 4201; pFloat: 0.000; pInt: 0; pvFloat: []; pvInt: []; -xAODTestTypeles... INFO cview -xAODTestTypeles... INFO aFloat: 4200.900; anInt: 2110; anInt2: 6310; cEL: cvec[0]; dInt1: 8410; dVar1: 9460; dpInt1: 1060; +xAODTe...elessRead INFO cview +xAODTe...elessRead INFO aFloat: 4200.900; anInt: 2110; anInt2: 6310; cEL: cvec[0]; dInt1: 8410; dVar1: 9460; dpInt1: 1060; dpvFloat: [1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 ]; pFloat: 9.210; pInt: 10510; pvFloat: [-0.389 -0.289 -0.189 -0.089 0.011 0.111 0.211 0.311 0.411 ]; pvInt: [1690 1691 1692 1693 1694 1695 1696 1697 1698 ]; @@ -3408,8 +3407,8 @@ xAODTestTypeles... INFO aFloat: 4200.900; anInt: 2110; anInt2: 6310; cEL: cv pvFloat: []; pvInt: []; -xAODTestTypeles... INFO hvec types: aFloat/float -xAODTestTypeles... INFO aFloat: 8401.500; +xAODTe...elessRead INFO hvec types: aFloat/float +xAODTe...elessRead INFO aFloat: 8401.500; aFloat: 8402.500; aFloat: 8403.500; aFloat: 8404.500; @@ -3430,8 +3429,8 @@ xAODTestTypeles... INFO aFloat: 8401.500; aFloat: 8419.500; aFloat: 8420.500; -xAODTestTypeles... INFO hview -xAODTestTypeles... INFO aFloat: 8420.500; +xAODTe...elessRead INFO hview +xAODTe...elessRead INFO aFloat: 8420.500; aFloat: 8419.500; aFloat: 8418.500; aFloat: 8417.500; @@ -3453,12 +3452,10 @@ xAODTestTypeles... INFO aFloat: 8420.500; aFloat: 8401.500; AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -Stream1 INFO Metadata records written: 21 +Output...amStream1 INFO Metadata records written: 21 ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestTypelessRead_catalog.xml' does not exist. New file created. AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestTypelessRead_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestTypelessRead_jo.py deleted file mode 100644 index ac94beb28e9a7f1b2c544babb6b2b294350ea91b..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestTypelessRead_jo.py +++ /dev/null @@ -1,110 +0,0 @@ - -# -# $Id$ -# -# File: share/AuxDataTestTypelessRead_jo.py -# Author: snyder@bnl.gov -# Date: May 2014 -# Purpose: Test reading xAOD objects with aux data, w/o compile-time type info. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixStandardJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool -import AthenaPoolCnvSvc.ReadAthenaPool - -include ('DataModelRunTests/loadReadDicts.py') - -#-------------------------------------------------------------- -# Define input -#-------------------------------------------------------------- -svcMgr.EventSelector.InputCollections = [ "xaoddata.root" ] - -#-------------------------------------------------------------- -# Define output -#-------------------------------------------------------------- -# ItemList: -include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" ) -fullItemList+=["DMTest::CVec#cvec"] -fullItemList+=["DMTest::CAuxContainer#cvecAux."] -fullItemList+=["DMTest::CVecWithData#cvecWD"] -fullItemList+=["DMTest::CView#cview"] -fullItemList+=["DMTest::CAuxContainer#cvecWDAux."] -fullItemList+=["DMTest::CVec#ctrig"] -fullItemList+=["DMTest::CTrigAuxContainer#ctrigAux."] -fullItemList+=["DMTest::C#cinfo"] -fullItemList+=["DMTest::CInfoAuxContainer#cinfoAux."] -fullItemList+=["DMTest::HVec#hvec"] -fullItemList+=["DMTest::HAuxContainer#hvecAux."] -fullItemList+=["DMTest::HView#hview"] - -fullItemList+=["DMTest::CVec#copy_cvec"] -fullItemList+=["DMTest::CAuxContainer#copy_cvecAux."] -fullItemList+=["DMTest::CVecWithData#copy_cvecWD"] -fullItemList+=["DMTest::CView#copy_cview"] -fullItemList+=["DMTest::CAuxContainer#copy_cvecWDAux."] -fullItemList+=["DMTest::CVec#copy_ctrig"] -fullItemList+=["DMTest::CTrigAuxContainer#copy_ctrigAux."] -fullItemList+=["DMTest::C#copy_cinfo"] -fullItemList+=["DMTest::CInfoAuxContainer#copy_cinfoAux."] -fullItemList+=["DMTest::HVec#copy_hvec"] -fullItemList+=["DMTest::HAuxContainer#copy_hvecAux."] -fullItemList+=["DMTest::HView#copy_hview"] - -ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += ["DEFAULT_SPLITLEVEL='1'"] - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - -#-------------------------------------------------------------- -# Application: -#-------------------------------------------------------------- - -from DataModelTestDataRead.DataModelTestDataReadConf import DMTest__xAODTestTypelessRead -topSequence += DMTest__xAODTestTypelessRead ("xAODTestTypelessRead", - WritePrefix = "copy_") - - -# Stream's output file -from OutputStreamAthenaPool.MultipleStreamManager import MSMgr -Stream1_Augmented = MSMgr.NewPoolStream ('Stream1', 'xaoddata3.root',asAlg=True,noTag=True) -Stream1 = Stream1_Augmented.GetEventStream() -Stream1.WritingTool.SubLevelBranchName = '<key>' -# List of DO's to write out -Stream1.ItemList += fullItemList - -from xAODEventFormatCnv.xAODEventFormatCnvConf import xAODMaker__EventFormatStreamHelperTool -for tool in Stream1.HelperTools: - if isinstance(tool, xAODMaker__EventFormatStreamHelperTool): - tool.TypeNames += [ - 'DataVector<DMTest::C_v1>', - 'DMTest::CVecWithData_v1', - 'DMTest::CAuxContainer_v1', - 'DMTest::CTrigAuxContainer_v1', - 'DMTest::C_v1', - 'DMTest::CInfoAuxContainer_v1', - ] - break - - -# Avoid races when running tests in parallel. -FILECATALOG = 'xAODTestTypelessRead_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') - diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestWrite.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestWrite.ref index e6dfd6efba3b41719567862c41f2f89da271374c..d6f5eae1b5390313ba0ed1f3f42c361a93a0b979 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestWrite.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestWrite.ref @@ -1,20 +1,22 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -MetaDataSvc INFO Initializing MetaDataSvc +EventInfoCnvAlg INFO Initializing EventInfoCnvAlg +EventI...foCnvTool INFO Beam spot information not available +EventI...foCnvTool INFO Will not fill beam spot information into xAOD::EventInfo PyComponentMgr INFO Initializing PyComponentMgr... LoadWriteDicts INFO Initializing LoadWriteDicts... -DecisionSvc INFO Inserting stream: Stream1 with no Algs -Stream1.Stream1... INFO Initializing Stream1.Stream1Tool -Stream1 INFO Data output: xaoddata.root -Stream1 INFO ../O reinitialization... +DecisionSvc INFO Inserting stream: OutputStreamStream1 with no Algs +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +Output...ream1Tool INFO Initializing OutputStreamStream1.StreamStream1Tool +MetaDataSvc INFO Initializing MetaDataSvc +Output...amStream1 INFO Data output: xaoddata.root +Output...amStream1 INFO ../O reinitialization... EventSelector INFO Enter McEventSelector Initialization AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully -EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventP...stencySvc INFO Added successfully Conversion service:McCnvSvc AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== @@ -56,12 +58,10 @@ AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -Stream1 INFO Metadata records written: 21 +Output...amStream1 INFO Metadata records written: 21 ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestWrite_catalog.xml' does not exist. New file created. AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestWriteThinned.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestWriteThinned.ref index 7294a6c7284b8dbdb342935b9832103a21cc801b..720783abb09a6423dedcf9841263cc40db2597a9 100644 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestWriteThinned.ref +++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestWriteThinned.ref @@ -1,20 +1,22 @@ -Py:Athena INFO executing ROOT6Setup ApplicationMgr INFO Application Manager Configured successfully -AthDictLoaderSvc INFO in initialize... -AthDictLoaderSvc INFO acquired Dso-registry AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr -MetaDataSvc INFO Initializing MetaDataSvc +EventInfoCnvAlg INFO Initializing EventInfoCnvAlg +EventI...foCnvTool INFO Beam spot information not available +EventI...foCnvTool INFO Will not fill beam spot information into xAOD::EventInfo PyComponentMgr INFO Initializing PyComponentMgr... LoadWriteDicts INFO Initializing LoadWriteDicts... -DecisionSvc INFO Inserting stream: Thinned1 with no Algs -Thinned1.Thinne... INFO Initializing Thinned1.Thinned1Tool -Thinned1 INFO Data output: xaodthinned1.root -Thinned1 INFO ../O reinitialization... +DecisionSvc INFO Inserting stream: OutputStreamThinned1 with no Algs +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +Output...nned1Tool INFO Initializing OutputStreamThinned1.StreamThinned1Tool +MetaDataSvc INFO Initializing MetaDataSvc +Output...mThinned1 INFO Data output: xaodthinned1.root +Output...mThinned1 INFO ../O reinitialization... EventSelector INFO Enter McEventSelector Initialization AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully -EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventP...stencySvc INFO Added successfully Conversion service:McCnvSvc AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #1, run #0 0 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #1, run #0 1 events processed so far <<<=== @@ -56,12 +58,10 @@ AthenaEventLoopMgr INFO ===>>> start processing event #19, run #0 18 events AthenaEventLoopMgr INFO ===>>> done processing event #19, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #20, run #0 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #20, run #0 20 events processed so far <<<=== -Thinned1 INFO Metadata records written: 21 +Output...mThinned1 INFO Metadata records written: 21 ApplicationMgr INFO Application Manager Stopped successfully -XMLCatalog INFO File 'xAODTestWriteThinned_catalog.xml' does not exist. New file created. AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc -ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully -Py:Athena INFO leaving with code 0: "successful run" +leaving with code 0: "successful run" diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestWriteThinned_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestWriteThinned_jo.py deleted file mode 100644 index 092568973ec180d57acac36befab14c37fbaefca..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestWriteThinned_jo.py +++ /dev/null @@ -1,105 +0,0 @@ -# -# File: DataModelRunTests/share/xAODTestWriteThinned_jo.py -# Author: snyder@bnl.gov -# Date: Aug 2019 -# Purpose: Test thinning xAOD objects. -# - - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixGeneratorJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool - -include ('DataModelRunTests/loadWriteDicts.py') - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestThinCVec, DMTest__xAODTestWriteCLinks, \ - DMTest__xAODTestWriteCVec -topSequence += DMTest__xAODTestWriteCVec ("xAODTestWriteCVec") -topSequence += DMTest__xAODTestWriteCLinks ("xAODTestWriteCLinks") -topSequence += DMTest__xAODTestThinCVec ("xAODTestThinCVec", Stream = 'Thinned1') - -# Test combining thinning from two independent algorithms. -topSequence += DMTest__xAODTestWriteCVec ("xAODTestWriteCVec2", - CVecKey = "cvec2") -topSequence += DMTest__xAODTestThinCVec ("xAODTestThinCVec2a", Stream = 'Thinned1', - CVecKey = "cvec2", - Mask = 5) -topSequence += DMTest__xAODTestThinCVec ("xAODTestThinCVec2b", Stream = 'Thinned1', - CVecKey = "cvec2", - Mask = 6) - - -#-------------------------------------------------------------- -# Output options -#-------------------------------------------------------------- -# ItemList: -include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" ) -fullItemList+=["DMTest::CVec#cvec"] -fullItemList+=["DMTest::CAuxContainer#cvecAux.-dVar2.-dtest"] -fullItemList+=["DMTest::CVec#cvec2"] -fullItemList+=["DMTest::CAuxContainer#cvec2Aux.-dVar2.-dtest"] -fullItemList+=["DMTest::CLinks#clinks"] -fullItemList+=["DMTest::CLinksAuxInfo#clinksAux."] -fullItemList+=["DMTest::CLinksContainer#clinksContainer"] -fullItemList+=["DMTest::CLinksAuxContainer#clinksContainerAux."] -fullItemList+=["DMTest::CLinksContainer#clinksContainer2"] -fullItemList+=["DMTest::CLinksAuxContainer#clinksContainer2Aux."] -fullItemList+=["DMTest::CLinksAOD#clinksAOD"] - -# Stream's output file -from OutputStreamAthenaPool.MultipleStreamManager import MSMgr -Thinned1_Augmented = MSMgr.NewPoolStream ('Thinned1', 'xaodthinned1.root', asAlg=True, noTag=True) -Thinned1 = Thinned1_Augmented.GetEventStream() -Thinned1.WritingTool.SubLevelBranchName = '<key>' -# List of DO's to write out -Thinned1.ItemList += fullItemList - -from xAODEventFormatCnv.xAODEventFormatCnvConf import xAODMaker__EventFormatStreamHelperTool -for tool in Thinned1.HelperTools: - if isinstance(tool, xAODMaker__EventFormatStreamHelperTool): - tool.TypeNames += [ - 'DataVector<DMTest::C_v1>', - 'DMTest::CAuxContainer_v1', - 'DMTest::C_v1', - 'DMTest::CLinks_v1', - 'DataVector<DMTest::CLinks_v1>', - 'DMTest::CLinksAuxInfo_v1', - 'DMTest::CLinksAuxContainer_v1', - ] - break - - -ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += ["DEFAULT_SPLITLEVEL='1'"] - - -# Avoid races when running tests in parallel. -FILECATALOG = 'xAODTestWriteThinned_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') - diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestWrite_jo.py b/Control/DataModelTest/DataModelRunTests/share/xAODTestWrite_jo.py deleted file mode 100755 index 56207f086a15451cc368c6104253da09bac8f80e..0000000000000000000000000000000000000000 --- a/Control/DataModelTest/DataModelRunTests/share/xAODTestWrite_jo.py +++ /dev/null @@ -1,134 +0,0 @@ -# -# File: share/xAODTestWrite_jo.py -# Author: snyder@bnl.gov -# Date: May 2014 -# Purpose: Test writing xAOD objects. -# - -## basic job configuration (for generator) -import AthenaCommon.AtlasUnixGeneratorJob - -## get a handle to the default top-level algorithm sequence -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() - -## get a handle to the ServiceManager -from AthenaCommon.AppMgr import ServiceMgr as svcMgr - -## get a handle to the ApplicationManager -from AthenaCommon.AppMgr import theApp - -#-------------------------------------------------------------- -# Load POOL support -#-------------------------------------------------------------- -import AthenaPoolCnvSvc.WriteAthenaPool - -include ('DataModelRunTests/loadWriteDicts.py') - - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- -theApp.EvtMax = 20 - - -#-------------------------------------------------------------- -# Set up the algorithm. -#-------------------------------------------------------------- - -from DataModelTestDataCommon.DataModelTestDataCommonConf import \ - DMTest__xAODTestWriteCVec, \ - DMTest__xAODTestWriteCInfo, \ - DMTest__xAODTestDecor, \ - DMTest__MetaWriterAlg, \ - DMTest__xAODTestWriteFwdLink1, \ - DMTest__xAODTestWriteFwdLink2 -from DataModelTestDataWrite.DataModelTestDataWriteConf import \ - DMTest__xAODTestWriteHVec, \ - DMTest__xAODTestWriteCView, \ - DMTest__xAODTestWriteCVecConst, \ - DMTest__xAODTestWrite, \ - DMTest__xAODTestWriteSymlinks -topSequence += DMTest__xAODTestWriteCVec ("xAODTestWriteCVec") -topSequence += DMTest__xAODTestWriteHVec ("xAODTestWriteHVec") -topSequence += DMTest__xAODTestWriteCView ("xAODTestWriteCView") -topSequence += DMTest__xAODTestWriteCInfo ("xAODTestWriteCInfo") -topSequence += DMTest__xAODTestWrite ("xAODTestWrite") -topSequence += DMTest__xAODTestWriteCVecConst ("xAODTestWriteCVecConst") -topSequence += DMTest__xAODTestDecor ("xAODTestDecor") -topSequence += DMTest__xAODTestWriteSymlinks ("xAODTestWriteSymlinks") -topSequence += DMTest__xAODTestWriteFwdLink1 ("xAODTestWriteFwdLink1") -topSequence += DMTest__xAODTestWriteFwdLink2 ("xAODTestWriteFwdLink2") -topSequence += DMTest__MetaWriterAlg ("MetaWriterAlg") - - -#-------------------------------------------------------------- -# Output options -#-------------------------------------------------------------- - -# ItemList: -include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" ) -fullItemList+=["DMTest::CVec#cvec"] -fullItemList+=["DMTest::CAuxContainer#cvecAux.-dVar2.-dtest"] -fullItemList+=["DMTest::CVecWithData#cvecWD"] -fullItemList+=["DMTest::CView#cview"] -fullItemList+=["DMTest::CAuxContainer#cvecWDAux."] -fullItemList+=["DMTest::GVec#gvec"] -fullItemList+=["DMTest::GAuxContainer#gvecAux."] -fullItemList+=["DMTest::CVec#ctrig"] -fullItemList+=["DMTest::CTrigAuxContainer#ctrigAux."] -fullItemList+=["DMTest::C#cinfo"] -fullItemList+=["DMTest::CInfoAuxContainer#cinfoAux."] -fullItemList+=["DMTest::HVec#hvec"] -fullItemList+=["DMTest::HAuxContainer#hvecAux."] -fullItemList+=["DMTest::HView#hview"] -fullItemList+=["DMTest::S2#S2"] -fullItemList+=["DMTest::CVec#CVecFwdLink"] -fullItemList+=["DMTest::CAuxContainer#CVecFwdLinkAux."] - -fullItemList+=["xAOD::EventInfo#EventInfo"] -fullItemList+=["xAOD::EventAuxInfo#EventInfoAux."] - -# Stream's output file -from OutputStreamAthenaPool.MultipleStreamManager import MSMgr -Stream1_Augmented = MSMgr.NewPoolStream ('Stream1', 'xaoddata.root', asAlg=True, noTag=True) -Stream1 = Stream1_Augmented.GetEventStream() -Stream1.WritingTool.SubLevelBranchName = '<key>' -# List of DO's to write out -Stream1.ItemList += fullItemList -Stream1.MetadataItemList += [ 'DMTest::S1#MetaS1', - 'DMTest::C#MetaC', - 'DMTest::CInfoAuxContainer#MetaCAux.' ] -ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += ["DEFAULT_SPLITLEVEL='1'"] - -from xAODEventFormatCnv.xAODEventFormatCnvConf import xAODMaker__EventFormatStreamHelperTool -for tool in Stream1.HelperTools: - if isinstance(tool, xAODMaker__EventFormatStreamHelperTool): - tool.TypeNames += [ - 'DataVector<DMTest::C_v1>', - 'DMTest::CVecWithData_v1', - 'DMTest::CAuxContainer_v1', - 'DMTest::CTrigAuxContainer_v1', - 'ViewVector<DataVector<DMTest::C_v1,DataModel_detail::NoBase> >', - 'DMTest::C_v1', - 'DMTest::CInfoAuxContainer_v1', - 'DataVector<DMTest::G_v1>', - 'DMTest::GAuxContainer_v1', - 'DMTest::G_v1', - 'DMTest::H_v1', - 'DataVector<DMTest::H_v1>', - 'ViewVector<DataVector<DMTest::H_v1,DataModel_detail::NoBase> >', - 'DMTest::HAuxContainer_v1', - ] - break - - -# Increment LBN every two events. -from McEventSelector import McEventSelectorConf -svcMgr+=McEventSelectorConf.McEventSelector('EventSelector',EventsPerLB=2) - - -# Avoid races when running tests in parallel. -FILECATALOG = 'xAODTestWrite_catalog.xml' - -include ('DataModelRunTests/commonTrailer.py') diff --git a/Control/DataModelTest/DataModelRunTests/test/AllocTestReadWithAlloc.py b/Control/DataModelTest/DataModelRunTests/test/AllocTestReadWithAlloc.py new file mode 100755 index 0000000000000000000000000000000000000000..7f30fa00439a533386ed4c8ddff0e96d941cfeeb --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/AllocTestReadWithAlloc.py @@ -0,0 +1,40 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/AllocTestReadWithAlloc.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Nov 2022 +# Purpose: Testing an xAOD object with a non-standard memory allocator. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def AllocTestReadWithAllocCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + acc.addEventAlgo (DMTest.AllocTestReadWithAlloc ('AllocTestReadWithAlloc')) + + return acc + + +flags = DataModelTestFlags (infile = 'xxx.root') +flags.fillFromArgs() +flags.lock() + +import os +fname = os.path.splitext (flags.Input.Files[0])[0] + +cfg = DataModelTestCfg (flags, 'AllocTestReadWithAlloc' + fname, loadReadDicts = True) +cfg.merge (AllocTestReadWithAllocCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/AllocTestReadWithoutAlloc.py b/Control/DataModelTest/DataModelRunTests/test/AllocTestReadWithoutAlloc.py new file mode 100755 index 0000000000000000000000000000000000000000..c3f296d9e3a1b1fdd2d4f802803a0921514ef1d7 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/AllocTestReadWithoutAlloc.py @@ -0,0 +1,40 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/AllocTestReadWithoutAlloc.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Nov 2022 +# Purpose: Testing an xAOD object with a non-standard memory allocator. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def AllocTestReadWithoutAllocCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + acc.addEventAlgo (DMTest.AllocTestReadWithoutAlloc ('AllocTestReadWithoutAlloc')) + + return acc + + +flags = DataModelTestFlags (infile = 'xxx.root') +flags.fillFromArgs() +flags.lock() + +import os +fname = os.path.splitext (flags.Input.Files[0])[0] + +cfg = DataModelTestCfg (flags, 'AllocTestReadWithoutAlloc' + fname, loadWriteDicts = True) +cfg.merge (AllocTestReadWithoutAllocCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/AllocTestWriteWithAlloc.py b/Control/DataModelTest/DataModelRunTests/test/AllocTestWriteWithAlloc.py new file mode 100755 index 0000000000000000000000000000000000000000..8fa721f85a7217db03352ad587d34a1655a23ea9 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/AllocTestWriteWithAlloc.py @@ -0,0 +1,48 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/AllocTestWriteWithAlloc.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Nov 2022 +# Purpose: Testing an xAOD object with a non-standard memory allocator. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def AllocTestWriteWithAlloc (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + acc.addEventAlgo (DMTest.AllocTestWriteWithAlloc ('AllocTestWriteWithAlloc')) + + itemList = [ 'DMTest::AllocTestContainer#AllocTest', + 'DMTest::AllocTestAuxContainer#AllocTestAux.', + 'xAOD::EventInfo#EventInfo', + 'xAOD::EventAuxInfo#EventInfoAux.' ] + + typeNames = [ 'DataVector<DMTest::AllocTest_v1>', + 'DMTest::AllocTest_v1', + 'DMTest::AllocTestAuxContainer_v1' ] + + acc.merge (TestOutputCfg (flags, 'Stream1', itemList, typeNames)) + + return acc + + +flags = DataModelTestFlags (Stream1 = 'alloctestWithAlloc.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'AllocTestWriteWithAlloc', loadReadDicts = True) +cfg.merge (AllocTestWriteWithAlloc (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/AllocTestWriteWithoutAlloc.py b/Control/DataModelTest/DataModelRunTests/test/AllocTestWriteWithoutAlloc.py new file mode 100755 index 0000000000000000000000000000000000000000..287e5b6af96562bdbf5b0e02c255d7cb52cd64e3 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/AllocTestWriteWithoutAlloc.py @@ -0,0 +1,48 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/AllocTestWriteWithoutAlloc.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Nov 2022 +# Purpose: Testing an xAOD object with a non-standard memory allocator. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def AllocTestWriteWithoutAlloc (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + acc.addEventAlgo (DMTest.AllocTestWriteWithoutAlloc ('AllocTestWriteWithoutAlloc')) + + itemList = [ 'DMTest::AllocTestContainer#AllocTest', + 'DMTest::AllocTestAuxContainer#AllocTestAux.', + 'xAOD::EventInfo#EventInfo', + 'xAOD::EventAuxInfo#EventInfoAux.' ] + + typeNames = [ 'DataVector<DMTest::AllocTest_v1>', + 'DMTest::AllocTest_v1', + 'DMTest::AllocTestAuxContainer_v1' ] + + acc.merge (TestOutputCfg (flags, 'Stream1', itemList, typeNames)) + + return acc + + +flags = DataModelTestFlags (Stream1 = 'alloctestWithoutAlloc.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'AllocTestWriteWithoutAlloc', loadWriteDicts = True) +cfg.merge (AllocTestWriteWithoutAlloc (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/ByteStreamTestRead.py b/Control/DataModelTest/DataModelRunTests/test/ByteStreamTestRead.py new file mode 100755 index 0000000000000000000000000000000000000000..24d8564515223ca9898bfdbecfa7a8b111726171 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/ByteStreamTestRead.py @@ -0,0 +1,53 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/ByteStreamTestRead.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Mar 2016 +# Purpose: Test reading bytestream data. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def ByteStreamTestReadCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + acc.addEventAlgo (DMTest.HLTResultReader + ("HLTResultReader", + Nav = CompFactory.HLT.Navigation (ClassesToPayload = [], + ClassesToPreregister = []))) + + acc.addEventAlgo (DMTest.xAODTestReadCVec ('xAODTestReadCVec', + CVecKey = 'HLT_DMTest__CVec_cvec')) + acc.addEventAlgo (DMTest.xAODTestReadCView ('xAODTestReadCView', + CViewKey = 'HLT_DMTest__CView_cview')) + acc.addEventAlgo (DMTest.xAODTestReadHVec ('xAODTestReadHVec', + HVecKey = 'HLT_DMTest__HVec_hvec', + HViewKey = 'HLT_DMTest__HView_hview')) + acc.addEventAlgo (DMTest.xAODTestReadCVec ('xAODTestReadCVec2', + CVecKey = 'HLT_DMTest__CVec_cvec2')) + + return acc + + +flags = DataModelTestFlags() +flags.Input.Files = [ 'test.bs' ] +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'ByteStreamTestRead', loadReadDicts = True) + +from ByteStreamCnvSvc.ByteStreamConfig import ByteStreamReadCfg +cfg.merge (ByteStreamReadCfg (flags, ['HLT::HLTResult/HLTResult_HLT'])) + +cfg.merge (ByteStreamTestReadCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) diff --git a/Control/DataModelTest/DataModelRunTests/test/ByteStreamTestWrite.py b/Control/DataModelTest/DataModelRunTests/test/ByteStreamTestWrite.py new file mode 100755 index 0000000000000000000000000000000000000000..d14444ae2fbfd93b301884c09517d3bc5305ca3d --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/ByteStreamTestWrite.py @@ -0,0 +1,112 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/ByteStreamTestWrite.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Mar 2016 +# Purpose: Test writing objects to bytestream. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def ByteStreamTestWriteCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + acc.addEventAlgo (DMTest.DummyDecisionWriter ("DummyDecisionWriter", + DecisionKey = 'xTrigDecision')) + acc.addEventAlgo (DMTest.xAODTestWriteCVec ("xAODTestWriteCVec", + CVecKey = 'HLT_DMTest__CVec_cvec')) + acc.addEventAlgo (DMTest.xAODTestWriteCView ("xAODTestWriteCView", + CVecKey = 'HLT_DMTest__CVec_cvec', + CViewKey = 'HLT_DMTest__CView_cview')) + acc.addEventAlgo (DMTest.xAODTestWriteHVec ("xAODTestWriteHVec", + HVecKey = 'HLT_DMTest__HVec_hvec', + HViewKey = 'HLT_DMTest__HView_hview')) + acc.addEventAlgo (DMTest.xAODTestDecor ("xAODTestDecor", + ReadPrefix = 'HLT_DMTest__CVec_', + DoCInfo = False, + DoCTrig = False)) + + # Making sure that no dyn vars are selected by default. + acc.addEventAlgo (DMTest.xAODTestWriteCVec ("xAODTestWriteCVec2", + CVecKey = 'HLT_DMTest__CVec_cvec2')) + + bswrite = [ 'DMTest::CVec#cvec.-dVar2.-dtest', + 'DMTest::CView#cview', + 'DMTest::HVec#hvec', + 'DMTest::HView#hview', + 'DMTest::CVec#cvec2' ] + acc.addEventAlgo (DMTest.HLTResultWriter + ("HLTResultWriter", + Nav = CompFactory.HLT.Navigation (ClassesToPayload = bswrite, + ClassesToPreregister = bswrite))) + + return acc + + +flags = DataModelTestFlags() +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'ByteStreamTestWrite', loadWriteDicts = True) + +def WriteBSCfg (flags, itemList): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + event_storage_output = CompFactory.ByteStreamEventStorageOutputSvc( + OutputDirectory="./", + AppName="Athena", + RunNumber=0, + StreamType = 'EventStorage', + StreamName = 'StreamBSFileOutput', + SimpleFileName = 'test.bs', + ) + acc.addService (event_storage_output) + + bytestream_conversion = CompFactory.ByteStreamCnvSvc( + name = 'ByteStreamCnvSvc', + ByteStreamOutputSvcList = [event_storage_output.getName()], + ) + acc.addService(bytestream_conversion) + + event_info_input = ('xAOD::EventInfo','StoreGateSvc+EventInfo') + + output_stream = CompFactory.AthenaOutputStream( + name = 'BSOutputStreamAlg', + EvtConversionSvc = bytestream_conversion.name, + OutputFile = 'ByteStreamEventStorageOutputSvc', + ItemList = itemList, + ExtraInputs = [event_info_input] + ) + acc.addEventAlgo (output_stream, primary=True) + + acc.addService (CompFactory.StoreGateSvc ('MetaDataStore')) + + return acc + +cfg.merge (ByteStreamTestWriteCfg (flags)) +cfg.merge (WriteBSCfg (flags, ['HLT::HLTResult#HLTResult_HLT'])) + + +import os +try: + os.remove('test.bs') +except OSError: + pass +import os +try: + os.remove('test.bs.writing') +except OSError: + pass + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) diff --git a/Control/DataModelTest/DataModelRunTests/test/CondReadWrite.py b/Control/DataModelTest/DataModelRunTests/test/CondReadWrite.py new file mode 100755 index 0000000000000000000000000000000000000000..63f20da9400128e4ad020197533811ca928767cf --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/CondReadWrite.py @@ -0,0 +1,74 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/CondReadWrite.py +# Author: Frank Winklmeier, scott snyder +# Date: Nov 2023, from old config version of Aug 2018 +# Purpose: Test reading of conditions that are written during runtime +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def CondReadWriteCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + ## Setup writer alg that writes new conditions on given LB + cmds = { 6 : "dmtest_condwriter.py --rs=0 --ls=8 'sqlite://;schema=condtest_rw.db;dbname=OFLP200' AttrList_noTag 42" } + + acc.addEventAlgo (DMTest.CondWriterExtAlg( Commands = cmds )) + acc.addEventAlgo (DMTest.CondReaderAlg( S2Key = "")) + + acc.addCondAlgo (DMTest.CondAlg1()) + + return acc + + + +flags = DataModelTestFlags() +flags.fillFromArgs() +if flags.Concurrency.NumThreads >= 1: + flags.Scheduler.ShowDataDeps = True +flags.lock() + + +## Cleanup previous file +import os +if os.path.isfile("condtest_rw.db"): + os.remove("condtest_rw.db") + +## Write some initial IOVs and values +os.system("dmtest_condwriter.py --r=0 --ls=0 --lu=4 'sqlite://;schema=condtest_rw.db;dbname=OFLP200' AttrList_noTag 10") +os.system("dmtest_condwriter.py --rs=0 --ls=5 'sqlite://;schema=condtest_rw.db;dbname=OFLP200' AttrList_noTag 20") + + +cfg = DataModelTestCfg (flags, 'CondReadWrite', + # Increment LBN every two events. + EventsPerLB= 2) + +# This is how we currently configure the IOV(Db)Svc in the HLT +from AthenaConfiguration.ComponentFactory import CompFactory +cfg.addService (CompFactory.IOVSvc (updateInterval = 'RUN', + forceResetAtBeginRun = False)) + +from IOVDbSvc.IOVDbSvcConfig import addFolders +cfg.merge (addFolders (flags, '/DMTest/TestAttrList', 'condtest_rw.db', + tag = 'AttrList_noTag', + className = 'AthenaAttributeList', + extensible = True)) +iovdbsvc = cfg.getService ('IOVDbSvc') +iovdbsvc.CacheAlign = 0 # VERY IMPORTANT to get unique queries for folder updates (see Savannah #81092) +iovdbsvc.CacheRun = 0 +iovdbsvc.CacheTime = 0 + +cfg.merge (CondReadWriteCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) diff --git a/Control/DataModelTest/DataModelRunTests/test/CondReader.py b/Control/DataModelTest/DataModelRunTests/test/CondReader.py new file mode 100755 index 0000000000000000000000000000000000000000..cace3977212844ec66a6b00357aa786a75ab32ca --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/CondReader.py @@ -0,0 +1,69 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/CondReader.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Jul 2017 +# Purpose: Test conditions handling. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def CondReaderCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + #from AthenaPoolCnvSvc.PoolCommonConfig import AthenaPoolCnvSvcCfg + #acc.merge (AthenaPoolCnvSvcCfg (flags)) + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + acc.addEventAlgo (DMTest.CondReaderAlg (RLTestKey = '/DMTest/RLTest', + TSTestKey = '/DMTest/TSTest', + S3Key = 'scond3')) + acc.addCondAlgo (DMTest.CondAlg1()) + acc.addCondAlgo (DMTest.CondAlg2()) + + return acc + + + +flags = DataModelTestFlags() +flags.Exec.MaxEvents = 30 +# Configure conditions DB output to local sqlite file. +flags.IOVDb.DBConnection = 'sqlite://;schema=condtest.db;dbname=OFLP200' +flags.fillFromArgs() +if flags.Concurrency.NumThreads >= 1: + flags.Scheduler.ShowDataDeps = True +flags.Input.isMC = True +flags.lock() + +cfg = DataModelTestCfg (flags, 'CondReader', loadReadDicts = True, + # Increment LBN every three events, TS each event. + EventsPerLB = 3, + TimeStampInterval = 1, + readCatalog = 'CondWriter_catalog.xml') + +from IOVDbSvc.IOVDbSvcConfig import addFolders +cfg.merge (addFolders (flags, '/DMTest/TestAttrList', 'condtest.db', + tag = 'AttrList_noTag', + className = 'AthenaAttributeList')) +cfg.merge (addFolders (flags, '/DMTest/S2', 'condtest.db', + tag = 'S2_noTag', + className = 'DMTest::S2')) +cfg.merge (addFolders (flags, '/DMTest/RLTest', 'condtest.db', + tag = 'RL_noTag', + className = 'AthenaAttributeList')) +cfg.merge (addFolders (flags, '/DMTest/TSTest', 'condtest.db', + tag = 'TS_noTag', + className = 'AthenaAttributeList')) + +cfg.merge (CondReaderCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) diff --git a/Control/DataModelTest/DataModelRunTests/test/CondWriter.py b/Control/DataModelTest/DataModelRunTests/test/CondWriter.py new file mode 100755 index 0000000000000000000000000000000000000000..d8634a77638da13a381430be5ce141bbb00d486a --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/CondWriter.py @@ -0,0 +1,83 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/CondWriter.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Jul 2017 +# Purpose: Write some conditions objects for testing purposes. +# + +# +# For purposes of this test, we assume that timestamp (in sec) matches +# the event number (starting with 0) and that LBN counts every 3 events. +# +# We write four folders: +# /DMTest/TestAttrList (runlbn): +# Attribute list. New IOV for every LBN. xint=(lbn+1)*10 +# /DMTest/S2 (runlbn): +# DMTest::S2. New IOV for every 2 LBNs. payload: lbn*50 +# /DMTest/RLTest (runlbn): +# Attribute list, defined as below. +# /DMTest/TSTest (timestamp): +# Attribute list, defined as below. + +# lbn: 0..1..2..3..4..5..6..7..8..9.. +# +# lbn iov: 1..2.....3..4........5..6..7.. +# ts iov: 1..2..34..5......6.7..8...9... * 100 +# +# event: 11111111112222222222 +# (ts) 012345678901234567890123456789 + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def CondWriterCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaPoolCnvSvc.PoolCommonConfig import AthenaPoolCnvSvcCfg + acc.merge (AthenaPoolCnvSvcCfg (flags)) + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + condstream = CompFactory.AthenaOutputStreamTool ('CondStream', + OutputFile = 'condtest.pool.root') + + acc.addEventAlgo (DMTest.CondWriterAlg (Streamer = condstream)) + + return acc + + + +flags = DataModelTestFlags() +flags.Exec.MaxEvents = 30 +# Configure conditions DB output to local sqlite file. +flags.IOVDb.DBConnection = 'sqlite://;schema=condtest.db;dbname=OFLP200' +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'CondWriter', loadWriteDicts = True) + +from IOVDbSvc.IOVDbSvcConfig import IOVDbSvcCfg +cfg.merge (IOVDbSvcCfg (flags)) + +cfg.merge (CondWriterCfg (flags)) + +import os +try: + os.remove('condtest.db') +except OSError: + pass +try: + os.remove('condtest.pool.root') +except OSError: + pass + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/DataModelTestRead.py b/Control/DataModelTest/DataModelRunTests/test/DataModelTestRead.py new file mode 100755 index 0000000000000000000000000000000000000000..379cfa1cc989efb2dfadb6d82c3064d5e7582e5d --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/DataModelTestRead.py @@ -0,0 +1,47 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/DataModelTestRead.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Nov 2005 +# Purpose: Test DataVector backwards compatibility. +# We read old-style DataVectors as new-style, +# then write them out again new-style. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def DataModelTestReadCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + acc.addEventAlgo (CompFactory.DMTest.DMTestRead ('DMTestRead')) + + itemList = ['DataVector<DMTest::B>#bvec', + 'DataVector<DMTest::B>#b3', + 'DMTest::BDer#bder', + 'DataVector<DMTest::D>#dvec', + 'DMTest::DDer#dder', + 'DMTest::ELVec#elvec', + 'DMTest::ELVec#elv_remap'] + acc.merge (TestOutputCfg (flags, 'Stream1', itemList)) + + return acc + + +flags = DataModelTestFlags (infile = 'SimplePoolFile.root', + Stream1 = 'SimplePoolFile2.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'DataModelTestRead', loadReadDicts = True) +cfg.merge (DataModelTestReadCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/DataModelTestRead2.py b/Control/DataModelTest/DataModelRunTests/test/DataModelTestRead2.py new file mode 100755 index 0000000000000000000000000000000000000000..f32db2d2cb58b48d18e884eb5476c225e0fe05f1 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/DataModelTestRead2.py @@ -0,0 +1,36 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/DataModelTestRead2.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Nov 2005 +# Purpose: Test DataVector backwards compatibility. +# Read back new-style DataVectors. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def DataModelTestRead2Cfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + acc.addEventAlgo (CompFactory.DMTest.DMTestRead ('DMTestRead')) + + return acc + + +flags = DataModelTestFlags (infile = 'SimplePoolFile2.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'DataModelTestRead2', loadReadDicts = True) +cfg.merge (DataModelTestRead2Cfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/DataModelTestWrite.py b/Control/DataModelTest/DataModelRunTests/test/DataModelTestWrite.py new file mode 100755 index 0000000000000000000000000000000000000000..3679d8ae1a00cda5898f4b86401187b28f8294a1 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/DataModelTestWrite.py @@ -0,0 +1,44 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/DataModelTestWrite.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Nov 2005 +# Purpose: Test writing (old-style) DataVector objects. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def DataModelTestWriteCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + acc.addEventAlgo (CompFactory.DMTest.DMTestWrite ('DMTestWrite')) + + itemList = ['DataVector<DMTest::B>#bvec', + 'DataVector<DMTest::B>#b3', + 'DMTest::BDer#bder', + 'DataVector<DMTest::D>#dvec', + 'DMTest::DDer#dder', + 'DMTest::ELVec#elvec', + 'DMTest::ELVec#elv_remap'] + acc.merge (TestOutputCfg (flags, 'Stream1', itemList)) + + return acc + + +flags = DataModelTestFlags (Stream1 = 'SimplePoolFile.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'DataModelTestWrite', loadWriteDicts = True) +cfg.merge (DataModelTestWriteCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/share/RootAllocTestReadAllocWithAlloc_t.py b/Control/DataModelTest/DataModelRunTests/test/RootAllocTestReadAllocWithAlloc_t.py similarity index 100% rename from Control/DataModelTest/DataModelRunTests/share/RootAllocTestReadAllocWithAlloc_t.py rename to Control/DataModelTest/DataModelRunTests/test/RootAllocTestReadAllocWithAlloc_t.py diff --git a/Control/DataModelTest/DataModelRunTests/share/RootAllocTestReadAllocWithoutAlloc_t.py b/Control/DataModelTest/DataModelRunTests/test/RootAllocTestReadAllocWithoutAlloc_t.py similarity index 100% rename from Control/DataModelTest/DataModelRunTests/share/RootAllocTestReadAllocWithoutAlloc_t.py rename to Control/DataModelTest/DataModelRunTests/test/RootAllocTestReadAllocWithoutAlloc_t.py diff --git a/Control/DataModelTest/DataModelRunTests/share/RootAllocTestReadNoAllocWithAlloc_t.py b/Control/DataModelTest/DataModelRunTests/test/RootAllocTestReadNoAllocWithAlloc_t.py similarity index 100% rename from Control/DataModelTest/DataModelRunTests/share/RootAllocTestReadNoAllocWithAlloc_t.py rename to Control/DataModelTest/DataModelRunTests/test/RootAllocTestReadNoAllocWithAlloc_t.py diff --git a/Control/DataModelTest/DataModelRunTests/share/RootAllocTestReadNoAllocWithoutAlloc_t.py b/Control/DataModelTest/DataModelRunTests/test/RootAllocTestReadNoAllocWithoutAlloc_t.py similarity index 100% rename from Control/DataModelTest/DataModelRunTests/share/RootAllocTestReadNoAllocWithoutAlloc_t.py rename to Control/DataModelTest/DataModelRunTests/test/RootAllocTestReadNoAllocWithoutAlloc_t.py diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODRootTestRead2_t.py b/Control/DataModelTest/DataModelRunTests/test/xAODRootTestRead2_t.py similarity index 100% rename from Control/DataModelTest/DataModelRunTests/share/xAODRootTestRead2_t.py rename to Control/DataModelTest/DataModelRunTests/test/xAODRootTestRead2_t.py diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODRootTestRead_t.py b/Control/DataModelTest/DataModelRunTests/test/xAODRootTestRead_t.py similarity index 100% rename from Control/DataModelTest/DataModelRunTests/share/xAODRootTestRead_t.py rename to Control/DataModelTest/DataModelRunTests/test/xAODRootTestRead_t.py diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestDecorHandle1.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestDecorHandle1.py new file mode 100755 index 0000000000000000000000000000000000000000..fb1a8263e891c5b19f51e84b2af774920e17b615 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestDecorHandle1.py @@ -0,0 +1,49 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestDecorHandle1.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Apr 2017 +# Purpose: Test decoration handles and hive. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestDecorHandle1Cfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + acc.addEventAlgo (DMTest.xAODTestWriteCVec ("xAODTestWriteCVec")) + acc.addEventAlgo (DMTest.xAODTestWriteCInfo ("xAODTestWriteCInfo")) + acc.addEventAlgo (DMTest.xAODTestWrite ("xAODTestWrite")) + acc.addEventAlgo (DMTest.xAODTestDecor ("xAODTestDecor")) + acc.addEventAlgo (DMTest.xAODTestReadDecor ("xAODTestReadDecor")) + + acc.addEventAlgo (DMTest.xAODTestShallowCopy ("xAODTestShallowCopy", + CVecWDReadKey = '', + CTrigReadKey = '')) + acc.addEventAlgo (DMTest.xAODTestReadDecor ("xAODTestReadDecorSCopy", + ReadPrefix = "scopy_")) + + return acc + + +flags = DataModelTestFlags() +flags.fillFromArgs() +if flags.Concurrency.NumThreads >= 1: + flags.Scheduler.ShowDataDeps = True +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODDecorHandle1') +cfg.merge (xAODTestDecorHandle1Cfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestDecorHandle2.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestDecorHandle2.py new file mode 100755 index 0000000000000000000000000000000000000000..01a6bee4995bb0ddf122962ea9b68ab62ff6d4d6 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestDecorHandle2.py @@ -0,0 +1,39 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestDecorHandle2.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Apr 2017 +# Purpose: Test decoration handles and hive. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestDecorHandle2Cfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + acc.addEventAlgo (DMTest.xAODTestReadDecor ("xAODTestReadDecor", DecorName="dInt1")) + + return acc + + +flags = DataModelTestFlags ('xaoddata.root') +flags.fillFromArgs() +if flags.Concurrency.NumThreads >= 1: + flags.Scheduler.ShowDataDeps = True +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODDecorHandle2', loadReadDicts = True) +cfg.merge (xAODTestDecorHandle2Cfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestRead.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestRead.py new file mode 100755 index 0000000000000000000000000000000000000000..637964ab18a718dd8c7107dd52749ef7b0af8432 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestRead.py @@ -0,0 +1,112 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestRead.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of May 2014 +# Purpose: Test reading xAOD object data. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestReadCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + acc.addEventAlgo (DMTest.xAODTestReadCVec ('xAODTestReadCVec', + WriteKey = 'copy_cvec')) + acc.addEventAlgo (DMTest.xAODTestReadCInfo ('xAODTestReadCInfo', + WriteKey = 'copy_cinfo')) + acc.addEventAlgo (DMTest.xAODTestRead ('xAODTestRead', + CTrigWriteKey = 'copy_ctrig', + GVecWriteKey = 'copy_gvec', + CVecWDWriteKey = 'copy_cvecWD')) + acc.addEventAlgo (DMTest.xAODTestReadCView ('xAODTestReadCView', + WriteKey = 'copy_cview')) + acc.addEventAlgo (DMTest.xAODTestReadHVec ('xAODTestReadHVec', + VecWriteKey = 'copy_hvec', + ViewWriteKey = 'copy_hview')) + + acc.addEventAlgo (DMTest.xAODTestDecor ('AuxDataTestDecor1', + DecorName = 'dInt100', + Offset = 100)) + + acc.addEventAlgo (DMTest.xAODTestShallowCopy ('xAODTestShallowCopy')) + acc.addEventAlgo (DMTest.xAODTestShallowCopyHVec ('xAODTestShallowCopyHVec')) + + acc.addEventAlgo (DMTest.xAODTestDecor ('AuxDataTestDecor1_scopy', + ReadPrefix = 'scopy_', + DecorName = 'dInt150', + Offset = 300)) + + acc.addEventAlgo (DMTest.xAODTestReadCVec ('xAODTestReadFwdLink', + CVecKey = 'CVecFwdLink')) + + itemList = ['DMTest::CVec#cvec', + 'xAOD::AuxContainerBase!#cvecAux.', + 'DMTest::CVecWithData#cvecWD', + 'DMTest::CView#cview', + 'DMTest::CAuxContainer#cvecWDAux.', + 'DMTest::GVec#gvec', + 'DMTest::GAuxContainer#gvecAux.', + 'DMTest::CVec#ctrig', + 'DMTest::CTrigAuxContainer#ctrigAux.', + 'DMTest::C#cinfo', + 'DMTest::CInfoAuxContainer#cinfoAux.', + 'DMTest::HVec#hvec', + 'DMTest::HAuxContainer#hvecAux.', + 'DMTest::HView#hview', + + 'DMTest::CVec#copy_cvec', + 'DMTest::CAuxContainer#copy_cvecAux.', + 'DMTest::CVecWithData#copy_cvecWD', + 'DMTest::CView#copy_cview', + 'DMTest::CAuxContainer#copy_cvecWDAux.', + 'DMTest::GVec#copy_gvec', + 'DMTest::GAuxContainer#copy_gvecAux.', + 'DMTest::CVec#copy_ctrig', + 'DMTest::CTrigAuxContainer#copy_ctrigAux.', + 'DMTest::C#copy_cinfo', + 'DMTest::CInfoAuxContainer#copy_cinfoAux.', + 'DMTest::HVec#copy_hvec', + 'DMTest::HAuxContainer#copy_hvecAux.', + 'DMTest::HView#copy_hview', + + 'DMTest::CVec#scopy_cvec', + 'xAOD::ShallowAuxContainer#scopy_cvecAux.', + 'DMTest::CVecWithData#scopy_cvecWD', + 'xAOD::ShallowAuxContainer#scopy_cvecWDAux.', + 'DMTest::CVec#scopy_ctrig', + 'xAOD::ShallowAuxContainer#scopy_ctrigAux.', + 'DMTest::C#scopy_cinfo', + 'xAOD::ShallowAuxInfo#scopy_cinfoAux.', + 'DMTest::HVec#scopy_hvec', + 'xAOD::ShallowAuxContainer#scopy_hvecAux.' ] + typeNames = [ 'DataVector<DMTest::C_v1>', + 'DMTest::CAuxContainer_v1', + 'DMTest::CVecWithData_v1', + 'DMTest::CTrigAuxContainer_v1', + 'DMTest::C_v1', + 'DMTest::CInfoAuxContainer_v1' ] + acc.merge (TestOutputCfg (flags, 'Stream1', itemList, typeNames )) + + return acc + + +flags = DataModelTestFlags (infile = 'xaoddata.root', + Stream1 = 'xaoddata2.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODTestRead', loadReadDicts = True) +cfg.merge (xAODTestReadCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestRead2.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestRead2.py new file mode 100755 index 0000000000000000000000000000000000000000..cc970fadbf9aeaecbf92286c8080c6d13705bf22 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestRead2.py @@ -0,0 +1,73 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestRead2.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of May 2014 +# Purpose: Test reading xAOD objects. +# Read output of xAODTestRead.py. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestRead2Cfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + acc.addEventAlgo (DMTest.xAODTestReadCVec ("xAODTestReadCVec")) + acc.addEventAlgo (DMTest.xAODTestReadCInfo ("xAODTestCInfo")) + acc.addEventAlgo (DMTest.xAODTestRead ("xAODTestRead")) + acc.addEventAlgo (DMTest.xAODTestReadCView ('xAODTestReadCView')) + acc.addEventAlgo (DMTest.xAODTestReadHVec ("xAODTestReadHVec")) + acc.addEventAlgo (DMTest.xAODTestReadCVec ("xAODTestReadCVec_copy", + CVecKey = "copy_cvec")) + acc.addEventAlgo (DMTest.xAODTestReadCInfo ("xAODTestReadCInfo_copy", + CInfoKey = "copy_cinfo")) + acc.addEventAlgo (DMTest.xAODTestRead ("xAODTestRead_copy", + CTrigReadKey = 'copy_ctrig', + GVecReadKey = 'copy_gvec', + CVecWDReadKey = 'copy_cvecWD')) + acc.addEventAlgo (DMTest.xAODTestReadCView ("xAODTestReadCView_copy", + CViewKey = "copy_cview")) + acc.addEventAlgo (DMTest.xAODTestReadHVec ("xAODTestReadHVec_copy", + HVecKey = "copy_hvec", + HViewKey = "copy_hview")) + acc.addEventAlgo (DMTest.xAODTestReadCVec ("xAODTestReadCVec_scopy", + CVecKey = "scopy_cvec")) + acc.addEventAlgo (DMTest.xAODTestReadCInfo ("xAODTestReadCInfo_scopy", + CInfoKey = "scopy_cinfo")) + acc.addEventAlgo (DMTest.xAODTestRead ("xAODTestRead_scopy", + CTrigReadKey = 'scopy_ctrig', + GVecReadKey = '', + CVecWDReadKey = 'scopy_cvecWD')) + acc.addEventAlgo (DMTest.xAODTestReadHVec ("xAODTestReadHVec_scopy", + HVecKey = "scopy_hvec", + HViewKey = "")) + + itemList = [ 'DMTest::CVec#cvec', + 'xAOD::AuxContainerBase#cvecAux.' ] + typeNames = [ 'DataVector<DMTest::C_v1>', + 'DMTest::C_v1', + 'DMTest::CAuxContainer_v1' ] + acc.merge (TestOutputCfg (flags, 'Stream1', itemList, typeNames )) + + return acc + + +flags = DataModelTestFlags (infile = 'xaoddata2.root', + Stream1 = 'xaoddata2x.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODTestRead2', loadReadDicts = True) +cfg.merge (xAODTestRead2Cfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestRead3.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestRead3.py new file mode 100755 index 0000000000000000000000000000000000000000..95255898ce337fc10496c8339954670408ae94f0 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestRead3.py @@ -0,0 +1,55 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestRead3.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of May 2014 +# Purpose: Test reading objects with xAOD data. +# Read output of xAODTestTypelessRead_jo.py. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestRead3Cfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + acc.addEventAlgo (DMTest.xAODTestReadCVec ("xAODTestReadCVec")) + acc.addEventAlgo (DMTest.xAODTestReadCInfo ("xAODTestReadCInfo")) + acc.addEventAlgo (DMTest.xAODTestRead ("xAODTestRead", + GVecReadKey = '')) + acc.addEventAlgo (DMTest.xAODTestReadCView ('xAODTestReadCView')) + acc.addEventAlgo (DMTest.xAODTestReadHVec ("xAODTestReadHVec")) + acc.addEventAlgo (DMTest.xAODTestReadCVec ("xAODTestReadCVec_copy", + CVecKey = "copy_cvec")) + acc.addEventAlgo (DMTest.xAODTestReadCInfo ("xAODTestReadCInfo_copy", + CInfoKey = "copy_cinfo")) + acc.addEventAlgo (DMTest.xAODTestRead ("xAODTestRead_copy", + CTrigReadKey = 'copy_ctrig', + GVecReadKey = '', + CVecWDReadKey = 'copy_cvecWD')) + acc.addEventAlgo (DMTest.xAODTestReadCView ("xAODTestReadCView_copy", + CViewKey = "copy_cview")) + acc.addEventAlgo (DMTest.xAODTestReadHVec ("xAODTestReadHVec_copy", + HVecKey = "copy_hvec", + HViewKey = "copy_hview")) + + return acc + + +flags = DataModelTestFlags (infile = 'xaoddata3.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODTestRead3', loadReadDicts = True) +cfg.merge (xAODTestRead3Cfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestReadFilter.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestReadFilter.py new file mode 100755 index 0000000000000000000000000000000000000000..e4aa381290c28c048a25bd1f209a634dca4b68f9 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestReadFilter.py @@ -0,0 +1,56 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestRead3.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Sep 2016 +# Purpose: Test reading xAOD objects data with renaming on input. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestReadFilterCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + acc.addEventAlgo (DMTest.xAODTestFilterCVec ('xAODTestFilterCVec')) + acc.addEventAlgo (DMTest.xAODTestWriteCInfo ('xAODTestWriteCInfo', + Offset = 111)) + acc.addEventAlgo (DMTest.xAODTestDecor ('xAODTestDecor', + DoCVec = False, + DoCTrig = False)) + + from SGComps.AddressRemappingConfig import InputRenameCfg + acc.merge (InputRenameCfg ('DMTest::CVec', 'cvec', 'cvec_renamed')) + acc.merge (InputRenameCfg ('DMTest::CAuxContainer', + 'cvecAux.', 'cvec_renamedAux.')) + + itemList = [ 'DMTest::CVec#cvec', + 'xAOD::AuxContainerBase!#cvecAux.', + 'DMTest::C#cinfo', + 'DMTest::CInfoAuxContainer#cinfoAux.' ] + typeNames = [ 'DataVector<DMTest::C_v1>', + 'DMTest::CAuxContainer_v1', + 'DMTest::C_v1' ] + acc.merge (TestOutputCfg (flags, 'Stream1', itemList, typeNames )) + + return acc + + +flags = DataModelTestFlags (infile = 'xaoddata.root', + Stream1 = 'xaoddata_filt.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODTestReadFilter', loadReadDicts = True) +cfg.merge (xAODTestReadFilterCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestReadFilterRead.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestReadFilterRead.py new file mode 100755 index 0000000000000000000000000000000000000000..77d464a2e3ec524e743ee409c8219be41bd1474f --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestReadFilterRead.py @@ -0,0 +1,37 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestRead3.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Sep 2016 +# Purpose: Test reading xAOD objects data with remapping on input. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestReadFilterReadCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + acc.addEventAlgo (DMTest.xAODTestReadCVec ('xAODTestReadCVec')) + acc.addEventAlgo (DMTest.xAODTestReadCInfo ('xAODTestReadCInfo')) + + return acc + + +flags = DataModelTestFlags (infile = 'xaoddata_filt.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODTestReadFilterRead', loadReadDicts = True) +cfg.merge (xAODTestReadFilterReadCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestReadRename.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestReadRename.py new file mode 100755 index 0000000000000000000000000000000000000000..8ed22110f7c66692f1b88c7ff08d9539bdbfb7ef --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestReadRename.py @@ -0,0 +1,51 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestReadRename.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Aug 2016 +# Purpose: Test reading xAOD objects data with renaming on input. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestReadRenameCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + acc.addEventAlgo (DMTest.xAODTestReadCVec ('xAODTestReadCVec', + CVecKey = 'cvec_renamed')) + acc.addEventAlgo (DMTest.xAODTestReadDecor ('xAODTestReadDecor', + CVecName = 'cvec_renamed', + DecorName = 'dInt1_renamed')) + + from SGComps.AddressRemappingConfig import InputRenameCfg + acc.merge (InputRenameCfg ('DMTest::CVec', 'cvec', 'cvec_renamed')) + acc.merge (InputRenameCfg ('DMTest::CAuxContainer', + 'cvecAux.', 'cvec_renamedAux.')) + acc.merge (InputRenameCfg ('DMTest::CVec', 'cvec.dInt1', + 'cvec_renamed.dInt1_renamed')) + acc.merge (InputRenameCfg ('DMTest::C', 'cinfo.dInt1', + 'cinfo.dInt1_renamed')) + acc.merge (InputRenameCfg ('DMTest::C', 'cinfo.dInt1Base', + 'cinfo.dInt1_renamedBase')) + + return acc + + +flags = DataModelTestFlags (infile = 'xaoddata.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODTestReadRename', loadReadDicts = True) +cfg.merge (xAODTestReadRenameCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestReadThinned.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestReadThinned.py new file mode 100755 index 0000000000000000000000000000000000000000..e27054cf09e616cfdb1f59d20cde0803980d4e19 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestReadThinned.py @@ -0,0 +1,41 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestReadThinned.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Aug 2019 +# Purpose: Test thinning xAOD objects. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestReadThinnedCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + acc.addEventAlgo (DMTest.xAODTestReadCVec ('xAODTestReadCVec')) + acc.addEventAlgo (DMTest.xAODTestReadCLinks ('xAODTestReadCLinks')) + acc.addEventAlgo (DMTest.xAODTestReadCVec ('xAODTestReadCVec2', + CVecKey = 'cvec2', + Brief = True)) + + return acc + + +flags = DataModelTestFlags (infile = 'xaodthinned1.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODTestReadThinned', loadWriteDicts = True) +cfg.merge (xAODTestReadThinnedCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestSymlinks1.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestSymlinks1.py new file mode 100755 index 0000000000000000000000000000000000000000..cad3e51fc54fa4168b8c8582e47ed085b931b10c --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestSymlinks1.py @@ -0,0 +1,50 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestSymlinks1.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Apr 2017 +# Purpose: Test syminks and hive. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestSymlinks1Cfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + acc.addEventAlgo (DMTest.xAODTestWriteCVec ("xAODTestWriteCVec")) + acc.addEventAlgo (DMTest.xAODTestWriteCInfo ("xAODTestWriteCInfo")) + acc.addEventAlgo (DMTest.xAODTestWriteSymlinks ("xAODTestWriteSymlinks")) + acc.addEventAlgo (DMTest.xAODTestReadSymlink ("xAODTestReadSymlink", Key='cinfo')) + + writeCInfoTool = DMTest.xAODTestWriteCInfoTool ("xAODTestWriteCInfoTool", + CInfoKey='cinfo2') + readSymlinkTool = DMTest.xAODTestReadSymlinkTool ("xAODTestReadSymlinkTool", + Key='cinfo2') + acc.addEventAlgo (DMTest.xAODTestAlg ("xAODTestAlg", + Tools = [writeCInfoTool, + readSymlinkTool])) + + return acc + + +flags = DataModelTestFlags() +flags.fillFromArgs() +if flags.Concurrency.NumThreads >= 1: + flags.Scheduler.ShowDataDeps = True +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODSymlinks1') +cfg.merge (xAODTestSymlinks1Cfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestSymlinks2.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestSymlinks2.py new file mode 100755 index 0000000000000000000000000000000000000000..546191f33f23c144d2491b1dee280e8459cc9a57 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestSymlinks2.py @@ -0,0 +1,39 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestSymlinks2.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Apr 2017 +# Purpose: Test syminks and hive. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestSymlinks2Cfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + acc.addEventAlgo (DMTest.xAODTestReadSymlink ("xAODTestReadSymlink", Key='cinfo')) + + return acc + + +flags = DataModelTestFlags ('xaoddata.root') +flags.fillFromArgs() +if flags.Concurrency.NumThreads >= 1: + flags.Scheduler.ShowDataDeps = True +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODSymlinks2', loadReadDicts = True) +cfg.merge (xAODTestSymlinks2Cfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestTypelessRead.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestTypelessRead.py new file mode 100755 index 0000000000000000000000000000000000000000..3d0e11bd2abbf6c8202e857b60a2c7bcd41ede72 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestTypelessRead.py @@ -0,0 +1,71 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestTypelessRead.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of May 2014 +# Purpose: Test reading xAOD objects with aux data, w/o compile-time type info. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestTypelessReadCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + acc.addEventAlgo (DMTest.xAODTestTypelessRead ("xAODTestTypelessRead", + WritePrefix = "copy_")) + + itemList = [ 'DMTest::CVec#cvec', + 'DMTest::CAuxContainer#cvecAux.', + 'DMTest::CVecWithData#cvecWD', + 'DMTest::CView#cview', + 'DMTest::CAuxContainer#cvecWDAux.', + 'DMTest::CVec#ctrig', + 'DMTest::CTrigAuxContainer#ctrigAux.', + 'DMTest::C#cinfo', + 'DMTest::CInfoAuxContainer#cinfoAux.', + 'DMTest::HVec#hvec', + 'DMTest::HAuxContainer#hvecAux.', + 'DMTest::HView#hview', + 'DMTest::CVec#copy_cvec', + 'DMTest::CAuxContainer#copy_cvecAux.', + 'DMTest::CVecWithData#copy_cvecWD', + 'DMTest::CView#copy_cview', + 'DMTest::CAuxContainer#copy_cvecWDAux.', + 'DMTest::CVec#copy_ctrig', + 'DMTest::CTrigAuxContainer#copy_ctrigAux.', + 'DMTest::C#copy_cinfo', + 'DMTest::CInfoAuxContainer#copy_cinfoAux.', + 'DMTest::HVec#copy_hvec', + 'DMTest::HAuxContainer#copy_hvecAux.', + 'DMTest::HView#copy_hview' ] + typeNames = [ 'DataVector<DMTest::C_v1>', + 'DMTest::CVecWithData_v1', + 'DMTest::CAuxContainer_v1', + 'DMTest::CTrigAuxContainer_v1', + 'DMTest::C_v1', + 'DMTest::CInfoAuxContainer_v1' ] + + acc.merge (TestOutputCfg (flags, 'Stream1', itemList, typeNames )) + + return acc + + +flags = DataModelTestFlags (infile = 'xaoddata.root', + Stream1 = 'xaoddata3.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODTestTypelessRead', loadReadDicts = True) +cfg.merge (xAODTestTypelessReadCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestWrite.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestWrite.py new file mode 100755 index 0000000000000000000000000000000000000000..366b2bee36ec2e89daf1dc964eed807ce092b70f --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestWrite.py @@ -0,0 +1,85 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestWrite.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of May 2014 +# Purpose: Test writing xAOD objects. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestWriteCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + acc.addEventAlgo (DMTest.xAODTestWriteCVec ('xAODTestWriteCVec')) + acc.addEventAlgo (DMTest.xAODTestWriteHVec ('xAODTestWriteHVec')) + acc.addEventAlgo (DMTest.xAODTestWriteCView ('xAODTestWriteCView')) + acc.addEventAlgo (DMTest.xAODTestWriteCInfo ('xAODTestWriteCInfo')) + acc.addEventAlgo (DMTest.xAODTestWrite ('xAODTestWrite')) + acc.addEventAlgo (DMTest.xAODTestWriteCVecConst ('xAODTestWriteCVecConst')) + acc.addEventAlgo (DMTest.xAODTestDecor ('xAODTestDecor')) + acc.addEventAlgo (DMTest.xAODTestWriteSymlinks ('xAODTestWriteSymlinks')) + acc.addEventAlgo (DMTest.xAODTestWriteFwdLink1 ('xAODTestWriteFwdLink1')) + acc.addEventAlgo (DMTest.xAODTestWriteFwdLink2 ('xAODTestWriteFwdLink2')) + acc.addEventAlgo (DMTest.MetaWriterAlg ('MetaWriterAlg')) + + itemList = ['DMTest::CVec#cvec', + 'DMTest::CAuxContainer#cvecAux.-dVar2.-dtest', + 'DMTest::CVecWithData#cvecWD', + 'DMTest::CView#cview', + 'DMTest::CAuxContainer#cvecWDAux.', + 'DMTest::GVec#gvec', + 'DMTest::GAuxContainer#gvecAux.', + 'DMTest::CVec#ctrig', + 'DMTest::CTrigAuxContainer#ctrigAux.', + 'DMTest::C#cinfo', + 'DMTest::CInfoAuxContainer#cinfoAux.', + 'DMTest::HVec#hvec', + 'DMTest::HAuxContainer#hvecAux.', + 'DMTest::HView#hview', + 'DMTest::S2#S2', + 'DMTest::CVec#CVecFwdLink', + 'DMTest::CAuxContainer#CVecFwdLinkAux.'] + metaItemList = [ 'DMTest::S1#MetaS1', + 'DMTest::C#MetaC', + 'DMTest::CInfoAuxContainer#MetaCAux.' ] + typeNames = [ 'DataVector<DMTest::C_v1>', + 'DMTest::CVecWithData_v1', + 'DMTest::CAuxContainer_v1', + 'DMTest::CTrigAuxContainer_v1', + 'ViewVector<DataVector<DMTest::C_v1,DataModel_detail::NoBase> >', + 'DMTest::C_v1', + 'DMTest::CInfoAuxContainer_v1', + 'DataVector<DMTest::G_v1>', + 'DMTest::GAuxContainer_v1', + 'DMTest::G_v1', + 'DMTest::H_v1', + 'DataVector<DMTest::H_v1>', + 'ViewVector<DataVector<DMTest::H_v1,DataModel_detail::NoBase> >', + 'DMTest::HAuxContainer_v1' ] + acc.merge (TestOutputCfg (flags, 'Stream1', itemList, typeNames, + metaItemList)) + + return acc + + +flags = DataModelTestFlags (Stream1 = 'xaoddata.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODTestWrite', loadWriteDicts = True, + # Increment LBN every two events. + EventsPerLB = 2) +cfg.merge (xAODTestWriteCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) + diff --git a/Control/DataModelTest/DataModelRunTests/test/xAODTestWriteThinned.py b/Control/DataModelTest/DataModelRunTests/test/xAODTestWriteThinned.py new file mode 100755 index 0000000000000000000000000000000000000000..fef1070492f4c974d25ff3fd6a30b68fd10da984 --- /dev/null +++ b/Control/DataModelTest/DataModelRunTests/test/xAODTestWriteThinned.py @@ -0,0 +1,72 @@ +#!/usr/bin/env athena.py --CA +# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration. +# +# File: DataModelRunTests/test/xAODTestWriteThinned.py +# Author: snyder@bnl.gov +# Date: Nov 2023, from old config version of Aug 2019 +# Purpose: Test thinning xAOD objects. +# + + +from DataModelRunTests.DataModelTestConfig import \ + DataModelTestFlags, DataModelTestCfg, TestOutputCfg + + +def xAODTestWriteThinnedCfg (flags): + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() + + from AthenaConfiguration.ComponentFactory import CompFactory + DMTest = CompFactory.DMTest + + acc.addEventAlgo (DMTest.xAODTestWriteCVec ('xAODTestWriteCVec')) + acc.addEventAlgo (DMTest.xAODTestWriteCLinks ('xAODTestWriteCLinks')) + acc.addEventAlgo (DMTest.xAODTestThinCVec ('xAODTestThinCVec', Stream = 'StreamThinned1')) + + # Test combining thinning from two independent algorithms. + acc.addEventAlgo (DMTest.xAODTestWriteCVec ('xAODTestWriteCVec2', + CVecKey = 'cvec2')) + acc.addEventAlgo (DMTest.xAODTestThinCVec ('xAODTestThinCVec2a', Stream = 'StreamThinned1', + CVecKey = 'cvec2', + Mask = 5)) + acc.addEventAlgo (DMTest.xAODTestThinCVec ('xAODTestThinCVec2b', Stream = 'StreamThinned1', + CVecKey = 'cvec2', + Mask = 6)) + + + itemList = [ 'DMTest::CVec#cvec', + 'DMTest::CAuxContainer#cvecAux.-dVar2.-dtest', + 'DMTest::CVec#cvec2', + 'DMTest::CAuxContainer#cvec2Aux.-dVar2.-dtest', + 'DMTest::CLinks#clinks', + 'DMTest::CLinksAuxInfo#clinksAux.', + 'DMTest::CLinksContainer#clinksContainer', + 'DMTest::CLinksAuxContainer#clinksContainerAux.', + 'DMTest::CLinksContainer#clinksContainer2', + 'DMTest::CLinksAuxContainer#clinksContainer2Aux.', + 'DMTest::CLinksAOD#clinksAOD' ] + + typeNames = [ 'DataVector<DMTest::C_v1>', + 'DMTest::CAuxContainer_v1', + 'DMTest::C_v1', + 'DMTest::CLinks_v1', + 'DataVector<DMTest::CLinks_v1>', + 'DMTest::CLinksAuxInfo_v1', + 'DMTest::CLinksAuxContainer_v1' ] + + acc.merge (TestOutputCfg (flags, 'Thinned1', itemList, typeNames)) + + return acc + + +flags = DataModelTestFlags (Thinned1 = 'xaodthinned1.root') +flags.fillFromArgs() +flags.lock() + +cfg = DataModelTestCfg (flags, 'xAODTestWriteThinned', loadWriteDicts = True) +cfg.merge (xAODTestWriteThinnedCfg (flags)) + +sc = cfg.run (flags.Exec.MaxEvents) +import sys +sys.exit (sc.isFailure()) +