CMS 3D CMS Logo

AlCaPhiSymEcal_Nano.py
Go to the documentation of this file.
1 #!/usr/bin/env python3
2 """
3 _AlCaPhiSymEcal_Nano_
4 
5 Scenario supporting proton collision data taking for AlCaPhiSymEcal stream with ALCANANO output
6 
7 """
8 
9 from Configuration.DataProcessing.Impl.AlCaNano import AlCaNano
10 from Configuration.Eras.Era_Run3_cff import Run3
11 
12 class AlCaPhiSymEcal_Nano(AlCaNano):
13  def __init__(self):
14  AlCaNano.__init__(self)
15  self.skims=['EcalPhiSymByRun']
16  self.eras=Run3
17  self.recoSeq = ':bunchSpacingProducer+ecalMultiFitUncalibRecHitTask+ecalCalibratedRecHitTask'
18  self.promptCustoms = [ 'Calibration/EcalCalibAlgos/EcalPhiSymRecoSequence_cff.customise' ]
19  """
20  _AlCaPhiSymEcal_Nano_
21 
22  Implement configuration building for data processing for proton
23  collision data taking for AlCaPhiSymEcal stream with ALCANANO output
24 
25  """