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