-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45055 from AdrianoDee/relval_2024_and_input_fix
2024 Data RelVals and `InputInfo` Events Skimming (actually) Working
- Loading branch information
Showing
7 changed files
with
322 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
Configuration/PyReleaseValidation/python/relval_data_highstats.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# import the definition of the steps and input files: | ||
from Configuration.PyReleaseValidation.relval_steps import * | ||
|
||
# here only define the workflows as a combination of the steps defined above: | ||
workflows = Matrix() | ||
|
||
## Here we define higher (>50k events) stats data workflows | ||
## not to be run as default. 150k, 250k, 500k or 1M events each | ||
|
||
## 2024 | ||
base_wf_number_2024 = 2024.0 | ||
offset_era = 0.1 # less than 10 eras | ||
offset_pd = 0.001 # less than 100 pds | ||
offset_events = 0.0001 # less than 10 event setups (50k,150k,250k,500k) | ||
|
||
for e_n,era in enumerate(eras_2024): | ||
for p_n,pd in enumerate(pds_2024): | ||
for e_key,evs in event_steps_dict.items(): | ||
if "50k" == e_key: # already defined in relval_standard | ||
continue | ||
wf_number = base_wf_number_2024 | ||
wf_number = wf_number + offset_era * e_n | ||
wf_number = wf_number + offset_pd * p_n | ||
wf_number = wf_number + offset_events * evs | ||
wf_number = round(wf_number,6) | ||
step_name = "Run" + pd + era.split("Run")[1] + "_" + e_key | ||
workflows[wf_number] = ['',[step_name,'HLTDR3_2024','AODNANORUN3_reHLT_2024','HARVESTRUN3_2024']] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.