ATLAS Offline Software
FortranAlgorithmOptions.py
Go to the documentation of this file.
1 
6 from AthenaCommon.AlgSequence import AlgSequence
7 job = AlgSequence()
8 
9 # Get hold of the algorithms that we want to run
10 from AthExFortranAlgorithm.AthExFortranAlgorithmConf import FortranAlgorithm
11 # ^^package name ^^generated file ^^Gaudi component
12 
13 job += FortranAlgorithm(LUN=42, fileName="FortranAlgorithmInput.data")
14 
15 
16 #--------------------------------------------------------------
17 # job-level parameters
18 #--------------------------------------------------------------
19 
20 # Number of events to be processed (default is 10)
21 theApp.EvtMax = 1
22 MessageSvc.OutputLevel = INFO
23 
24 
python.AlgSequence.AlgSequence
AlgSequence
Definition: PhysicsAnalysis/D3PDTools/AnaAlgorithm/python/AlgSequence.py:7