CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/DQMOffline/JetMET/python/jetDQMConfig_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 jetDQMParameters = cms.PSet(
00004     eBin        = cms.int32(100),
00005     eMax        = cms.double(500.0),
00006     eMin        = cms.double(0.0),
00007 
00008     etaBin      = cms.int32(100),
00009     etaMax      = cms.double(5.0),
00010     etaMin      = cms.double(-5.0),
00011 
00012     pBin        = cms.int32(100),
00013     pMax        = cms.double(500.0),
00014     pMin        = cms.double(0.0),
00015 
00016     phiBin      = cms.int32(70),
00017     phiMax      = cms.double(3.2),
00018     phiMin      = cms.double(-3.2),
00019 
00020     ptBin       = cms.int32(100),
00021     ptMax       = cms.double(50.0),
00022     ptMin       = cms.double(0.0),
00023 
00024     ptThreshold = cms.double(3.),
00025     n90HitsMin  = cms.int32(-1),
00026     fHPDMax     = cms.double(1.),
00027     resEMFMin   = cms.double(0.),
00028     fillJIDPassFrac   = cms.int32(1),
00029 
00030     n90HitsMinLoose  = cms.int32(1),
00031     fHPDMaxLoose     = cms.double(0.98),
00032     resEMFMinLoose   = cms.double(0.01),    
00033     n90HitsMinTight  = cms.int32(4),
00034     fHPDMaxTight     = cms.double(0.98),
00035     resEMFMinTight   = cms.double(0.01),
00036 
00037     sigmaEtaMinTight   = cms.double(0.01),    
00038     sigmaPhiMinTight   = cms.double(0.01),
00039     
00040     makedijetselection  = cms.int32(0),
00041 
00042     JetIDParams  = cms.PSet(
00043         useRecHits      = cms.bool(True),
00044         hbheRecHitsColl = cms.InputTag("hbhereco"),
00045         hoRecHitsColl   = cms.InputTag("horeco"),
00046         hfRecHitsColl   = cms.InputTag("hfreco"),
00047         ebRecHitsColl   = cms.InputTag("ecalRecHit", "EcalRecHitsEB"),
00048         eeRecHitsColl   = cms.InputTag("ecalRecHit", "EcalRecHitsEE")
00049     ),
00050 ##ok i have to add here parameters which will be used only
00051 ##in the case of PFjets
00052     fillpfJIDPassFrac = cms.int32(0),
00053     ThisCHFMin = cms.double(-999.),
00054     ThisNHFMax = cms.double(999.),
00055     ThisCEFMax = cms.double(999.),
00056     ThisNEFMax = cms.double(999.),
00057     TightCHFMin = cms.double(0.0),
00058     TightNHFMax = cms.double(1.0),
00059     TightCEFMax = cms.double(1.0),
00060     TightNEFMax = cms.double(1.0),
00061     LooseCHFMin = cms.double(0.0),
00062     LooseNHFMax = cms.double(0.9),
00063     LooseCEFMax = cms.double(1.0),
00064     LooseNEFMax = cms.double(0.9)
00065 )
00066 
00067 
00068 cleanedJetDQMParameters = jetDQMParameters.clone(
00069     fillJIDPassFrac   = cms.int32(0),
00070     ptThreshold = cms.double(10.),
00071     n90HitsMin  = cms.int32(2),
00072     fHPDMax     = cms.double(0.98),
00073     resEMFMin   = cms.double(0.01),
00074     fillpfJIDPassFrac = cms.int32(1),
00075     ThisCHFMin = cms.double(0.0),
00076     ThisNHFMax = cms.double(0.9),
00077     ThisCEFMax = cms.double(1.0),
00078     ThisNEFMax = cms.double(0.9)
00079 )