-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Showing
6 changed files
with
117 additions
and
6 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
Configuration/DataProcessing/python/Impl/hcalnzsEra_Run3_pp_on_PbPb.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,30 @@ | ||
#!/usr/bin/env python3 | ||
""" | ||
_hcalnzsEra_Run3_pp_on_AA_ | ||
Scenario supporting Run3 heavyIon collisions | ||
""" | ||
|
||
import os | ||
import sys | ||
|
||
from Configuration.DataProcessing.Impl.hcalnzs import hcalnzs | ||
from Configuration.Eras.Era_Run3_pp_on_PbPb_cff import Run3_pp_on_PbPb | ||
|
||
class hcalnzsEra_Run3_pp_on_PbPb(hcalnzs): | ||
def __init__(self): | ||
hcalnzs.__init__(self) | ||
self.isRepacked=True | ||
self.eras=Run3_pp_on_PbPb | ||
#keep post-era parts the same as in the default Run3 era | ||
self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_pp_on_PbPb' ] | ||
self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_pp_on_PbPb' ] | ||
self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_pp_on_PbPb' ] | ||
""" | ||
_hcalnzsEra_Run3_pp_on_PbPb_ | ||
Implement configuration building for data processing for heavyIon Run3 | ||
collision data taking for Run3 hcal nzs workflow in pp_on_PbPb data taking | ||
""" |
34 changes: 34 additions & 0 deletions
34
Configuration/DataProcessing/python/Impl/ppEra_Run3_pp_on_PbPb.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,34 @@ | ||
#!/usr/bin/env python3 | ||
""" | ||
_ppEra_Run3_pp_on_PbPb_ | ||
Scenario supporting proton collisions | ||
""" | ||
|
||
import os | ||
import sys | ||
|
||
from Configuration.DataProcessing.Reco import Reco | ||
import FWCore.ParameterSet.Config as cms | ||
from Configuration.Eras.Era_Run3_pp_on_PbPb_cff import Run3_pp_on_PbPb | ||
|
||
from Configuration.DataProcessing.Impl.pp import pp | ||
|
||
class ppEra_Run3_pp_on_PbPb(pp): | ||
def __init__(self): | ||
pp.__init__(self) | ||
self.recoSeq='' | ||
self.cbSc='pp' | ||
self.isRepacked=True | ||
self.eras=Run3_pp_on_PbPb | ||
self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_pp_on_PbPb' ] | ||
self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_pp_on_PbPb' ] | ||
self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_pp_on_PbPb' ] | ||
""" | ||
_ppEra_Run3_pp_on_PbPb_ | ||
Implement configuration building for data processing for pp-like processing of HI | ||
collision data taking for Run3 | ||
""" |
36 changes: 36 additions & 0 deletions
36
Configuration/DataProcessing/python/Impl/trackingOnlyEra_Run3_pp_on_PbPb.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,36 @@ | ||
#!/usr/bin/env python3 | ||
""" | ||
_trackingOnlyEra_Run3_pp_on_PbPb | ||
Scenario supporting Run3 heavyIon collisions and tracking only reconstruction for HP beamspot | ||
""" | ||
|
||
import os | ||
import sys | ||
|
||
from Configuration.DataProcessing.Impl.trackingOnly import trackingOnly | ||
import FWCore.ParameterSet.Config as cms | ||
from Configuration.Eras.Era_Run3_pp_on_PbPb_cff import Run3_pp_on_PbPb | ||
|
||
from Configuration.DataProcessing.Impl.pp import pp | ||
|
||
class trackingOnlyEra_Run3_pp_on_PbPb(trackingOnly): | ||
def __init__(self): | ||
trackingOnly.__init__(self) | ||
# tracking only RECO is sufficient, to run high performance BS at PCL; | ||
# some dedicated customization are required, though: customisePostEra_Run2_2018_trackingOnly | ||
self.isRepacked=True | ||
self.eras=Run3_pp_on_PbPb | ||
#keep post-era parts the same as in the default 2018 era | ||
self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_pp_on_PbPb' ] | ||
self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_pp_on_PbPb_express_trackingOnly' ] | ||
self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_pp_on_PbPb' ] | ||
|
||
""" | ||
_trackingOnlyEra_Run3_pp_on_PbPb | ||
Implement configuration building for data processing for Run3 heavyIon | ||
collision data taking for Run3, high performance beamspot in pp_on_PbPb data taking | ||
""" |
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
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