CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/Validation/RecoJets/python/producers/GenJetClosure_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #----------------------------------------------
00004 # module to for gen jet closure
00005 #----------------------------------------------
00006 
00007 GenJetClosure = cms.EDFilter("GenJetClosure",
00008 ## input
00009   recs = cms.InputTag("iterativeCone5CaloJets"),
00010   refs = cms.InputTag("iterativeCone5GenJets"),
00011 
00012 ## histogram directory
00013   hist = cms.string('GenJetClosure.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( 10.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   minEmfGenJet  = cms.double( 0.0),
00036   maxEmfGenJet  = cms.double(0.95),
00037   minEmfCaloJet = cms.double( 0.0),
00038   maxEmfCaloJet = cms.double( 1.0)
00039 )
00040 
00041