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.
2 
7 # module must be an EDProducer or similar
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, ...
13  algo_type = cms.int32(4),
14  # std::vector<edm::ParameterSet>
15  algo_psets = cms.VPSet(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