CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_1/src/RecoBTag/ImpactParameter/python/promptTrackCountingComputer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # This computer counts the number of PROMPT tracks in a jet.
00004 # i.e. The tagging variable it calculates is equal to this number.
00005 # Its main use it for exotica physics, not b tagging.
00006 # It counts tracks with impact parameter significance less than some cut.
00007 # If you also wish to apply a cut on the maximum allowed impact parameter,
00008 # you can do this in the TagInfoProducer.
00009 
00010 promptTrackCounting = cms.ESProducer("PromptTrackCountingESProducer",
00011     impactParameterType = cms.int32(0), ## 0 = 3D, 1 = 2D
00012 
00013     maximumDistanceToJetAxis = cms.double(999999.0),
00014     deltaR = cms.double(-1.0), ## maximum deltaR of track to jet. If -ve just use cut from JTA
00015     deltaRmin = cms.double(0.0), ## minimum deltaR of track to jet.                                     
00016 
00017     maximumDecayLength = cms.double(999999.0),
00018     # These cuts on absolute impact parameter and its significance
00019     maxImpactParameter    = cms.double(0.1),
00020     maxImpactParameterSig = cms.double(999999.0),
00021     trackQualityClass = cms.string("any"),
00022 
00023     # This parameter is not used. 
00024     nthTrack = cms.int32(-1)                                    
00025 )
00026 
00027