test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
hcalnzsRun2.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 """
3 _hcalnzsRun2_
4 
5 Scenario supporting proton collisions
6 
7 """
8 
9 import os
10 import sys
11 
12 from Configuration.DataProcessing.Impl.pp import pp
13 
14 class hcalnzsRun2(pp):
15  def __init__(self):
16  pp.__init__(self)
17  self.recoSeq=':reconstruction_HcalNZS'
18  self.cbSc='pp'
19  """
20  _hcalnzsRun2_
21 
22  Implement configuration building for data processing for proton
23  collision data taking
24 
25  """
26  def promptReco(self, globalTag, **args):
27  """
28  _promptReco_
29 
30  Proton collision data taking prompt reco
31 
32  """
33  if not 'skims' in args:
34  args['skims']=['HcalCalMinBias']
35 
36  if not 'customs' in args:
37  args['customs']=['Configuration/DataProcessing/RecoTLR.customisePromptRun2Deprecated']
38  else:
39  args['customs'].append('Configuration/DataProcessing/RecoTLR.customisePromptRun2Deprecated')
40 
41  process = pp.promptReco(self,globalTag,**args)
42 
43  return process
tuple pp
Definition: createTree.py:15
boost::dynamic_bitset append(const boost::dynamic_bitset<> &bs1, const boost::dynamic_bitset<> &bs2)
this method takes two bitsets bs1 and bs2 and returns result of bs2 appended to the end of bs1 ...