Skip to content

Commit

Permalink
Acquisition era change to Run2024I (#4998)
Browse files Browse the repository at this point in the history
* hlt scouting scenario for NANOAOD production ScoutingPFRun3 PD
* Era change to Run2024I


---------

Co-authored-by: Antonio Linares <[email protected]>
Co-authored-by: Germán Felipe Giraldo Villa <[email protected]>
  • Loading branch information
3 people authored Oct 9, 2024
1 parent 0869015 commit 178a4c4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
9 changes: 6 additions & 3 deletions etc/ProdOfflineConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
# Data type
# Processing site (where jobs run)
# PhEDEx locations
setAcquisitionEra(tier0Config, "Run2024H")
setAcquisitionEra(tier0Config, "Run2024I")
setEmulationAcquisitionEra(tier0Config, "Emulation2024")
setBaseRequestPriority(tier0Config, 251000)
setBackfill(tier0Config, None)
Expand Down Expand Up @@ -128,6 +128,7 @@
alcaPPSScenario = "AlCaPPS_Run3"
hiTestppScenario = "ppEra_Run3_pp_on_PbPb_2023"
hiRawPrimeScenario = "ppEra_Run3_pp_on_PbPb_approxSiStripClusters_2023"
hltScoutingScenario = "hltScoutingEra_Run3_2024"

# Defaults for processing version
alcarawProcVersion = {
Expand Down Expand Up @@ -1319,10 +1320,12 @@
DATASETS = ["ScoutingPFRun3"]
for dataset in DATASETS:
addDataset(tier0Config, dataset,
do_reco=False,
do_reco=True,
write_aod=False,
write_miniaod=False,
tape_node="T1_US_FNAL_MSS",
disk_node="T1_US_FNAL_Disk",
scenario=ppScenario)
scenario=hltScoutingScenario)

DATASETS = ["ParkingDoubleElectronLowMass","ParkingDoubleElectronLowMass0"]
for dataset in DATASETS:
Expand Down
7 changes: 5 additions & 2 deletions etc/ReplayOfflineConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
alcaPPSScenario = "AlCaPPS_Run3"
hiTestppScenario = "ppEra_Run3_pp_on_PbPb_2023"
hiRawPrimeScenario = "ppEra_Run3_pp_on_PbPb_approxSiStripClusters_2023"
hltScoutingScenario = "hltScoutingEra_Run3_2024"

# Procesing version number replays
# Taking Replay processing ID from the last 8 digits of the DeploymentID
Expand Down Expand Up @@ -1213,8 +1214,10 @@
DATASETS = ["ScoutingPFRun3"]
for dataset in DATASETS:
addDataset(tier0Config, dataset,
do_reco=False,
scenario=ppScenario)
do_reco=True,
write_aod=False,
write_miniaod=False,
scenario=hltScoutingScenario)

DATASETS = ["ParkingDoubleElectronLowMass0","ParkingDoubleElectronLowMass1","ParkingDoubleElectronLowMass2",
"ParkingDoubleElectronLowMass3","ParkingDoubleElectronLowMass4","ParkingDoubleElectronLowMass5",
Expand Down
3 changes: 2 additions & 1 deletion src/python/T0/WMBS/Oracle/Create.py
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,8 @@ def __init__(self, logger = None, dbi = None, params = None):
48 : "ppEra_Run3_2023",
49 : "ppEra_Run3_pp_on_PbPb_2023",
50 : "ppEra_Run3_pp_on_PbPb_approxSiStripClusters_2023",
51 : "ppEra_Run3_2023_repacked"
51 : "ppEra_Run3_2023_repacked",
52 : "hltScoutingEra_Run3_2024"
}
for id, name in list(eventScenarios.items()):
sql = """INSERT INTO event_scenario
Expand Down

0 comments on commit 178a4c4

Please sign in to comment.