CMS 3D CMS Logo

generalV0Candidates_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 generalV0Candidates = cms.EDProducer("V0Producer",
00004     collinearityCut = cms.double(0.02),
00005     #  Setting this one to zero; significance cut is sufficient
00006     rVtxCut = cms.double(0.0),
00007     doPostFitCuts = cms.bool(True),
00008     # string that tells which TrackCollection to use for vertexing
00009     trackRecoAlgorithm = cms.untracked.string('generalTracks'),
00010     doTrackQualityCuts = cms.bool(True),
00011     # set to 1, uses tracks refit by the KVF for V0Candidate kinematics
00012     useSmoothing = cms.bool(True),
00013     selectLambdas = cms.bool(True),
00014     # These parameters decide whether or not to reconstruct
00015     #  specific V0 particles
00016     selectKshorts = cms.bool(True),
00017     lambdaMassCut = cms.double(0.25),
00018     kShortMassCut = cms.double(0.07),
00019     vtxSignificanceCut = cms.double(22.0),
00020     # The next parameters are cut values
00021     # Track quality cuts
00022     #   Normalized track Chi2:
00023     tkChi2Cut = cms.double(5.0),
00024     # Vertex cuts
00025     vtxChi2Cut = cms.double(7.0),
00026     # set to 1, stores tracks refit by KVF in reco::Vertex object
00027     #  that is contained in the produced reco::V0Candidate 
00028     storeSmoothedTracksInRecoVertex = cms.bool(True),
00029     vertexFitter = cms.untracked.string('kvf'),
00030     #   Number of valid hits on track:
00031     tkNhitsCut = cms.int32(6)
00032 )
00033 
00034 

Generated on Tue Jun 9 17:46:12 2009 for CMSSW by  doxygen 1.5.4