CMS 3D CMS Logo

hcalnzsEra_Run3.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 """
3 _hcalnzsEra_Run3_
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_Run3_cff import Run3
14 
15 class hcalnzsEra_Run3(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 = Run3
22  self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3' ]
23  self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3' ]
24  self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run3' ]
25  """
26  _hcalnzsEra_Run3_
27 
28  Implement configuration building for data processing for proton
29  collision data taking
30 
31  """