ATLAS Offline Software
LinearTransformStandaloneExample_jobOptions.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
2 #
3 # "Standalone" jobOptions for running
4 # AthCUDAExamples::LinearTransformStandaloneExampleAlg.
5 #
6 
7 # Set up / access the algorithm sequence.
8 from AthenaCommon.AlgSequence import AlgSequence
9 algSequence = AlgSequence()
10 
11 # Add the algorithm to the sequence.
12 from AthExCUDA.AthExCUDAConf import \
13  AthCUDAExamples__LinearTransformStandaloneExampleAlg
14 algSequence += AthCUDAExamples__LinearTransformStandaloneExampleAlg()
15 
16 # Run for 10 "events".
17 theApp.EvtMax = 10
python.AlgSequence.AlgSequence
AlgSequence
Definition: PhysicsAnalysis/D3PDTools/AnaAlgorithm/python/AlgSequence.py:7