-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvtkNeuronSpikeFilter.xml
152 lines (134 loc) · 4.65 KB
/
vtkNeuronSpikeFilter.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<ServerManagerConfiguration>
<!-- ================================================================ -->
<!-- vtkNeuronSpikeFilter -->
<!-- ================================================================ -->
<ProxyGroup name="filters">
<SourceProxy name="NeuronSpikeFilter"
class="vtkNeuronSpikeFilter"
label="NeuronSpikeFilter">
<Documentation
long_help="Computes the displacement or temporal derivative
of a single mesh between two time steps for scalar/vector arrays"
short_help="Computes the time displacement or derivative">
</Documentation>
<InputProperty
name="Input"
command="SetInputConnection">
<ProxyGroupDomain name="groups">
<Group name="sources"/>
<Group name="filters"/>
</ProxyGroupDomain>
<DataTypeDomain name="input_type">
<DataType value="vtkPointSet"/>
</DataTypeDomain>
<InputArrayDomain name="input_array" attribute_type="point" />
<!-- number_of_components="3"/> -->
</InputProperty>
<ProxyProperty
command="SetSpikeData"
name="SpikeData">
<ProxyGroupDomain name="group">
<Group name="data_arrays" />
</ProxyGroupDomain>
</ProxyProperty>
<!--
<DoubleVectorProperty
name="DecayFactor"
command="SetDecayFactor"
number_of_elements="1"
animateable="1"
default_values="25" >
<DoubleRangeDomain name="range" min="0" />
<Documentation>
Large gives a slow decay, small a fast one
</Documentation>
</DoubleVectorProperty>
<StringVectorProperty
name="ArrayNamePrefix"
command="SetArrayNamePrefix"
number_of_elements="1"
animateable="0"
default_values="exp_" >
<Documentation>
Add this prefix to all array names
</Documentation>
</StringVectorProperty>
<IntVectorProperty
name="HighFrequencyResponse"
command="SetHighFrequencyResponse"
number_of_elements="1"
animateable="1"
default_values="1" >
<BooleanDomain name="bool"/>
<Documentation>
When set, the filter will only decay on the +ve or -ve side
</Documentation>
</IntVectorProperty>
<DoubleVectorProperty
name="HighFrequencyDelta"
command="SetHighFrequencyDelta"
number_of_elements="1"
default_values="2.0"
label="Impulse ref">
<DoubleRangeDomain name="range" min="-1000" max="1000.0"/>
</DoubleVectorProperty>
<IntVectorProperty
name="ClampAndNormalizeOutput"
command="SetClampAndNormalizeOutput"
number_of_elements="1"
animateable="1"
default_values="1" >
<BooleanDomain name="bool"/>
<Documentation>
When set, the filter will output values clamped and normalized to {0.0, 1.0} within {range[0], range[1]}
</Documentation>
</IntVectorProperty>
<DoubleVectorProperty
name="NormalizedRange"
command="SetNormalizedRange"
number_of_elements="2"
default_values="0.0 2.0"
label="Normalize range">
<DoubleRangeDomain name="range"/>
</DoubleVectorProperty>
<IntVectorProperty
name="OutputAbsoluteValue"
command="SetOutputAbsoluteValue"
number_of_elements="1"
animateable="1"
default_values="1" >
<BooleanDomain name="bool"/>
<Documentation>
When set, the filter will produce abs() values
</Documentation>
</IntVectorProperty>
<StringVectorProperty
name="PointArrayInfo"
information_only="1">
<ArraySelectionInformationHelper attribute_name="Point" />
</StringVectorProperty>
<StringVectorProperty
name="PointArrayStatus"
command="SetPointArrayStatus"
information_property="PointArrayInfo"
default_values ="0"
number_of_elements="0"
repeat_command="1"
number_of_elements_per_command="2"
element_types="2 0"
label="Arrays to process">
<ArraySelectionDomain name="array_list">
<RequiredProperties>
<Property function="ArrayList"
name="PointArrayInfo" />
</RequiredProperties>
</ArraySelectionDomain>
</StringVectorProperty>
-->
<Hints>
<ShowInMenu category="Temporal" />
</Hints>
<!-- End vtkNeuronSpikeFilter -->
</SourceProxy>
</ProxyGroup>
</ServerManagerConfiguration>