CMS 3D CMS Logo

selectLoose_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 selectLoose = cms.EDFilter("AnalyticalTrackSelector",
00004     src = cms.InputTag("generalTracks"),
00005     keepAllTracks = cms.bool(False), ## if set to true tracks failing this filter are kept in the output
00006 
00007     beamspot = cms.InputTag("offlineBeamSpot"),
00008     vtxTracks = cms.uint32(3), ## at least 3 tracks
00009 
00010     vtxChi2Prob = cms.double(0.01), ## at least 1% chi2nprobability (if it has a chi2)
00011 
00012     #untracked bool copyTrajectories = true // when doing retracking before
00013     copyTrajectories = cms.untracked.bool(False),
00014     vertices = cms.InputTag("pixelVertices"),
00015     qualityBit = cms.string('loose'), ## set to '' or comment out if you don't want to set the bit
00016 
00017     vtxNumber = cms.int32(-1),
00018     copyExtras = cms.untracked.bool(True), ## set to false on AOD
00019 
00020     minNumberLayers = cms.uint32(0),
00021     # parameters for cuts: loose
00022     chi2n_par = cms.double(2.0),
00023     d0_par2 = cms.vdouble(0.55, 4.0),
00024     d0_par1 = cms.vdouble(0.55, 4.0),
00025     dz_par1 = cms.vdouble(0.65, 4.0),
00026     # resolution parameters: normal 
00027     res_par = cms.vdouble(0.003, 0.01),
00028     dz_par2 = cms.vdouble(0.45, 4.0)
00029 )
00030 
00031 

Generated on Tue Jun 9 17:45:24 2009 for CMSSW by  doxygen 1.5.4