ATLAS Offline Software
Loading...
Searching...
No Matches
TrigExISHistConfig.py
Go to the documentation of this file.
1#!/usr/bin/env athenaEF.py
2# Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3
4from AthenaConfiguration.ComponentFactory import CompFactory
5from AthExMonitored.MonitoredConfig import MonitoredCfg
6
7
8def TrigExISHistCfg(flags):
9 """Test of histogram and IS publishing"""
10
11 # Algorithm with histograms
12 cfg = MonitoredCfg(flags)
13
14 # Algorithm with IS publication
15 cfg.addEventAlgo( CompFactory.TrigExISPublishing() )
16
17 # athenaEF adds its own THistSvc
18 cfg.dropService('THistSvc')
19
20 return cfg