MantisBT - ParaView
View Issue Details
0009528ParaViewBugpublic2009-09-12 16:182010-06-01 21:29
Sven Buijssen 
Utkarsh Ayachit 
normalminoralways
closedfixed 
3.6 
3.8 
0009528: Programmable Filter + Plot Selection over Time freezes ParaView GUI on Win32, not with Linux 32/64bit
* Load blow*.vtk file series
* Apply Programmable Filter with the following settings:
  Output Data Set Type: vtkPolyData
  Script:
    -----
    inp = self.GetInput()
    out = self.GetPolyDataOutput()
    
    numPoints = inp.GetNumberOfPoints()
    
    newPoint = vtk.vtkPoints()
    newPoint.InsertNextPoint(0,0,0)
    out.SetPoints(newPoint)
    
    newCell = vtk.vtkVertex()
    newCell.GetPointIds().SetNumberOfIds(1)
    newCell.Triangulate(1, newCell.GetPointIds(), newPoint)
    out.Allocate(1,1)
    out.InsertNextCell(newCell.GetCellType(), newCell.GetPointIds())
    
    newData1 = vtk.vtkUnsignedLongArray()
    newData1.SetName("numPoints")
    newData1.SetNumberOfComponents(1)
    newData1.InsertNextValue(numPoints)
    out.GetCellData().AddArray(newData1)
    -----
* Select newly created point
* Apply Extract Selection filter
* Apply Plot Selection over Time

=> ParaView 3.6.1 will open the Output Window, raise the following (assumingly
incomplete) error message "ERROR: In ..\..\..src\VTK\IO\vtkDataReader.cxx,
line 462 vtkDataSetReader (09D9E850): Unable to open file: C" and freeze
at 100% cpu load.

Does happen neither with Linux 32 nor 64 bit binary release.
No tags attached.
Issue History
2009-09-12 16:18Sven BuijssenNew Issue
2010-05-05 16:17Sven BuijssenNote Added: 0020599
2010-05-26 15:06Utkarsh AyachitNote Added: 0020828
2010-05-26 15:06Utkarsh AyachitStatusbacklog => @80@
2010-05-26 15:06Utkarsh AyachitFixed in Version => 3.8
2010-05-26 15:06Utkarsh AyachitResolutionopen => fixed
2010-05-26 15:06Utkarsh AyachitAssigned To => Utkarsh Ayachit
2010-06-01 21:29Alan ScottNote Added: 0020891
2010-06-01 21:29Alan ScottStatus@80@ => closed

Notes
(0020599)
Sven Buijssen   
2010-05-05 16:17   
Problem resolved in ParaView-3.8.0-RC2-Win32-x86.exe
(0020828)
Utkarsh Ayachit   
2010-05-26 15:06   
Reporter indicates this is resolved.
(0020891)
Alan Scott   
2010-06-01 21:29   
Accepting testing by bug reporter.