Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:27

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 component_digi_parameters = cms.PSet(
0004     componentDigiTag = cms.string("Component"),
0005     componentTimeTag = cms.string("Component"),
0006     componentSeparateDigi = cms.bool(False),
0007     componentAddToBarrel  = cms.bool(False),
0008     componentTimePhase  = cms.double(0.)
0009 )
0010 
0011 from Configuration.ProcessModifiers.ecal_component_cff import ecal_component
0012 from Configuration.ProcessModifiers.ecal_component_finely_sampled_waveforms_cff import ecal_component_finely_sampled_waveforms
0013 (ecal_component | ecal_component_finely_sampled_waveforms).toModify(component_digi_parameters,componentSeparateDigi=True)