The Gaudi Framework  master (181af51f)
Loading...
Searching...
No Matches
Read.py
Go to the documentation of this file.
14
15from Configurables import Gaudi__RootCnvSvc as RootCnvSvc
16from Configurables import GaudiPersistency
17from Configurables import GaudiTesting__GetDataObjectAlg as DataReader
18from Gaudi.Configuration import *
19
20# Output Levels
21# MessageSvc(OutputLevel=VERBOSE)
22# IncidentSvc(OutputLevel=DEBUG)
23# RootCnvSvc(OutputLevel=INFO)
24
25# Input setup
26GaudiPersistency()
27
28FileCatalog(Catalogs=["xmlcatalog_file:ConditionalOutput.xml"])
29
30esel = EventSelector(OutputLevel=INFO, PrintFreq=1, FirstEvent=1)
31esel.Input = [
32 "DATAFILE='PFN:ConditionalOutput.dst' SVC='Gaudi::RootEvtSelector' OPT='READ'"
33]
34
35# Application setup
37# - Algorithms
38app.TopAlg = [DataReader("DataReader", Paths=["A", "B", "C", "D"], IgnoreMissing=True)]
39# - Events
40app.EvtMax = -1
41app.EvtSel = esel
42app.HistogramPersistency = "NONE"
The Application Manager class.
Definition of class EventSelector.