CMS 3D CMS Logo

trackingOnly.py
Go to the documentation of this file.
1 #!/usr/bin/env python3
2 """
3 _trackingOnly_
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.pp import pp
13 
15  def __init__(self):
16  pp.__init__(self)
17  # tracking only RECO is sufficient, to run high performance BS at PCL;
18  # some dedicated customization are required, though: see specific era implementations
19  self.recoSeq=':reconstruction_trackingOnly'
20  self.cbSc='pp'
21  """
22  _trackingOnly_
23 
24  Implement configuration building for data processing for proton
25  collision data taking for high performance beamspot
26 
27  """
28 
29  def expressProcessing(self, globalTag, **args):
30 
31  # TkAlMinBias run but hidden to Tier0, in order not to persist it
32  if 'skims' not in args :
33  args['skims']=['TkAlMinBias']
34  else :
35  if not 'TkAlMinBias' in args['skims'] :
36  args['skims'].append('TkAlMinBias')
37 
38  # reco sequence is limited to tracking => DQM accordingly
39  if 'dqmSeq' not in args or len(args['dqmSeq'])==0:
40  args['dqmSeq'] = ['DQMOfflineTracking']
41 
42  process = pp.expressProcessing(self, globalTag, **args)
43 
44  return process
45 
46 
def expressProcessing(self, globalTag, args)
Definition: trackingOnly.py:29