Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:31

0001 #!/usr/bin/env python3
0002 """
0003 _cosmicsEra_Run2_2018_
0004 
0005 Scenario supporting cosmic data taking
0006 
0007 """
0008 
0009 import os
0010 import sys
0011 
0012 from Configuration.Eras.Era_Run2_2018_cff import Run2_2018
0013 from Configuration.DataProcessing.Impl.cosmics import cosmics
0014 
0015 class cosmicsEra_Run2_2018(cosmics):
0016     def __init__(self):
0017         cosmics.__init__(self)
0018         self.eras = Run2_2018
0019     """
0020     _cosmicsEra_Run2_2018_
0021 
0022     Implement configuration building for data processing for cosmic
0023     data taking in Run2
0024 
0025     """