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