File MIES_SweepFormula_Helpers.ipf

SFH Sweep formula related helper code

Functions

variable SFH_StringChecker_Prototype(string str)
variable SFH_NumericChecker_Prototype(variable var)
variable SFH_GetArgumentAsNumeric(variable jsonId, string jsonPath, string graph, string opShort, variable argNum, variable defValue = defaultValue, WaveOrNull allowedValues = defaultValue, SFH_NumericChecker_Prototype checkFunc = defaultValue, variable checkDefault = defaultValue)

Convenience helper function to get a numeric SweepFormula operation argument.

Given the operation fetchBeer(variable numBottles, [variable size]) one can fetch both parameters via:

opShort    = "fetchBeer"
numBottles = SFH_GetArgumentAsNumeric(jsonId, jsonPath, graph, opShort, 0)
size       = SFH_GetArgumentAsNumeric(jsonId, jsonPath, graph, opShort, 1, defValue = 0.5, allowedValues = {0.33, 0.5, 1.0})

Here numBottles is argument number 0 and mandatory as defValue is not present.

The second argument size is optional with 0.5 as default and also defines a list of valid values.

string SFH_GetArgumentAsText(variable jsonId, string jsonPath, string graph, string opShort, variable argNum, string defValue = defaultValue, WaveTextOrNull allowedValues = defaultValue, SFH_StringChecker_Prototype checkFunc = defaultValue, variable checkDefault = defaultValue)

Convenience helper function to get a textual SweepFormula operation argument.

Given the operation getTrainTable(string date, [string type]) one can fetch both parameters via:

opShort = "getTrainTable"
date    = SFH_GetArgumentAsText(jsonId, jsonPath, graph, opShort, 0)
type    = SFH_GetArgumentAsText(jsonId, jsonPath, graph, opShort, 1, defValue = "steam train", allowedValues = {"steam train", "light rail"})

Here date is argument number 0 and mandatory as defValue is not present.

The second argument type is optional with steam train as default and a list of allowed values.

The text argument can be abbreviated as long as it is unique, the unabbreviated result is returned in all cases.

wave SFH_GetArgumentAsWave(variable jsonId, string jsonPath, string graph, string opShort, variable argNum, string defOp = defaultValue, WaveOrNull defWave = defaultValue, variable singleResult = defaultValue, variable expectedWaveType = defaultValue)

Convenience helper function to get a wave SweepFormula operation argument.

Given the operation countBirds(array birds, [birdTypes()]) one can fetch both parameters via:

opShort      = "countBirds"
WAVE/D birds = SFH_GetArgumentAsWave(jsonId, jsonPath, graph, opShort, 0, singleResult = 1)
WAVE/T types = SFH_GetArgumentAsWave(jsonId, jsonPath, graph, opShort, 1, defOp = "birdTypes()", singleResult = 1, expectedWaveType = IGOR_TYPE_TEXT_WAVE)

Here birds is argument number 0 and mandatory as defOp is not present. Passing singleResult == 1 already unpacks the outer wave reference wave container. It should always be passed if you only expect one wave to be returned.

The second argument birdTypes is optional, if not present the operation birdTypes() is called and its result returned. Alternatively defWave can be supplied which is then returned if the argument is not present.

variable SFH_ASSERT(variable condition, string message, variable jsonId = defaultValue)

Assertion for sweep formula.

This assertion does not indicate a general programmer error but a sweep formula user error.

All programmer error checks must still use ASSERT().

UTF_NOINSTRUMENTATION

wave SFH_GetEmptyRange()
variable SFH_IsEmptyRange(wave range)
wave SFH_GetFullRange()
variable SFH_IsFullRange(wave range)
wave SFH_AsDataSet(wave data)
static variable SFH_ExtendIncompleteRanges(wave ranges)

Formula “cursors(A,B)” can return NaNs if no cursor(s) are set.

wave SFH_EvaluateRange(variable jsonId, string jsonPath, string graph, string opShort, variable argNum)

Evaluate range parameter.

Range is read as dataset(s), it can be per dataset: numerical 1d: [start,end] numerical 2d with multiple ranges: [[start1,start2,start3],[end1,end2,end3]] implicit: cursors(A, B) or [cursors(A, B), cursors(C, D)] implicit: epochs([E0, TP]) implicit with offset calculcation: epochs(E0) + [1, -1] named epoch: E0 or a as wildcard expression E*

wave SFH_GetRangeFromEpoch(string graph, string epochName, variable sweep, variable chanType, variable channel)

Returns a range from a epochName.

Parameters:
  • graph – name of databrowser graph

  • epochName – name epoch

  • sweep – number of sweep

  • chanType – type of channel

  • channel – number of DA channel

Returns:

a 1D wave with two elements, [startTime, endTime] in ms, if no epoch could be resolved [NaN, NaN] is returned

wave SFH_GetSweepsForFormula(string graph, WaveRefWave range, WaveOrNull selectData, string opShort)

Return a wave reference wave with the requested sweep data. The argument range can contain multiple datasets, if it is a single dataset the range(s) are extracted from each selection, if there are multiple datasets then the number of datasets must equal the number of selections, for that case range datasets and selections are indexed the same. This is usually only senseful if the same select arguments are used for e.g. data to retrieve sweeps and epochs to retrieve ranges.

All wave input parameters are treated as const and are thus not modified.

Parameters:
  • graph – name of databrowser graph

  • range – wave ref wave with range specification defining the x-range of the extracted data, see also SFH_EvaluateRange(), range specification per dataset can be numerical or text

  • selectData – channel/sweep selection, see also SFH_GetArgumentSelect()

  • opShort – operation name (short)

variable SFH_GetNumberOfArguments(variable jsonId, string jsonPath)
dfref SFH_GetWorkingDF(string win)
wave SFH_CreateSFRefWave(string win, string opShort, variable size)
variable SFH_CleanUpInput(wave input)
variable SFH_AddOpToOpStack(wave w, string oldStack, string opShort)
variable SFH_AddToArgSetupStack(wave output, WaveOrNull input, string argSetupStr, variable resetStack = defaultValue)
wave SFH_GetOutputForExecutorSingle(WaveOrNull data, string graph, string opShort, variable discardOpStack = defaultValue, wave clear = defaultValue, string dataType = defaultValue)
wave SFH_GetOutputForExecutor(wave output, string win, string opShort, wave clear = defaultValue)
static variable SFH_ConvertAllReturnDataToPermanent(WaveRefWave output, string win, string opShort)
wave SFH_ResolveDatasetElementFromJSON(variable jsonId, string jsonPath, string graph, string opShort, variable argNum, variable checkExist = defaultValue)

Retrieves from an argument the first dataset and disposes the argument.

variable SFH_TransferFormulaDataWaveNoteAndMeta(WaveRefWave input, WaveRefWave output, string opShort, string newDataType, WaveText argSetup = defaultValue, variable keepX = defaultValue)

Transfer wavenote from input data sets to output data sets set a label for a x-axis and x-value(s) for data waves.

Parameters:
  • input – Input wave reference wave

  • output – Output wave reference wave

  • opShort – operation short name

  • newDataType – data type of output

  • argSetup – [optional, default=$””] 2d text wave with argument setup of operation

  • keepX – [optional, default=0] When set then xvalues and xlabel of output are kept.

wave SFH_GetArgumentSelect(variable jsonId, string jsonPath, string graph, string opShort, variable argNum)
wave SFH_GetEpochNamesFromInfo(WaveText epochInfo)
wave SFH_GetEpochIndicesByWildcardPatterns(WaveText epochNames, WaveText patterns)
string SFH_ResultTypeToString(variable resultType)
string SFH_FormatResultsKey(variable resultType, string name)
std::tuple<WaveText, WaveText> SFH_CreateResultsWaveWithCode(string graph, string code, wave data = defaultValue, string name = defaultValue, variable resultType = defaultValue)
string SFH_GetBrowserForFormulaGraph(string win)

Return the SweepBrowser/DataBrowser from which the given SweepFormula plot window originated from.

string SFH_GetFormulaGraphForBrowser(string browser)

Return the SweepFormula plot created by the given SweepBrowser/DataBrowser.

wave SFH_GetFormulaGraphs()

Return a text wave with all formula graph windows.

wave SFH_NewSelectDataWave(variable numSweeps, variable numChannels)

Create a new selectData wave The row counts the selected combinations of sweep, channel type, channel number The three columns per row store the sweep number, channel type, channel number.

std::tuple<WAVE, WAVE> SFH_ParseToSelectDataWaveAndRange(wave sweepData)

Recreate a single select data wave and range stored in the JSON wavenote from SFH_GetSweepsForFormula()

wave SFH_GetNewArgSetupWave(variable size)
static string SFH_SerializeArgSetup(WaveText argSetup)
wave SFH_DeSerializeArgSetup(variable jsonId, string jsonPath)
variable SFH_ResetArgSetupStack(wave output, string opShort)
static string SFH_GetArgSetupValueByKey(WaveText argSetup, string key)
static string SFH_GetEmptyArgSetup()
variable SFH_EnrichAnnotations(WaveText annotations, WaveText formulaArgSetup)

Based on the argument setup modifies the annotations per formula with additional information from the different arguments.

Returns:

1 of difference was found, 0 otherwise

static variable SFH_EnrichAnnotationsRelease(wave formulaIDs)
variable SFH_GetPlotMarkerCodeSelection(variable count)
variable SFH_GetPlotLineCodeSelection(variable count)
wave SFH_FilterSelect(WaveOrNull selectData, variable keepChanType)

filters data from select, currently supports only one option:

  • specify a channel type to keep

variable SFH_CheckArgumentCount(variable jsonId, string jsonPath, string opShort, variable minArgs, variable maxArgs = defaultValue)

checks the argument count and returns the number of arguments

wave SFH_GetStimsetRange(string graph, wave data, wave selectData)

Return a SF range in ms with the stimset range.

Prefers the ST epoch if present, otherwise it tries to deduce the equivalent from labnotebook entries.

std::tuple<WAVE, WaveText> SFH_GetNumericRangeFromEpoch(wave numericalValues, wave textualValues, wave range, variable sweepNo, variable chanType, variable chanNr)

From a single numeric/textual range wave we return a 2xN numeric range.

Supports numeric ranges, epochs, and epochs with wildcards.

Parameters:
  • numericalValues – numeric labnotebok

  • textualValues – textual labnotebok

  • range – one numerical or one/multiple epoch ranges with optional wildcard,

  • sweepNo – sweep number

  • chanType – channel type

  • chanNr – channel number

Return values:
  • adaptedRange – 2xN numeric wave with the start/stop ranges [ms]

  • epochRangeNames – epoch names (wildcard expanded) in case range was textual, a null wave ref otherwise

Variables

static const string SFH_WORKING_DF = "FormulaData"
static const string SFH_ARGSETUP_OPERATION_KEY = "Operation"
static const string SFH_ARGSETUP_EMPTY_OPERATION_VALUE = "NOOP"