CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
me0Segments_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
5 
6 me0Segments = cms.EDProducer("ME0SegmentProducer",
7  # Define input
8  me0RecHitLabel = cms.InputTag("me0RecHits"),
9  # Choice of the building algo: 1 Average, 2 RU, ...
10  algo_type = cms.int32(2),
11  # std::vector<edm::ParameterSet>
12  algo_psets = cms.VPSet(
13  cms.PSet(
14  ME0SegmentAlgorithm
15  ),
16  cms.PSet(
17  ME0SegAlgoRU
18  )
19 
20  )
21 )
22