From f8674dc9cb9b5471740bdf75795a90fc76226e2b Mon Sep 17 00:00:00 2001 From: Diptaparna Biswas Date: Thu, 9 Jul 2026 10:29:14 +0200 Subject: [PATCH] Change reweighting group from jets to tracks Updated reweighting example to fix a typo. --- docs/reweighting.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/reweighting.md b/docs/reweighting.md index 21f384b..aea08c5 100644 --- a/docs/reweighting.md +++ b/docs/reweighting.md @@ -94,16 +94,16 @@ The reweighting can also be performed over track variables, for example ```yaml -group: jets -reweight_vars: [pt_frac] -bins: - pt_frac: - [ - [0, 0.5, 50], - [0.5, 1.0, 20] - ] -class_var: ftagTruthOriginLabel -class_target: mean +- group: tracks + reweight_vars: [pt_frac] + bins: + pt_frac: + [ + [0, 0.5, 50], + [0.5, 1.0, 20] + ] + class_var: ftagTruthOriginLabel + class_target: mean ``` Would calculate weights such that we have equivalent pt_frac distributions across the track labels.