Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-08 03:36:28

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoLocalMuon.CSCSegment.CSCSegmentAlgorithmSK_cfi import *
0004 from RecoLocalMuon.CSCSegment.CSCSegmentAlgorithmTC_cfi import *
0005 from RecoLocalMuon.CSCSegment.CSCSegmentAlgorithmDF_cfi import *
0006 from RecoLocalMuon.CSCSegment.CSCSegmentAlgorithmST_cfi import *
0007 from RecoLocalMuon.CSCSegment.CSCSegmentAlgorithmRU_cfi import *
0008 
0009 from RecoLocalMuon.CSCSegment.cscSegmentProducer_cfi import cscSegmentProducer as _cscSegmentProducer
0010 cscSegments = _cscSegmentProducer.clone(
0011     # Define input
0012     inputObjects = cms.InputTag("csc2DRecHits"),
0013     # Choice of the building algo: 1 SK, 2 TC, 3 DF, 4 ST, 5 RU, ...
0014     algo_type = cms.int32(5),
0015     # std::vector<edm::ParameterSet>
0016     algo_psets = cms.VPSet(
0017         cms.PSet(
0018             CSCSegAlgoSK
0019         ), 
0020         cms.PSet(
0021             CSCSegAlgoTC
0022         ), 
0023         cms.PSet(
0024             CSCSegAlgoDF
0025         ), 
0026         cms.PSet(
0027             CSCSegAlgoST
0028         ),
0029         cms.PSet(
0030             CSCSegAlgoRU
0031         )
0032 
0033      )
0034 )
0035 
0036