Skip to content

Commit

Permalink
Update pT-bins; add pT-binned JSD plots
Browse files Browse the repository at this point in the history
  • Loading branch information
asogaard committed Jul 3, 2018
1 parent c4617e9 commit 3d68a9d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def perform_studies (data, args, tagger_features, ann_vars, uboost_vars):
Method delegating performance studies.
"""
masscuts = [True, False]
pt_ranges = [None, (200, 500), (500, 1000)]
pt_ranges = [None, (200, 500), (500, 1000), (1000, 2000)]

# Perform combined robustness study
with Profile("Study: Robustness"):
Expand Down Expand Up @@ -216,7 +216,9 @@ def perform_studies (data, args, tagger_features, ann_vars, uboost_vars):

# Perform JSD study
with Profile("Study: JSD"):
studies.jsd(data, args, tagger_features)
for pt_range in pt_ranges:
studies.jsd(data, args, tagger_features, pt_range)
pass
pass

# Perform efficiency study
Expand Down

0 comments on commit 3d68a9d

Please sign in to comment.