File MIES_StimsetAPI.ipf¶
ST Stimulus set API
Functions for manipulating stimulus sets
-
string ST_GetStimsetList(variable channelType = defaultValue, string searchString = defaultValue, string *WBstimSetList = defaultValue, string *thirdPartyStimSetList = defaultValue)¶
Return a sorted list of all DA/TTL stim set waves.
- Parameters:
channelType – [in] [optional, defaults to all] CHANNEL_TYPE_DAC or CHANNEL_TYPE_TTL
searchString – [in] [optional, defaults to “*”] search string in wildcard syntax
WBstimSetList – [out] [optional] returns the list of stim sets built with the wavebuilder
thirdPartyStimSetList – [out] [optional] returns the list of third party stim sets not built with the wavebuilder
-
string ST_CreateStimSet(string baseName, variable stimulusType, variable setNumber = defaultValue, variable saveAsBuiltin = defaultValue)¶
Create a new stimset with one square pulse epoch with 1ms duration.
- Parameters:
baseName – user choosable part of the stimset name
stimulusType – one of CHANNEL_TYPE_DAC or CHANNEL_TYPE_TTL
setNumber – [optional, defaults to 0] stimset number, allows for convenient alphabetic increasing names used in indexing
saveAsBuiltin – [optional, defaults to false] allows to create builtin stimsets when enabled
-
variable ST_RemoveStimSet(string setName)¶
Remove the given stimulus set and update all relevant GUIs.
-
wave ST_GetStimsetParameters(string setName, variable epochType = defaultValue)¶
Returns the available stimsets parameters.
Return the epoch-independent parameters when epochType is not present.
-
variable ST_GetStimsetParameterAsVariable(string setName, string entry, variable epochIndex = defaultValue)¶
Return the given stimset numeric parameter.
- Parameters:
setName – name of the stimset
entry – name of the parameter, can be global or epoch
epochIndex – [optional, when not given this sets global parameters] epoch index (0-based)
-
string ST_GetStimsetParameterAsString(string setName, string entry, variable epochIndex = defaultValue)¶
Return the given stimset string parameter.
- Parameters:
setName – name of the stimset
entry – name of the parameter, can be global or epoch
epochIndex – [optional, when not given this sets global parameters] epoch index (0-based)
-
variable ST_SetStimsetParameter(string setName, string entry, variable epochIndex = defaultValue, variable var = defaultValue, string str = defaultValue)¶
Set the given stimset parameter.
If you use this function in analysis functions be sure to use an event which happens before the stimset is read, for example
PRE_DAQ_EVENT
,PRE_SET_EVENT
orPRE_SWEEP_CONFIG_EVENT
. The last one is always called for each sweep before it is configured.- Parameters:
setName – name of the stimset
entry – name of the parameter, can be global or epoch
epochIndex – [optional, when not given this sets global parameters] epoch index (0-based)
var – [optional, one of
var
/str
must be present] numeric parameter to setstr – [optional, one of
var
/str
must be present] string parameter to set
- Returns:
0 on success, 1 on error