File indexing completed on 2024-04-06 12:26:14
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from RecoLocalMuon.GEMSegment.ME0SegmentsAlgorithm_cfi import *
0004 from RecoLocalMuon.GEMSegment.ME0SegmentsRU_cfi import *
0005
0006 me0Segments = cms.EDProducer("ME0SegmentProducer",
0007
0008 me0RecHitLabel = cms.InputTag("me0RecHits"),
0009
0010 algo_type = cms.int32(2),
0011
0012 algo_psets = cms.VPSet(
0013 cms.PSet(
0014 ME0SegmentAlgorithm
0015 ),
0016 cms.PSet(
0017 ME0SegAlgoRU
0018 )
0019
0020 )
0021 )
0022