Skip to content

Commit 40879cc

Browse files
committed
Code Style: Unify comma in function signatures
See byte-physics/igor-pro-coding-conventions#34
1 parent 82967e0 commit 40879cc

10 files changed

+28
-28
lines changed

Packages/MIES/MIES_Configuration.ipf

+7-7
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ End
435435
///
436436
/// @param fName file name of configuration file to read configuration
437437
/// @param rigFile [optional, default = ""] name of secondary rig configuration file with complementary data. This parameter is valid when loading for a DA_Ephys panel
438-
Function CONF_RestoreWindow(string fName[, string rigFile])
438+
Function CONF_RestoreWindow(string fName, [string rigFile])
439439

440440
variable jsonID, restoreMask
441441
string input, wName, errMsg, fullFilePath, panelType
@@ -1216,7 +1216,7 @@ End
12161216
/// @param winHandle window handle
12171217
/// @param uKey [optional, default = EXPCONFIG_UDATA_WINHANDLE] userdata key that stores the handle value
12181218
/// @returns Window name of the window with the given handle; empty string if not found.
1219-
static Function/S CONF_FindWindow(winHandle[, uKey])
1219+
static Function/S CONF_FindWindow(winHandle, [uKey])
12201220
string winHandle, uKey
12211221

12221222
variable i, j, numWin, numSubWin
@@ -1249,7 +1249,7 @@ End
12491249
/// @param ctrlName Control name
12501250
/// @param jsonPath [optional, default = n/a] When given: the control is expected to be a named json object (with the control nice name)
12511251
/// If not given: the jsons second level (assuming default format) is searched for the associated object. This is slower.
1252-
static Function CONF_RestoreControl(wName, restoreMask, jsonID, ctrlName[, jsonPath])
1252+
static Function CONF_RestoreControl(wName, restoreMask, jsonID, ctrlName, [jsonPath])
12531253
string wName
12541254
variable restoreMask, jsonID
12551255
string ctrlName, jsonPath
@@ -1468,7 +1468,7 @@ End
14681468
/// @param[in] saveMask bit pattern based configuration setting for saving @sa WindowControlSavingMask
14691469
/// @param[in] excCtrlTypes [optional, default = ""], list of control type codes for excluded control types for saving e.g. "1;6;" to exclude all buttons and charts
14701470
/// @returns json ID of object where all controls where serialized into
1471-
Function CONF_AllWindowsToJSON(wName, saveMask[, excCtrlTypes])
1471+
Function CONF_AllWindowsToJSON(wName, saveMask, [excCtrlTypes])
14721472
string wName
14731473
variable saveMask
14741474
string excCtrlTypes
@@ -1529,7 +1529,7 @@ End
15291529
/// @param saveMask Bit mask which properties are saved from WindowControlSavingMask constants
15301530
/// @param excCtrlTypes [optional, default = ""] List of excluded control types that are ignored
15311531
/// @returns jsonID ID of json containing the serialized GUI data
1532-
Function CONF_WindowToJSON(wName, saveMask[, excCtrlTypes])
1532+
Function CONF_WindowToJSON(wName, saveMask, [excCtrlTypes])
15331533
string wName
15341534
variable saveMask
15351535
string excCtrlTypes
@@ -2509,7 +2509,7 @@ End
25092509
/// @param[in] loadRigFile [optional, default 0] when set, load the rig file instead
25102510
///
25112511
/// @returns jsonId or NaN if data was not present
2512-
static Function [variable jsonId, string txtData] CONF_LoadConfigUsedForDAEphysPanel(string wName[, variable loadRigFile])
2512+
static Function [variable jsonId, string txtData] CONF_LoadConfigUsedForDAEphysPanel(string wName, [variable loadRigFile])
25132513

25142514
string fName, str
25152515

@@ -2543,7 +2543,7 @@ static Function CONF_TransferPreviousDAEphysJson(variable jsonId, variable prevJ
25432543
endfor
25442544
End
25452545

2546-
static Function CONF_RemoveRigElementsFromDAEphysJson(variable jsonId, variable rigJsonId[, string jsonPath])
2546+
static Function CONF_RemoveRigElementsFromDAEphysJson(variable jsonId, variable rigJsonId, [string jsonPath])
25472547

25482548
string newJsonPath, key
25492549

Packages/MIES/MIES_DataBrowser.ipf

+1-1
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ End
596596
/// @param win Name of the DataBrowser
597597
/// @param index Index of the sweep
598598
/// @param bdi [optional, default = n/a] BufferedDrawInfo structure, when given buffered draw is used.
599-
Function DB_AddSweepToGraph(string win, variable index[, STRUCT BufferedDrawInfo &bdi])
599+
Function DB_AddSweepToGraph(string win, variable index, [STRUCT BufferedDrawInfo &bdi])
600600
STRUCT TiledGraphSettings tgs
601601

602602
variable sweepNo, traceIndex

Packages/MIES/MIES_Epochs.ipf

+3-3
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ End
693693
/// @param[in] level level of epoch
694694
/// @param[in] lowerlimit [optional, default = -Inf] epBegin is limited between lowerlimit and Inf, epEnd must be > this limit
695695
/// @param[in] upperlimit [optional, default = Inf] epEnd is limited between -Inf and upperlimit, epBegin must be < this limit
696-
static Function EP_AddEpoch(device, channel, channelType, epBegin, epEnd, epTags, epShortName, level[, lowerlimit, upperlimit])
696+
static Function EP_AddEpoch(device, channel, channelType, epBegin, epEnd, epTags, epShortName, level, [lowerlimit, upperlimit])
697697
string device
698698
variable channel, channelType
699699
variable epBegin, epEnd
@@ -911,7 +911,7 @@ End
911911
/// This is required for callers who want to read epochs during MID_SWEEP_EVENT in analysis functions.
912912
///
913913
/// @returns Text wave with epoch information, only rows fitting the input parameters are returned. Can also be a null wave.
914-
Function/WAVE EP_GetEpochs(WAVE numericalValues, WAVE textualValues, variable sweepNo, variable channelType, variable channelNumber, string shortname[, variable treelevel, WAVE/T epochsWave])
914+
Function/WAVE EP_GetEpochs(WAVE numericalValues, WAVE textualValues, variable sweepNo, variable channelType, variable channelNumber, string shortname, [variable treelevel, WAVE/T epochsWave])
915915

916916
variable index, epochCnt, midSweep
917917
string regexp
@@ -1087,7 +1087,7 @@ static Function/WAVE EP_GetGaps(WAVE numericalValues, WAVE textualValues, variab
10871087
End
10881088

10891089
/// @brief Returns the following epoch of a given epoch name in a specified tree level
1090-
Function/WAVE EP_GetNextEpoch(WAVE numericalValues, WAVE textualValues, variable sweepNo, variable channelType, variable channelNumber, string shortname, variable treelevel[, variable ignoreGaps])
1090+
Function/WAVE EP_GetNextEpoch(WAVE numericalValues, WAVE textualValues, variable sweepNo, variable channelType, variable channelNumber, string shortname, variable treelevel, [variable ignoreGaps])
10911091

10921092
variable currentEnd, dim
10931093

Packages/MIES/MIES_GuiPopupMenuExt.ipf

+2-2
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ End
583583
/// @param[in] menuList 1d text wave with menu items
584584
/// @param[in] method [optional, default = PEXT_SUBSPLIT_DEFAULT] sets how the menu items are split to sub menus @sa PEXT_SubMenuSplitting
585585
/// @returns 1d text wave where each element contains a list of menu items. Each element represents a sub menu.
586-
Function/WAVE PEXT_SplitToSubMenus(menuList[, method])
586+
Function/WAVE PEXT_SplitToSubMenus(menuList, [method])
587587
WAVE/T/Z menuList
588588
variable method
589589

@@ -662,7 +662,7 @@ End
662662
///
663663
/// @param[in] splitMenu 1d text wave with menu item lists for sub menus as returned by PEXT_SplitToSubMenus()
664664
/// @param[in] method [optional, default = PEXT_SUBNAMEGEN_DEFAULT] sets how the sub menu names are generated @sa PEXT_SubMenuNameGeneration
665-
Function PEXT_GenerateSubMenuNames(splitMenu[, method])
665+
Function PEXT_GenerateSubMenuNames(splitMenu, [method])
666666
WAVE/T/Z splitMenu
667667
variable method
668668

Packages/MIES/MIES_GuiUtilities.ipf

+2-2
Original file line numberDiff line numberDiff line change
@@ -925,7 +925,7 @@ End
925925
/// @param[in] orientation [optional: default not set] filter orientation of axes see @ref AxisOrientationConstants
926926
/// @param[in] mode [optional: default #AXIS_RANGE_DEFAULT] filter returned axis information by mode see @ref AxisPropModeConstants
927927
/// @return free wave with rows = axes, cols = axes info, dimlabel of rows is axis name
928-
Function/Wave GetAxesProperties(graph[, axesRegexp, orientation, mode])
928+
Function/Wave GetAxesProperties(graph, [axesRegexp, orientation, mode])
929929
string graph, axesRegexp
930930
variable orientation, mode
931931

@@ -990,7 +990,7 @@ End
990990
/// @param[in] axesRegexp [optional: default not set] filter axes names list by this optional regular expression
991991
/// @param[in] orientation [optional: default not set] filter orientation of axes see @ref AxisOrientationConstants
992992
/// @param[in] mode [optional: default 0] axis set mode see @ref AxisPropModeConstants
993-
Function SetAxesProperties(graph, props[, axesRegexp, orientation, mode])
993+
Function SetAxesProperties(graph, props, [axesRegexp, orientation, mode])
994994
string graph
995995
Wave props
996996
string axesRegexp

Packages/MIES/MIES_MiesUtilities.ipf

+1-1
Original file line numberDiff line numberDiff line change
@@ -2648,7 +2648,7 @@ End
26482648
/// @param experiment name of the experiment the sweep stems from
26492649
/// @param channelSelWave channel selection wave
26502650
/// @param bdi [optional, default = n/a] initialized BufferedDrawInfo structure, when given draw calls are buffered instead for later execution @sa OVS_EndIncrementalUpdate
2651-
Function CreateTiledChannelGraph(string graph, WAVE config, variable sweepNo, WAVE numericalValues, WAVE/T textualValues, STRUCT TiledGraphSettings &tgs, DFREF sweepDFR, WAVE/T axisLabelCache, variable &traceIndex, string experiment, WAVE channelSelWave[, STRUCT BufferedDrawInfo &bdi])
2651+
Function CreateTiledChannelGraph(string graph, WAVE config, variable sweepNo, WAVE numericalValues, WAVE/T textualValues, STRUCT TiledGraphSettings &tgs, DFREF sweepDFR, WAVE/T axisLabelCache, variable &traceIndex, string experiment, WAVE channelSelWave, [STRUCT BufferedDrawInfo &bdi])
26522652

26532653
variable axisIndex, numChannels
26542654
variable numDACs, numADCs, numTTLs, i, j, k, hasPhysUnit, hardwareType

Packages/MIES/MIES_SweepFormula.ipf

+2-2
Original file line numberDiff line numberDiff line change
@@ -4080,7 +4080,7 @@ static Function/WAVE SF_OperationPowerSpectrum(variable jsonId, string jsonPath,
40804080
return SFH_GetOutputForExecutor(output, graph, SF_OP_POWERSPECTRUM, clear=input)
40814081
End
40824082

4083-
static Function/WAVE SF_PowerSpectrumRatio(WAVE/Z input, variable ratioFreq, variable deltaHz[, WAVE fitData])
4083+
static Function/WAVE SF_PowerSpectrumRatio(WAVE/Z input, variable ratioFreq, variable deltaHz, [WAVE fitData])
40844084

40854085
string sLeft, sRight, maxSigma, minAmp
40864086
variable err, left, right, minFreq, maxFreq, endFreq, base
@@ -4944,7 +4944,7 @@ End
49444944
/// @param singleResult [optional, default 0], if set then the first dataSet is retrieved from the waveRef wave and returned, the waveRef wave is disposed
49454945
/// @param checkExist [optional, default 0], only valid if singleResult=1, if set then the data wave in the single dataSet retrieved must exist
49464946
/// @param useVariables [optional, default 1], when not set, hint the function that the formula string contains only an expression and no variable definitions
4947-
Function/WAVE SF_ExecuteFormula(string formula, string graph[, variable singleResult, variable checkExist, variable useVariables])
4947+
Function/WAVE SF_ExecuteFormula(string formula, string graph, [variable singleResult, variable checkExist, variable useVariables])
49484948

49494949
variable jsonId
49504950

Packages/MIES/MIES_SweepFormula_Helpers.ipf

+5-5
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ End
253253
/// All programmer error checks must still use ASSERT().
254254
///
255255
/// UTF_NOINSTRUMENTATION
256-
Function SFH_ASSERT(variable condition, string message[, variable jsonId])
256+
Function SFH_ASSERT(variable condition, string message, [variable jsonId])
257257

258258
if(!condition)
259259
if(!ParamIsDefault(jsonId))
@@ -604,7 +604,7 @@ Function SFH_AddToArgSetupStack(WAVE output, WAVE/Z input, string argSetupStr, [
604604
JSON_Release(argStackId)
605605
End
606606

607-
Function/WAVE SFH_GetOutputForExecutorSingle(WAVE/Z data, string graph, string opShort[, variable discardOpStack, WAVE clear, string dataType])
607+
Function/WAVE SFH_GetOutputForExecutorSingle(WAVE/Z data, string graph, string opShort, [variable discardOpStack, WAVE clear, string dataType])
608608

609609
discardOpStack = ParamIsDefault(discardOpStack) ? 0 : !!discardOpStack
610610
if(!ParamIsDefault(clear))
@@ -627,7 +627,7 @@ Function/WAVE SFH_GetOutputForExecutorSingle(WAVE/Z data, string graph, string o
627627
return SFH_GetOutputForExecutor(output, graph, opShort)
628628
End
629629

630-
Function/WAVE SFH_GetOutputForExecutor(WAVE output, string win, string opShort[, WAVE clear])
630+
Function/WAVE SFH_GetOutputForExecutor(WAVE output, string win, string opShort, [WAVE clear])
631631

632632
if(!ParamIsDefault(clear))
633633
SFH_CleanUpInput(clear)
@@ -657,7 +657,7 @@ static Function SFH_ConvertAllReturnDataToPermanent(WAVE/WAVE output, string win
657657
End
658658

659659
/// @brief Retrieves from an argument the first dataset and disposes the argument
660-
Function/WAVE SFH_ResolveDatasetElementFromJSON(variable jsonId, string jsonPath, string graph, string opShort, variable argNum[, variable checkExist])
660+
Function/WAVE SFH_ResolveDatasetElementFromJSON(variable jsonId, string jsonPath, string graph, string opShort, variable argNum, [variable checkExist])
661661

662662
checkExist = ParamIsDefault(checkExist) ? 0 : !!checkExist
663663

@@ -679,7 +679,7 @@ End
679679
/// @param newDataType data type of output
680680
/// @param argSetup [optional, default=$""] 2d text wave with argument setup of operation @sa SFH_GetNewArgSetupWave
681681
/// @param keepX [optional, default=0] When set then xvalues and xlabel of output are kept.
682-
Function SFH_TransferFormulaDataWaveNoteAndMeta(WAVE/WAVE input, WAVE/WAVE output, string opShort, string newDataType[, WAVE/T argSetup, variable keepX])
682+
Function SFH_TransferFormulaDataWaveNoteAndMeta(WAVE/WAVE input, WAVE/WAVE output, string opShort, string newDataType, [WAVE/T argSetup, variable keepX])
683683

684684
variable sweepNo, numResults, i, setXLabel, size
685685
string opStack, argSetupStr, inDataType

Packages/MIES/MIES_Utilities.ipf

+4-4
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ End
846846
/// @param wv wave reference, can be numeric or text
847847
/// @param caseSensitive [optional, default = 1] Indicates whether comparison should be case sensitive. Applies only if the input wave is a text wave
848848
/// @param dontDuplicate [optional, default = 0] for a single element input wave no new free wave is created but the input wave is returned.
849-
threadsafe Function/WAVE GetUniqueEntries(WAVE wv[, variable caseSensitive, variable dontDuplicate])
849+
threadsafe Function/WAVE GetUniqueEntries(WAVE wv, [variable caseSensitive, variable dontDuplicate])
850850

851851
variable numRows
852852

@@ -909,7 +909,7 @@ End
909909
/// @param dontDuplicate [optional, default = 0] for a single element input wave no new free wave is created but the input wave is returned.
910910
///
911911
/// @return free wave with unique entries
912-
threadsafe static Function/WAVE GetUniqueTextEntries(WAVE/T wv[, variable caseSensitive, variable dontDuplicate])
912+
threadsafe static Function/WAVE GetUniqueTextEntries(WAVE/T wv, [variable caseSensitive, variable dontDuplicate])
913913

914914
variable numEntries, numDuplicates, i
915915

@@ -4901,7 +4901,7 @@ End
49014901
/// @param[in] fileFilter [optional, default = "Plain Text Files (*.txt):.txt;All Files:.*;"] file filter string in Igor specific notation.
49024902
/// @param[in] message [optional, default = "Select file"] window title of the save file dialog.
49034903
/// @returns loaded string data and full path fileName
4904-
Function [string data, string fName] LoadTextFile(string fileName[, string fileFilter, string message])
4904+
Function [string data, string fName] LoadTextFile(string fileName, [string fileFilter, string message])
49054905

49064906
variable fNum, zFlag
49074907

@@ -6186,7 +6186,7 @@ End
61866186
/// @param input Wave to perform FFT on
61876187
/// @param winFunc [optional, defaults to NONE] FFT window function
61886188
/// @param padSize [optional, defaults to the next power of 2 of the input wave row size] Target size used for padding
6189-
threadsafe Function/WAVE DoFFT(WAVE input[, string winFunc, variable padSize])
6189+
threadsafe Function/WAVE DoFFT(WAVE input, [string winFunc, variable padSize])
61906190

61916191
if(ParamIsDefault(padSize))
61926192
padSize = TP_GetPowerSpectrumLength(DimSize(input, ROWS))

Packages/tests/Basic/UTF_SweepFormula.ipf

+1-1
Original file line numberDiff line numberDiff line change
@@ -2227,7 +2227,7 @@ static Function TestOperationSelect()
22272227

22282228
End
22292229

2230-
static Function CheckSweepsFromData(WAVE/WAVE dataWref, WAVE sweepRef, variable numResults, WAVE chanIndex[, WAVE ranges])
2230+
static Function CheckSweepsFromData(WAVE/WAVE dataWref, WAVE sweepRef, variable numResults, WAVE chanIndex, [WAVE ranges])
22312231

22322232
variable i
22332233

0 commit comments

Comments
 (0)