CMS 3D CMS Logo

jetDQMConfig_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 jetDQMParameters = cms.PSet(
3  verbose = cms.int32(0),
4  eBin = cms.int32(100),
5  eMax = cms.double(1000.0),
6  eMin = cms.double(0.0),
7 
8  #if changed here, change certification module input in same manner
9  etaBin = cms.int32(100),
10  etaMax = cms.double(5.0),
11  etaMin = cms.double(-5.0),
12 
13  pBin = cms.int32(100),
14  pMax = cms.double(500.0),
15  pMin = cms.double(0.0),
16 
17  phiBin = cms.int32(70),
18  phiMax = cms.double(3.2),
19  phiMin = cms.double(-3.2),
20 
21  ptBin = cms.int32(100),
22  ptMax = cms.double(500.0),
23  ptMin = cms.double(20.0),
24 
25  pVBin = cms.int32(100),
26  pVMax = cms.double(100.0),
27  pVMin = cms.double(0.0),
28 
29  ptThreshold = cms.double(20.),
30  #ptThresholdUnc = cms.double(17.5),
31  ptThresholdUnc = cms.double(30),# dicuss to raise thresholds
32  asymmetryThirdJetCut = cms.double(30),
33  balanceThirdJetCut = cms.double(0.2),
34  fillJIDPassFrac = cms.int32(1),
35 )
36 
37 
38