 |
ATLAS Offline Software
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
4TrigServicesHelper - Python interface to call ITrigEventLoopMgr methods directly.
6This module provides a way to call prepareForStart(), prepareForRun(), and
7hltUpdateAfterFork() on the HltEventLoopMgr without going through PSC/HLTMPPU.
11 from TrigServices.TrigServicesHelper import TrigServicesHelper
13 # After app.initialize() but before app.start():
14 helper = TrigServicesHelper()
15 success = helper.prepareForStart(
16 run_number=args.run_number,
17 det_mask=args.detector_mask,
18 sor_time=args.sor_time,
19 lb_number=args.lb_number,
22 toroids_current=20400.0,
23 solenoid_current=7730.0
27from libTrigServicesHelper
import TrigServicesHelper
29__all__ = [
'TrigServicesHelper']