[]
Example module for printing job info
Definition at line 62 of file Dump.py.
00062 : 00063 """ Example module for printing job info """ 00064 return 00065 def run(app):
Configure and add the algorithm to job
Definition at line 66 of file Dump.py.
00066 : 00067 ''' 00068 Configure and add the algorithm to job 00069 ''' 00070 myAlg = PrintJobInfoAlg("MyPrintJobInfoAlg") 00071 app.addAlgorithm(myAlg) 00072 pass 00073