9from AthenaConfiguration.ComponentFactory
import CompFactory
10from AthenaConfiguration.ComponentAccumulator
import ComponentAccumulator
15 result = ComponentAccumulator()
16 result.addEventAlgo(CompFactory.AthHIPExamples.LinearTransformExampleAlg())
20if __name__ ==
"__main__":
21 from AthenaConfiguration.AllConfigFlags
import initConfigFlags
22 from AthenaConfiguration.MainServicesConfig
import MainServicesCfg
24 flags = initConfigFlags()
25 flags.Exec.MaxEvents = 10
26 flags.Input.Files = []
31 acc = MainServicesCfg(flags)
37 sys.exit(acc.run().isFailure())