Commit 05fcf60befc51c1f25cd65e45b41987d571b64af
1 parent
73750ece
Exists in
master
and in
7 other branches
Merge noise filtering params from amdadev
Showing
3 changed files
with
31 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,8 @@ |
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<param xml:id="filter_spikes_##paramid##_##level##"> | |
3 | + <get> | |
4 | + <amdaParam name='##paramid##'/> | |
5 | + </get> | |
6 | + <process description="filter_spikes(paramid, factor, nPoints)">#filter($##paramid##;##factor##;##nPoints##)</process> | |
7 | + <output/> | |
8 | +</param> | ... | ... |
... | ... | @@ -0,0 +1,8 @@ |
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<param xml:id="filter_spikes_component_##paramid##_##level##"> | |
3 | + <get> | |
4 | + <amdaParam name='##paramid##'/> | |
5 | + </get> | |
6 | + <process description="filter_spikes(paramid[index], factor, nPoints)">#filter($##paramid##[##index##];##factor##;##nPoints##)</process> | |
7 | + <output/> | |
8 | +</param> | ... | ... |
ParamTemplateList.xml
... | ... | @@ -1558,4 +1558,19 @@ |
1558 | 1558 | </argument> |
1559 | 1559 | </arguments> |
1560 | 1560 | </paramTemplate> |
1561 | + <paramTemplate paramId='filter_spikes' fileName='filter_spikes_##paramid##_##level##'> | |
1562 | + <arguments> | |
1563 | + <argument key='factor' name='factor' type='float' default='6'/> | |
1564 | + <argument key='nPoints' name='nPoints' type='int' default='100'/> | |
1565 | + <argument key='paramid' name='Parameter Id' type='string' default=''/> | |
1566 | + </arguments> | |
1567 | + </paramTemplate> | |
1568 | + <paramTemplate paramId='filter_spikes_component' fileName='filter_spikes_component_##paramid##_##level##'> | |
1569 | + <arguments> | |
1570 | + <argument key='index' name='index' type='int' default='0'/> | |
1571 | + <argument key='factor' name='factor' type='float' default='6'/> | |
1572 | + <argument key='nPoints' name='nPoints' type='int' default='100'/> | |
1573 | + <argument key='paramid' name='Parameter Id' type='string' default=''/> | |
1574 | + </arguments> | |
1575 | + </paramTemplate> | |
1561 | 1576 | </paramTemplateList> | ... | ... |