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_Run3_
0004 
0005 Scenario supporting cosmic data taking
0006 
0007 """
0008 
0009 import os
0010 import sys
0011 
0012 from Configuration.Eras.Era_Run3_cff import Run3
0013 from Configuration.DataProcessing.Impl.cosmics import cosmics
0014 
0015 class cosmicsEra_Run3(cosmics):
0016     def __init__(self):
0017         cosmics.__init__(self)
0018         self.eras = Run3
0019     """
0020     _cosmicsEra_Run3_
0021 
0022     Implement configuration building for data processing for cosmic
0023     data taking in Run3
0024 
0025     """