Skip to content

Commit

Permalink
fix(event-display): increase max cut value for jets
Browse files Browse the repository at this point in the history
Should fix #336.
  • Loading branch information
EdwardMoyse committed Jul 19, 2021
1 parent 95e7f15 commit 9f4cf7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class PhoenixLoader implements EventDataLoader {
const cuts = [
new Cut('phi', -pi, pi, 0.01),
new Cut('eta', -5.0, 5.0, 0.1),
new Cut('energy', 0, 100000, 100),
new Cut('energy', 0, 600000, 100),
];

const addJetsSizeOption = (
Expand Down

0 comments on commit 9f4cf7c

Please sign in to comment.