-
Notifications
You must be signed in to change notification settings - Fork 4.6k
adding options for reco step using new rawSecond input #49481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| import FWCore.ParameterSet.Config as cms | ||
|
|
||
| from Configuration.Eras.Era_Run3_pp_on_PbPb_approxSiStripClusters_2025_cff import Run3_pp_on_PbPb_approxSiStripClusters_2025 | ||
| from Configuration.ProcessModifiers.rawSecond_cff import rawSecond | ||
|
|
||
| Run3_pp_on_PbPb_approxSiStripClusters_2025_rawSecond = cms.ModifierChain(Run3_pp_on_PbPb_approxSiStripClusters_2025, rawSecond) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -190,6 +190,12 @@ def SwapKeepAndDrop(l): | |
| 'keep DetIds_hltSiStripRawToDigi_*_*' | ||
| ]) | ||
|
|
||
| from Configuration.ProcessModifiers.rawSecond_cff import rawSecond | ||
| rawSecond.toModify(RAWEventContent, | ||
| outputCommands = RAWEventContent.outputCommands+[ | ||
| 'keep *_hltSiStripClusters2ApproxClustersv1_*_*', | ||
|
||
| 'keep DetIds_hltSiStripRawToDigi_*_*' | ||
| ]) | ||
| # | ||
| # HLTSCOUT Data Tier definition | ||
| # | ||
|
|
@@ -659,7 +665,11 @@ def SwapKeepAndDrop(l): | |
| 'keep *_hltSiStripClusters2ApproxClusters_*_*', | ||
| 'keep DetIds_hltSiStripRawToDigi_*_*' | ||
| ]) | ||
|
|
||
| rawSecond.toModify(FEVTDEBUGEventContent, | ||
| outputCommands = FEVTDEBUGEventContent.outputCommands+[ | ||
|
||
| 'keep *_hltSiStripClusters2ApproxClustersv1_*_*', | ||
| 'keep DetIds_hltSiStripRawToDigi_*_*' | ||
| ]) | ||
| ticl_v5.toModify(FEVTDEBUGEventContent, outputCommands=FEVTDEBUGEventContent.outputCommands+TICLv5_FEVT.outputCommands) | ||
| # | ||
| # | ||
|
|
@@ -687,6 +697,11 @@ def SwapKeepAndDrop(l): | |
| 'keep *_hltSiStripClusters2ApproxClusters_*_*', | ||
| 'keep DetIds_hltSiStripRawToDigi_*_*' | ||
| ]) | ||
| rawSecond.toModify(FEVTDEBUGHLTEventContent, | ||
| outputCommands = FEVTDEBUGHLTEventContent.outputCommands+[ | ||
| 'keep *_hltSiStripClusters2ApproxClustersv1_*_*', | ||
|
||
| 'keep DetIds_hltSiStripRawToDigi_*_*' | ||
| ]) | ||
| phase2_tracker.toModify(FEVTDEBUGHLTEventContent, | ||
| outputCommands = FEVTDEBUGHLTEventContent.outputCommands+[ | ||
| 'keep *_hltSiPixelClusters_*_*', | ||
|
|
@@ -877,7 +892,12 @@ def SwapKeepAndDrop(l): | |
| 'drop FEDRawDataCollection_rawDataRepacker_*_*', | ||
| 'keep FEDRawDataCollection_rawPrimeDataRepacker_*_*' | ||
| ]) | ||
|
|
||
| rawSecond.toModify(REPACKRAWEventContent, | ||
| outputCommands = REPACKRAWEventContent.outputCommands+[ | ||
| 'keep *_hltSiStripClusters2ApproxClustersv1_*_*', | ||
| 'drop FEDRawDataCollection_rawDataRepacker_*_*', | ||
| 'keep FEDRawDataCollection_rawPrimeDataRepacker_*_*' | ||
| ]) | ||
| REPACKRAWSIMEventContent = cms.PSet( | ||
| outputCommands = cms.untracked.vstring(), | ||
| splitLevel = cms.untracked.int32(0), | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| import FWCore.ParameterSet.Config as cms | ||
|
|
||
| rawSecond = cms.Modifier() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this line is now unnecessary.