Including systematics variation samples #433
-
Hi, I would like to include different generator samples as systematics sample, but could someone tell me how I can do that? Systematics:
- Name: "Signal_modeling"
Up:
SamplePath: "modeling_variation_up.root"
Down:
SamplePath: "modeling_variation_down.root"
Samples: "Signal" but for the generator difference, I would like to include different file as ttbar-syst-Sh2212.root, and would like to use one of the histogram (not as Up and Down) in that file. Best Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
Hi Tomoya, an example for how to set this up is here: cabinetry/utils/config_histograms.yml Lines 31 to 37 in a0638e1 If you want to read a histogram from a different file you could set it up like this for example: General:
InputPath: "{SamplePath}:{RegionPath}"
Samples:
- Name: "ttbar"
SamplePath: "ttbar-PP8.root"
Systematics:
- Name: "ttbar_Sherpa"
Up:
SamplePath: "ttbar-syst-Sh2212.root"
Down:
Symmetrize: True
Samples: "ttbar"
Type: "NormPlusShape" This will build the |
Beta Was this translation helpful? Give feedback.
Hi Tomoya, an example for how to set this up is here:
cabinetry/utils/config_histograms.yml
Lines 31 to 37 in a0638e1
If you want to read a histogram from a different file you could set it up like this for example:
This will build the
ttbar
sampl…