mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 00:31:14 +00:00
37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<topology id="ExampleDDS">
|
|
|
|
<property id="SamplerOutputAddress" />
|
|
<property id="SinkInputAddress" />
|
|
|
|
<decltask id="Sampler">
|
|
<exe reachable="true">@CMAKE_BINARY_DIR@/bin/ex3-sampler-dds --id sampler --config-json-file @CMAKE_BINARY_DIR@/bin/config/ex3-devices.json</exe>
|
|
<properties>
|
|
<id access="write">SamplerOutputAddress</id>
|
|
</properties>
|
|
</decltask>
|
|
|
|
<decltask id="Processor">
|
|
<exe reachable="true">@CMAKE_BINARY_DIR@/bin/ex3-processor-dds --id processor --index %taskIndex% --config-json-file @CMAKE_BINARY_DIR@/bin/config/ex3-devices.json</exe>
|
|
<properties>
|
|
<id access="read">SamplerOutputAddress</id>
|
|
<id access="read">SinkInputAddress</id>
|
|
</properties>
|
|
</decltask>
|
|
|
|
<decltask id="Sink">
|
|
<exe reachable="true">@CMAKE_BINARY_DIR@/bin/ex3-sink-dds --id sink --config-json-file @CMAKE_BINARY_DIR@/bin/config/ex3-devices.json</exe>
|
|
<properties>
|
|
<id access="write">SinkInputAddress</id>
|
|
</properties>
|
|
</decltask>
|
|
|
|
<main id="main">
|
|
<task>Sampler</task>
|
|
<task>Sink</task>
|
|
<group id="ProcessorGroup" n="10">
|
|
<task>Processor</task>
|
|
</group>
|
|
</main>
|
|
|
|
</topology>
|