CMS 3D CMS Logo

hcalnzsEra_Run2_2017.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 """
3 _hcalnzsEra_Run2_2017_
4 
5 Scenario supporting proton collisions
6 
7 """
8 
9 import os
10 import sys
11 
12 from Configuration.DataProcessing.Impl.hcalnzs import hcalnzs
13 from Configuration.Eras.Era_Run2_2017_cff import Run2_2017
14 
15 class hcalnzsEra_Run2_2017(hcalnzs):
16  def __init__(self):
17  hcalnzs.__init__(self)
18  self.recoSeq=':reconstruction_HcalNZS'
19  self.cbSc='pp'
20  self.addEI=True
21  self.eras = Run2_2017
22  self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2017' ]
23  self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2017' ]
24  self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2017' ]
25  """
26  _hcalnzsEra_Run2_2017_
27 
28  Implement configuration building for data processing for proton
29  collision data taking
30 
31  """