wget http://www.usatlas.bnl.gov/~caballer/panda/demo/sendjobs.tar tar xvf sendjobs.tar cd sendjobs source setup.(c)sh
$ ./sendJob.py --njobs 1 --computingSite TEST2 --transformation http://www.myserver.com/mytest.sh --prodSourceLabel user --cloud OSG $ ./sendJob.py --njobs 1 --computingSite TEST2 --transformation http://www.myserver.com/mytest.sh --prodSourceLabel user --cloud OSG --jobParameters "a b c 1 2 3"
from sendJob import * from taskbuffer.JobSpec import JobSpec options = Options() options.njobs = 3 options.verbose = 1 job = JobSpec() job.transformation = "http://www.usatlas.bnl.gov/~caballer/panda/transformations/trivial_test.sh" job.computingSite = "TEST2" job.prodSourceLabel = "user" job.jobParameters = "a b c 1 2 3" submission = submissionAPI() submission.options = options submission.job = job submission.makeJobList() submission.submit()
Please note that this site is a content mirror of the BNL US ATLAS TWiki. To edit the content of this page, click the Edit this page button at the top of the page and log in with your US ATLAS computing account name and password.