123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- <?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>
- <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>
- <parameters advanced="true">
- <label>Directory I/O Parameters</label>
- <description>Various Directory I/O parameters.</description>
- <directory>
- <name>dirVar</name>
- <longflag>dirVar</longflag>
- <description>Some dir</description>
- <label>Some dir</label>
- <default>/home</default>
- </directory>
- </parameters>
- <parameters advanced="true">
- <label>File I/O Parameters</label>
- <description>Various File I/O parameters.</description>
- <file>
- <name>inputFileVarNoFileExtensions</name>
- <longflag>if1</longflag>
- <description>Input file, with no file extensions specified, so all files selectable.</description>
- <label>File, no extensions specified.</label>
- <default>bla</default>
- <channel>input</channel>
- </file>
- <file fileExtensions=".txt,.mat">
- <name>inputFileVarListCommaSeparated</name>
- <longflag>if2</longflag>
- <description>Input file, where a correct comma separated list of .txt and .mat are specified, which should include the first dot, but should not include any asterisks.</description>
- <label>Some .txt or .mat file.</label>
- <default>bla.txt</default>
- <channel>input</channel>
- </file>
- <file fileExtensions="*.txt,*.mat">
- <name>inputFileVarListCommaSeparatedWithINCORRECTAdditionOfAsterisks</name>
- <longflag>if3</longflag>
- <description>Input file, where the XML has incorrect addition of asterisks.</description>
- <label>Some .txt or .mat file.</label>
- <default>bla2.txt</default>
- <channel>input</channel>
- </file>
- <file fileExtensions="txt,mat">
- <name>inputFileVarListCommaSeparatedWithINCORRECTMissingFirstDot</name>
- <longflag>if4</longflag>
- <description>Input file, where the XML has incorrectly missed the first dot of the file extensions.</description>
- <label>Some .txt or .mat file.</label>
- <default>bla3.txt</default>
- <channel>input</channel>
- </file>
- <file>
- <name>outputFileVarNoFileExtensions</name>
- <longflag>of1</longflag>
- <description>Output file, with no file extensions specified, so all files selectable.</description>
- <label>Output file, no extensions specified.</label>
- <default>bla</default>
- <channel>output</channel>
- </file>
- <file fileExtensions=".txt,.mat">
- <name>outputFileVarListCommaSeparated</name>
- <longflag>of2</longflag>
- <description>Output file, where a correct comma separated list of .txt and .mat are specified, which should include the first dot, but should not include any asterisks.</description>
- <label>Some .txt or .mat file.</label>
- <default>bla.txt</default>
- <channel>output</channel>
- </file>
- <file fileExtensions="*.txt,*.mat">
- <name>outputFileVarListCommaSeparatedWithINCORRECTAdditionOfAsterisks</name>
- <longflag>of3</longflag>
- <description>Output file, where the XML has incorrect addition of asterisks.</description>
- <label>Some .txt or .mat file.</label>
- <default>bla2.txt</default>
- <channel>output</channel>
- </file>
- <file fileExtensions="txt,mat">
- <name>outputFileVarListCommaSeparatedWithINCORRECTMissingFirstDot</name>
- <longflag>of4</longflag>
- <description>Output file, where the XML has incorrectly missed the first dot of the file extensions.</description>
- <label>Some .txt or .mat file.</label>
- <default>bla3.txt</default>
- <channel>output</channel>
- </file>
- </parameters>
- <parameters advanced="true">
- <label>Image I/O Parameters</label>
- <description>Various Image I/O parameters.</description>
- <image>
- <name>inputImageVarNoFileExtensions</name>
- <longflag>ii1</longflag>
- <description>Input image, with no file extensions specified, so all files selectable.</description>
- <label>Image, no extensions specified.</label>
- <default>bla</default>
- <channel>input</channel>
- </image>
- <image fileExtensions=".nii,.nrrd,.nii.gz">
- <name>inputImageVarListCommaSeparated</name>
- <longflag>ii2</longflag>
- <description>Input image, where a correct comma separated list is specified, which should include the first dot, but should not include any asterisks.</description>
- <label>Some .nii or .nrrd or .nii.gz image.</label>
- <default>bla.nii</default>
- <channel>input</channel>
- </image>
- <image fileExtensions="*.nii,*.nrrd,*.nii.gz">
- <name>inputImageVarListCommaSeparatedWithINCORRECTAdditionOfAsterisks</name>
- <longflag>ii3</longflag>
- <description>Input image, where the XML has incorrect addition of asterisks.</description>
- <label>Some .nii or .nrrd or .nii.gz image.</label>
- <default>bla2.nii</default>
- <channel>input</channel>
- </image>
- <image fileExtensions="nii,nrrd,nii.gz">
- <name>inputImageVarListCommaSeparatedWithINCORRECTMissingFirstDot</name>
- <longflag>ii4</longflag>
- <description>Input file, where the XML has incorrectly missed the first dot of the file extensions.</description>
- <label>Some .nii or .nrrd or .nii.gz image.</label>
- <default>bla3.nii</default>
- <channel>input</channel>
- </image>
- <image>
- <name>outputImageVarNoFileExtensions</name>
- <longflag>oi1</longflag>
- <description>Output image, with no file extensions specified, so all files selectable.</description>
- <label>Image, no extensions specified.</label>
- <default>bla</default>
- <channel>output</channel>
- </image>
- <image fileExtensions=".nii,.nrrd,.nii.gz">
- <name>outputImageVarListCommaSeparated</name>
- <longflag>oi2</longflag>
- <description>Output image, where a correct comma separated is specified, which should include the first dot, but should not include any asterisks.</description>
- <label>Some .nii or .nrrd or .nii.gz image.</label>
- <default>bla.nii</default>
- <channel>output</channel>
- </image>
- <image fileExtensions="*.nii,*.nrrd,*.nii.gz">
- <name>outputImageVarListCommaSeparatedWithINCORRECTAdditionOfAsterisks</name>
- <longflag>oi3</longflag>
- <description>Output image, where the XML has incorrect addition of asterisks.</description>
- <label>Some .nii or .nrrd or .nii.gz image.</label>
- <default>bla2.nii</default>
- <channel>output</channel>
- </image>
- <image fileExtensions="nii,nrrd,nii.gz">
- <name>outputImageVarListCommaSeparatedWithINCORRECTMissingFirstDot</name>
- <longflag>oi4</longflag>
- <description>Output file, where the XML has incorrectly missed the first dot of the file extensions.</description>
- <label>Some .nii or .nrrd or .nii.gz image.</label>
- <default>bla3.nii</default>
- <channel>output</channel>
- </image>
- </parameters>
- <parameters advanced="true">
- <label>Geometry I/O Parameters</label>
- <description>Various Geometry I/O parameters, which are for things like vtkPolyData.</description>
- <geometry>
- <name>inputGeometryVarNoFileExtensions</name>
- <longflag>ig1</longflag>
- <description>Input geometry, with no file extensions specified, so all files selectable.</description>
- <label>Geometry, no extensions specified.</label>
- <default>bla</default>
- <channel>input</channel>
- </geometry>
- <geometry fileExtensions=".vtk,.vtp">
- <name>inputGeometryVarListCommaSeparated</name>
- <longflag>ig2</longflag>
- <description>Input geometry, where a correct comma separated list is specified, which should include the first dot, but should not include any asterisks.</description>
- <label>Some .vtk or .vtp file.</label>
- <default>bla.vtk</default>
- <channel>input</channel>
- </geometry>
- <geometry fileExtensions="*.vtk,*.vtp">
- <name>inputGeometryVarListCommaSeparatedWithINCORRECTAdditionOfAsterisks</name>
- <longflag>ig3</longflag>
- <description>Input geometry, where the XML has incorrect addition of asterisks.</description>
- <label>Some .vtk or .vtp file.</label>
- <default>bla2.vtk</default>
- <channel>input</channel>
- </geometry>
- <geometry fileExtensions=".vtk,.vtp">
- <name>inputGeometryVarListCommaSeparatedWithINCORRECTMissingFirstDot</name>
- <longflag>ig4</longflag>
- <description>Input geometry, where the XML has incorrectly missed the first dot of the file extensions.</description>
- <label>Some .vtk or .vtp file.</label>
- <default>bla3.vtk</default>
- <channel>input</channel>
- </geometry>
- <geometry>
- <name>outputGeometryVarNoFileExtensions</name>
- <longflag>og1</longflag>
- <description>Output geometry, with no file extensions specified, so all files selectable.</description>
- <label>Geometry, no extensions specified.</label>
- <default>bla</default>
- <channel>output</channel>
- </geometry>
- <geometry fileExtensions=".vtk,.vtp">
- <name>outputGeometryVarListCommaSeparated</name>
- <longflag>og2</longflag>
- <description>Output geometry, where a correct comma separated list is specified, which should include the first dot, but should not include any asterisks.</description>
- <label>Some .vtk or .vtp file.</label>
- <default>bla.vtk</default>
- <channel>output</channel>
- </geometry>
- <geometry fileExtensions="*.vtk,*.vtp">
- <name>outputGeometryVarListCommaSeparatedWithINCORRECTAdditionOfAsterisks</name>
- <longflag>og3</longflag>
- <description>Output geometry, where the XML has incorrect addition of asterisks.</description>
- <label>Some .vtk or .vtp file.</label>
- <default>bla2.vtk</default>
- <channel>output</channel>
- </geometry>
- <geometry fileExtensions=".vtk,.vtp">
- <name>outputGeometryVarListCommaSeparatedWithINCORRECTMissingFirstDot</name>
- <longflag>og4</longflag>
- <description>Output geometry, where the XML has incorrectly missed the first dot of the file extensions.</description>
- <label>Some .vtk or .vtp file.</label>
- <default>bla3.vtk</default>
- <channel>output</channel>
- </geometry>
- </parameters>
- </executable>
|