Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/model/model_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ModelBase(PdmVModelBase):
'globaltag': lambda gt: ModelBase.matches_regex(gt, ModelBase.__globaltag_regex),
'label': lambda label: ModelBase.matches_regex(label, '[a-zA-Z0-9_]{0,75}'),
'matrix': lambda m: m in ('standard', 'upgrade', 'generator',
'pileup', 'premix', 'extendedgen', 'gpu'),
'pileup', 'premix', 'extendedgen', 'gpu', 'data_highstats'),
'memory': lambda mem: 0 <= mem <= 32000,
'processing_string': lambda ps: ModelBase.matches_regex(ps, ModelBase.__ps_regex),
'relval': lambda r: ModelBase.matches_regex(r, ModelBase.__relval_regex),
Expand Down
5 changes: 5 additions & 0 deletions vue_frontend/src/components/RelValsEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@
<option>standard</option>
<option>upgrade</option>
<option>generator</option>
<option>pileup</option>
<option>premix</option>
<option>extendedgen</option>
<option>gpu</option>
<option>data_highstats</option>
</select>
</td>
</tr>
Expand Down
1 change: 1 addition & 0 deletions vue_frontend/src/components/TicketsEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
<option>premix</option>
<option>extendedgen</option>
<option>gpu</option>
<option>data_highstats</option>
</select>
</td>
</tr>
Expand Down