Skip to content

Commit

Permalink
Merge branch 'cms-PdmV:master' into events_skim
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianoDee authored Sep 10, 2024
2 parents 7f91d8f + 7235149 commit 92967c9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
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

0 comments on commit 92967c9

Please sign in to comment.