CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
me0Associator.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 #----------ME0Muon Collection Production for association by chi2
5 me0muon = cms.EDProducer("ME0MuonTrackCollProducer",
6  me0MuonTag = cms.InputTag("me0SegmentMatching"),
7  selectionTags = cms.vstring('All'),
8  )
9 #--------------------
10 me0muonColl_seq = cms.Sequence(
11  me0muon
12  )