123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?xml version="1.0" encoding="utf-8"?>
- <executable>
- <category>Tours</category>
- <title>Execution Model Tour</title>
- <description>
- Shows one of each type of parameter.
- </description>
- <version>1.0</version>
- <documentation-url></documentation-url>
- <license></license>
- <contributor>Daniel Blezek</contributor>
- <parameters>
- <label>Scalar Parameters</label>
- <description>
- Variations on scalar parameters
- </description>
- <integer>
- <name>integerVariable</name>
- <flag>i</flag>
- <longflag>integer</longflag>
- <description>
- An integer without constraints
- </description>
- <label>Integer Parameter</label>
- <default>30</default>
- </integer>
- <boolean>
- <name>booleanParam</name>
- <flag>b</flag>
- <description>
- A boolean without constraints
- </description>
- <label>Boolean Parameter</label>
- </boolean>
- <file>
- <name>fileVar</name>
- <index>3</index>
- <description>Some file</description>
- <label>Some file</label>
- <default>bla</default>
- <channel>input</channel>
- </file>
- <directory>
- <name>dirVar</name>
- <index>6</index>
- <description>Some dir</description>
- <label>Some dir</label>
- <default>/home</default>
- <channel>output</channel>
- </directory>
- <geometry fileExtensions="*.jpg, *.txt">
- <name>geomVar</name>
- <index>7</index>
- <description>Some geom</description>
- <label>Some geom</label>
- </geometry>
- <double>
- <name>doubleVariable</name>
- <flag>d</flag>
- <longflag>double</longflag>
- <description>An double with constraints</description>
- <label>Double Parameter</label>
- <default>30</default>
- <constraints>
- <minimum>0</minimum>
- <maximum>1.e3</maximum>
- <step>0</step>
- </constraints>
- </double>
- </parameters>
- <parameters advanced="true">
- <label>Vector Parameters</label>
- <description>Variations on vector parameters</description>
- <float-vector>
- <name>floatVector</name>
- <flag>f</flag>
- <description>A vector of floats</description>
- <label>Float Vector Parameter</label>
- <default>1.3,2,-14</default>
- </float-vector>
- <string-vector>
- <name>stringVector</name>
- <longflag>string_vector</longflag>
- <description>A vector of strings</description>
- <label>String Vector Parameter</label>
- <default>"foo",bar,"foobar"</default>
- </string-vector>
- </parameters>
- <parameters>
- <label>Enumeration Parameters</label>
- <description>Variations on enumeration parameters</description>
- <string-enumeration>
- <name>stringChoice</name>
- <flag>e</flag>
- <longflag>enumeration</longflag>
- <description>An enumeration of strings</description>
- <label>String Enumeration Parameter</label>
- <default>foo</default>
- <element>foo</element>
- <element>"foobar"</element>
- <element>foofoo</element>
- </string-enumeration>
- <point>
- <name>pointVar</name>
- <flag>p</flag>
- <description>asf</description>
- <label>A point</label>
- <default>0.5,-34.2,43</default>
- </point>
- </parameters>
- </executable>
|