The Gaudi Framework  master (b9786168)
Loading...
Searching...
No Matches
Read.py
Go to the documentation of this file.
1
14
15from Configurables import Gaudi__TestSuite__MultiInput__ReadAlg as ReadAlg
16from Configurables import GaudiPersistency
17from Gaudi.Configuration import *
18
19# I/O
20GaudiPersistency()
21esel = EventSelector()
22esel.Input = ["DATAFILE='PFN:MI_Base.dst' SVC='Gaudi::RootEvtSelector' OPT='READ'"]
23FileCatalog(Catalogs=["xmlcatalog_file:MultiInput.xml"])
24# Algorithms
25evtAlgs = Gaudi__Sequencer(
26 "EventAlgs", Members=[ReadAlg(AddressesFile="addresses.txt", OutputLevel=DEBUG)]
27)
28
29# Application setup
30app = ApplicationMgr()
31# - Algorithms
32app.TopAlg = [evtAlgs]
33# - Events
34app.EvtMax = 100
35app.HistogramPersistency = "NONE"
The Application Manager class.
Definition of class EventSelector.
ReadAlg class for the RootIOExample.
Definition ReadAlg.h:29