CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/Validation/RecoJets/python/producers/CompareCalibs_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 CompareCalibs = cms.EDFilter("CompareCalibs",
00008 ## input
00009     recs = cms.InputTag("uhhCaliIterativeCone5"),
00010     refs = cms.InputTag("iterativeCone5CaloJets"),
00011                              
00012 ## histogram directory
00013     hist = cms.string('CompareCalibs.hist'),
00014                              
00015 ## pt bins for calibration
00016     type = cms.int32 (  0),
00017     bins = cms.int32 (200),
00018     min  = cms.double(0.0),
00019     max  = cms.double(2.0),
00020     binsPt  = cms.vdouble(30.0, 50.0, 70.0, 100.0, 130.0, 160.0, 200.0, 250.0, 300.0),
00021     binsEta = cms.vdouble(-3.0, -1.4,  0.0,   1.4,   3.0),                             
00022 
00023 ## configure visible range and reconstruction quality                                 
00024     maxDR         = cms.double(  0.3),
00025     minPtRef      = cms.double( 15.0),
00026     maxPtRef      = cms.double(999.0),
00027     minPtRec      = cms.double( 15.0),
00028     maxPtRec      = cms.double(999.0),
00029     minEtaRef     = cms.double( -5.0),
00030     maxEtaRef     = cms.double(  5.0),
00031     minEtaRec     = cms.double( -5.0),
00032     maxEtaRec     = cms.double(  5.0),                             
00033     minEmfCaloJet = cms.double( 0.05),
00034     maxEmfCaloJet = cms.double( 0.95)
00035 )
00036 
00037