Skip to content

Pass HF_Classification to output container

Luis Falda Coelho requested to merge lfaldaul/easyjet:HF_class into main

HF_SimpleClassification does the basic ttbar splitting into:

tt+ ≥ 1b: HF_SimpleClassification == 1
tt+ ≥ 1c: HF_SimpleClassification == -1
tt+ light-jets: HF_SimpleClassification == 0

HF_Classification that does the finer splitting:

tt+b: if((HF_Classification >= 1000) && (HF_Classification < 1100))
tt+bb: if((HF_Classification >= 2000) && (HF_Classification < 2100))
tt+B: if ((HF_Classification >= 100) && (HF_Classification < 200))
tt+>=3b: if (((HF_Classification >= 1100) && (HF_Classification < 2000)) || ((HF_Classification >= 200) && (HF_Classification < 1000)) || (HF_Classification >= 2100))

https://cds.cern.ch/record/2244360/files/ATL-COM-PHYS-2017-079.pdf

@gdigrego @boumedi @awierda

Edited by Luis Falda Coelho

Merge request reports