CMS 3D CMS Logo

HeavyIonsEra_Run2_2018.py
Go to the documentation of this file.
1 #!/usr/bin/env python3
2 """
3 _HeavyIonsEra_Run2_2018_
4 
5 Scenario supporting heavy ions collisions
6 
7 """
8 
9 import os
10 import sys
11 
12 from Configuration.DataProcessing.Reco import Reco
13 import FWCore.ParameterSet.Config as cms
14 from Configuration.Eras.Era_Run2_2018_cff import Run2_2018
15 
16 from Configuration.DataProcessing.Impl.HeavyIons import HeavyIons
17 
18 class HeavyIonsEra_Run2_2018(HeavyIons):
19  def __init__(self):
20  HeavyIons.__init__(self)
21  self.eras = Run2_2018
22  self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customise_HI_PostEra_Run2_2018' ]
23  self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customise_HI_PostEra_Run2_2018' ]
24  self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customise_HI_PostEra_Run2_2018' ]
25  """
26  _HeavyIonsEra_Run2_2018_
27 
28  Implement configuration building for data processing for Heavy Ions
29  collision data taking for Run2 in 2018
30 
31  """
32