ATLAS Offline Software
Loading...
Searching...
No Matches
HelloWorld_tf Namespace Reference

Functions

 main ()
 getTransform ()
 Get the base transform with all arguments added.

Function Documentation

◆ getTransform()

HelloWorld_tf.getTransform ( )

Get the base transform with all arguments added.

Definition at line 34 of file HelloWorld_tf.py.

34def getTransform():
35 trf = transform(executor = athenaExecutor(name = 'athena',
36 substep='HelloWorld',
37 skeletonCA="PyJobTransforms.HelloWorldSkeleton"))
38 addAthenaArguments(trf.parser)
39 addDetectorArguments(trf.parser)
40 return trf
41

◆ main()

HelloWorld_tf.main ( )

Definition at line 21 of file HelloWorld_tf.py.

21def main():
22
23 msg.info('This is %s', sys.argv[0])
24
25 trf = getTransform()
26 trf.parseCmdLineArgs(sys.argv[1:])
27 trf.execute()
28 trf.generateReport()
29
30 msg.info("%s stopped at %s, trf exit code %d", sys.argv[0], time.asctime(), trf.exitCode)
31 sys.exit(trf.exitCode)
32
int main()
Definition hello.cxx:18