Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Packages/MIES/MIES_Constants.ipf
Original file line number Diff line number Diff line change
Expand Up @@ -2579,3 +2579,19 @@ Constant SF_STEP_PARSER = 1
Constant SF_STEP_EXECUTOR = 2
Constant SF_STEP_OUTSIDE = 3
///@}

/// @name Sweepformula suffixes for formula plot windows (graph or table)
///
/// @anchor SFPlotWindowSuffixes
///@{
StrConstant SF_WINNAME_SUFFIX_GRAPH = "graph"
StrConstant SF_WINNAME_SUFFIX_TABLE = "table"
///@}

/// @name Sweepformula display type for formula plot windows (graph or table)
///
/// @anchor SFPlotWindowDisplayTypes
///@{
Constant SF_DISPLAYTYPE_GRAPH = 0
Constant SF_DISPLAYTYPE_TABLE = 1
///@}
9 changes: 0 additions & 9 deletions Packages/MIES/MIES_Structures.ipf
Original file line number Diff line number Diff line change
Expand Up @@ -630,15 +630,6 @@ Structure CheckParametersStruct
string setName // name of the stimulus set
EndStructure

/// @brief Helper struct for data gathered by SF formula plotter in SF_GatherFormulaResults
Structure SF_PlotMetaData
string dataType // from SF_META_DATATYPE constant
string opStack // from SF_META_OPSTACK constant
string argSetupStack // from SF_META_ARGSETUPSTACK constant
string xAxisLabel // from SF_META_XAXISLABEL constant
string yAxisLabel // from SF_META_YAXISLABEL constant
EndStructure

/// @brief ReadOut Structure for ASYNC
Structure ASYNC_ReadOutStruct
DFREF dfr // dfr with output data
Expand Down
Loading