Skip to content

Commit 090b2da

Browse files
authored
Apply suggestions from code review
1 parent f1599a3 commit 090b2da

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

13-TeV-examples/uproot_python/systematics_notebook.ipynb

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@
715715
"id": "UQqKUW1yAvRw"
716716
},
717717
"source": [
718-
"Let us look at the first 10 entries of the `jet_pt_flat` array:"
718+
"Let us look at the first 10 entries of the three jet transverse momentum arrays:"
719719
]
720720
},
721721
{
@@ -734,12 +734,16 @@
734734
"output_type": "stream",
735735
"name": "stdout",
736736
"text": [
737-
"jet_pt_flat: [55.1, 22.2, 177, 23.7, 50.6, 46.4, 35.3, 33.1, 23.4, 30.1]\n"
737+
"jet_pt_flat: [55.1, 22.2, 177, 23.7, 50.6, 46.4, 35.3, 33.1, 23.4, 30.1]\n",
738+
"jet_pt_jer1_flat: [55.9, 22.9, 177, 21, 50.4, 50.8, 35.6, 33.3, 23.8, 28.7]\n",
739+
"jet_pt_jer2_flat: [56.2, 23.3, 177, 19.2, 50.3, 52.1, 35.7, 33.3, 24.1, 28.3]\n"
738740
]
739741
}
740742
],
741743
"source": [
742-
"print(\"jet_pt_flat:\", jet_pt_flat[:10])"
744+
"print(\"jet_pt_flat:\", jet_pt_flat[:10])\n",
745+
"print(\"jet_pt_jer1_flat:\", jet_pt_jer1_flat[:10])\n",
746+
"print(\"jet_pt_jer2_flat:\", jet_pt_jer2_flat[:10])"
743747
]
744748
},
745749
{
@@ -957,7 +961,8 @@
957961
"If you'd like to explore these events and this kind of uncertainty further, try answering these questions:\n",
958962
"* Try comparing only the leading jets in the events. How is the result different? Why?\n",
959963
"* See if you can compare jets one-by-one to find out how much each one changes. Is there a coherent shift of the average momentum, or is the change random? How does the size of change depend on the momentum or angle of the jets?\n",
960-
"* Are the changes to the jets always consistent (e.g. when one jet has higher momentum, do all of them)?"
964+
"* Are the changes to the jets always consistent (e.g. when one jet has higher momentum, do all of them)?\n",
965+
"* Can you include statistical uncertainties on the ratio to understand whether the differences between the variations are significant?"
961966
]
962967
},
963968
{

0 commit comments

Comments
 (0)