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 _hcalnzs_
0004 
0005 Scenario supporting proton collisions
0006 
0007 """
0008 
0009 import os
0010 import sys
0011 
0012 from Configuration.DataProcessing.Impl.pp import pp
0013 
0014 class hcalnzs(pp):
0015     def __init__(self):
0016         pp.__init__(self)
0017         self.recoSeq=':reconstruction_HcalNZS'
0018         self.cbSc='pp'
0019     """
0020     _hcalnzs_
0021 
0022     Implement configuration building for data processing for proton
0023     collision data taking
0024 
0025     """
0026     def promptReco(self, globalTag, **args):
0027         """
0028         _promptReco_
0029 
0030         Proton collision data taking prompt reco
0031 
0032         """
0033         if not 'skims' in args:
0034             args['skims']=['HcalCalMinBias']
0035 
0036         process = pp.promptReco(self,globalTag,**args)
0037         
0038         return process