ATLAS Offline Software
Loading...
Searching...
No Matches
discriminants.py
Go to the documentation of this file.
1# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
2# Python package containing lists of discriminants that are defined by
3# the code here.
4
5# we break this into two classes: those that you can calculate
6# trivially from normal b-tagging information, and those that require
7# us to more complicated things like lists of vertices or tracks.
8
9complex_jet_discriminants = [
10 "IP2D_isDefaults", "IP3D_isDefaults", "JetFitter_isDefaults",
11 "SV1_nVtx","SV1_isDefaults",
12 "secondaryVtx_isDefaults", "secondaryVtx_nTrks", "secondaryVtx_m",
13 "secondaryVtx_E","secondaryVtx_EFrac","secondaryVtx_L3d",
14 "secondaryVtx_Lxy",
15 "secondaryVtx_min_trk_flightDirRelEta",
16 "secondaryVtx_max_trk_flightDirRelEta",
17 "secondaryVtx_avg_trk_flightDirRelEta",
18 "min_trk_flightDirRelEta",
19 "max_trk_flightDirRelEta",
20 "avg_trk_flightDirRelEta",
21 "rnnip_isDefaults",
22 "IP2D_nTrks", "IP3D_nTrks",
23]
24trivial_jet_discriminants = [
25 "IP2D_cu",
26 "IP2D_bu",
27 "IP2D_bc",
28 "IP3D_cu",
29 "IP3D_bu",
30 "IP3D_bc",
31 "JetFitter_deltaR",
32]