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 _hcalnzsEra_Run2_2018_highBetaStar_
0004 
0005 Scenario supporting proton collisions
0006 
0007 """
0008 
0009 import os
0010 import sys
0011 
0012 from Configuration.DataProcessing.Impl.hcalnzs import hcalnzs
0013 from Configuration.Eras.Era_Run2_2018_highBetaStar_cff import Run2_2018_highBetaStar
0014 
0015 class hcalnzsEra_Run2_2018_highBetaStar(hcalnzs):
0016     def __init__(self):
0017         hcalnzs.__init__(self)
0018         self.recoSeq=':reconstruction_HcalNZS'
0019         self.cbSc='pp'
0020         self.eras = Run2_2018_highBetaStar
0021         #keep post-era parts the same as in the default 2018 era
0022         self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2018' ]
0023         self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2018' ]
0024         self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2018' ]
0025     """
0026     _hcalnzsEra_Run2_2018_highBetaStar_
0027 
0028     Implement configuration building for data processing for proton
0029     collision data taking for Run2, 2018 hcal nzs workflow in highBetaStar data taking
0030 
0031     """