CMS 3D CMS Logo

trackingOnlyEra_Run2_2017.py
Go to the documentation of this file.
1 #!/usr/bin/env python3
2 """
3 _trackingOnlyEra_Run2_2017
4 
5 Scenario supporting proton collisions and tracking only reconstruction for HP beamspot
6 
7 """
8 
9 import os
10 import sys
11 
12 from Configuration.DataProcessing.Impl.trackingOnly import trackingOnly
13 import FWCore.ParameterSet.Config as cms
14 from Configuration.Eras.Era_Run2_2017_cff import Run2_2017
15 
16 from Configuration.DataProcessing.Impl.pp import pp
17 
18 class trackingOnlyEra_Run2_2017(trackingOnly):
19  def __init__(self):
20  trackingOnly.__init__(self)
21  # tracking only RECO is sufficient, to run high performance BS at PCL;
22  # some dedicated customization are required, though: customisePostEra_Run2_2017_trackingOnly
23  self.recoSeq=':reconstruction_trackingOnly'
24  self.cbSc='pp'
25  self.eras=Run2_2017
26  self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2017' ]
27  self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2017_express_trackingOnly' ]
28  self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2017' ]
29 
30  """
31  _trackingOnlyEra_Run2_2017
32 
33  Implement configuration building for data processing for proton
34  collision data taking for Run2, 2017 high performance beamspot
35 
36  """