Skip to content

Commit

Permalink
Fix DQM from cms-sw#52 (tool is picky about number formats and variab…
Browse files Browse the repository at this point in the history
…le order)
  • Loading branch information
gpetruc committed Oct 31, 2017
1 parent ba22349 commit 0330dab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions PhysicsTools/NanoAOD/python/nanoDQM_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,16 @@
Plot1D('eta', 'eta', 20, -4, 4, 'eta'),
Plot1D('mass', 'mass', 20, 0, 300, 'mass'),
Plot1D('msoftdrop', 'msoftdrop', 20, -300, 300, 'Soft drop mass'),
Plot1D('n2b1', 'n2b1', 20, 0, 1, 'N2 (beta=1)'),
Plot1D('n3b1', 'n3b1', 20, 0, 5, 'N3 (beta=1)'),
Plot1D('phi', 'phi', 20, -3.14159, 3.14159, 'phi'),
Plot1D('pt', 'pt', 20, 0, 800, 'pt'),
NoPlot('subJetIdx1'),
NoPlot('subJetIdx2'),
Plot1D('tau1', 'tau1', 20, 0.00, 1.0, 'Nsubjettiness (1 axis)'),
Plot1D('tau2', 'tau2', 20, 0.00, 1.0, 'Nsubjettiness (2 axis)'),
Plot1D('tau3', 'tau3', 20, 0.00, 1.0, 'Nsubjettiness (3 axis)'),
Plot1D('tau4', 'tau4', 20, 0.00, 1.0, 'Nsubjettiness (4 axis)'),
Plot1D('n2b1', 'n2b1', 20, 0.00, 1.0, 'N2 (beta=1)'),
Plot1D('n3b1', 'n3b1', 20, 0.00, 5.0, 'N3 (beta=1)'),
Plot1D('tau1', 'tau1', 20, 0, 1, 'Nsubjettiness (1 axis)'),
Plot1D('tau2', 'tau2', 20, 0, 1, 'Nsubjettiness (2 axis)'),
Plot1D('tau3', 'tau3', 20, 0, 1, 'Nsubjettiness (3 axis)'),
Plot1D('tau4', 'tau4', 20, 0, 1, 'Nsubjettiness (4 axis)'),
)
),
Flag = cms.PSet(
Expand Down

0 comments on commit 0330dab

Please sign in to comment.