Introduction
This guide is intended for Run-3 trigger algorithm developers. Information relevant for older releases (LHC Run 1&2) and other general topics can be found in the Trigger Developer TWiki pages. Details on meetings and mailing lists can be found in the Trigger Core Software TWiki.
For a general introduction to Athena software the Athena Development Tutorial is strongly recommended.
Running the trigger
The trigger (HLT reconstruction and optionally L1 simulation) is run by the TriggerJobOpts.runHLT ComponentAccumulator (CA) module (see Athena configuration for an introduction to the python configuration system).
A minimal athena command to run the HLT on an input FILE
(see TrigValInputs for commonly used inputs) would be:
athena --threads=1 --filesInput=FILE TriggerJobOpts/runHLT.py [FLAGS]
--threads >= 1
argument is mandatory. This will use a default trigger menu, but usually you would select one specifically by setting e.g. Trigger.triggerMenuSetup="Dev_pp_run3_v1_TriggerValidation_prescale"
in FLAGS
.
For a full list of TriggerConfigFlags execute:
athena --help Trigger
Trigger.triggerMenuSetup : name of the trigger menu
Trigger.doLVL1 : enable L1 simulation
athenaHLT
The above runs the trigger using regular athena, which in almost all cases is good enough for trigger
development and validation. To run the trigger in an online-type environment, use athenaHLT
.
The main differences are related to event input/output, reading of the trigger configuration
from the database and the ability to run multiple independent processes (forks) in addition to threads.
See athenaHLT --help
for all command line options.
athenaHLT --threads=1 --filesInput=FILE TriggerJobOpts.runHLT [FLAGS]
Testing of code changes
Please see all details in the Trigger Validation section of this guide. A short summary of the information described there:
- Run a test specific to your development while writing the code.
- Run a minimal set of tests with larger coverage before submitting a MR with
runTrigART.py -m -j4
- Run unit tests for the packages you modified before submitting a MR with
ctest -j4
in the build directory.