-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0c1dfd
commit a8dc46f
Showing
3 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
Configuration/DataProcessing/python/Impl/ppEra_Run3_2024_ppRef.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env python3 | ||
""" | ||
_ppEra_Run3_2024_ppRef_ | ||
Scenario supporting ppRef collisions for 2024 | ||
""" | ||
|
||
import os | ||
import sys | ||
|
||
from Configuration.DataProcessing.Reco import Reco | ||
import FWCore.ParameterSet.Config as cms | ||
from Configuration.Eras.Era_Run3_2024_ppRef_cff import Run3_2024_ppRef | ||
|
||
from Configuration.DataProcessing.Impl.pp import pp | ||
|
||
class ppEra_Run3_2024_ppRef(pp): | ||
def __init__(self): | ||
pp.__init__(self) | ||
self.recoSeq='' | ||
self.cbSc='pp' | ||
self.eras=Run3_2024_ppRef | ||
self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_2024_ppRef' ] | ||
self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_2024_ppRef' ] | ||
self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_2024_ppRef' ] | ||
""" | ||
_ppEra_Run3_2024_ppRef_ | ||
Implement configuration building for data processing for proton | ||
collision data taking for Run3_2024 | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters