Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#!/usr/bin/env python3
"""
_AlCaPhiSymEcal_Nano_

Scenario supporting proton collision data taking for AlCaPhiSymEcal stream with ALCANANO output

"""

from Configuration.DataProcessing.Impl.AlCaNano import AlCaNano
from Configuration.Eras.Era_Run3_cff import Run3

class AlCaPhiSymEcal_Nano(AlCaNano):
    def __init__(self):
        AlCaNano.__init__(self)
        self.skims=['EcalPhiSymByRun']
        self.eras=Run3
        self.recoSeq = ':bunchSpacingProducer+ecalMultiFitUncalibRecHitTask+ecalCalibratedRecHitTask'
        self.promptCustoms = [ 'Calibration/EcalCalibAlgos/EcalPhiSymRecoSequence_cff.customise' ]
    """
    _AlCaPhiSymEcal_Nano_

    Implement configuration building for data processing for proton
    collision data taking for AlCaPhiSymEcal stream with ALCANANO output

    """