CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/Validation/RecoJets/python/producers/PartonClosure_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #----------------------------------------------
00004 # module to for parton closure
00005 #----------------------------------------------
00006 
00007 PartonClosure = cms.EDFilter("PartonClosure",
00008 ## input
00009   recs = cms.InputTag("iterativeCone5CaloJets"),
00010   refs = cms.InputTag("genParticles"),
00011                              
00012 ## histogram directory
00013   hist = cms.string('PartonClosure.hist'),
00014 
00015 ## pt bins for calibration
00016   type = cms.int32 (  0),   # comparison type can be (0:ratio/1:rel diff)
00017   bins = cms.int32 (200),
00018   min  = cms.double(0.0),                             
00019   max  = cms.double(2.0),
00020                              
00021   binsPt  = cms.vdouble(30.0, 50.0, 70.0, 100.0, 130.0, 160.0, 200.0, 250.0, 300.0),
00022   binsEta = cms.vdouble(-3.0, -1.4, 0.0, 1.4, 3.0),
00023                              
00024 ## configure visible range and reconstruction quality
00025   maxDR     = cms.double(  0.3),
00026   minPtRef  = cms.double(  5.0),
00027   maxPtRef  = cms.double(999.0),
00028   minPtRec  = cms.double( 15.0),
00029   maxPtRec  = cms.double(999.0),
00030   minEtaRef = cms.double( -3.0),                             
00031   maxEtaRef = cms.double(  3.0),
00032   minEtaRec = cms.double( -5.0),
00033   maxEtaRec = cms.double(  5.0),
00034                              
00035   minEmfCaloJet = cms.double( 0.0),
00036   maxEmfCaloJet = cms.double( 1.0),
00037   status        = cms.int32 (   3),
00038   partons       = cms.vint32(1, 2, 3, 4, 5)
00039 # partons       = cms.vint32(5)
00040 )
00041 
00042