CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/Validation/RecoHI/python/selectSimTracks_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 findableSimTracks = cms.EDFilter("HitPixelLayersTPSelection",
00004     src = cms.InputTag("mergedtruth","MergedTrackTruth"),
00005         tripletSeedOnly = cms.bool(True),
00006         chargedOnly = cms.bool(True),
00007         signalOnly = cms.bool(False),
00008         primaryOnly = cms.bool(True),
00009         tpStatusBased = cms.bool(True), # for primary particle definition
00010         ptMin = cms.double(2.0),
00011         minHit = cms.int32(8),
00012         minRapidity = cms.double(-2.5),
00013         maxRapidity = cms.double(2.5),
00014         tip = cms.double(3.5),
00015         lip = cms.double(30.0),
00016         pdgId = cms.vint32()
00017 )
00018 
00019 
00020 primaryChgSimTracks = cms.EDFilter("HitPixelLayersTPSelection",
00021     src = cms.InputTag("mergedtruth","MergedTrackTruth"),
00022           tripletSeedOnly = cms.bool(False),
00023           chargedOnly = cms.bool(True),
00024           signalOnly = cms.bool(False),
00025           primaryOnly = cms.bool(True),
00026           tpStatusBased = cms.bool(True),
00027           ptMin = cms.double(0.1),
00028           minHit = cms.int32(3),
00029           minRapidity = cms.double(-2.5),
00030           maxRapidity = cms.double(2.5),
00031           tip = cms.double(3.5),
00032           lip = cms.double(30.0),
00033           pdgId = cms.vint32()
00034 )
00035 
00036