![]() |
ATLAS Offline Software
|
Functions | |
| getCTP_Decision (aKey) | |
| CTP Decision. | |
| getLVL1_ROI (aKey) | |
| LVL1 ROI. | |
| getTrigDecision (aKey) | |
| TrigDecision. | |
| getHLTResult (aKey) | |
| HLTResult. | |
| getHLTAODConfigData (aKey) | |
| HLTAODConfigData. | |
| getLvl1AODConfigData (aKey) | |
| Lvl1AODConfigData. | |
| getLvl1AODPrescaleConfigData (aKey) | |
| Lvl1AODPrescaleConfigData. | |
Variables | |
| str | __docformat__ = "restructuredtext en" |
module to access trigger objects interactively Examples are in `PyAnalysisExamples/TriggerTest.py`_ .. _PyAnalysisExamples/TriggerTest.py: http://atlas-sw.cern.ch/cgi-bin/viewcvs-atlas.cgi/offline/PhysicsAnalysis/PyAnalysis/PyAnalysisExamples/share/TriggerTest.py?rev=HEAD&content-type=text/vnd.viewcvs-markup :author: Tadashi Maeno :contact: Tadashi.Maeno@cern.ch
| python.PyTriggerTools.getCTP_Decision | ( | aKey | ) |
CTP Decision.
Retrieve CTP_Decision object from SG
:param aKey: key of the object
**examples**::
athena> ctp = PyTriggerTools.getCTP_Decision('CTP_Decision')
athena> dir(ctp) # see methods of the CTP_Decision class
athena> print ctp.isAccepted() # see if this event was accepted by LVL1
Definition at line 18 of file PyTriggerTools.py.
| python.PyTriggerTools.getHLTAODConfigData | ( | aKey | ) |
HLTAODConfigData.
Retrieve TrigConf::HLTAODConfigData object from SG :param aKey: key of the object
Definition at line 72 of file PyTriggerTools.py.
| python.PyTriggerTools.getHLTResult | ( | aKey | ) |
HLTResult.
Retrieve HLT::HLTResult object from SG :param aKey: key of the object
Definition at line 62 of file PyTriggerTools.py.
| python.PyTriggerTools.getLVL1_ROI | ( | aKey | ) |
LVL1 ROI.
Retrieve LVL1_ROI object from SG
:param aKey: key of the object
**examples**::
athena> rois = PyTriggerTools.getLVL1_ROI('LVL1_ROI')
athena> dir(rois) # see methods of the LVL1_ROI class
athena> em = rois.getEmTauROIs() # get EMTau ROIs
athena> len(em) # get length of the EMTau ROI vector
athena> print em[0].getEta() # see Eta of the first ROI
Definition at line 34 of file PyTriggerTools.py.
| python.PyTriggerTools.getLvl1AODConfigData | ( | aKey | ) |
Lvl1AODConfigData.
Retrieve TrigConf::Lvl1AODConfigData object from SG :param aKey: key of the object
Definition at line 82 of file PyTriggerTools.py.
| python.PyTriggerTools.getLvl1AODPrescaleConfigData | ( | aKey | ) |
Lvl1AODPrescaleConfigData.
Retrieve TrigConf::Lvl1AODPrescaleConfigData object from SG :param aKey: key of the object
Definition at line 92 of file PyTriggerTools.py.
| python.PyTriggerTools.getTrigDecision | ( | aKey | ) |
TrigDecision.
Retrieve TrigDecision object from SG :param aKey: key of the object
Definition at line 52 of file PyTriggerTools.py.
|
private |
Definition at line 13 of file PyTriggerTools.py.