test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
cscSegments_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
7 
8 cscSegments = cms.EDProducer("CSCSegmentProducer",
9  # Define input
10  inputObjects = cms.InputTag("csc2DRecHits"),
11  # Choice of the building algo: 1 SK, 2 TC, 3 DF, 4 ST, ...
12  algo_type = cms.int32(4),
13  # std::vector<edm::ParameterSet>
14  algo_psets = cms.VPSet(
15  cms.PSet(
16  CSCSegAlgoSK
17  ),
18  cms.PSet(
19  CSCSegAlgoTC
20  ),
21  cms.PSet(
22  CSCSegAlgoDF
23  ),
24  cms.PSet(
25  CSCSegAlgoST
26  )
27  )
28 )
29 
30