Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:26

0001 import FWCore.ParameterSet.Config as cms
0002 jetDQMParameters = cms.PSet(
0003     verbose     = cms.int32(0),
0004     eBin        = cms.int32(100),
0005     eMax        = cms.double(1000.0),
0006     eMin        = cms.double(0.0),
0007 
0008     #if changed here, change certification module input in same manner
0009     etaBin      = cms.int32(100),
0010     etaMax      = cms.double(5.0),
0011     etaMin      = cms.double(-5.0),
0012 
0013     pBin        = cms.int32(100),
0014     pMax        = cms.double(500.0),
0015     pMin        = cms.double(0.0),
0016 
0017     phiBin      = cms.int32(70),
0018     phiMax      = cms.double(3.2),
0019     phiMin      = cms.double(-3.2),
0020 
0021     ptBin       = cms.int32(100),
0022     ptMax       = cms.double(500.0),
0023     ptMin       = cms.double(20.0),
0024 
0025     pVBin       = cms.int32(100),
0026     pVMax       = cms.double(100.0),
0027     pVMin       = cms.double(0.0),
0028 
0029     ptThreshold     = cms.double(20.),
0030     #ptThresholdUnc  = cms.double(17.5),
0031     ptThresholdUnc  = cms.double(30),# dicuss to raise thresholds
0032     asymmetryThirdJetCut = cms.double(30),
0033     balanceThirdJetCut   = cms.double(0.2),
0034     fillJIDPassFrac   = cms.int32(1),
0035 )
0036 
0037 
0038