ATLAS Offline Software
TriggerTypeDef.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaCommon.Logging import logging
4 log = logging.getLogger(__name__)
5 
6 class TT(object):
7  """
8  Trigger type logic
9  should also match StreamingDef.py definitions
10  """
11  rand = 1 << 0 # Defined for all RDX items, but not used by any FEs
12  zerobs = 1 << 1 # Used by LAr, Tile (and others?) -> data overlay
13  calo = 1 << 2 # Used by LAr/LATOME for saturated pulse
14  muon = 1 << 3 # Used by TGC
15  lardigital = 1 << 4 # Used by LAr/LATOME
16  nsw = 1 << 5 # Used on NSW FEs
17  nim = 1 << 6 # Used by TGC Burst
18  phys = 1 << 7 # Used in conjunction with the other bits
19 
20  # Calibration requests
21  # From David B - for calibration events TriggerType
22  # will be reset by CTP - values below are placeholders
23  calreq0 = 0x30
24  calreq1 = 0x32
25  calreq2 = 0x34
python.L1.Config.TriggerTypeDef.TT
Definition: TriggerTypeDef.py:6
pickleTool.object
object
Definition: pickleTool.py:30