ATLAS Offline Software
Loading...
Searching...
No Matches
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.
4from AthenaCommon.AlgSequence import AlgSequence
5algSeq = AlgSequence()
6
7# Add asg::EventStoreTestAlg to the job.
8from AsgExampleTools.AsgExampleToolsConf import asg__EventStoreTestAlg, asg__EventStoreTestTool
9algSeq += asg__EventStoreTestAlg( "EventStoreTestAlg",
10 Tool = asg__EventStoreTestTool( "EventStoreTestTool" ) )
11
12# Make the job run for just 1 "event".
13theApp.EvtMax = 1