visual3d:documentation:pipeline:general_information:pipeline_parameters
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
visual3d:documentation:pipeline:general_information:pipeline_parameters [2024/07/16 16:58] – removed sgranger | visual3d:documentation:pipeline:general_information:pipeline_parameters [2024/11/15 16:56] (current) – wikisysop | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Pipeline Parameters ====== | ||
+ | An important feature of the pipeline is the ability to create and use Pipeline Parameters, which allows users to store a text string for use in later Pipeline commands. In one sense it is similar to specifying a global variable, such as body weight, that could be used in computations. In practice, however, Pipeline Parameters are actually much more flexible than that: since pipeline commands permit multiple entries on a single line for a given parameter, and since the entire line can be represented as a string, a single Pipeline Parameter can represent multiple entries. | ||
+ | |||
+ | ===== Using a Pipeline Parameter ===== | ||
+ | |||
+ | Pipeline parameters are designated for Visual3D' | ||
+ | |||
+ | As an example of using a Pipeline Parameter, we could assign a number of C3D file names to a Pipeline Parameter called C3D_FILE and then reference it when assigning a TAG called TEST_TAG to a group of files: | ||
+ | |||
+ | < | ||
+ | Assign_Tags_To_File | ||
+ | / | ||
+ | ! /QUERY= | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | Things can get a little more complicated when pipeline parameters are [[visual3d: | ||
+ | |||
+ | An example pipeline using pipeline parameters can be found in the sample files for the [[visual3d: | ||
+ | |||
+ | ===== Automatic Creation of Pipeline Parameters ===== | ||
+ | |||
+ | Several of the pipeline commands are capable of prompting the user for input. The value of the variable is automatically saved as a pipeline parameter so that it can be used elsewhere in the pipeline. For example, | ||
+ | |||
+ | < | ||
+ | File_Open | ||
+ | ! FILE_NAME= | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | If the variable FILE_NAME is empty (as shown above), then a browse dialog will appear allowing the user to select the file(s). This file(s) can be set to a pipeline parameter named C3D_FILE as follows: | ||
+ | |||
+ | < | ||
+ | Set_Pipeline_Parameter | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | The PARAMETER_VALUE is assigned the variable name (e.g. FILE_NAME) from the previous command. For subsequent commands the user can use ::C3D_FILE to refer to the files that were selected by the user. This pipeline parameter will not be modified unless the user explicitly overwrites it. | ||
+ | |||
+ | ===== Pipeline Parameters Syntax ===== | ||
+ | |||
+ | Concatenating pipeline parameters is tricky because of the rules used for parsing the parameters in Visual3D. For example, given a pipeline parameter representing a signal name ::NAME, to use this parameter in the following command is straightforward. | ||
+ | |||
+ | < | ||
+ | Multiply_Signals_By_Constant | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | /Constant= 1 | ||
+ | :; | ||
+ | </ | ||
+ | |||
+ | The equivalent result can be accomplished using [[visual3d: | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | ==== Pipeline Parameters in Expressions ==== | ||
+ | As another example, the following command is a valid expression: | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | But given a pipeline parameter SEG_NAME the following expression is invalid: | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | One possible solution is as follows: | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | ==== Syntax Specification ==== | ||
+ | |||
+ | Visual3D' | ||
+ | |||
+ | - This first looks for a pipeline command at the start of the parameter. For example =:: | ||
+ | - Then it looks for all ampersand colon colons. For example &:: | ||
+ | - It then replaces what is between the ampersands (or to end of line) assuming it is a pipeline parameter. | ||
+ | - When using a signal name, the natural thing to follow the second ampersand is the colon colon for the next signal name item. For example &:: | ||
+ | - But, the preprocessor looks at the &::MASS and assumes this is another global pipeline parameter because it is an ampersand colon colon &:: | ||
+ | - To work around this, you need to write the line in a way that &::MASS is not treated as a global pipeline parameter. To do this, you can add another ampersand to concatenate the colons. &:&: | ||
+ | - It's kind of a kludge, but it makes sense when you understand it first looks for all &:: to do a replacement. In the case of the expression &:: | ||
+ | |||
+ | ===== Default Pipeline Parameters ===== | ||
+ | |||
+ | Visual3D pipeline commands automatically creates pipeline parameters whenever a command is executed. The general syntax of a Visual3D command is: | ||
+ | |||
+ | < | ||
+ | Command_Name | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | !/ | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | When the command is executed, each of the parameters is stored as a pipeline parameter, and can be referred to in other commands. For example, the dummy command above, in the context only of the pipeline parameters, would be equivalent to the following commands: | ||
+ | |||
+ | < | ||
+ | Set_Pipeline_Parameter | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | Set_Pipeline_Parameter | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | Set_Pipeline_Parameter | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | Set_Pipeline_Parameter | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | The consequence is that users must be very conscious of the pipeline parameters that they create explicitly. If common names like FOLDER are defined by the user, they may actually change their value over a series of commands that include a parameter named FOLDER. | ||
+ | |||
+ | ===== Example ===== | ||
+ | |||
+ | An [[visual3d: |
visual3d/documentation/pipeline/general_information/pipeline_parameters.1721149139.txt.gz · Last modified: 2024/07/16 16:58 by sgranger