Skip to content

Commit

Permalink
fix axis limis for trackPhiH to avoid using dynamic range which cause…
Browse files Browse the repository at this point in the history
…s histogram merging issues
  • Loading branch information
mmusich committed Jun 8, 2024
1 parent 69a5846 commit 0f4aa34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
verbose = False,
trackEtaH = dict(Xbins = 60, Xmin = -3.0, Xmax = 3.0),
trackPtH = dict(Xbins = 100, Xmin = 0.0 ,Xmax = 100.0),
trackPhiH = dict(Xbins = 100, Xmin = 3.15, Xmax = 3.15),
trackPhiH = dict(Xbins = 100, Xmin = -3.15, Xmax = 3.15),
#trackMVAH = dict(Xbins = 100 ,Xmin = -1.0, Xmax = 1.0)
)

0 comments on commit 0f4aa34

Please sign in to comment.