Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:31

0001 #!/usr/bin/env python3
0002 """
0003 _trackingOnlyEra_Run2_2018
0004 
0005 Scenario supporting proton collisions and tracking only reconstruction for HP beamspot
0006 
0007 """
0008 
0009 import os
0010 import sys
0011 
0012 from   Configuration.DataProcessing.Impl.trackingOnly import trackingOnly
0013 import FWCore.ParameterSet.Config as cms
0014 from   Configuration.Eras.Era_Run2_2018_cff import Run2_2018
0015 
0016 from   Configuration.DataProcessing.Impl.pp import pp
0017 
0018 class trackingOnlyEra_Run2_2018(trackingOnly):
0019     def __init__(self):
0020         trackingOnly.__init__(self)
0021         # tracking only RECO is sufficient, to run high performance BS at PCL;
0022         # some dedicated customization are required, though: customisePostEra_Run2_2018_trackingOnly
0023         self.recoSeq=':reconstruction_trackingOnly'
0024         self.cbSc='pp'
0025         self.eras=Run2_2018
0026         self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2018' ]
0027         self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2018_express_trackingOnly' ]
0028         self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2018' ]
0029 
0030     """
0031     _trackingOnlyEra_Run2_2018
0032 
0033     Implement configuration building for data processing for proton
0034     collision data taking for Run2, 2018 high performance beamspot
0035 
0036     """