From ad17a5b3fcb4e557e748e5ab6dffe2f1addc0c41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Felipe=20Giraldo=20Villa?= Date: Thu, 10 Oct 2024 18:59:03 +0200 Subject: [PATCH] Add parking to secondary agent (#5001) Co-authored-by: Antonio Linares Sancho <132582167+LinaresToine@users.noreply.github.com> --- etc/ProdOfflineConfiguration.py | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/etc/ProdOfflineConfiguration.py b/etc/ProdOfflineConfiguration.py index c9d799518..b1bd92842 100644 --- a/etc/ProdOfflineConfiguration.py +++ b/etc/ProdOfflineConfiguration.py @@ -42,7 +42,6 @@ # Set the max run number: setInjectMaxRun(tier0Config, 9999999) - # Settings up sites processingSite = "T2_CH_CERN" storageSite = "T0_CH_CERN_Disk" @@ -561,7 +560,7 @@ scenario=ppScenario) DATASETS = ["ParkingSingleMuon","ParkingSingleMuon0"] - +PARKING_PDS = DATASETS for dataset in DATASETS: addDataset(tier0Config, dataset, do_reco=True, @@ -574,7 +573,7 @@ "ParkingSingleMuon4","ParkingSingleMuon5","ParkingSingleMuon6", "ParkingSingleMuon7","ParkingSingleMuon8","ParkingSingleMuon9", "ParkingSingleMuon10","ParkingSingleMuon11"] - +PARKING_PDS += DATASETS for dataset in DATASETS: addDataset(tier0Config, dataset, do_reco=True, @@ -585,7 +584,7 @@ scenario=ppScenario) DATASETS = ["ParkingDoubleMuonLowMass0"] - +PARKING_PDS += DATASETS for dataset in DATASETS: addDataset(tier0Config, dataset, do_reco=True, @@ -600,7 +599,7 @@ DATASETS = ["ParkingDoubleMuonLowMass1","ParkingDoubleMuonLowMass2", "ParkingDoubleMuonLowMass3","ParkingDoubleMuonLowMass4","ParkingDoubleMuonLowMass5", "ParkingDoubleMuonLowMass6","ParkingDoubleMuonLowMass7"] - +PARKING_PDS += DATASETS for dataset in DATASETS: addDataset(tier0Config, dataset, do_reco=True, @@ -641,7 +640,7 @@ "ParkingVBF1", "ParkingVBF2", "ParkingVBF3", "ParkingVBF4", "ParkingVBF5", "ParkingVBF6", "ParkingVBF7"] - +PARKING_PDS += DATASETS for dataset in DATASETS: addDataset(tier0Config, dataset, do_reco=True, @@ -654,7 +653,7 @@ scenario=ppScenario) DATASETS = ["ParkingLLP"] - +PARKING_PDS += DATASETS for dataset in DATASETS: addDataset(tier0Config, dataset, do_reco=True, @@ -1324,6 +1323,7 @@ scenario=hltScoutingScenario) DATASETS = ["ParkingDoubleElectronLowMass","ParkingDoubleElectronLowMass0"] +PARKING_PDS += DATASETS for dataset in DATASETS: addDataset(tier0Config, dataset, do_reco=True, @@ -1336,7 +1336,7 @@ DATASETS = ["ParkingDoubleElectronLowMass1","ParkingDoubleElectronLowMass2", "ParkingDoubleElectronLowMass3","ParkingDoubleElectronLowMass4","ParkingDoubleElectronLowMass5"] - +PARKING_PDS += DATASETS for dataset in DATASETS: addDataset(tier0Config, dataset, do_reco=True, @@ -1461,8 +1461,11 @@ ignoreStream(tier0Config, "streamDQMRates") ignoreStream(tier0Config, "DQMPPSRandom") -# Set streams to ignore by MainAgent. These will not be injected -setHelperAgentStreams(tier0Config, {"SecondAgent" : DATASETS_DAQ_TFTEST}) + +# Set streams to ignore by agent. These will not be injected +SECOND_AGENT_PDS = PARKING_PDS + DATASETS_DAQ_TFTEST +setHelperAgentStreams(tier0Config, {"SecondAgent" : SECOND_AGENT_PDS}) + ################################### ### currently inactive settings ###