ATLAS Offline Software
Loading...
Searching...
No Matches
runPhysValExample.py
Go to the documentation of this file.
1#!/usr/bin/env python
2# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
4from glob import glob
5
7 from argparse import ArgumentParser
8 parser = ArgumentParser(description='Parser for PhysValExample configuration')
9 parser.add_argument("--filesInput")
10 parser.add_argument("--outputFile", help='Name of output file', default="M_output.root")
11 return parser.parse_args()
12
13# Parse the arguments
15
16from AthenaConfiguration.AllConfigFlags import initConfigFlags
17flags = initConfigFlags()
18flags.Input.Files = []
19for path in MyArgs.filesInput.split(','):
20 flags.Input.Files += glob(path)
21flags.PhysVal.OutputFileName = MyArgs.outputFile
22
23from AthenaConfiguration.MainServicesConfig import MainServicesCfg
24acc = MainServicesCfg(flags)
25from AthenaPoolCnvSvc.PoolReadConfig import PoolReadCfg
26acc.merge(PoolReadCfg(flags))
27
28flags.lock()
29
30from PhysValMonitoring.PhysValMonitoringConfig import PhysValMonitoringCfg, PhysValExampleCfg
31acc.merge(PhysValMonitoringCfg(flags, tools=[acc.popToolsAndMerge(PhysValExampleCfg(flags))]))
32
33acc.printConfig(withDetails=True)
34
35# Execute and finish
36sc = acc.run(maxEvents=-1)
37
38# Success should be 0
39import sys
40sys.exit(not sc.isSuccess())