CMS 3D CMS Logo

cscSegments_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoLocalMuon.CSCSegment.CSCSegmentAlgorithmSK_cfi import *
00004 from RecoLocalMuon.CSCSegment.CSCSegmentAlgorithmTC_cfi import *
00005 from RecoLocalMuon.CSCSegment.CSCSegmentAlgorithmDF_cfi import *
00006 from RecoLocalMuon.CSCSegment.CSCSegmentAlgorithmST_cfi import *
00007 # module must be an EDProducer or similar
00008 # =======================================
00009 cscSegments = cms.EDProducer("CSCSegmentProducer",
00010     # Define input
00011     inputObjects = cms.InputTag("csc2DRecHits"),
00012     # Choice of the building algo: 1 SK, 2 TC, 3 DF, 4 ST, ...
00013     algo_type = cms.int32(4),
00014     # std::vector<edm::ParameterSet>
00015     algo_psets = cms.VPSet(cms.PSet(
00016         CSCSegAlgoSK
00017     ), 
00018         cms.PSet(
00019             CSCSegAlgoTC
00020         ), 
00021         cms.PSet(
00022             CSCSegAlgoDF
00023         ), 
00024         cms.PSet(
00025             CSCSegAlgoST
00026         ))
00027 )
00028 
00029 

Generated on Tue Jun 9 17:43:50 2009 for CMSSW by  doxygen 1.5.4