YAML Configuration Sub-Keys#
Note
Keys marked with an asterisk are optional and can be omitted.
input
#
bk_query
#
Key |
Type |
Meaning |
---|---|---|
|
string |
The bookkeeping location of the desired input data. |
|
int |
The number of files to use as input to test jobs. Only to be used for samples with very few output candidates. |
|
float |
The sampling fraction to use when sampling the input LFNs to use in
the production. For example, |
|
string |
The seed to use when sampling input LFNs. For example, |
|
sequence of strings |
What quality of data to use. This can be set to any of |
|
sequence of strings |
In addition to requiring data quality (DQ) |
|
sequence of integers |
A sequence of data taking runs to use as input. This can either be written as a typical sequence or as A:B where runs from A to B inclusive will be used. |
|
string |
The input plugin setting, either |
|
bool |
Whether to keep running on new data as it comes in.
|
|
string |
Gas injected in SMOG2, possible choices are: [Hydrogen, Deuterium,
Helium, Nitrogen, Oxygen, Neon, Argon, Krypton, Xenon].
2 possible states: |
Here is a full example showing a bk_query
input using all optional keys:
job_name:
input:
bk_query: /some/MagUp/bookkeeping/path.DST
n_test_lfns: 3
dq_flags:
- BAD
- OK
runs:
- 269370
- 269371
- 269372
# equivalent to 269370:269372
input_plugin: by-run
keep_running: True
smog2_state:
- Argon
- ArgonUnstable
job_name
#
Key |
Type |
Meaning |
---|---|---|
|
string |
The name of the job whose output should be the input of this job. |
|
string |
The file type of the input file, for when your input job has multiple output files. |
Here is a full example showing a job_name
input using all optional keys:
strip_job:
bk_query: /some/MagUp/bookkeeping/path.DST
options: strip.py
tuple_job:
input:
job_name: strip_job
filetype: DST
options: tuple.py
transform_ids
#
Key |
Type |
Meaning |
---|---|---|
|
sequence of integers |
A sequence of transformation IDs to use as input file sources. |
|
string |
The file type of the input file, for when your input job has multiple output files. |
|
int |
The number of files to use as input to test jobs. Only to be used for samples with very few output candidates. |
|
sequence of strings |
What quality of data to use. This can be set to any of |
|
sequence of integers |
A sequence of data taking runs to use as input. This can either be written as a typical sequence or as A:B where runs from A to B inclusive will be used. |
Here is a full example showing a transform_ids
input using all optional keys:
job_name:
input:
transform_ids:
- 1234
- 5678
filetype: DST
n_test_lfns: 3
dq_flags:
- BAD
- OK
runs:
- 269370
- 269371
- 269372
# equivalent to 269370:269372