Skip to content
Snippets Groups Projects
  • Frank Winklmeier's avatar
    79b3dcf1
    AthenaPoolTest: test definition cleanup · 79b3dcf1
    Frank Winklmeier authored
    Major cleanup of the unit test definition:
    - Use official `post.sh` script for reference comparison
    - Fix test dependencies. Previously all tests were run sequentially. In
      principle there could be a problem when multiple jobs try to write to
      the same PoolCatalog. If that happens we may need to define separate
      run directories for each test.
    - Copy all references to git to avoid the awkward EOS copy. Some of the
      references are a few 100kB, however, they compress to almost nothing
      so this should not be an issue for git storage.
    - Delete all obsolete test scripts.
    - Fix a few mistakes in job options that the previous post-processing
      script missed.
    79b3dcf1
    History
    AthenaPoolTest: test definition cleanup
    Frank Winklmeier authored
    Major cleanup of the unit test definition:
    - Use official `post.sh` script for reference comparison
    - Fix test dependencies. Previously all tests were run sequentially. In
      principle there could be a problem when multiple jobs try to write to
      the same PoolCatalog. If that happens we may need to define separate
      run directories for each test.
    - Copy all references to git to avoid the awkward EOS copy. Some of the
      references are a few 100kB, however, they compress to almost nothing
      so this should not be an issue for git storage.
    - Delete all obsolete test scripts.
    - Fix a few mistakes in job options that the previous post-processing
      script missed.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
AthenaPoolTestStep2Write.py 3.95 KiB
###############################################################
#
# Job options file
#
## @file AthenaPoolTestStep2Write.py
##
## @brief For Athena POOL test: write out AthenaPoolTest data objects
## in a second file to test navigation
##
## @author RD Schaffer <R.D.Schaffer@cern.ch>
#
#==============================================================

## basic job configuration
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 ApplicationManager
from AthenaCommon.AppMgr import theApp

## get a handle to the ServiceManager
from AthenaCommon.AppMgr import ServiceMgr as svcMgr

#--------------------------------------------------------------
# Load POOL support
#--------------------------------------------------------------
import AthenaPoolCnvSvc.ReadAthenaPool
import AthenaPoolCnvSvc.WriteAthenaPool

#--------------------------------------------------------------
# Define the input parameters
#--------------------------------------------------------------

svcMgr.EventSelector.InputCollections        = [ "SimplePoolFile.root" ]

#--------------------------------------------------------------
# Event related parameters
#--------------------------------------------------------------
theApp.EvtMax = 5
#--------------------------------------------------------------
# Application: AthenaPoolTest options
#--------------------------------------------------------------
from AthenaPoolTest.AthenaPoolTestConf import AthenaPoolTestDataWriter
topSequence += AthenaPoolTestDataWriter( "AthenaPoolTestDataWriter" )
AthenaPoolTestDataWriter.PartialCreate = True
AthenaPoolTestDataWriter.ReadOtherHalf = True
# Try to also read in the first half that is going to be written out
# again => this should produce an error
#AthenaPoolTestDataWriter.ReadFirstHalf = TRUE
#--------------------------------------------------------------
# Output options
#--------------------------------------------------------------
# ItemList:
include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" )
include( "AthenaPoolTestAthenaPool/AthenaPoolTestAthenaPoolItemList_joboptions.py" )

print(fullItemList)

from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
Stream1 = AthenaPoolOutputStream( "Stream1", noTag=True )

# Run OutputStream as an algorithm
topSequence += Stream1
# Must make sure that no OutStream's have been declared
theApp.OutStream     = []
# Stream's output file
Stream1.WritingTool = "AthenaOutputStreamTool"
Stream1.OutputFile  = "SimplePoolFile4.root"
# List of DO's to write out
#Stream1.ItemList   += fullItemList
Stream1.ItemList   += ["EventInfo#*"]
#Stream1.ItemList   += ["IAthenaPoolTestCollection#*"]
# Write out only a new set of cols 1,2,3, and matrix
Stream1.ItemList   += ["IAthenaPoolTestCollection#AthenaPoolTestCollection_1"]
Stream1.ItemList   += ["IAthenaPoolTestCollection#AthenaPoolTestCollection_2"]
Stream1.ItemList   += ["IAthenaPoolTestCollection#AthenaPoolTestCollection_3"]
Stream1.ItemList   += ["AthenaPoolTestMatrix#*"]

print(Stream1.ItemList)

#--------------------------------------------------------------
# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL )
#--------------------------------------------------------------
svcMgr.MessageSvc.OutputLevel = WARNING
svcMgr.MessageSvc.debugLimit  = 100000
#rds ClassIDSvc = Service( "ClassIDSvc" )
#rds ClassIDSvc.OutputLevel = 3
AthenaPoolTestDataWriter.OutputLevel = DEBUG

from AthenaServices import AthenaServicesConf
AthenaEventLoopMgr = AthenaServicesConf.AthenaEventLoopMgr()
AthenaEventLoopMgr.OutputLevel = INFO

# No stats printout
include( "AthenaPoolTest/NoStats_jobOptions.py" )

#==============================================================
#
# End of job options file
#
###############################################################