Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 25 additions & 15 deletions etc/ProdOfflineConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,31 @@
dataset_lifetime=3*30*24*3600,#lifetime for container rules. Default 3 months
versionOverride=expressVersionOverride)

addExpressConfig(tier0Config, "CosmicsHLTMonitor",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@LinaresToine I just realized that there is yet another mistake here.
The name of the PD is CosmicHLTMonitor and not CosmicsHLTMonitor (without an "s"), see the description from @pietroGru at in the Tier0 ops cmsTalk

scenario=cosmicsScenario,
diskNode="T2_CH_CERN",
data_tiers=["FEVTHLTALL"],
write_dqm=True,
alca_producers=[],
dqm_sequences=["@HLTMon"],
reco_version=defaultCMSSWVersion,
multicore=numberOfCores,
global_tag_connect=globalTagConnect,
global_tag=expressGlobalTag,
proc_ver=expressProcVersion,
maxInputRate=23 * 1000,
maxInputEvents=400,
maxInputSize=2 * 1024 * 1024 * 1024,
maxInputFiles=15,
maxLatency=15 * 23,
periodicHarvestInterval=20 * 60,
blockCloseDelay=1200,
timePerEvent=4, #I have to get some stats to set this properly
sizePerEvent=1700, #I have to get some stats to set this properly
maxMemoryperCore=2000,
dataset_lifetime=3*30*24*3600,#lifetime for container rules. Default 3 months
versionOverride=expressVersionOverride)

addExpressConfig(tier0Config, "Calibration",
scenario=alcaTestEnableScenario,
data_tiers=["RAW"],
Expand Down Expand Up @@ -526,21 +551,6 @@
sizePerEvent=155,
scenario=cosmicsScenario)

DATASETS = ["CosmicsHLTMonitor"]

for dataset in DATASETS:
addDataset(tier0Config, dataset,
do_reco=True,
write_reco=False,
write_aod=True,
write_miniaod=False,
write_nanoaod=False,
write_dqm=True,
dqm_sequences=["@HLTMon"],
timePerEvent=0.5,
sizePerEvent=155,
scenario=cosmicsScenario)

DATASETS = ["DisplacedJet"]

for dataset in DATASETS:
Expand Down
40 changes: 25 additions & 15 deletions etc/ReplayOfflineConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,31 @@
diskNode="T0_CH_CERN_Disk",
data_tiers=["FEVTHLTALL"],
write_dqm=True,
alca_producers=[],
dqm_sequences=["@HLTMon"],
reco_version=defaultCMSSWVersion,
multicore=numberOfCores,
global_tag_connect=globalTagConnect,
global_tag=expressGlobalTag,
proc_ver=expressProcVersion,
maxInputRate=23 * 1000,
maxInputEvents=400,
maxInputSize=2 * 1024 * 1024 * 1024,
maxInputFiles=15,
maxLatency=15 * 23,
periodicHarvestInterval=20 * 60,
blockCloseDelay=1200,
timePerEvent=4, #I have to get some stats to set this properly
sizePerEvent=1700, #I have to get some stats to set this properly
maxMemoryperCore=2000,
dataset_lifetime=replayDatasetLifetime,#lifetime for container rules. Default 3 months
versionOverride=expressVersionOverride)

addExpressConfig(tier0Config, "CosmicsHLTMonitor",
scenario=cosmicsScenario,
diskNode="T0_CH_CERN_Disk",
data_tiers=["FEVTHLTALL"],
write_dqm=True,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@LinaresToine Sorry but this is still wrong:

     alca_producers=["TkAlHLTTracks", "TkAlHLTTracksZMuMu", "PromptCalibProdSiPixelAliHLTHGC"],

should be added to HLTMonitor and removed from CosmicsHLTMonitor.

@srimanob @fabiocos FYI

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now, I see that "HLTMonitor" comes with
alca_producers=["TkAlHLTTracks", "TkAlHLTTracksZMuMu", "PromptCalibProdSiPixelAliHLTHGC"],
while the CosmicsHLTMonitor includes
alca_producers=[],

This is correct, right? @mmusich Thx.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is correct, right?

yes, after the last couple of pushes, this corresponds to my expectations.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alca_producers=["TkAlHLTTracks", "TkAlHLTTracksZMuMu", "PromptCalibProdSiPixelAliHLTHGC"],
dqm_sequences=["@HLTMon"],
reco_version=defaultCMSSWVersion,
Expand Down Expand Up @@ -519,21 +544,6 @@
sizePerEvent=155,
scenario=cosmicsScenario)

DATASETS = ["CosmicsHLTMonitor"]

for dataset in DATASETS:
addDataset(tier0Config, dataset,
do_reco=True,
write_reco=False,
write_aod=True,
write_miniaod=False,
write_nanoaod=False,
write_dqm=True,
dqm_sequences=["@HLTMon"],
timePerEvent=0.5,
sizePerEvent=155,
scenario=cosmicsScenario)

DATASETS = ["DisplacedJet"]

for dataset in DATASETS:
Expand Down