CMS 3D CMS Logo

trackingOnlyEra_Run3.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 """
3 _trackingOnlyEra_Run3
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_Run3_cff import Run3
15 
16 from Configuration.DataProcessing.Impl.pp import pp
17 
18 class trackingOnlyEra_Run3(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_Run3_trackingOnly
23  self.recoSeq=':reconstruction_trackingOnly'
24  self.cbSc='pp'
25  self.addEI=False
26  self.eras=Run3
27  self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3' ]
28  self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3_express_trackingOnly' ]
29  self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3' ]
30 
31  """
32  _trackingOnlyEra_Run3
33 
34  Implement configuration building for data processing for proton
35  collision data taking for Run3, 2021 high performance beamspot
36 
37  """