CMS 3D CMS Logo

cscSegments_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
8 
9 cscSegments = cms.EDProducer("CSCSegmentProducer",
10  # Define input
11  inputObjects = cms.InputTag("csc2DRecHits"),
12  # Choice of the building algo: 1 SK, 2 TC, 3 DF, 4 ST, 5 RU, ...
13  algo_type = cms.int32(5),
14  # std::vector<edm::ParameterSet>
15  algo_psets = cms.VPSet(
16  cms.PSet(
17  CSCSegAlgoSK
18  ),
19  cms.PSet(
20  CSCSegAlgoTC
21  ),
22  cms.PSet(
23  CSCSegAlgoDF
24  ),
25  cms.PSet(
26  CSCSegAlgoST
27  ),
28  cms.PSet(
29  CSCSegAlgoRU
30  )
31 
32  )
33 )
34 
35