ATLAS Offline Software
PUClassification.py
Go to the documentation of this file.
1 #
2 # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 #
4 
5 """ Python version of the PUClassification enum """
6 
7 # Neutral/forward components without tracks
8 NeutralForward = 1 << 0
9 # Tracks not associated to the PV
10 ChargedPU = 1 << 1
11 # Tracks associated to the PV
12 ChargedHS = 1 << 2
13 
14 NFcPU = NeutralForward | ChargedPU
15 NFcHS = NeutralForward | ChargedHS
16 Charged = ChargedHS | ChargedPU
17 All = NeutralForward | ChargedPU | ChargedHS