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 _AlCaPhiSymEcal_Nano_
0004 
0005 Scenario supporting proton collision data taking for AlCaPhiSymEcal stream with ALCANANO output
0006 
0007 """
0008 
0009 from Configuration.DataProcessing.Impl.AlCaNano import AlCaNano
0010 from Configuration.Eras.Era_Run3_cff import Run3
0011 
0012 class AlCaPhiSymEcal_Nano(AlCaNano):
0013     def __init__(self):
0014         AlCaNano.__init__(self)
0015         self.skims=['EcalPhiSymByRun']
0016         self.eras=Run3
0017         self.recoSeq = ':bunchSpacingProducer+ecalMultiFitUncalibRecHitTask+ecalCalibratedRecHitTask'
0018         self.promptCustoms = [ 'Calibration/EcalCalibAlgos/EcalPhiSymRecoSequence_cff.customise' ]
0019     """
0020     _AlCaPhiSymEcal_Nano_
0021 
0022     Implement configuration building for data processing for proton
0023     collision data taking for AlCaPhiSymEcal stream with ALCANANO output
0024 
0025     """