From 887d6e6994332ab01292fc4b075115b334f54da4 Mon Sep 17 00:00:00 2001 From: nucleosynthesis Date: Tue, 26 Mar 2024 17:23:49 +0000 Subject: [PATCH] need to specify make_plots false! --- docs/part3/commonstatsmethods.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/part3/commonstatsmethods.md b/docs/part3/commonstatsmethods.md index 743cb312022..44fd3d6c927 100644 --- a/docs/part3/commonstatsmethods.md +++ b/docs/part3/commonstatsmethods.md @@ -1063,6 +1063,7 @@ In the example below, we will run in interactive mode so this can take a little "min_toys": 5000, "max_toys": 50000, "output_incomplete" : true, + "make_plots": false, "contours":["obs"], "CL": 0.68, "output": "FeldmanCousins.root", @@ -1084,7 +1085,7 @@ Once this is done, we extract the values of $p_{\vec{\mu}}$ for each point in ou combineTool.py -M HybridNewGrid ./poi_grid_configuration.json -d toy-hgg-125.root --task-name fc2d --job-mode 'interactive' --cycles 0 --output ``` -which will produce a file `FeldmanCousins.root` that contains a `TGraph2D` which stores the calculated value of $p_{\vec{\mu}}$ for each point in the grid. The script below can be used to draw these values and extract the contour corresponding to 68% CL ($\alpha=0.32$). +which will produce a file `FeldmanCousins.root` (as defined in the `"output"` field of `poi_grid_configuration.json`) that contains a `TGraph2D` which stores the calculated value of $p_{\vec{\mu}}$ for each point in the grid. Using something like the macro below, these values can be plotted along with a contour corresponding to 68% CL ($\alpha=0.32$). /// details | **Show script**