Hi all,<br><br>I am adding the filter vtkGenericProbeFilter.vtk to paraview and believe to have coded the .xml and .pvsm files properly. When i load paraview my filter does not appear in the filter list, nor does it appear in the pipeline if i import it directly (i have set my PV_INT_PATH correctly)
<br><br>I have incuded the aforementioned files. Syntax wise i believe the only command to question would be the line:<br><br><ProxyProperty name="ProbeWith" command="SetInput"><br><br>as in, perhaps there is a different method name for calling for the input object? This from what i see in the docs is correct.
<br><br>Any help is appreciated. Thanks<br>Shawn<br><br>GenericProbeFilter.xml<br>------------------------------------------<br><br><ModuleInterfaces><br> <ServerManagerFile name="GenericProbeFilter.pvsm"/>
<br> <Module name="GenericProbeFilter"<br> root_name="GenericProbe"<br> replace_input="0"<br> menu_name="Generic Probe Filter"<br> module_type="Filter"
<br> long_help="GenProbe"<br> short_help="GenProbe"><br> <Filter class="vtkGenericProbeFilter"><br> <Input name="Source"<br> class="vtkGenericDataSet"/>
<br> </Filter><br> <InputMenu trace_name="Source" property="Source"<br> id="im"<br> source_list="Sources"<br> label="Source"
<br> help="Set the Source to this filter."<br> input_name="Source"<br> </InputMenu><br> <SelectWidget label="Probe object" trace_name="Probe object" property="ProbeWith">
<br> <Item label="Point" value="Output"><br> <PointSourceWidget trace_name="Point" default_radius="0" input_menu="im" default_number_of_points="1" show_entries="0" />
<br> </Item><br> <Item label="Line" value="Output"><br> <LineSourceWidget trace_name="Line" input_menu="im" /><br> </Item><br> <Item label="Plane" value="Output">
<br> <ImplicitPlaneWidget trace_name="Plane" use_label="0" input_menu="im" /><br> <Item/><br> </SelectWidget><br> </Module><br></ModuleInterfaces><br>
<br>GenericProbeFilter.pvsm<br>-----------------------------------------<br><br><ServerManagerConfiguration><br> <ProxyGroup name="filters"><br> <SourceProxy name="GenericProbeFilter" class="vtkGenericProbeFilter">
<br> <InputProperty name="Source" command="SetSource"><br> <ProxyGroupDomain name="groups"><br> <Group name="sources"/>
<br> <Group name="filters"/><br> </ProxyGroupDomain><br> <DataTypeDomain name="input_type">
<br> <DataType value="vtkGenericDataSet"/><br> </DataTypeDomain><br> </InputProperty><br> <ProxyProperty name="ProbeWith" command="SetInput">
<br> <ProxyGroupDomain name="groups"><br> <Group name="Sources" /><br> </ProxyGroupDomain><br> </ProxyProperty>
<br> </SourceProxy><br> </ProxyGroup><br></ServerManagerConfiguration><br><br>