CMS 3D CMS Logo

simTrackMatching_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 SimTrackMatching = cms.PSet(
4  # common
5  useCSCChamberTypes = cms.untracked.vint32(0,1,2),
6  ntupleTrackChamberDelta = cms.bool(True),
7  ntupleTrackEff = cms.bool(True),
8  overrideminNHitsChamber = cms.bool(False),
9  minNHitsChamber = cms.untracked.int32(4),
10  verbose = cms.bool(False),
11  ## per collection params
12  simTrack = cms.PSet(
13  verbose = cms.int32(0),
14  input = cms.InputTag('g4SimHits'),
15  minPt = cms.double(1.5),
16  maxPt = cms.double(999.),
17  minEta = cms.double(1.45),
18  maxEta = cms.double(4.0),
19  onlyMuon = cms.bool(True),
20  requireVertex = cms.bool(True),
21  requireGenPart = cms.bool(True),
22  ),
23 
24  me0SimHit = cms.PSet(
25  verbose = cms.int32(0),
26  input = cms.InputTag('g4SimHits','MuonME0Hits'),
27  simMuOnly = cms.bool(True),
28  discardEleHits = cms.bool(True),
29  ),
30  me0StripDigi = cms.PSet(
31  verbose = cms.int32(0),
32  input = cms.InputTag("simMuonME0PseudoDigis"),
33  minBX = cms.int32(-1),
34  maxBX = cms.int32(1),
35  matchDeltaStrip = cms.int32(1),
36  ),
37  me0RecHit = cms.PSet(
38  verbose = cms.int32(0),
39  input = cms.InputTag('me0RecHits'),
40  simMuOnly = cms.bool(True),
41  discardEleHits = cms.bool(True),
42  ),
43  me0Seg = cms.PSet(
44  verbose = cms.int32(0),
45  input = cms.InputTag('me0Segments'),
46  simMuOnly = cms.bool(True),
47  discardEleHits = cms.bool(True),
48  ),
49 
50 )