ATLAS Offline Software
Loading...
Searching...
No Matches
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.
8from AthenaCommon.AlgSequence import AlgSequence
9algSequence = AlgSequence()
10
11# Add the algorithm to the sequence.
12from AthExCUDA.AthExCUDAConf import \
13 AthCUDAExamples__LinearTransformStandaloneExampleAlg
14algSequence += AthCUDAExamples__LinearTransformStandaloneExampleAlg()
15
16# Run for 10 "events".
17theApp.EvtMax = 10