ATLAS Offline Software
EventStoreTest_jobOptions.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2 
3 # Access the algorithm sequence.
4 from AthenaCommon.AlgSequence import AlgSequence
5 algSeq = AlgSequence()
6 
7 # Add asg::EventStoreTestAlg to the job.
8 from AsgExampleTools.AsgExampleToolsConf import asg__EventStoreTestAlg, asg__EventStoreTestTool
9 algSeq += asg__EventStoreTestAlg( "EventStoreTestAlg",
10  Tool = asg__EventStoreTestTool( "EventStoreTestTool" ) )
11 
12 # Make the job run for just 1 "event".
13 theApp.EvtMax = 1
python.AlgSequence.AlgSequence
AlgSequence
Definition: PhysicsAnalysis/D3PDTools/AnaAlgorithm/python/AlgSequence.py:7