2 from AthenaConfiguration.ComponentFactory
import CompFactory
6 if __name__ ==
'__main__':
8 from AthenaCommon.Logging
import logging
11 logger = logging.getLogger(
'run_nodata')
12 logger.setLevel(DEBUG)
16 from argparse
import RawTextHelpFormatter
19 parser = argparse.ArgumentParser(
20 "Running UCL hypo block",
21 formatter_class=RawTextHelpFormatter)
30 help=
"Maximum number of events will be executed.",
40 help=
"Number of events to skip.",
50 help=
"Decoding L1Calo inputs",
55 args = parser.parse_args()
62 from AthenaConfiguration.AllConfigFlags
import initConfigFlags
66 flags.Exec.MaxEvents = args.nevent
69 flags.Concurrency.NumThreads = 1
70 flags.Concurrency.NumConcurrentEvents = 1
71 flags.Trigger.doLVL1 =
True
74 flags.Concurrency.NumThreads = 1
75 flags.Concurrency.NumConcurrentEvents = 1
77 flags.GeoModel.AtlasVersion=
"ATLAS-R3S-2021-03-01-00"
79 flags.Scheduler.ShowDataDeps =
True
80 flags.Scheduler.CheckDependencies =
True
81 flags.Scheduler.ShowDataFlow =
True
82 flags.Trigger.EDMVersion = 3
83 flags.Trigger.doLVL1 =
True
84 flags.Trigger.enableL1CaloPhase1 =
True
90 from AthenaConfiguration.MainServicesConfig
import MainServicesCfg
94 hypoTestBench_alg = CompFactory.GlobalSim.HypoTestBenchAlg(
97 base_data =
"/eos/atlas/atlascerngroupdisk/data-art/"\
98 "large-input/trig-val/GlobalSimTest/eEmSortSelectCount/"
106 test_vectors = os.path.join(base_data,
'2025-03-24_tests.dat')
107 hypoTestBench_alg.testsFileName= test_vectors
109 expected_multiplicity = os.path.join(base_data,
110 '2025-03-24_expected_multiplicity.dat')
111 hypoTestBench_alg.expectedMultsFileName = expected_multiplicity
113 expected_tobs = os.path.join(base_data,
'2025-03-24_expected_tobs.dat')
114 hypoTestBench_alg.expectedTobsFileName = expected_tobs
119 hypoTestBench_alg.test_vecs = [
'0x000000000000000000']
121 hypoTestBench_alg.expTobs =
'0x' +
'0'* (198*8)
122 hypoTestBench_alg.expMults =
'0x' +
'0' * 13
125 acc.addEventAlgo(hypoTestBench_alg)
128 hypoTestBench_alg.OutputLevel = DEBUG
130 from GlobalSimAlgCfg_hypo_container
import GlobalSimulationAlgCfg
133 if acc.run().isFailure():