
Untitled
By: a guest on
Aug 21st, 2012 | syntax:
None | size: 0.83 KB | hits: 17 | expires: Never
# This is a comment
# Plain constant:
Dummystring = "foobar"
# Parameters to be injected from outside (CLI or another processor) and their respective types:
Parameters {
target_file: string,
integration_time: uint32
}
# Declare the type and name of input streams, default names are input1 and input2, additional names can be used
Input {
input1: double,
input2: double
}
Properties {
operation_mode: streamed|buffered,
space_dimensions:1
}
Children {
dest: waveFileWriter(target: target_file),
rms: rms(integration_time: integration_time),
modulator: modulator(astringparameter: Dummystring)
}
Connections {
input1 > rms.input1,
input2 > rms.input2,
rms.output1 > modulator.input1,
rms.output2 > modulator.input2,
modulator.output1 > dest.input1,
modulator.output2 > dest.input2
}