Skip to content

Commit

Permalink
Make AlCaPhiSymEcal_Nano inherit from pp instead of AlCa
Browse files Browse the repository at this point in the history
  • Loading branch information
tvami committed May 3, 2022
1 parent 303dd5e commit 52c49cf
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
"""

from Configuration.DataProcessing.Impl.AlCa import AlCa
from Configuration.DataProcessing.Impl.pp import pp
from Configuration.Eras.Era_Run3_cff import Run3

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

0 comments on commit 52c49cf

Please sign in to comment.