This section of the design file that define the measurement filters.
The following source show the structure of a typical measurement filters section of the design file:
<measurementfilters skip="false"> <measurementfilter> <name>floatrange>/name> <parameters> <parameter> <name>measurement</name> <value>%gc</value> </parameter> <parameter> <name>min</name> <value>0</value> </parameter> <parameter> <name>max</name> <value>1</value> </parameter> </parameters> </measurementfilter> <measurementfilter> <name>floatrange</name> <parameters> <parameter> <name>measurement</name> <value>tm</value> </parameter> <parameter> <name>min</name> <value>0</value> </parameter> <parameter> <name>max</name> <value>100</value> </parameter> </parameters> </measurementfilter> </measurementfilters>
Each measurement filter is defined by:
The standard version of Teolenn contains 2 measurement filters:
Note that this step can be skipped by setting the skip attribute to true in measurementfilters tag.
Teolenn is a very customizable tool, you can use your own measurement
filter (see the developping plugins section for more informations). To enable your custom filter, you must
add the full name of the main class (witch implements Measurement
)
of your plugin in the design file as shown in the following sample:
<measurementfilter> <name>mymeasurementfilter</name> <class>com.example.mymeasurementfilter</class> </measurementfilter>