Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now you should see a local file called tritrig.json which contains information for running 1000 jobs of this type.

The input files for a workflow may be supplied in one of two ways.

A file glob will supply multiple input files to the workflow, one per job.

Code Block
languagebash
"input_files" : {
    "beam.stdhep": "/not/a/real/path/beam*.stdhep"
}

Mutiple files can be supplied based on the following syntax.

Code Block
languagebash
"input_files" : {
    "beam.stdhep": {
        "/not/a/real/path/beam*.stdhep": 10
    }
}

This will expand into JSON parameters that include 10 files per job in the workflow.

Running Jobs on the Batch System

...