Skip to content

Commit

Permalink
Add parking to secondary agent (#5001)
Browse files Browse the repository at this point in the history
Co-authored-by: Antonio Linares Sancho <[email protected]>
  • Loading branch information
germanfgv and LinaresToine authored Oct 10, 2024
1 parent bee5c8d commit ad17a5b
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions etc/ProdOfflineConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
# Set the max run number:
setInjectMaxRun(tier0Config, 9999999)


# Settings up sites
processingSite = "T2_CH_CERN"
storageSite = "T0_CH_CERN_Disk"
Expand Down Expand Up @@ -561,7 +560,7 @@
scenario=ppScenario)

DATASETS = ["ParkingSingleMuon","ParkingSingleMuon0"]

PARKING_PDS = DATASETS
for dataset in DATASETS:
addDataset(tier0Config, dataset,
do_reco=True,
Expand All @@ -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,
Expand All @@ -585,7 +584,7 @@
scenario=ppScenario)

DATASETS = ["ParkingDoubleMuonLowMass0"]

PARKING_PDS += DATASETS
for dataset in DATASETS:
addDataset(tier0Config, dataset,
do_reco=True,
Expand All @@ -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,
Expand Down Expand Up @@ -641,7 +640,7 @@
"ParkingVBF1", "ParkingVBF2", "ParkingVBF3",
"ParkingVBF4", "ParkingVBF5", "ParkingVBF6",
"ParkingVBF7"]

PARKING_PDS += DATASETS
for dataset in DATASETS:
addDataset(tier0Config, dataset,
do_reco=True,
Expand All @@ -654,7 +653,7 @@
scenario=ppScenario)

DATASETS = ["ParkingLLP"]

PARKING_PDS += DATASETS
for dataset in DATASETS:
addDataset(tier0Config, dataset,
do_reco=True,
Expand Down Expand Up @@ -1324,6 +1323,7 @@
scenario=hltScoutingScenario)

DATASETS = ["ParkingDoubleElectronLowMass","ParkingDoubleElectronLowMass0"]
PARKING_PDS += DATASETS
for dataset in DATASETS:
addDataset(tier0Config, dataset,
do_reco=True,
Expand All @@ -1336,7 +1336,7 @@

DATASETS = ["ParkingDoubleElectronLowMass1","ParkingDoubleElectronLowMass2",
"ParkingDoubleElectronLowMass3","ParkingDoubleElectronLowMass4","ParkingDoubleElectronLowMass5"]

PARKING_PDS += DATASETS
for dataset in DATASETS:
addDataset(tier0Config, dataset,
do_reco=True,
Expand Down Expand Up @@ -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 ###
Expand Down

0 comments on commit ad17a5b

Please sign in to comment.