The Gaudi Framework  master (b9786168)
Loading...
Searching...
No Matches
Timeline.py
Go to the documentation of this file.
14
15from Configurables import Gaudi__TestSuite__FloatDataConsumer as FloatDataConsumer
16from Configurables import Gaudi__TestSuite__IntDataConsumer as IntDataConsumer
17from Configurables import Gaudi__TestSuite__IntDataProducer as IntDataProducer
18from Configurables import (
19 Gaudi__TestSuite__IntIntToFloatFloatData as IntIntToFloatFloatData,
20)
21from Configurables import Gaudi__TestSuite__IntToFloatData as IntToFloatData
22from Configurables import TimelineSvc
23from Gaudi.Configuration import *
24
25# Application setup
27# - Algorithms
28OtherIntDataProducer = IntDataProducer("OtherIntDataProducer")
29OtherIntDataProducer.OutputLocation = "/Event/MyOtherInt"
30app.TopAlg = [
31 IntDataProducer("IntDataProducer"),
32 OtherIntDataProducer,
33 IntDataConsumer("IntDataConsumer"),
34 IntToFloatData("IntToFloatData"),
35 IntIntToFloatFloatData("IntIntToFloatFloatData"),
36 FloatDataConsumer("FloatDataConsumer"),
37]
38# - Events
39app.EvtMax = 2
40app.EvtSel = "NONE"
41app.HistogramPersistency = "NONE"
42# - Activate timeline service
43TimelineSvc(RecordTimeline=True, DumpTimeline=True, TimelineFile="myTimeline.csv")
The Application Manager class.