├── SuperBuild ├── h5pyPatches │ └── unistd.h ├── CTestCustom.ctest.in ├── StringFindReplace.cmake ├── distribute_configure_step.cmake.in ├── python_make_step.cmake.in ├── External_SIP.cmake ├── External_PyQt.cmake ├── python_patch_step.cmake.in ├── freetype_build_step.cmake.in ├── shortpath.vbs ├── install_g2c.cmake ├── install_bz2.cmake ├── zlib_configure_step.cmake.in ├── External_VisTrails.cmake ├── CGNS_configure_step.cmake.in ├── python_configure_step.cmake.in ├── install_gfortran.cmake ├── CTestConfig.cmake ├── MPL_install_step.cmake.in ├── External_AcuSolveReaderPlugin.cmake ├── yt_configure_step.cmake.in ├── python_install_step.cmake.in ├── yt_make_step.cmake.in ├── Cython_install_step.cmake.in ├── NUMPY_install_step.cmake.in ├── distribute_make_step.cmake.in ├── freetype_patch_step.cmake.in ├── Cython_make_step.cmake.in ├── NUMPY_make_step.cmake.in ├── yt_install_step.cmake.in ├── External_LAPACK.cmake └── distribute_install_step.cmake.in ├── ParaViewCore ├── ServerManager │ ├── hints │ └── Testing │ │ └── Python │ │ └── TestNumPy.cmake ├── VTKExtensions │ ├── hints │ └── Testing │ │ └── TestSpyPlotTracers.cxx ├── ClientServerCore │ ├── hints │ ├── Testing │ │ └── CMakeLists.txt │ └── vtkPVPythonPluginInterface.cxx ├── Common │ └── Testing │ │ ├── CMakeLists.txt │ │ └── ParaViewCoreCommonPrintSelf.cxx ├── CMakeLists.txt └── ServerImplementation │ ├── Testing │ └── CMakeLists.txt │ └── vtkParaViewIncludeModulesToSMApplication.h.in ├── Plugins ├── H5PartReader │ ├── H5Part │ │ ├── ChangeLog │ │ ├── src │ │ │ ├── H5BlockPrivate.h │ │ │ ├── TestUnderscore.f │ │ │ └── H5BlockTypes.h │ │ └── AUTHORS │ └── H5PartGUI.xml ├── SQToolkit │ ├── eigen-2.0.12 │ │ ├── include │ │ │ └── eigen2 │ │ │ │ └── Eigen │ │ │ │ ├── src │ │ │ │ ├── Sparse │ │ │ │ │ └── SparseAssign.h │ │ │ │ └── Core │ │ │ │ │ └── util │ │ │ │ │ ├── EnableMSVCWarnings.h │ │ │ │ │ └── DisableMSVCWarnings.h │ │ │ │ ├── LeastSquares │ │ │ │ ├── SVD │ │ │ │ └── LU │ │ └── share │ │ │ └── pkgconfig │ │ │ └── eigen2.pc │ ├── script │ │ ├── postproc │ │ │ ├── crop.sh │ │ │ ├── png2mp4.sh │ │ │ ├── mp42avi.sh │ │ │ ├── un2-run2-nmm.sh │ │ │ ├── clean.sh │ │ │ ├── axes.sh │ │ │ ├── autocrop.sh │ │ │ └── annotate.sh │ │ ├── config │ │ │ ├── config-pv3-debug.sh │ │ │ ├── config-svtk-nautilus-icc.sh │ │ │ ├── config-svtk-pleiades-icc.sh │ │ │ └── config-svtk-kraken-gnu.sh │ │ ├── batch │ │ │ ├── qsub-test4-topo-3d-pleiades.sh │ │ │ └── qsub-gentp-longhorn.sh │ │ └── util │ │ │ └── pvd.sh │ ├── SQExport.h │ ├── luts │ │ └── heln.xml │ ├── GhostTransaction.cxx │ ├── IdBlock.cxx │ ├── SciVisToolKitClientReaders.xml │ ├── postream.h │ ├── vtkSQMetaDataKeys.h │ ├── CartesianDataBlockIODescriptorIterator.cxx │ ├── vtkSQMetaDataKeys.cxx │ ├── vtkSQPlaneSourceConstants.h │ ├── CartesianBounds.cxx │ ├── SystemInterfaceFactory.h │ ├── MPICHConfig.cmake │ ├── postream.cxx │ ├── minmax.h │ └── GDAMetaDataKeys.h ├── StreamingView │ ├── VTK │ │ └── Testing │ │ │ └── CMakeLists.txt │ ├── CMakeLists.txt │ └── ParaView │ │ └── StreamingReaders.xml ├── pvblot │ ├── Icons │ │ ├── Solid.pdf │ │ ├── Solid.png │ │ ├── Wireframe.pdf │ │ └── Wireframe.png │ ├── pvblot.qrc │ ├── pvblot.in │ └── pvblot.bat.in ├── SLACTools │ ├── Icons │ │ ├── BField.png │ │ ├── EField.png │ │ ├── PlotOverZ.png │ │ ├── ShowSolid.png │ │ ├── BackgroundBW.png │ │ ├── DataLoadManager.png │ │ ├── ShowParticles.png │ │ ├── XPlusSideways.png │ │ ├── ResetRangeTemporal.png │ │ ├── ShowWireframeAndBack.png │ │ ├── ShowWireframeSolid.png │ │ └── ResetRangeCurrentTime.png │ └── SLACTools.qrc ├── SierraPlotTools │ ├── pqPlotter.cxx │ ├── Icons │ │ ├── DEBUG.png │ │ ├── DEBUG.xcf │ │ ├── PlotOverZ.png │ │ ├── ShowSolid.png │ │ ├── BackgroundBW.png │ │ ├── PlotOverTime.png │ │ ├── PlotOverTime.xcf │ │ ├── DataLoadManager.png │ │ ├── DataLoadManager.xcf │ │ ├── ShowWireframeSolid.png │ │ ├── plotVarsCurve-32x32.png │ │ ├── plotVarsCurve-64x64.png │ │ ├── PlotGlobalVars-32x32.png │ │ ├── PlotGlobalVars-64x64.png │ │ ├── ShowWireframeAndBack.png │ │ ├── plotVarsCurve-128x128.png │ │ ├── plotVarsCurve-256x256.png │ │ ├── PlotGlobalVars-128x128.png │ │ └── PlotGlobalVars-256x256.png │ ├── pqPlotVariablesDialog.cxx │ └── SierraPlotTools.qrc ├── EyeDomeLighting │ ├── CMakeLists.txt │ └── ParaViewPlugin │ │ └── RenderPassViews.xml ├── PrismPlugins │ ├── Resources │ │ ├── Icons │ │ │ ├── CreateSESAME.png │ │ │ ├── PrismSmall.png │ │ │ └── PrismViewScale.png │ │ ├── PrismReader.xml │ │ └── Prism.qrc │ ├── hints │ ├── PrismMenuActions.h │ ├── PrismToolBarActions.h │ ├── PrismMenuActions.cxx │ ├── PrismToolBarActions.cxx │ └── Testing │ │ └── CMakeLists.txt ├── Vapor │ └── VDFReaderGUI.xml ├── AdiosReader │ └── vtkAdiosReaderGUI.xml ├── ForceTime │ └── ForceTimeClient.xml ├── AnalyzeNIfTIReaderWriter │ ├── NIfTIWriter.xml │ ├── AnalyzeWriter.xml │ ├── NIfTIReader.xml │ └── AnalyzeReader.xml ├── PointSprite │ ├── Examples │ │ ├── Rendering │ │ │ ├── Cxx │ │ │ │ └── CMakeLists.txt │ │ │ └── CMakeLists.txt │ │ └── CMakeLists.txt │ └── ParaViewPlugin │ │ └── Qvis │ │ └── QvisConfigure.h.in ├── Manta │ ├── CMakeLists.txt │ └── VTK │ │ └── Examples │ │ └── CMakeLists.txt ├── TestPlugin │ └── CMakeLists.txt └── Moments │ └── CMakeLists.txt ├── Utilities ├── mpi4py │ ├── mpi4py │ │ ├── include │ │ │ └── mpi4py │ │ │ │ ├── __init__.pyx │ │ │ │ ├── mpi_c.pxd │ │ │ │ └── mpi4py.h │ │ ├── MPI.py │ │ └── compile_all_pv_mpi.py.in │ ├── Library │ │ ├── mpi4py.MPI.pyx │ │ ├── MPI.c │ │ ├── compat │ │ │ ├── mpich2.h │ │ │ └── sgimpi.h │ │ ├── config │ │ │ ├── openmpi.h │ │ │ ├── deinompi.h │ │ │ └── mpich2.h │ │ └── MPI │ │ │ ├── stdlib.pxi │ │ │ └── asmemory.pxi │ └── LICENSE.txt ├── VTKPythonWrapping │ ├── paraview │ │ ├── vtk │ │ │ ├── io.py │ │ │ ├── views.py │ │ │ ├── geovis.py │ │ │ ├── hybrid.py │ │ │ ├── imaging.py │ │ │ ├── infovis.py │ │ │ ├── parallel.py │ │ │ ├── widgets.py │ │ │ ├── volumerendering.py │ │ │ ├── genericfiltering.py │ │ │ └── __init__.py │ │ ├── demos │ │ │ ├── demo1.py │ │ │ └── show_grid_as_background.py │ │ ├── pvvtkextensions.py │ │ ├── pvfilters.py │ │ └── compile_all_pv.py.in │ └── Executable │ │ └── vtkPythonAppInitConfigure.h.in ├── VTKClientServer │ ├── Common │ │ └── CMakeLists.txt │ ├── IO │ │ └── CMakeLists.txt │ ├── Imaging │ │ └── CMakeLists.txt │ ├── Views │ │ └── CMakeLists.txt │ ├── Charts │ │ └── CMakeLists.txt │ ├── Filtering │ │ └── CMakeLists.txt │ ├── Parallel │ │ └── CMakeLists.txt │ ├── Widgets │ │ └── CMakeLists.txt │ ├── VolumeRendering │ │ └── CMakeLists.txt │ ├── GenericFiltering │ │ └── CMakeLists.txt │ ├── VisItBridge │ │ ├── CMakeLists.txt │ │ ├── AvtAlgorithms │ │ │ └── CMakeLists.txt │ │ └── databases │ │ │ └── CMakeLists.txt │ ├── Hybrid │ │ └── CMakeLists.txt │ ├── Infovis │ │ └── CMakeLists.txt │ ├── Rendering │ │ └── CMakeLists.txt │ ├── Xdmf2 │ │ └── CMakeLists.txt │ ├── Graphics │ │ └── CMakeLists.txt │ ├── Testing │ │ └── CMakeLists.txt │ └── CMake │ │ └── vtkWrapClientServer.cxx.in ├── Doxygen │ └── paper-clip.gif ├── CMakeBuildForPython │ ├── Lib │ │ └── CMakeLists.txt │ ├── PythonCPack.cmake │ └── README.txt └── Git │ └── NOTICE ├── CoProcessing ├── CoProcessor │ ├── Testing │ │ ├── TestDriver │ │ │ └── Testing │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Cxx │ │ │ │ └── CMakeLists.txt │ │ └── CMakeLists.txt │ ├── CPWin32Header.h │ └── CPSystemInformation.h.in ├── CoProcessingUse.cmake ├── Adaptors │ ├── FortranAdaptors │ │ ├── NPICAdaptor │ │ │ └── CMakeLists.txt │ │ └── PhastaAdaptor │ │ │ └── CMakeLists.txt │ └── CMakeLists.txt └── CoProcessingConfig.cmake.in ├── CMake ├── branded_splash.png ├── pre-commit └── ParaViewCPackOptions.cmake.in ├── Documentation ├── ParaViewLogo.png ├── Book │ ├── Book_html_19693afe.jpg │ ├── Book_html_2b2383d7.jpg │ ├── Book_html_4394a8d6.jpg │ ├── Book_html_445f1e29.jpg │ ├── Book_html_4c50bf02.jpg │ ├── Book_html_4fb223ff.jpg │ ├── Book_html_m341a5d55.jpg │ ├── Book_html_m37578574.jpg │ ├── Book_html_m4edcea30.jpg │ ├── Book_html_m5f5dae66.jpg │ ├── Book_html_m6ca332ef.jpg │ ├── growem.sh │ ├── README.txt │ └── imagesizer.py └── GenerateQHP.cmake ├── Applications └── ParaView │ ├── WinIcon.ico │ ├── pvIcon.png │ ├── MacIcon.icns │ ├── PVSplashScreen.png │ └── Testing │ ├── CMakeLists.txt │ └── XML │ ├── LoadState.xml │ ├── VisItBridgeNas.xml │ ├── VisItBridgeSamrai.xml │ ├── ZLibXDMF.xml │ ├── VisItBridgeChombo.xml │ └── VisItBridgePdb.xml ├── Qt ├── Core │ ├── Resources │ │ ├── Icons │ │ │ ├── pqDomain16.png │ │ │ ├── pqLinkOut16.png │ │ │ └── pqNetwork16.png │ │ └── pqCore.qrc │ └── Testing │ │ └── BasicApp.h ├── Widgets │ ├── Resources │ │ ├── Icons │ │ │ ├── pqPlus16.png │ │ │ ├── pqDelete16.png │ │ │ ├── pqDelete24.png │ │ │ ├── pqDelete32.png │ │ │ └── pqCollapsedGroup22.png │ │ └── QtWidgets.qrc │ └── Testing │ │ └── CMakeLists.txt ├── Components │ └── Resources │ │ ├── Icons │ │ ├── PluginRed.png │ │ ├── paraqlogo.ico │ │ ├── pqBack16.png │ │ ├── pqClip24.png │ │ ├── pqCopy22.png │ │ ├── pqCut22.png │ │ ├── pqFind22.png │ │ ├── pqGlyph24.png │ │ ├── pqGroup24.png │ │ ├── pqHelp16.png │ │ ├── pqHelp24.png │ │ ├── pqHelp32.png │ │ ├── pqLock24.png │ │ ├── pqMinus16.png │ │ ├── pqOpen16.png │ │ ├── pqOpen24.png │ │ ├── pqOpen32.png │ │ ├── pqPaste22.png │ │ ├── pqPrint22.png │ │ ├── pqQuit22.png │ │ ├── pqRamp16.png │ │ ├── pqRamp24.png │ │ ├── pqRedo16.png │ │ ├── pqRedo24.png │ │ ├── pqRedo32.png │ │ ├── pqSave16.png │ │ ├── pqSave24.png │ │ ├── pqSave32.png │ │ ├── pqSlice24.png │ │ ├── pqStep16.png │ │ ├── pqStep24.png │ │ ├── pqUndo16.png │ │ ├── pqUndo24.png │ │ ├── pqUndo32.png │ │ ├── pqView22.png │ │ ├── pqWarp24.png │ │ ├── pqXPlus16.png │ │ ├── pqXPlus24.png │ │ ├── pqXPlus32.png │ │ ├── pqYPlus16.png │ │ ├── pqYPlus24.png │ │ ├── pqYPlus32.png │ │ ├── pqZPlus16.png │ │ ├── pqZPlus24.png │ │ ├── pqZPlus32.png │ │ ├── pvsplash1.png │ │ ├── pvsplash2.png │ │ ├── pvsplash3.png │ │ ├── warning.png │ │ ├── PluginGray.png │ │ ├── PluginGreen.png │ │ ├── pq3DView16.png │ │ ├── pqAppIcon16.png │ │ ├── pqAppIcon22.png │ │ ├── pqAppIcon32.png │ │ ├── pqAppIcon64.png │ │ ├── pqArrowUp16.png │ │ ├── pqBundle16.png │ │ ├── pqBundle22.png │ │ ├── pqBundle32.png │ │ ├── pqCamera16.png │ │ ├── pqCamerad16.png │ │ ├── pqCancel16.png │ │ ├── pqCancel24.png │ │ ├── pqCancel32.png │ │ ├── pqConnect16.png │ │ ├── pqConnect24.png │ │ ├── pqConnect32.png │ │ ├── pqEyeball16.png │ │ ├── pqFilter16.png │ │ ├── pqFilter22.png │ │ ├── pqFilter32.png │ │ ├── pqFolder16.png │ │ ├── pqFolder32.png │ │ ├── pqInspect22.png │ │ ├── pqLinkIn16.png │ │ ├── pqMeasure24.png │ │ ├── pqNewItem16.png │ │ ├── pqNewItem22.png │ │ ├── pqNewItem32.png │ │ ├── pqNodeSet16.png │ │ ├── pqOptions16.png │ │ ├── pqRotate16.png │ │ ├── pqRotate24.png │ │ ├── pqRotate32.png │ │ ├── pqSelect16.png │ │ ├── pqSelect24.png │ │ ├── pqSelect32.png │ │ ├── pqServer16.png │ │ ├── pqServer22.png │ │ ├── pqServer32.png │ │ ├── pqSideSet16.png │ │ ├── pqSource16.png │ │ ├── pqSource22.png │ │ ├── pqSource32.png │ │ ├── pqUpdate16.png │ │ ├── pqUpdate24.png │ │ ├── pqUpdate32.png │ │ ├── pqVcrBack16.png │ │ ├── pqVcrBack24.png │ │ ├── pqVcrBack32.png │ │ ├── pqVcrLast16.png │ │ ├── pqVcrLast24.png │ │ ├── pqVcrLast32.png │ │ ├── pqVcrLoop24.png │ │ ├── pqVcrPlay16.png │ │ ├── pqVcrPlay24.png │ │ ├── pqVcrPlay32.png │ │ ├── pqWindow16.png │ │ ├── pqWindow22.png │ │ ├── pqWindow32.png │ │ ├── pqWindowd16.png │ │ ├── pqWindowd22.png │ │ ├── pqWindowd32.png │ │ ├── pqWindowh16.png │ │ ├── pqXMinus16.png │ │ ├── pqXMinus24.png │ │ ├── pqXMinus32.png │ │ ├── pqYMinus16.png │ │ ├── pqYMinus24.png │ │ ├── pqYMinus32.png │ │ ├── pqZMinus16.png │ │ ├── pqZMinus24.png │ │ ├── pqZMinus32.png │ │ ├── PVSplashScreen.png │ │ ├── ParaViewLogo.png │ │ ├── PluginYellow.png │ │ ├── pqArrowDown16.png │ │ ├── pqAutoApply32.png │ │ ├── pqCalculator24.png │ │ ├── pqCellData16.png │ │ ├── pqDisconnect16.png │ │ ├── pqDisconnect24.png │ │ ├── pqDisconnect32.png │ │ ├── pqEditCamera16.png │ │ ├── pqEditColor24.png │ │ ├── pqElemData16.png │ │ ├── pqEyeballd16.png │ │ ├── pqFavorites16.png │ │ ├── pqFavorites32.png │ │ ├── pqFloppyDisk16.png │ │ ├── pqFloppyDisk22.png │ │ ├── pqFloppyDisk32.png │ │ ├── pqFolderNew16.png │ │ ├── pqFolderOpen16.png │ │ ├── pqFolderUp16.png │ │ ├── pqGlobalData16.png │ │ ├── pqHistogram16.png │ │ ├── pqHistogram24.png │ │ ├── pqImageData16.png │ │ ├── pqIsosurface24.png │ │ ├── pqLineChart16.png │ │ ├── pqLinkBack16.png │ │ ├── pqMouseMove15.png │ │ ├── pqMousePick15.png │ │ ├── pqNewProject16.png │ │ ├── pqNewProject22.png │ │ ├── pqNewProject32.png │ │ ├── pqNodalData16.png │ │ ├── pqOctreeData16.png │ │ ├── pqPickCenter24.png │ │ ├── pqPointData16.png │ │ ├── pqPolydata16.png │ │ ├── pqRedoCamera24.png │ │ ├── pqResetRange24.png │ │ ├── pqScalarBar16.png │ │ ├── pqScalarBar24.png │ │ ├── pqScalarBar32.png │ │ ├── pqSinusoidal16.png │ │ ├── pqSinusoidal24.png │ │ ├── pqSolidColor16.png │ │ ├── pqSplitViewH12.png │ │ ├── pqSplitViewV12.png │ │ ├── pqThreshold24.png │ │ ├── pqTopCenter32.png │ │ ├── pqUndoCamera24.png │ │ ├── pqVcrFirst16.png │ │ ├── pqVcrFirst24.png │ │ ├── pqVcrFirst32.png │ │ ├── pqVcrForward16.png │ │ ├── pqVcrForward24.png │ │ ├── pqVcrForward32.png │ │ ├── pqVcrPause16.png │ │ ├── pqVcrPause24.png │ │ ├── pqVcrPause32.png │ │ ├── pqVolumeData16.png │ │ ├── pqAddFavorites16.png │ │ ├── pqBottomCenter32.png │ │ ├── pqEdgeMapData16.png │ │ ├── pqEdgeSetData16.png │ │ ├── pqElemMapData16.png │ │ ├── pqElemSetData16.png │ │ ├── pqEnterCenter24.png │ │ ├── pqExponential16.png │ │ ├── pqExponential24.png │ │ ├── pqExtractGrid24.png │ │ ├── pqFaceMapData16.png │ │ ├── pqFaceSetData16.png │ │ ├── pqGroupExtract24.png │ │ ├── pqMouseSelect15.png │ │ ├── pqNodeMapData16.png │ │ ├── pqNodeSetData16.png │ │ ├── pqPipelineList22.png │ │ ├── pqResetCamera16.png │ │ ├── pqResetCamera24.png │ │ ├── pqResetCamera32.png │ │ ├── pqResetCenter24.png │ │ ├── pqResetCenter32.png │ │ ├── pqSelectBlock24.png │ │ ├── pqSideSetData16.png │ │ ├── pqSpreadsheet16.png │ │ ├── pqStreamTracer24.png │ │ ├── pqUniformData16.png │ │ ├── pqUnknownData16.png │ │ ├── SplitViewHorizontal.png │ │ ├── SplitViewVertical.png │ │ ├── pqCellCenterData16.png │ │ ├── pqComparativeVis16.png │ │ ├── pqEdgeCenterData16.png │ │ ├── pqFaceCenterData16.png │ │ ├── pqHideCenterAxes24.png │ │ ├── pqMultiBlockData16.png │ │ ├── pqMultiGroupData16.png │ │ ├── pqProbeLocation24.png │ │ ├── pqRectilinearGrid16.png │ │ ├── pqSaveAnimation24.png │ │ ├── pqShowCenterAxes24.png │ │ ├── pqShowCenterAxes32.png │ │ ├── pqStructuredGrid16.png │ │ ├── pqTopLeftCorner32.png │ │ ├── pqTopRightCorner32.png │ │ ├── pqZoomToSelection24.png │ │ ├── pqBottomLeftCorner32.png │ │ ├── pqBottomRightCorner32.png │ │ ├── pqCaptureScreenshot24.png │ │ ├── pqComparative3DView16.png │ │ ├── pqExtractSelection24.png │ │ ├── pqHierarchicalData16.png │ │ ├── pqPlotCellOverTime24.png │ │ ├── pqPlotLineOverTime24.png │ │ ├── pqPlotPointOverTime24.png │ │ ├── pqSelectFrustPoints24.png │ │ ├── pqSelectSurfPoints24.png │ │ ├── pqUnstructuredGrid16.png │ │ ├── pqFrustumSelectionCell24.png │ │ ├── pqProgrammableFilter24.png │ │ ├── pqShowOrientationAxes24.png │ │ ├── pqShowOrientationAxes32.png │ │ ├── pqSurfaceSelectionCell24.png │ │ ├── pqFrustumSelectionPoint24.png │ │ ├── pqSurfaceSelectionPoint24.png │ │ └── pqClient.rc │ │ └── XML │ │ └── Placeholder.xml ├── ApplicationComponents │ └── Resources │ │ └── pqApplicationComponents.qrc └── Python │ └── QtPythonConfig.h.in ├── Examples ├── Plugins │ ├── HelixSource │ │ ├── helix.bqrc │ │ └── helix.qrc │ ├── GUIObjectPanel │ │ ├── pqConePanel.qrc │ │ ├── pqConePanel.h │ │ └── pqConePanel.cxx │ ├── Reader │ │ └── pqReader.xml │ ├── Writer │ │ ├── GUITiff.xml │ │ └── CMakeLists.txt │ ├── GUIToolBar │ │ ├── MyToolBarActions.h │ │ └── MyToolBarActions.cxx │ ├── DockWidget │ │ ├── ExampleDockPanel.cxx │ │ └── ExampleDockPanel.h │ ├── Representation │ │ └── CMakeLists.txt │ ├── GUIView │ │ ├── MyDisplay.h │ │ └── MyDisplay.cxx │ ├── SMProxy │ │ ├── vtkSMMyElevationProxy.cxx │ │ ├── vtkSMMyElevationProxy.h │ │ └── vtkSMMyBoundsDomain.h │ ├── ParametricSource │ │ └── CMakeLists.txt │ ├── Filter │ │ └── CMakeLists.txt │ ├── RenderPassViews │ │ └── RenderPassViews.xml │ └── VisItReader │ │ └── CMakeLists.txt ├── CustomApplications │ ├── Spreadsheet │ │ ├── ss_icon.png │ │ ├── SpreadSheet.qrc │ │ ├── SupportedReader.xml │ │ └── README.txt │ ├── ParticlesViewer │ │ └── SupportedReader.xml │ ├── CMakeLists.txt │ ├── Demo0 │ │ ├── DemoApp0.cxx │ │ └── CMakeLists.txt │ └── Demo1 │ │ ├── DemoApp1.cxx │ │ ├── myMainWindow.ui │ │ └── CMakeLists.txt └── PythonClient │ └── eventdriver.py ├── Common ├── KWCommon │ └── Testing │ │ └── Cxx │ │ └── CMakeLists.txt └── CMakeLists.txt ├── ParaViewConfigVersion.cmake.in ├── CTestConfig.cmake └── DartConfig.cmake /SuperBuild/h5pyPatches/unistd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ParaViewCore/ServerManager/hints: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Plugins/H5PartReader/H5Part/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Utilities/mpi4py/mpi4py/include/mpi4py/__init__.pyx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Utilities/mpi4py/mpi4py/MPI.py: -------------------------------------------------------------------------------- 1 | from MPIPython import * 2 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/eigen-2.0.12/include/eigen2/Eigen/src/Sparse/SparseAssign.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/StreamingView/VTK/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(Cxx) 2 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/vtk/io.py: -------------------------------------------------------------------------------- 1 | from vtkIOPython import * 2 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/vtk/views.py: -------------------------------------------------------------------------------- 1 | from vtkViewsPython import * 2 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/vtk/geovis.py: -------------------------------------------------------------------------------- 1 | from vtkCommonPython import * 2 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/vtk/hybrid.py: -------------------------------------------------------------------------------- 1 | from vtkHybridPython import * 2 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/vtk/imaging.py: -------------------------------------------------------------------------------- 1 | from vtkImagingPython import * 2 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/vtk/infovis.py: -------------------------------------------------------------------------------- 1 | from vtkInfovisPython import * 2 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/vtk/parallel.py: -------------------------------------------------------------------------------- 1 | from vtkParallelPython import * 2 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/vtk/widgets.py: -------------------------------------------------------------------------------- 1 | from vtkWidgetsPython import * 2 | -------------------------------------------------------------------------------- /CoProcessing/CoProcessor/Testing/TestDriver/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Cxx) 2 | 3 | -------------------------------------------------------------------------------- /Utilities/mpi4py/Library/mpi4py.MPI.pyx: -------------------------------------------------------------------------------- 1 | #cython: embedsignature=True 2 | include "MPI/MPI.pyx" 3 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/vtk/volumerendering.py: -------------------------------------------------------------------------------- 1 | from vtkVolumeRenderingPython import * 2 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/demos/demo1.py: -------------------------------------------------------------------------------- 1 | Sphere() 2 | Shrink() 3 | Show() 4 | Render() 5 | 6 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/vtk/genericfiltering.py: -------------------------------------------------------------------------------- 1 | from vtkGenericFilteringPython import * 2 | -------------------------------------------------------------------------------- /CMake/branded_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/CMake/branded_splash.png -------------------------------------------------------------------------------- /CoProcessing/CoProcessor/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(TestDriver) 2 | add_subdirectory(Cxx) 3 | 4 | -------------------------------------------------------------------------------- /Documentation/ParaViewLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/ParaViewLogo.png -------------------------------------------------------------------------------- /Plugins/pvblot/Icons/Solid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/pvblot/Icons/Solid.pdf -------------------------------------------------------------------------------- /Plugins/pvblot/Icons/Solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/pvblot/Icons/Solid.png -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Common/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS) 2 | PV_WRAP_VTK_CS(Common COMMON "${KIT_WRAP_DEPS}") 3 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/IO/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Filtering) 2 | PV_WRAP_VTK_CS(IO IO "${KIT_WRAP_DEPS}") 3 | -------------------------------------------------------------------------------- /Utilities/mpi4py/Library/MPI.c: -------------------------------------------------------------------------------- 1 | #define MPICH_SKIP_MPICXX 1 2 | #define OMPI_SKIP_MPICXX 1 3 | #include "mpi4py_MPI.c" 4 | -------------------------------------------------------------------------------- /Applications/ParaView/WinIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Applications/ParaView/WinIcon.ico -------------------------------------------------------------------------------- /Applications/ParaView/pvIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Applications/ParaView/pvIcon.png -------------------------------------------------------------------------------- /SuperBuild/CTestCustom.ctest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/SuperBuild/CTestCustom.ctest.in -------------------------------------------------------------------------------- /Utilities/Doxygen/paper-clip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Utilities/Doxygen/paper-clip.gif -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/pvvtkextensions.py: -------------------------------------------------------------------------------- 1 | from paraview import vtk 2 | from vtkPVVTKExtensionsPython import * 3 | -------------------------------------------------------------------------------- /Applications/ParaView/MacIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Applications/ParaView/MacIcon.icns -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/BField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/BField.png -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/EField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/EField.png -------------------------------------------------------------------------------- /Plugins/pvblot/Icons/Wireframe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/pvblot/Icons/Wireframe.pdf -------------------------------------------------------------------------------- /Plugins/pvblot/Icons/Wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/pvblot/Icons/Wireframe.png -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/PlotOverZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/PlotOverZ.png -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/ShowSolid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/ShowSolid.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/pqPlotter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/pqPlotter.cxx -------------------------------------------------------------------------------- /Qt/Core/Resources/Icons/pqDomain16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Core/Resources/Icons/pqDomain16.png -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Imaging/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Filtering) 2 | PV_WRAP_VTK_CS(Imaging IMAGING "${KIT_WRAP_DEPS}") 3 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Views/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Infovis Filtering) 2 | PV_WRAP_VTK_CS(Views VIEWS "${KIT_WRAP_DEPS}") 3 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/pvfilters.py: -------------------------------------------------------------------------------- 1 | # deprecated, use import pvvtkextensions instead. 2 | from pvvtkextensions import * 3 | -------------------------------------------------------------------------------- /Applications/ParaView/PVSplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Applications/ParaView/PVSplashScreen.png -------------------------------------------------------------------------------- /Examples/Plugins/HelixSource/helix.bqrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Examples/Plugins/HelixSource/helix.bqrc -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/BackgroundBW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/BackgroundBW.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/DEBUG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/DEBUG.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/DEBUG.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/DEBUG.xcf -------------------------------------------------------------------------------- /Qt/Core/Resources/Icons/pqLinkOut16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Core/Resources/Icons/pqLinkOut16.png -------------------------------------------------------------------------------- /Qt/Core/Resources/Icons/pqNetwork16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Core/Resources/Icons/pqNetwork16.png -------------------------------------------------------------------------------- /Qt/Widgets/Resources/Icons/pqPlus16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Widgets/Resources/Icons/pqPlus16.png -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Charts/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Views Rendering) 2 | PV_WRAP_VTK_CS(Charts CHARTS "${KIT_WRAP_DEPS}") 3 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Filtering/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Common) 2 | PV_WRAP_VTK_CS(Filtering FILTERING "${KIT_WRAP_DEPS}") 3 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Parallel/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Rendering) 2 | PV_WRAP_VTK_CS(Parallel PARALLEL "${KIT_WRAP_DEPS}") 3 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Widgets/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Rendering Hybrid) 2 | PV_WRAP_VTK_CS(Widgets WIDGETS "${KIT_WRAP_DEPS}") 3 | -------------------------------------------------------------------------------- /Documentation/Book/Book_html_19693afe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/Book/Book_html_19693afe.jpg -------------------------------------------------------------------------------- /Documentation/Book/Book_html_2b2383d7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/Book/Book_html_2b2383d7.jpg -------------------------------------------------------------------------------- /Documentation/Book/Book_html_4394a8d6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/Book/Book_html_4394a8d6.jpg -------------------------------------------------------------------------------- /Documentation/Book/Book_html_445f1e29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/Book/Book_html_445f1e29.jpg -------------------------------------------------------------------------------- /Documentation/Book/Book_html_4c50bf02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/Book/Book_html_4c50bf02.jpg -------------------------------------------------------------------------------- /Documentation/Book/Book_html_4fb223ff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/Book/Book_html_4fb223ff.jpg -------------------------------------------------------------------------------- /Documentation/Book/Book_html_m341a5d55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/Book/Book_html_m341a5d55.jpg -------------------------------------------------------------------------------- /Documentation/Book/Book_html_m37578574.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/Book/Book_html_m37578574.jpg -------------------------------------------------------------------------------- /Documentation/Book/Book_html_m4edcea30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/Book/Book_html_m4edcea30.jpg -------------------------------------------------------------------------------- /Documentation/Book/Book_html_m5f5dae66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/Book/Book_html_m5f5dae66.jpg -------------------------------------------------------------------------------- /Documentation/Book/Book_html_m6ca332ef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Documentation/Book/Book_html_m6ca332ef.jpg -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/DataLoadManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/DataLoadManager.png -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/ShowParticles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/ShowParticles.png -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/XPlusSideways.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/XPlusSideways.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/PlotOverZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/PlotOverZ.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/ShowSolid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/ShowSolid.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/PluginRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/PluginRed.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/paraqlogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/paraqlogo.ico -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqBack16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqBack16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqClip24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqClip24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqCopy22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqCopy22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqCut22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqCut22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFind22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFind22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqGlyph24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqGlyph24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqGroup24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqGroup24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqHelp16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqHelp16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqHelp24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqHelp24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqHelp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqHelp32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqLock24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqLock24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqMinus16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqMinus16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqOpen16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqOpen16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqOpen24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqOpen24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqOpen32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqOpen32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqPaste22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqPaste22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqPrint22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqPrint22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqQuit22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqQuit22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqRamp16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqRamp16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqRamp24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqRamp24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqRedo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqRedo16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqRedo24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqRedo24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqRedo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqRedo32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSave16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSave16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSave24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSave24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSave32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSave32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSlice24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSlice24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqStep16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqStep16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqStep24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqStep24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqUndo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqUndo16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqUndo24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqUndo24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqUndo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqUndo32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqView22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqView22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqWarp24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqWarp24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqXPlus16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqXPlus16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqXPlus24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqXPlus24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqXPlus32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqXPlus32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqYPlus16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqYPlus16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqYPlus24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqYPlus24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqYPlus32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqYPlus32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqZPlus16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqZPlus16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqZPlus24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqZPlus24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqZPlus32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqZPlus32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pvsplash1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pvsplash1.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pvsplash2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pvsplash2.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pvsplash3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pvsplash3.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/warning.png -------------------------------------------------------------------------------- /Qt/Widgets/Resources/Icons/pqDelete16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Widgets/Resources/Icons/pqDelete16.png -------------------------------------------------------------------------------- /Qt/Widgets/Resources/Icons/pqDelete24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Widgets/Resources/Icons/pqDelete24.png -------------------------------------------------------------------------------- /Qt/Widgets/Resources/Icons/pqDelete32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Widgets/Resources/Icons/pqDelete32.png -------------------------------------------------------------------------------- /Utilities/mpi4py/mpi4py/include/mpi4py/mpi_c.pxd: -------------------------------------------------------------------------------- 1 | # Author: Lisandro Dalcin 2 | # Contact: dalcinl@gmail.com 3 | 4 | include "mpi4py/mpi.pxi" 5 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/eigen-2.0.12/include/eigen2/Eigen/src/Core/util/EnableMSVCWarnings.h: -------------------------------------------------------------------------------- 1 | 2 | #ifdef _MSC_VER 3 | #pragma warning( pop ) 4 | #endif 5 | -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/PluginGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/PluginGray.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/PluginGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/PluginGreen.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pq3DView16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pq3DView16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqAppIcon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqAppIcon16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqAppIcon22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqAppIcon22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqAppIcon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqAppIcon32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqAppIcon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqAppIcon64.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqArrowUp16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqArrowUp16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqBundle16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqBundle16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqBundle22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqBundle22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqBundle32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqBundle32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqCamera16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqCamera16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqCamerad16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqCamerad16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqCancel16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqCancel16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqCancel24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqCancel24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqCancel32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqCancel32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqConnect16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqConnect16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqConnect24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqConnect24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqConnect32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqConnect32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqEyeball16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqEyeball16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFilter16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFilter16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFilter22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFilter22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFilter32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFilter32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFolder16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFolder16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFolder32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFolder32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqInspect22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqInspect22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqLinkIn16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqLinkIn16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqMeasure24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqMeasure24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqNewItem16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqNewItem16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqNewItem22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqNewItem22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqNewItem32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqNewItem32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqNodeSet16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqNodeSet16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqOptions16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqOptions16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqRotate16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqRotate16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqRotate24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqRotate24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqRotate32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqRotate32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSelect16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSelect16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSelect24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSelect24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSelect32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSelect32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqServer16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqServer16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqServer22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqServer22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqServer32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqServer32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSideSet16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSideSet16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSource16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSource16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSource22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSource22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSource32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSource32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqUpdate16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqUpdate16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqUpdate24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqUpdate24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqUpdate32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqUpdate32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrBack16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrBack16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrBack24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrBack24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrBack32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrBack32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrLast16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrLast16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrLast24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrLast24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrLast32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrLast32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrLoop24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrLoop24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrPlay16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrPlay16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrPlay24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrPlay24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrPlay32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrPlay32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqWindow16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqWindow16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqWindow22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqWindow22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqWindow32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqWindow32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqWindowd16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqWindowd16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqWindowd22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqWindowd22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqWindowd32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqWindowd32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqWindowh16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqWindowh16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqXMinus16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqXMinus16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqXMinus24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqXMinus24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqXMinus32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqXMinus32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqYMinus16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqYMinus16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqYMinus24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqYMinus24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqYMinus32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqYMinus32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqZMinus16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqZMinus16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqZMinus24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqZMinus24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqZMinus32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqZMinus32.png -------------------------------------------------------------------------------- /Utilities/CMakeBuildForPython/Lib/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | file(GLOB pyFiles *.py) 2 | install(FILES ${pyFiles} DESTINATION lib/python${PY_MAJOR}.${PY_MINOR} ) 3 | -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/ResetRangeTemporal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/ResetRangeTemporal.png -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/ShowWireframeAndBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/ShowWireframeAndBack.png -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/ShowWireframeSolid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/ShowWireframeSolid.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/BackgroundBW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/BackgroundBW.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/PlotOverTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/PlotOverTime.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/PlotOverTime.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/PlotOverTime.xcf -------------------------------------------------------------------------------- /Qt/ApplicationComponents/Resources/pqApplicationComponents.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/PVSplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/PVSplashScreen.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/ParaViewLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/ParaViewLogo.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/PluginYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/PluginYellow.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqArrowDown16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqArrowDown16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqAutoApply32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqAutoApply32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqCalculator24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqCalculator24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqCellData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqCellData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqDisconnect16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqDisconnect16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqDisconnect24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqDisconnect24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqDisconnect32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqDisconnect32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqEditCamera16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqEditCamera16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqEditColor24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqEditColor24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqElemData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqElemData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqEyeballd16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqEyeballd16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFavorites16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFavorites16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFavorites32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFavorites32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFloppyDisk16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFloppyDisk16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFloppyDisk22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFloppyDisk22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFloppyDisk32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFloppyDisk32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFolderNew16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFolderNew16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFolderOpen16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFolderOpen16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFolderUp16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFolderUp16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqGlobalData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqGlobalData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqHistogram16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqHistogram16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqHistogram24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqHistogram24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqImageData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqImageData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqIsosurface24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqIsosurface24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqLineChart16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqLineChart16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqLinkBack16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqLinkBack16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqMouseMove15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqMouseMove15.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqMousePick15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqMousePick15.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqNewProject16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqNewProject16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqNewProject22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqNewProject22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqNewProject32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqNewProject32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqNodalData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqNodalData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqOctreeData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqOctreeData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqPickCenter24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqPickCenter24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqPointData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqPointData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqPolydata16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqPolydata16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqRedoCamera24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqRedoCamera24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqResetRange24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqResetRange24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqScalarBar16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqScalarBar16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqScalarBar24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqScalarBar24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqScalarBar32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqScalarBar32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSinusoidal16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSinusoidal16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSinusoidal24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSinusoidal24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSolidColor16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSolidColor16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSplitViewH12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSplitViewH12.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSplitViewV12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSplitViewV12.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqThreshold24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqThreshold24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqTopCenter32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqTopCenter32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqUndoCamera24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqUndoCamera24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrFirst16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrFirst16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrFirst24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrFirst24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrFirst32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrFirst32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrForward16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrForward16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrForward24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrForward24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrForward32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrForward32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrPause16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrPause16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrPause24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrPause24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVcrPause32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVcrPause32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqVolumeData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqVolumeData16.png -------------------------------------------------------------------------------- /SuperBuild/StringFindReplace.cmake: -------------------------------------------------------------------------------- 1 | 2 | file(READ ${in} code) 3 | string(REPLACE "${find}" "${replace}" code "${code}") 4 | file(WRITE ${out} "${code}") 5 | -------------------------------------------------------------------------------- /Utilities/mpi4py/Library/compat/mpich2.h: -------------------------------------------------------------------------------- 1 | #ifndef PyMPI_COMPAT_MPICH2_H 2 | #define PyMPI_COMPAT_MPICH2_H 3 | 4 | 5 | #endif /* !PyMPI_COMPAT_MPICH2_H */ 6 | -------------------------------------------------------------------------------- /Utilities/mpi4py/Library/config/openmpi.h: -------------------------------------------------------------------------------- 1 | #ifndef PyMPI_CONFIG_OPENMPI_H 2 | #define PyMPI_CONFIG_OPENMPI_H 3 | 4 | #endif /* !PyMPI_CONFIG_OPENMPI_H */ 5 | -------------------------------------------------------------------------------- /Plugins/SLACTools/Icons/ResetRangeCurrentTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SLACTools/Icons/ResetRangeCurrentTime.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/DataLoadManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/DataLoadManager.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/DataLoadManager.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/DataLoadManager.xcf -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/pqPlotVariablesDialog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/pqPlotVariablesDialog.cxx -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqAddFavorites16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqAddFavorites16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqBottomCenter32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqBottomCenter32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqEdgeMapData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqEdgeMapData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqEdgeSetData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqEdgeSetData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqElemMapData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqElemMapData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqElemSetData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqElemSetData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqEnterCenter24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqEnterCenter24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqExponential16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqExponential16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqExponential24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqExponential24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqExtractGrid24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqExtractGrid24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFaceMapData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFaceMapData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFaceSetData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFaceSetData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqGroupExtract24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqGroupExtract24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqMouseSelect15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqMouseSelect15.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqNodeMapData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqNodeMapData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqNodeSetData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqNodeSetData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqPipelineList22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqPipelineList22.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqResetCamera16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqResetCamera16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqResetCamera24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqResetCamera24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqResetCamera32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqResetCamera32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqResetCenter24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqResetCenter24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqResetCenter32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqResetCenter32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSelectBlock24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSelectBlock24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSideSetData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSideSetData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSpreadsheet16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSpreadsheet16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqStreamTracer24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqStreamTracer24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqUniformData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqUniformData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqUnknownData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqUnknownData16.png -------------------------------------------------------------------------------- /Qt/Widgets/Resources/Icons/pqCollapsedGroup22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Widgets/Resources/Icons/pqCollapsedGroup22.png -------------------------------------------------------------------------------- /Utilities/VTKClientServer/VolumeRendering/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Rendering) 2 | PV_WRAP_VTK_CS(VolumeRendering VOLUMERENDERING "${KIT_WRAP_DEPS}") 3 | -------------------------------------------------------------------------------- /Utilities/mpi4py/Library/config/deinompi.h: -------------------------------------------------------------------------------- 1 | #ifndef PyMPI_CONFIG_DEINOMPI_H 2 | #define PyMPI_CONFIG_DEINOMPI_H 3 | 4 | #endif /* !PyMPI_CONFIG_DEINOMPI_H */ 5 | -------------------------------------------------------------------------------- /Examples/CustomApplications/Spreadsheet/ss_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Examples/CustomApplications/Spreadsheet/ss_icon.png -------------------------------------------------------------------------------- /Plugins/EyeDomeLighting/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(EyeDomeLighting) 2 | cmake_minimum_required(VERSION 2.6) 3 | add_subdirectory(src) 4 | add_subdirectory(ParaViewPlugin) -------------------------------------------------------------------------------- /Plugins/PrismPlugins/Resources/Icons/CreateSESAME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/PrismPlugins/Resources/Icons/CreateSESAME.png -------------------------------------------------------------------------------- /Plugins/PrismPlugins/Resources/Icons/PrismSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/PrismPlugins/Resources/Icons/PrismSmall.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/ShowWireframeSolid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/ShowWireframeSolid.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/plotVarsCurve-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/plotVarsCurve-32x32.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/plotVarsCurve-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/plotVarsCurve-64x64.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/SplitViewHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/SplitViewHorizontal.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/SplitViewVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/SplitViewVertical.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqCellCenterData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqCellCenterData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqComparativeVis16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqComparativeVis16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqEdgeCenterData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqEdgeCenterData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFaceCenterData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFaceCenterData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqHideCenterAxes24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqHideCenterAxes24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqMultiBlockData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqMultiBlockData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqMultiGroupData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqMultiGroupData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqProbeLocation24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqProbeLocation24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqRectilinearGrid16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqRectilinearGrid16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSaveAnimation24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSaveAnimation24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqShowCenterAxes24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqShowCenterAxes24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqShowCenterAxes32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqShowCenterAxes32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqStructuredGrid16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqStructuredGrid16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqTopLeftCorner32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqTopLeftCorner32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqTopRightCorner32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqTopRightCorner32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqZoomToSelection24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqZoomToSelection24.png -------------------------------------------------------------------------------- /Utilities/VTKClientServer/GenericFiltering/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Filtering) 2 | PV_WRAP_VTK_CS(GenericFiltering GENERIC_FILTERING "${KIT_WRAP_DEPS}") 3 | -------------------------------------------------------------------------------- /Examples/Plugins/GUIObjectPanel/pqConePanel.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | pqConePanel.ui 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/PrismPlugins/Resources/Icons/PrismViewScale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/PrismPlugins/Resources/Icons/PrismViewScale.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/PlotGlobalVars-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/PlotGlobalVars-32x32.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/PlotGlobalVars-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/PlotGlobalVars-64x64.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/ShowWireframeAndBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/ShowWireframeAndBack.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/plotVarsCurve-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/plotVarsCurve-128x128.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/plotVarsCurve-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/plotVarsCurve-256x256.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqBottomLeftCorner32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqBottomLeftCorner32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqBottomRightCorner32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqBottomRightCorner32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqCaptureScreenshot24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqCaptureScreenshot24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqComparative3DView16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqComparative3DView16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqExtractSelection24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqExtractSelection24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqHierarchicalData16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqHierarchicalData16.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqPlotCellOverTime24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqPlotCellOverTime24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqPlotLineOverTime24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqPlotLineOverTime24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqPlotPointOverTime24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqPlotPointOverTime24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSelectFrustPoints24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSelectFrustPoints24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSelectSurfPoints24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSelectSurfPoints24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqUnstructuredGrid16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqUnstructuredGrid16.png -------------------------------------------------------------------------------- /Examples/CustomApplications/Spreadsheet/SpreadSheet.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | ss_icon.png 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/H5PartReader/H5Part/src/H5BlockPrivate.h: -------------------------------------------------------------------------------- 1 | #ifndef __H5BLOCKPRIVATE_H 2 | #define __H5BLOCKPRIVATE_H 3 | 4 | #define H5BLOCK_GROUPNAME_BLOCK "Block" 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/PlotGlobalVars-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/PlotGlobalVars-128x128.png -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/Icons/PlotGlobalVars-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Plugins/SierraPlotTools/Icons/PlotGlobalVars-256x256.png -------------------------------------------------------------------------------- /Plugins/pvblot/pvblot.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | Icons/Solid.png 4 | Icons/Wireframe.png 5 | 6 | 7 | -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFrustumSelectionCell24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFrustumSelectionCell24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqProgrammableFilter24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqProgrammableFilter24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqShowOrientationAxes24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqShowOrientationAxes24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqShowOrientationAxes32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqShowOrientationAxes32.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSurfaceSelectionCell24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSurfaceSelectionCell24.png -------------------------------------------------------------------------------- /Utilities/Git/NOTICE: -------------------------------------------------------------------------------- 1 | Git Support Scripts 2 | Copyright 2011 Kitware, Inc. 3 | 4 | This product includes software developed at Kitware, Inc. 5 | (http://www.kitware.com/). 6 | -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqFrustumSelectionPoint24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqFrustumSelectionPoint24.png -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqSurfaceSelectionPoint24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectivitySRC/ParaViewGeo/HEAD/Qt/Components/Resources/Icons/pqSurfaceSelectionPoint24.png -------------------------------------------------------------------------------- /Documentation/Book/growem.sh: -------------------------------------------------------------------------------- 1 | #script to resize openoffice sized images to something readable 2 | foreach i (*.html) 3 | python imagesizer.py $i > bigger/$i 4 | end 5 | mv bigger/* . 6 | -------------------------------------------------------------------------------- /Plugins/Vapor/VDFReaderGUI.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Qt/Components/Resources/XML/Placeholder.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/AdiosReader/vtkAdiosReaderGUI.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/ForceTime/ForceTimeClient.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/VisItBridge/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | #we currently client server wrap the avt readers api and the 2 | #built in readers 3 | ADD_SUBDIRECTORY(AvtAlgorithms) 4 | ADD_SUBDIRECTORY(databases) -------------------------------------------------------------------------------- /Plugins/H5PartReader/H5PartGUI.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/vtk/__init__.py: -------------------------------------------------------------------------------- 1 | from vtkCommonPython import * 2 | from vtkFilteringPython import * 3 | from vtkGraphicsPython import * 4 | from vtkRenderingPython import vtkCamera 5 | -------------------------------------------------------------------------------- /CoProcessing/CoProcessingUse.cmake: -------------------------------------------------------------------------------- 1 | IF(CoProcessing_FOUND) 2 | 3 | INCLUDE_DIRECTORIES(${CoProcessing_INCLUDE_DIRS}) 4 | LINK_DIRECTORIES(${CoProcessing_LIBRARY_DIRS}) 5 | 6 | ENDIF(CoProcessing_FOUND) 7 | -------------------------------------------------------------------------------- /Examples/Plugins/Reader/pqReader.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Plugins/AnalyzeNIfTIReaderWriter/NIfTIWriter.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/eigen-2.0.12/include/eigen2/Eigen/src/Core/util/DisableMSVCWarnings.h: -------------------------------------------------------------------------------- 1 | 2 | #ifdef _MSC_VER 3 | #pragma warning( push ) 4 | #pragma warning( disable : 4181 4244 4127 4211 4717 ) 5 | #endif 6 | -------------------------------------------------------------------------------- /Examples/Plugins/Writer/GUITiff.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/AnalyzeNIfTIReaderWriter/AnalyzeWriter.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/AnalyzeNIfTIReaderWriter/NIfTIReader.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /SuperBuild/distribute_configure_step.cmake.in: -------------------------------------------------------------------------------- 1 | message("Configuring yt:\n@yt_binary@") 2 | set(ENV{LD_LIBRARY_PATH} "@python_install@/lib") 3 | set(ENV{VS_UNICODE_OUTPUT} "") 4 | 5 | z 6 | 7 | message("yt config worked.") 8 | -------------------------------------------------------------------------------- /Plugins/AnalyzeNIfTIReaderWriter/AnalyzeReader.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Plugins/pvblot/pvblot.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | PVPYTHON=@PVBLOT_PVPYTHON_EXECUTABLE@ 4 | BLOTISH_PATH=@PVBLOT_BLOTISH_PATH@ 5 | 6 | export PYTHONPATH=${BLOTISH_PATH}:${PYTHONPATH} 7 | 8 | ${PVPYTHON} ${BLOTISH_PATH}/pvblot.py "$@" 9 | -------------------------------------------------------------------------------- /Qt/Components/Resources/Icons/pqClient.rc: -------------------------------------------------------------------------------- 1 | // Icon with lowest ID value placed first to ensure application icon 2 | // remains consistent on all systems. 3 | IDI_ICON1 ICON "paraqlogo.ico" 4 | 5 | -------------------------------------------------------------------------------- /Plugins/PrismPlugins/Resources/PrismReader.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Plugins/pvblot/pvblot.bat.in: -------------------------------------------------------------------------------- 1 | @set PVPYTHON=@PVBLOT_PVPYTHON_EXECUTABLE@ 2 | @set BLOTISH_PATH=@PVBLOT_BLOTISH_PATH@ 3 | 4 | @set PYTHONPATH=%BLOTISH_PATH%;%PYTHONPATH% 5 | 6 | call %PVPYTHON% %BLOTISH_PATH%\pvblot.py %1 %2 %3 7 | 8 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/compile_all_pv.py.in: -------------------------------------------------------------------------------- 1 | import compileall 2 | compileall.compile_dir('@PV_PYTHON_MODULE_BINARY_DIR@') 3 | file = open('@PV_PYTHON_MODULE_BINARY_DIR@/pv_compile_complete', 'w') 4 | file.write('Done') 5 | -------------------------------------------------------------------------------- /Utilities/mpi4py/Library/config/mpich2.h: -------------------------------------------------------------------------------- 1 | #ifndef PyMPI_CONFIG_MPICH2_H 2 | #define PyMPI_CONFIG_MPICH2_H 3 | 4 | #ifndef ROMIO_VERSION 5 | #include "mpich2io.h" 6 | #endif /* !ROMIO_VERSION */ 7 | 8 | #endif /* !PyMPI_CONFIG_MPICH2_H */ 9 | -------------------------------------------------------------------------------- /Utilities/mpi4py/mpi4py/compile_all_pv_mpi.py.in: -------------------------------------------------------------------------------- 1 | import compileall 2 | compileall.compile_dir('@PV_MPI_PYTHON_MODULE_BINARY_DIR@') 3 | file = open('@PV_MPI_PYTHON_MODULE_BINARY_DIR@/pv_mpi_compile_complete', 'w') 4 | file.write('Done') 5 | -------------------------------------------------------------------------------- /ParaViewCore/VTKExtensions/hints: -------------------------------------------------------------------------------- 1 | vtkTransferFunctionViewer GetWholeScalarRange 307 2 2 | vtkTransferFunctionViewer GetVisibleScalarRange 307 2 3 | vtkTransferFunctionEditorRepresentationsSimple1D GetHandleDisplayPosition 307 2 -------------------------------------------------------------------------------- /Qt/Core/Resources/pqCore.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | Icons/pqDomain16.png 4 | Icons/pqLinkOut16.png 5 | Icons/pqNetwork16.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/PointSprite/Examples/Rendering/Cxx/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | set(exe ${PointSprite_EXAMPLE_EXECUTABLE_PREFIX}PointSpriteDemo) 3 | 4 | add_executable(${exe} PointSpriteDemo.cxx) 5 | 6 | target_link_libraries(${exe} PointSprite_Rendering vtkIO) 7 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Hybrid/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Rendering Parallel) 2 | IF(VTK_USE_PARALLEL) 3 | SET(KIT_WRAP_DEPS ${KIT_WRAP_DEPS} Parallel) 4 | ENDIF(VTK_USE_PARALLEL) 5 | PV_WRAP_VTK_CS(Hybrid HYBRID "${KIT_WRAP_DEPS}") 6 | -------------------------------------------------------------------------------- /ParaViewCore/ClientServerCore/hints: -------------------------------------------------------------------------------- 1 | vtkPVArrayInformation GetComponentRange 307 2 2 | vtkGlyph3DRepresentation GetBounds 307 6 3 | vtkPVImplicitPlaneRepresentation GetTransformedOrigin 307 3 4 | vtkPVImplicitPlaneRepresentation GetTransformedNormal 307 3 5 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/postproc/crop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ $# != 6 ] ; then 4 | echo "Usage: $0 infile outfile wifth height offx offy" 5 | exit 1 6 | fi 7 | 8 | gimp -i -b "(sq-crop \"$1\" \"$2\" \"$3\" \"$4\" \"$5\" \"$6\")" -b '(gimp-quit 0)' 9 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Infovis/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Filtering Rendering Parallel) 2 | IF(VTK_USE_PARALLEL) 3 | SET(KIT_WRAP_DEPS ${KIT_WRAP_DEPS} Parallel) 4 | ENDIF(VTK_USE_PARALLEL) 5 | PV_WRAP_VTK_CS(Infovis INFOVIS "${KIT_WRAP_DEPS}") 6 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Rendering/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS GenericFiltering Graphics Imaging IO) 2 | IF (VTK_USE_X) 3 | INCLUDE_DIRECTORIES(${X11_X11_INCLUDE_PATH}) 4 | ENDIF (VTK_USE_X) 5 | PV_WRAP_VTK_CS(Rendering RENDERING "${KIT_WRAP_DEPS}") 6 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/eigen-2.0.12/share/pkgconfig/eigen2.pc: -------------------------------------------------------------------------------- 1 | 2 | Name: Eigen2 3 | Description: A C++ template library for linear algebra: vectors, matrices, and related algorithms 4 | Requires: 5 | Version: 2.0.11 6 | Libs: 7 | Cflags: -I/opt/eigen/include/eigen2 8 | -------------------------------------------------------------------------------- /Examples/CustomApplications/ParticlesViewer/SupportedReader.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Examples/CustomApplications/Spreadsheet/SupportedReader.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ParaViewCore/Common/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_EXECUTABLE(ParaViewCoreCommonPrintSelf ParaViewCoreCommonPrintSelf.cxx) 2 | ADD_TEST(ParaViewCoreCommonPrintSelf 3 | ${CXX_TEST_PATH}/ParaViewCoreCommonPrintSelf) 4 | TARGET_LINK_LIBRARIES(ParaViewCoreCommonPrintSelf vtkPVCommon) 5 | -------------------------------------------------------------------------------- /Plugins/H5PartReader/H5Part/AUTHORS: -------------------------------------------------------------------------------- 1 | 2 | Andreas Adelmann (PSI) 3 | Achim Gsell (PSI) 4 | Benedikt Oswald (PSI) 5 | 6 | Wes Bethel (NERSC/LBNL) 7 | John Shalf (NERSC/LBNL) 8 | Cristina Siegerist (NERSC/LBNL) 9 | 10 | Please use h5part@lists.psi.ch for communicaion. 11 | -------------------------------------------------------------------------------- /Plugins/PointSprite/Examples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ----------------------------------------------------------------------------- 2 | # Just add all the subdirectories 3 | # ----------------------------------------------------------------------------- 4 | add_subdirectory(Rendering) 5 | 6 | -------------------------------------------------------------------------------- /Plugins/PointSprite/Examples/Rendering/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # ----------------------------------------------------------------------------- 2 | # Just add all the subdirectories 3 | # ----------------------------------------------------------------------------- 4 | add_subdirectory(Cxx) 5 | -------------------------------------------------------------------------------- /CoProcessing/CoProcessor/CPWin32Header.h: -------------------------------------------------------------------------------- 1 | #if defined(VTK_BUILD_SHARED_LIBS) 2 | #if defined(vtkCoProcessor_EXPORTS) 3 | #define COPROCESSING_EXPORT VTK_ABI_EXPORT 4 | #else 5 | #define COPROCESSING_EXPORT VTK_ABI_IMPORT 6 | #endif 7 | #else 8 | #define COPROCESSING_EXPORT 9 | #endif 10 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/VisItBridge/AvtAlgorithms/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(VTK_KITS_DIR "${VISITAVTALGORITHMS_KITS_DIR}") 2 | INCLUDE_DIRECTORIES(${VISITAVTALGORITHMS_INCLUDE_DIRS}) 3 | SET(KIT_WRAP_DEPS Hybrid Rendering) 4 | PV_WRAP_VTK_CS(VisItAVTAlgorithms VISITAVTALGORITHMS "${KIT_WRAP_DEPS}") 5 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/VisItBridge/databases/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(VTK_KITS_DIR "${VISITDATABASES_KITS_DIR}") 2 | INCLUDE_DIRECTORIES(${VISITDATABASES_INCLUDE_DIRS}) 3 | SET(KIT_WRAP_DEPS Hybrid Rendering VisItAVTAlgorithms) 4 | PV_WRAP_VTK_CS(VisItDatabases VISITDATABASES "${KIT_WRAP_DEPS}") 5 | -------------------------------------------------------------------------------- /CoProcessing/CoProcessor/CPSystemInformation.h.in: -------------------------------------------------------------------------------- 1 | #ifndef __vtkcp_SystemInformation_h 2 | #define __vtkcp_SystemInformation_h 3 | 4 | #define PARAVIEW_INSTALL_DIR "@ParaView_BINARY_DIR@" 5 | #cmakedefine COPROCESSOR_USE_MPI 6 | #define COPROCESSOR_BUILD_DIR "@CMAKE_CFG_INTDIR@" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Examples/Plugins/GUIToolBar/MyToolBarActions.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | class MyToolBarActions : public QActionGroup 5 | { 6 | Q_OBJECT 7 | public: 8 | MyToolBarActions(QObject* p); 9 | ~MyToolBarActions(); 10 | 11 | public slots: 12 | void onAction(); 13 | 14 | }; 15 | 16 | -------------------------------------------------------------------------------- /SuperBuild/python_make_step.cmake.in: -------------------------------------------------------------------------------- 1 | 2 | if(UNIX) 3 | 4 | set(cmd "make") 5 | if (APPLE) 6 | set(ENV{LDFLAGS} "-undefined dynamic_lookup") 7 | endif (APPLE) 8 | 9 | EXECUTE_PROCESS( 10 | COMMAND ${cmd} 11 | WORKING_DIRECTORY "@python_base@" 12 | ) 13 | 14 | endif() 15 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Xdmf2/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(VTK_KITS_DIR "${XDMF_KITS_DIR}") 2 | INCLUDE_DIRECTORIES(${XDMF_INCLUDE_DIRS}) 3 | IF (VTK_USE_X) 4 | INCLUDE_DIRECTORIES(${X11_X11_INCLUDE_PATH}) 5 | ENDIF (VTK_USE_X) 6 | SET(KIT_WRAP_DEPS Rendering) 7 | PV_WRAP_VTK_CS(Xdmf XDMF "${KIT_WRAP_DEPS}") 8 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/config/config-pv3-debug.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cmake \ 4 | -DBUILD_SHARED_LIBS=ON \ 5 | -DBUILD_TESTING=OFF \ 6 | -DCMAKE_BUILD_TYPE=Debug \ 7 | -DPARAVIEW_USE_MPI=ON \ 8 | -DVTK_DEBUG_LEAKS=ON \ 9 | -DCMAKE_CXX_FLAGS_DEBUG="-g -Wall" \ 10 | $* 11 | 12 | -------------------------------------------------------------------------------- /CMake/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo 'Please initialize your local Git hooks. 3 | Paste the following commands into a shell: 4 | 5 | cd "'$(pwd)'/.git/hooks" 6 | git init 7 | git pull .. remotes/origin/hooks 8 | cd ../.. 9 | 10 | See http://www.vtk.org/Wiki/VTK/Git#Hooks for more details.' 11 | exit 1 12 | -------------------------------------------------------------------------------- /Examples/CustomApplications/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | IF(PARAVIEW_BUILD_QT_GUI) 2 | ADD_SUBDIRECTORY(ParticlesViewer) 3 | ADD_SUBDIRECTORY(Spreadsheet) 4 | ADD_SUBDIRECTORY(Demo0) 5 | ADD_SUBDIRECTORY(Demo1) 6 | ADD_SUBDIRECTORY(Clone1) 7 | ADD_SUBDIRECTORY(Clone2) 8 | ENDIF(PARAVIEW_BUILD_QT_GUI) 9 | 10 | 11 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Graphics/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(KIT_WRAP_DEPS Filtering IO) 2 | PV_WRAP_VTK_CS(Graphics GRAPHICS "${KIT_WRAP_DEPS}") 3 | IF(VTK_WRAP_JAVA) 4 | INCLUDE_DIRECTORIES( 5 | ${JAVA_INCLUDE_PATH} 6 | ${JAVA_INCLUDE_PATH2} 7 | ${JAVA_AWT_INCLUDE_PATH} 8 | ) 9 | ENDIF(VTK_WRAP_JAVA) 10 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/postproc/png2mp4.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ $# != 3 ] 4 | then 5 | echo "usage: $0 pattern rate output" 6 | exit 7 | fi 8 | 9 | INPUT_PATTERN=$1 10 | FRAME_RATE=$2 11 | OUTPUT_NAME=$3 12 | 13 | ffmpeg -loop_output 0 -qscale 1 -r $FRAME_RATE -b 9600 -i $INPUT_PATTERN $OUTPUT_NAME 14 | 15 | -------------------------------------------------------------------------------- /ParaViewCore/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PROJECT(ParaViewCore) 2 | 3 | ADD_SUBDIRECTORY(Common) 4 | ADD_SUBDIRECTORY(VTKExtensions) 5 | ADD_SUBDIRECTORY(ClientServerCore) 6 | ADD_SUBDIRECTORY(ServerImplementation) 7 | ADD_SUBDIRECTORY(ServerManager) 8 | 9 | IF(BUILD_TESTING) 10 | ADD_SUBDIRECTORY(Testing) 11 | ENDIF(BUILD_TESTING) 12 | -------------------------------------------------------------------------------- /Plugins/PrismPlugins/hints: -------------------------------------------------------------------------------- 1 | vtkPrismFilter GetSESAMEXThresholdBetween 307 2 2 | vtkPrismFilter GetSESAMEYThresholdBetween 307 2 3 | vtkPrismSurfaceReader GetXThresholdBetween 307 2 4 | vtkPrismView GetWorldScaleMode 304 3 5 | vtkPrismView GetWorldBounds 307 6 6 | vtkPrismView GetThresholdBounds 307 6 7 | vtkPrismView GetCustomBounds 307 6 -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/config/config-svtk-nautilus-icc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | COMP=/opt/intel/Compiler/11.1/038/bin/intel64 4 | 5 | cmake \ 6 | -DCMAKE_C_COMPILER=$COMP/icc \ 7 | -DCMAKE_CXX_COMPILER=$COMP/icpc \ 8 | -DCMAKE_LINKER=$COMP/icpc \ 9 | -DCMAKE_CXX_FLAGS=-Wno-deprecated \ 10 | $* 11 | 12 | -------------------------------------------------------------------------------- /Utilities/mpi4py/mpi4py/include/mpi4py/mpi4py.h: -------------------------------------------------------------------------------- 1 | #ifndef MPI4PY_H 2 | #define MPI4PY_H 3 | 4 | #include "mpi.h" 5 | 6 | #include "mpi4py_MPI_api.h" 7 | 8 | static int import_mpi4py(void) { 9 | if (import_mpi4py__MPI() < 0) goto bad; 10 | return 0; 11 | bad: 12 | return -1; 13 | } 14 | 15 | #endif /* MPI4PY_H */ 16 | -------------------------------------------------------------------------------- /Plugins/PointSprite/ParaViewPlugin/Qvis/QvisConfigure.h.in: -------------------------------------------------------------------------------- 1 | 2 | #if defined(WIN32) && defined(@PROJECT_NAME@_SHARED) 3 | #if defined(Qvis_EXPORTS) 4 | #define Qvis_EXPORT __declspec( dllexport ) 5 | #else 6 | #define Qvis_EXPORT __declspec( dllimport ) 7 | #endif 8 | #else 9 | #define Qvis_EXPORT 10 | #endif 11 | 12 | -------------------------------------------------------------------------------- /Utilities/VTKClientServer/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INCLUDE_DIRECTORIES(${VTKCS_SOURCE_DIR}/ClientServer) 2 | 3 | ADD_EXECUTABLE(vtkClientServerTests coverClientServer.cxx) 4 | TARGET_LINK_LIBRARIES(vtkClientServerTests vtkClientServer) 5 | 6 | ADD_TEST(vtkClientServerCoverage 7 | ${EXECUTABLE_OUTPUT_PATH}/vtkClientServerTests 8 | ) 9 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/postproc/mp42avi.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #if [ $# != 3 ] 4 | #then 5 | # echo "usage: $0 input output" 6 | # exit 7 | #fi 8 | 9 | INPUT=$1 10 | OUTPUT=$2 11 | 12 | ffmpeg -i $INPUT.mp4 -qscale 1 -vcodec msmpeg4v2 -acodec mp3 -mbd rd -flags +4mv+aic -trellis 2 -cmp 2 -subcmp 2 -g 300 -pass 1/2 $OUTPUT.avi 13 | 14 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/postproc/un2-run2-nmm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | for f in `ls ../*.png`; 4 | do 5 | ff=`echo $f | cut -d/ -f2`; 6 | n=`echo $f | cut -d. -f4`; 7 | echo -ne "$n $f -> $ff\n" 8 | eval `echo "gimp -i -b '(un2-run2-nmm \"$f\" \"$ff\" \"un2/$n\" \"166\" \"225\" \"190\" \"320\" )' -b '(gimp-quit 0)'"` 9 | done 10 | -------------------------------------------------------------------------------- /Examples/CustomApplications/Demo0/DemoApp0.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | #include "pqApplicationCore.h" 3 | #include 4 | 5 | int main(int argc, char** argv) 6 | { 7 | QApplication app(argc, argv); 8 | pqApplicationCore appCore(argc, argv); 9 | QMainWindow window; 10 | window.show(); 11 | return app.exec(); 12 | } 13 | -------------------------------------------------------------------------------- /Utilities/CMakeBuildForPython/PythonCPack.cmake: -------------------------------------------------------------------------------- 1 | SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Python is a programming language") 2 | 3 | SET(CPACK_PACKAGE_VERSION_MAJOR ${PY_MAJOR} ) 4 | SET(CPACK_PACKAGE_VERSION_MINOR ${PY_MINOR} ) 5 | SET(CPACK_PACKAGE_VERSION_PATCH ${PY_PATCH} ) 6 | 7 | # include CPack model once all variables are set 8 | INCLUDE(CPack) 9 | -------------------------------------------------------------------------------- /Examples/CustomApplications/Demo1/DemoApp1.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | #include "pqPVApplicationCore.h" 3 | #include "myMainWindow.h" 4 | 5 | int main(int argc, char** argv) 6 | { 7 | QApplication app(argc, argv); 8 | pqPVApplicationCore appCore(argc, argv); 9 | myMainWindow window; 10 | window.show(); 11 | return app.exec(); 12 | } 13 | -------------------------------------------------------------------------------- /Qt/Widgets/Resources/QtWidgets.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | Icons/pqCollapsedGroup22.png 4 | Icons/pqDelete16.png 5 | Icons/pqDelete24.png 6 | Icons/pqDelete32.png 7 | Icons/pqPlus16.png 8 | 9 | 10 | -------------------------------------------------------------------------------- /Plugins/H5PartReader/H5Part/src/TestUnderscore.f: -------------------------------------------------------------------------------- 1 | c ============== 2 | c 3 | c Simple Fortran program works in conjunction with C program 4 | c to determine how many underscores are generated 5 | c by the fortran compiler 6 | c 7 | c ============== 8 | 9 | program TestUnderscoreF 10 | implicit none 11 | call FindUnderscores 12 | end 13 | -------------------------------------------------------------------------------- /Plugins/PrismPlugins/PrismMenuActions.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _PrismMenuActions_h 3 | #define _PrismMenuActions_h 4 | 5 | 6 | #include 7 | #include 8 | 9 | class PrismMenuActions : public QActionGroup 10 | { 11 | Q_OBJECT 12 | public: 13 | PrismMenuActions(QObject* p); 14 | ~PrismMenuActions(); 15 | 16 | }; 17 | #endif 18 | 19 | 20 | -------------------------------------------------------------------------------- /Plugins/PrismPlugins/PrismToolBarActions.h: -------------------------------------------------------------------------------- 1 | #ifndef _PrismToolBarActions_h 2 | #define _PrismToolBarActions_h 3 | 4 | #include 5 | #include 6 | 7 | class PrismToolBarActions : public QActionGroup 8 | { 9 | Q_OBJECT 10 | public: 11 | PrismToolBarActions(QObject* p); 12 | ~PrismToolBarActions(); 13 | 14 | }; 15 | #endif 16 | 17 | -------------------------------------------------------------------------------- /Examples/Plugins/DockWidget/ExampleDockPanel.cxx: -------------------------------------------------------------------------------- 1 | #include "ExampleDockPanel.h" 2 | #include "ui_ExampleDockPanel.h" 3 | 4 | void ExampleDockPanel::constructor() 5 | { 6 | this->setWindowTitle("Example Dock Panel"); 7 | QWidget* t_widget = new QWidget(this); 8 | Ui::ExampleDockPanel ui; 9 | ui.setupUi(t_widget); 10 | this->setWidget(t_widget); 11 | } 12 | -------------------------------------------------------------------------------- /ParaViewCore/ServerImplementation/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_EXECUTABLE(ParaViewCoreServerImplementationPrintSelf ParaViewCoreServerImplementationPrintSelf.cxx) 2 | ADD_TEST(ParaViewCoreServerImplementationPrintSelf 3 | ${CXX_TEST_PATH}/ParaViewCoreServerImplementationPrintSelf) 4 | TARGET_LINK_LIBRARIES(ParaViewCoreServerImplementationPrintSelf vtkPVServerImplementation) 5 | -------------------------------------------------------------------------------- /SuperBuild/External_SIP.cmake: -------------------------------------------------------------------------------- 1 | # The SIP external project 2 | 3 | ExternalProject_Add(SIP 4 | URL ${SIP_URL}/${SIP_GZ} 5 | URL_MD5 ${SIP_MD5} 6 | DOWNLOAD_DIR ${CMAKE_CURRENT_BINARY_DIR} 7 | SOURCE_DIR ${CMAKE_CURRENT_BINARY_DIR}/SIP 8 | BUILD_IN_SOURCE 1 9 | CONFIGURE_COMMAND ${PYTHON_EXECUTABLE} configure.py 10 | DEPENDS 11 | ${SIP_dependencies} 12 | ) 13 | -------------------------------------------------------------------------------- /Examples/Plugins/GUIObjectPanel/pqConePanel.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _pqConePanel_h 3 | #define _pqConePanel_h 4 | 5 | #include "pqLoadedFormObjectPanel.h" 6 | #include "pqObjectPanelInterface.h" 7 | 8 | class pqConePanel : public pqLoadedFormObjectPanel 9 | { 10 | Q_OBJECT 11 | public: 12 | pqConePanel(pqProxy* proxy, QWidget* p); 13 | ~pqConePanel(); 14 | }; 15 | 16 | #endif 17 | 18 | -------------------------------------------------------------------------------- /Common/KWCommon/Testing/Cxx/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(TESTS 2 | Memory 3 | Lib 4 | # RemoteProcess 5 | ) 6 | 7 | FOREACH(TEST ${TESTS}) 8 | SET(EXE_NAME KWCommonTest${TEST}) 9 | ADD_EXECUTABLE(${EXE_NAME} Test${TEST}.cxx) 10 | TARGET_LINK_LIBRARIES(${EXE_NAME} ${KWCommon_LIBRARIES}) 11 | ADD_TEST(KWCommon-${TEST} ${EXECUTABLE_OUTPUT_PATH}/${EXE_NAME}) 12 | ENDFOREACH(TEST) 13 | -------------------------------------------------------------------------------- /Examples/Plugins/Representation/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | IF (NOT ParaView_BINARY_DIR) 2 | FIND_PACKAGE(ParaView REQUIRED) 3 | INCLUDE(${PARAVIEW_USE_FILE}) 4 | ENDIF (NOT ParaView_BINARY_DIR) 5 | 6 | ADD_PARAVIEW_PLUGIN(Representation "1.0" 7 | SERVER_MANAGER_XML Representation.xml 8 | SERVER_MANAGER_SOURCES 9 | vtkMySpecialPolyDataMapper.cxx 10 | vtkMySpecialRepresentation.cxx) 11 | -------------------------------------------------------------------------------- /ParaViewCore/ClientServerCore/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(TestNames 2 | ParaViewCoreClientServerCorePrintSelf 3 | TestMPI 4 | ) 5 | 6 | FOREACH(name ${TestNames}) 7 | ADD_EXECUTABLE(${name} ${name}.cxx) 8 | ADD_TEST(${name} ${CXX_TEST_PATH}/${name} ${name} 9 | -D ${VTK_DATA_ROOT} 10 | ) 11 | TARGET_LINK_LIBRARIES(${name} vtkPVClientServerCore) 12 | ENDFOREACH(name) 13 | -------------------------------------------------------------------------------- /Examples/Plugins/HelixSource/helix.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HelixSource.ui 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/EyeDomeLighting/ParaViewPlugin/RenderPassViews.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Utilities/mpi4py/LICENSE.txt: -------------------------------------------------------------------------------- 1 | ======================= 2 | LICENSE: MPI for Python 3 | ======================= 4 | 5 | :Author: Lisandro Dalcin 6 | :Organization: CIMEC 7 | :Address: PTLC, 3000 Santa Fe, Argentina 8 | :Contact: dalcinl@gmail.com 9 | :Web Site: http://mpi4py.googlecode.com/ 10 | 11 | 12 | This package has been placed in the public domain. 13 | -------------------------------------------------------------------------------- /Plugins/Manta/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # CMake version and policy issues 2 | CMAKE_MINIMUM_REQUIRED( VERSION 2.4 ) 3 | IF( COMMAND CMAKE_POLICY ) 4 | CMAKE_POLICY( SET CMP0003 NEW ) 5 | ENDIF( COMMAND CMAKE_POLICY ) 6 | 7 | # build the VTK lib slightly differently since we are building from 8 | #the PV source 9 | SET ( BUILD_AGAINST_PARAVIEW 1 ) 10 | ADD_SUBDIRECTORY(VTK) 11 | 12 | ADD_SUBDIRECTORY(ParaView) 13 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/postproc/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | for i in `seq 0 52` 5 | do 6 | q=`printf %04.0f $i` 7 | echo "$1.$q.png -> $2.$q.png" 8 | #echo \'\(fix-pv \"./$1.$q.png\" \"./$2.$q.png\"\)\' 9 | #gimp -i -b \'\(fix-pv "$1.$q.png" "$2.$q.png"\)\' -b '(gimp-quit 0)' 10 | eval `echo "gimp -i -b '(fix-pv \"./vrl.$q.png\" \"./vrlc.$q.png\")' -b '(gimp-quit 0)'"` 11 | done 12 | 13 | -------------------------------------------------------------------------------- /Examples/Plugins/GUIView/MyDisplay.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef MyDisplay_h 3 | #define MyDisplay_h 4 | 5 | #include "pqDisplayPanel.h" 6 | 7 | /// a simple display panel widget 8 | class MyDisplay : public pqDisplayPanel 9 | { 10 | Q_OBJECT 11 | public: 12 | 13 | /// constructor 14 | MyDisplay(pqRepresentation* display, QWidget* p = NULL); 15 | ~MyDisplay(); 16 | 17 | }; 18 | 19 | #endif // MyDisplay_h 20 | 21 | -------------------------------------------------------------------------------- /Plugins/StreamingView/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # CMake version and policy issues 2 | CMAKE_MINIMUM_REQUIRED( VERSION 2.4 ) 3 | IF( COMMAND CMAKE_POLICY ) 4 | CMAKE_POLICY( SET CMP0003 NEW ) 5 | ENDIF( COMMAND CMAKE_POLICY ) 6 | 7 | # build the VTK lib slightly differently since we are building from 8 | #the PV source 9 | SET ( BUILD_AGAINST_PARAVIEW 1 ) 10 | ADD_SUBDIRECTORY(VTK) 11 | 12 | ADD_SUBDIRECTORY(ParaView) 13 | -------------------------------------------------------------------------------- /Applications/ParaView/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | INCLUDE(ParaViewTestingMacros) 3 | 4 | ADD_SUBDIRECTORY(XML) 5 | 6 | OPTION(PARAVIEW_CLIENT_RENDER_SERVER_TESTS 7 | "Turn on/off client tests that involve separate data and render servers." 8 | ON) 9 | MARK_AS_ADVANCED(PARAVIEW_CLIENT_RENDER_SERVER_TESTS) 10 | 11 | IF (QT_TESTING_WITH_PYTHON) 12 | ADD_SUBDIRECTORY(Python) 13 | ENDIF (QT_TESTING_WITH_PYTHON) 14 | -------------------------------------------------------------------------------- /ParaViewCore/ServerImplementation/vtkParaViewIncludeModulesToSMApplication.h.in: -------------------------------------------------------------------------------- 1 | // Do not edit. 2 | // Generated by CMake in directory @CMAKE_CURRENT_BINARY_DIR@ 3 | // From @CMAKE_CURRENT_SOURCE_DIR@ 4 | 5 | vtkPVXMLParser* parser = vtkPVXMLParser::New(); 6 | char* init_string; 7 | int parser_ret; 8 | (void) parser_ret; 9 | 10 | @PARAVIEW_INCLUDE_MODULES_TO_SMAPPLICATION@ 11 | 12 | parser->Delete(); 13 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/Executable/vtkPythonAppInitConfigure.h.in: -------------------------------------------------------------------------------- 1 | #ifndef __vtkPythonAppInitConfigure_h 2 | #define __vtkPythonAppInitConfigure_h 3 | 4 | #define VTK_PYTHON_PACKAGE_DIR "@VTK_BINARY_DIR@/Wrapping/Python" 5 | #define VTK_PYTHON_LIBRARY_DIR_BUILD "@LIBRARY_OUTPUT_PATH@" 6 | #define PV_PYTHON_PACKAGE_DIR "@PV_PYTHON_MODULE_DIR@" 7 | 8 | #define PARAVIEW_VERSION "@PARAVIEW_VERSION@" 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /CoProcessing/CoProcessor/Testing/TestDriver/Testing/Cxx/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_EXECUTABLE(SimpleDriver SimpleDriver.cxx) 2 | TARGET_LINK_LIBRARIES(SimpleDriver vtkCPTestDriver) 3 | 4 | ADD_EXECUTABLE(SimpleDriver2 SimpleDriver2.cxx) 5 | TARGET_LINK_LIBRARIES(SimpleDriver2 vtkCPTestDriver) 6 | 7 | ADD_EXECUTABLE(AdaptorDriver AdaptorDriver.cxx vtkCustomUnstructuredGridBuilder.cxx) 8 | TARGET_LINK_LIBRARIES(AdaptorDriver vtkCPTestDriver) 9 | -------------------------------------------------------------------------------- /Common/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INCLUDE_DIRECTORIES( 2 | ${VTK_INCLUDE_DIR} 3 | ) 4 | 5 | SET(KWCOMMON_BUILD_PROCESSXML 1) 6 | # don't build it when cross compiling 7 | IF(CMAKE_CROSSCOMPILING) 8 | SET(KWCOMMON_BUILD_PROCESSXML 0) 9 | ENDIF(CMAKE_CROSSCOMPILING) 10 | 11 | IF(COMPILE_TOOLS_TARGET) 12 | SET(KWCOMMON_HOST_TOOLS_TARGET ${COMPILE_TOOLS_TARGET}) 13 | ENDIF(COMPILE_TOOLS_TARGET) 14 | 15 | ADD_SUBDIRECTORY(KWCommon) 16 | -------------------------------------------------------------------------------- /SuperBuild/External_PyQt.cmake: -------------------------------------------------------------------------------- 1 | # The PyQt external project 2 | 3 | ExternalProject_Add(PyQt 4 | URL ${PYQT_URL}/${PYQT_GZ} 5 | URL_MD5 ${PYQT_MD5} 6 | DOWNLOAD_DIR ${CMAKE_CURRENT_BINARY_DIR} 7 | SOURCE_DIR ${CMAKE_CURRENT_BINARY_DIR}/PyQt 8 | BUILD_IN_SOURCE 1 9 | CONFIGURE_COMMAND ${PYTHON_EXECUTABLE} configure.py -q ${QT_QMAKE_EXECUTABLE} --confirm-license 10 | DEPENDS 11 | ${PyQt_dependencies} 12 | ) 13 | -------------------------------------------------------------------------------- /ParaViewConfigVersion.cmake.in: -------------------------------------------------------------------------------- 1 | set(PACKAGE_VERSION @PARAVIEW_VERSION_MAJOR@.@PARAVIEW_VERSION_MINOR@.@PARAVIEW_VERSION_PATCH@) 2 | 3 | if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") 4 | set(PACKAGE_VERSION_COMPATIBLE FALSE) 5 | else() 6 | set(PACKAGE_VERSION_COMPATIBLE TRUE) 7 | if ("${PACKAGE_VERSION}" STREQUAL "${PACKAGE_FIND_VERSION}") 8 | set(PACKAGE_VERSION_EXACT TRUE) 9 | endif() 10 | endif() 11 | -------------------------------------------------------------------------------- /Documentation/Book/README.txt: -------------------------------------------------------------------------------- 1 | Do not edit the book html pages or images manually. 2 | The book content is automatically generated. 3 | 4 | Instead make your changes online at: 5 | http://paraview.org/Wiki/ParaView/Users_Guide/Table_Of_Contents 6 | 7 | Download in ODT format. 8 | Open with OpenOffice and export to HTML. 9 | 10 | batch convert png images to jpg 11 | change references accordingly in html 12 | split book into chapters 13 | -------------------------------------------------------------------------------- /Documentation/GenerateQHP.cmake: -------------------------------------------------------------------------------- 1 | # Script used to generate paraview.qhp file. 2 | 3 | file(GLOB files RELATIVE "${DOCUMENTATION_DIR}" 4 | "${DOCUMENTATION_DIR}/*.*" 5 | "${DOCUMENTATION_DIR}/Book/*.*") 6 | 7 | SET (DOCUMENTATION_FILES) 8 | 9 | foreach (file ${files}) 10 | set (DOCUMENTATION_FILES 11 | "${DOCUMENTATION_FILES}\n ${file}") 12 | endforeach (file) 13 | 14 | configure_file(${INPUT} ${OUTPUT}) 15 | -------------------------------------------------------------------------------- /Examples/Plugins/GUIView/MyDisplay.cxx: -------------------------------------------------------------------------------- 1 | 2 | #include "MyDisplay.h" 3 | 4 | #include 5 | #include 6 | 7 | MyDisplay::MyDisplay(pqRepresentation* d, QWidget* p) 8 | : pqDisplayPanel(d,p) 9 | { 10 | // just make a label that shows we made it in the GUI 11 | QVBoxLayout* l = new QVBoxLayout(this); 12 | l->addWidget(new QLabel("From Plugin", this)); 13 | } 14 | 15 | MyDisplay::~MyDisplay() 16 | { 17 | } 18 | 19 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/SQExport.h: -------------------------------------------------------------------------------- 1 | /* 2 | ____ _ __ ____ __ ____ 3 | / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_- 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/config/config-svtk-pleiades-icc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | COMP=/nasa/intel/cce/10.1.021/bin 4 | MPI=/nasa/sgi/mpt/1.26 5 | 6 | cmake \ 7 | -DCMAKE_C_COMPILER=$COMP/icc \ 8 | -DCMAKE_CXX_COMPILER=$COMP/icpc \ 9 | -DCMAKE_LINKER=$COMP/icpc \ 10 | -DCMAKE_CXX_FLAGS=-Wno-deprecated \ 11 | -DMPI_INCLUDE_PATH=$MPI/include \ 12 | -DMPI_LIBRARY=$MPI/lib/libmpi.so \ 13 | -DBUILD_SVTK_UTILITIES=ON \ 14 | $* 15 | -------------------------------------------------------------------------------- /SuperBuild/python_patch_step.cmake.in: -------------------------------------------------------------------------------- 1 | 2 | if(UNIX) 3 | # Provide a version of 'setup.py' fixing detect_tkinter function: 4 | # It basically force the list of possible tcl/tk dir to: '8.4', '84' 5 | # Doing so will make sure tkinter is linked against the provided Tcl/Tk8.4 6 | CONFIGURE_FILE( 7 | "@ParaViewSuperBuild_CMAKE_SOURCE_DIR@/python_setup.py.in" 8 | "@CMAKE_CURRENT_BINARY_DIR@/@python_SOURCE_DIR@/setup.py" 9 | COPY) 10 | ENDIF() 11 | -------------------------------------------------------------------------------- /Examples/Plugins/SMProxy/vtkSMMyElevationProxy.cxx: -------------------------------------------------------------------------------- 1 | 2 | #include "vtkSMMyElevationProxy.h" 3 | #include "vtkObjectFactory.h" 4 | 5 | vtkStandardNewMacro(vtkSMMyElevationProxy); 6 | 7 | vtkSMMyElevationProxy::vtkSMMyElevationProxy() 8 | { 9 | } 10 | 11 | vtkSMMyElevationProxy::~vtkSMMyElevationProxy() 12 | { 13 | } 14 | 15 | void vtkSMMyElevationProxy::PrintSelf(ostream& os, vtkIndent indent) 16 | { 17 | this->Superclass::PrintSelf(os, indent); 18 | } 19 | 20 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/GhostTransaction.cxx: -------------------------------------------------------------------------------- 1 | #include "GhostTransaction.h" 2 | 3 | //***************************************************************************** 4 | ostream &operator<<(ostream &os, const GhostTransaction >) 5 | { 6 | os 7 | << "(" << gt.GetSourceRank() << ", " << gt.GetSourceExtent() << ")->" 8 | << "(" << gt.GetDestinationRank() << ", " << gt.GetDestinationExtent() << ") " 9 | << gt.GetIntersectionExtent(); 10 | return os; 11 | } 12 | 13 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/config/config-svtk-kraken-gnu.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export XTPE_LINK_TYPE=dynamic 4 | 5 | MPI_PATH=/opt/cray/mpt/5.0.0/xt/seastar/mpich2-gnu 6 | COMP=/opt/cray/xt-asyncpe/4.0/bin 7 | 8 | cmake \ 9 | -DCMAKE_C_COMPILER=$COMP/cc \ 10 | -DCMAKE_CXX_COMPILER=$COMP/CC \ 11 | -DCMAKE_LINKER=$COMP/CC \ 12 | -DPARAVIEW_USE_MPI=ON \ 13 | -DMPI_INCLUDE_PATH=$MPI_PATH/include \ 14 | -DMPI_LIBRARY=$MPI_PATH/lib/libmpich.so \ 15 | $* 16 | 17 | -------------------------------------------------------------------------------- /Examples/Plugins/GUIObjectPanel/pqConePanel.cxx: -------------------------------------------------------------------------------- 1 | 2 | #include "pqConePanel.h" 3 | 4 | #include 5 | #include 6 | 7 | #include "vtkSMProxy.h" 8 | #include "pqProxy.h" 9 | 10 | pqConePanel::pqConePanel(pqProxy* pxy, QWidget* p) 11 | : pqLoadedFormObjectPanel(":/MyConePanel/pqConePanel.ui", pxy, p) 12 | { 13 | this->layout()->addWidget(new QLabel("This is from a plugin", this)); 14 | } 15 | 16 | pqConePanel::~pqConePanel() 17 | { 18 | } 19 | 20 | 21 | -------------------------------------------------------------------------------- /SuperBuild/freetype_build_step.cmake.in: -------------------------------------------------------------------------------- 1 | 2 | if(WIN32) 3 | 4 | #EXECUTE_PROCESS( 5 | # COMMAND @CMAKE_BUILD_TOOL@ "@freetype_source@/builds/win32/vc2008/freetype.sln" /Upgrade 6 | # WORKING_DIRECTORY "@Silo_source@" 7 | # ) 8 | 9 | EXECUTE_PROCESS( 10 | COMMAND @CMAKE_BUILD_TOOL@ "@freetype_source@/builds/win32/vc2008/freetype.sln" /build "@freetype_configuration@" /project freetype 11 | WORKING_DIRECTORY "@Silo_source@" 12 | ) 13 | 14 | endif() 15 | -------------------------------------------------------------------------------- /Examples/CustomApplications/Demo0/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | cmake_minimum_required(VERSION 2.6) 3 | 4 | project(Demo0) 5 | 6 | FIND_PACKAGE(ParaView REQUIRED) 7 | INCLUDE(${PARAVIEW_USE_FILE}) 8 | 9 | SET (SOURCE_FILES 10 | DemoApp0.cxx 11 | ) 12 | 13 | INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR} 14 | ${CMAKE_CURRENT_BINARY_DIR}) 15 | 16 | ADD_EXECUTABLE(DemoApp0 ${SOURCE_FILES} ${MOC_SRCS} ${UI_BUILT_SOURCES}) 17 | TARGET_LINK_LIBRARIES(DemoApp0 pqCore ${QT_LIBRARIES} ) 18 | -------------------------------------------------------------------------------- /Qt/Core/Testing/BasicApp.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include 4 | #include "pqRenderView.h" 5 | #include "vtkObject.h" 6 | 7 | class MainWindow : public QMainWindow 8 | { 9 | Q_OBJECT 10 | public: 11 | MainWindow(); 12 | bool compareView(const QString& referenceImage, double threshold, 13 | ostream& output, const QString& tempDirectory); 14 | 15 | QPointer RenderView; 16 | 17 | public slots: 18 | void processTest(); 19 | 20 | }; 21 | -------------------------------------------------------------------------------- /SuperBuild/shortpath.vbs: -------------------------------------------------------------------------------- 1 | 'Usage: 2 | ' From a command line, change directories to the location 3 | ' where this script is saved. 4 | ' At the command line type: cscript vbdir.vbs [directory] 5 | ' ex. cscript shortpath.vbs "C:\Program Files" 6 | ' or cscript shortpath.vbs C:\Windows\System32 7 | 8 | on error resume next 9 | Set fso=CreateObject("Scripting.FileSystemObject") 10 | 11 | Set objFolder = fso.GetFolder(WScript.Arguments(0)) 12 | 13 | WScript.Echo objFolder.ShortPath 14 | -------------------------------------------------------------------------------- /Applications/ParaView/Testing/XML/LoadState.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CoProcessing/Adaptors/FortranAdaptors/NPICAdaptor/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(NPICAdaptor) 2 | cmake_minimum_required(VERSION 2.6) 3 | #include_directories(${CoProcessor_SOURCE_DIR}) 4 | include_directories(${FortranAdaptor_SOURCE_DIR}) 5 | # pull in ParaView. 6 | #find_package(ParaView) 7 | #include(${PARAVIEW_USE_FILE}) 8 | 9 | set(NPICAdaptor_SRCS 10 | NPICAdaptor.cxx 11 | ) 12 | add_library(NPICAdaptor ${NPICAdaptor_SRCS}) 13 | target_link_libraries( 14 | NPICAdaptor FortranAdaptor 15 | ) 16 | -------------------------------------------------------------------------------- /Examples/Plugins/DockWidget/ExampleDockPanel.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | 5 | class ExampleDockPanel : public QDockWidget 6 | { 7 | Q_OBJECT 8 | typedef QDockWidget Superclass; 9 | public: 10 | ExampleDockPanel(const QString &t, QWidget* p = 0, Qt::WindowFlags f=0): 11 | Superclass(t, p, f) { this->constructor(); } 12 | ExampleDockPanel(QWidget *p=0, Qt::WindowFlags f=0): 13 | Superclass(p, f) { this->constructor(); } 14 | private: 15 | void constructor(); 16 | }; 17 | -------------------------------------------------------------------------------- /Plugins/SierraPlotTools/SierraPlotTools.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | Icons/DataLoadManager.png 4 | Icons/plotVarsCurve-32x32.png 5 | Icons/ShowSolid.png 6 | Icons/ShowWireframeSolid.png 7 | Icons/ShowWireframeAndBack.png 8 | Icons/PlotOverTime.png 9 | Icons/BackgroundBW.png 10 | Icons/DEBUG.png 11 | 12 | 13 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/postproc/axes.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # axes INFILE OUTFILE x0 x1 y0 y1 nx ny xLabel yLabel title xOffset yOffset fontSize fontType" 4 | # 5 | 6 | 7 | echo "$0" 8 | 9 | if [ $# != 13 ] ; then 10 | echo "Usage: $0 inFile outFile x0 x1 y0 y1 nx ny xLabel yLabel title xOffset yOffset fontSize fontType" 11 | exit 1 12 | fi 13 | 14 | gimp -i -b "(sciber-axes \"$1\" \"$2\" \"$3\" \"$4\" \"$5\" \"$6\" $7 $8 \"$9\" \"${10}\" \"${11}\" ${12} \"${13}\" )" -b '(gimp-quit 0)' 15 | -------------------------------------------------------------------------------- /Applications/ParaView/Testing/XML/VisItBridgeNas.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Examples/Plugins/ParametricSource/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | # create a paraview plugin containing server manager xml and the server 3 | # manager classes to build 4 | # this plugin can be loaded on the server side 5 | 6 | CMAKE_MINIMUM_REQUIRED(VERSION 2.4) 7 | 8 | IF(NOT ParaView_BINARY_DIR) 9 | FIND_PACKAGE(ParaView REQUIRED) 10 | INCLUDE(${PARAVIEW_USE_FILE}) 11 | ENDIF(NOT ParaView_BINARY_DIR) 12 | 13 | ADD_PARAVIEW_PLUGIN(SMParametricSource "1.0" 14 | SERVER_MANAGER_XML ParametricSource.xml) 15 | 16 | -------------------------------------------------------------------------------- /Applications/ParaView/Testing/XML/VisItBridgeSamrai.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CoProcessing/Adaptors/FortranAdaptors/PhastaAdaptor/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(PhastaAdaptor) 2 | cmake_minimum_required(VERSION 2.6) 3 | #include_directories(${CoProcessor_SOURCE_DIR}) 4 | include_directories(${FortranAdaptor_SOURCE_DIR}) 5 | # pull in ParaView. 6 | #find_package(ParaView) 7 | #include(${PARAVIEW_USE_FILE}) 8 | 9 | set(PhastaAdaptor_SRCS 10 | PhastaAdaptor.cxx 11 | ) 12 | add_library(PhastaAdaptor ${PhastaAdaptor_SRCS}) 13 | target_link_libraries( 14 | PhastaAdaptor FortranAdaptor 15 | ) 16 | 17 | -------------------------------------------------------------------------------- /Plugins/Manta/VTK/Examples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INCLUDE_DIRECTORIES(../) 2 | 3 | ADD_EXECUTABLE(manta_cylinder MACOSX_BUNDLE manta_cylinder.cxx) 4 | TARGET_LINK_LIBRARIES(manta_cylinder vtkManta vtkRendering) 5 | 6 | ADD_EXECUTABLE(manta_rendered_file MACOSX_BUNDLE manta_rendered_file.cxx) 7 | TARGET_LINK_LIBRARIES(manta_rendered_file vtkManta vtkRendering) 8 | 9 | ADD_EXECUTABLE(manta_rendered_water MACOSX_BUNDLE manta_rendered_water.cxx) 10 | TARGET_LINK_LIBRARIES(manta_rendered_water vtkManta vtkRendering) 11 | 12 | -------------------------------------------------------------------------------- /Utilities/CMakeBuildForPython/README.txt: -------------------------------------------------------------------------------- 1 | In this directory you can find CMake files for building Python. 2 | 3 | The files in cvs HEAD are for Python 2.5.1. 4 | 5 | Just copy them into your Python source directory and run cmake on them. 6 | 7 | This has been tested on Linux, eCos, IBM BlueGene/L and partly on Windows. 8 | 9 | The interpreter is built, there are install rules for most stuff, and a 10 | package can be built. 11 | 12 | Not all library modules are built and installed. 13 | 14 | 15 | Alex 16 | 17 | -------------------------------------------------------------------------------- /Utilities/VTKPythonWrapping/paraview/demos/show_grid_as_background.py: -------------------------------------------------------------------------------- 1 | # Macro for BUG #11065. This makes it possible to show the grid for a dataset in 2 | # the background. 3 | try: paraview.simple 4 | except: from paraview.simple import * 5 | paraview.simple._DisableFirstRenderCameraReset() 6 | 7 | spcth_0 = GetActiveSource() 8 | ExtractSurface2 = ExtractSurface() 9 | DataRepresentation5 = Show() 10 | DataRepresentation5.Representation = 'Wireframe' 11 | DataRepresentation5.BackfaceRepresentation = 'Cull Frontface' 12 | -------------------------------------------------------------------------------- /Utilities/mpi4py/Library/MPI/stdlib.pxi: -------------------------------------------------------------------------------- 1 | #--------------------------------------------------------------------- 2 | 3 | cdef extern from *: 4 | ctypedef unsigned long int size_t 5 | 6 | #--------------------------------------------------------------------- 7 | 8 | cdef extern from * nogil: # "stdio.h" 9 | ctypedef struct FILE 10 | FILE *stdin, *stdout, *stderr 11 | int fprintf(FILE *, char *, ...) 12 | int fflush(FILE *) 13 | 14 | #--------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /Plugins/PrismPlugins/Resources/Prism.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | Icons/CreateSESAME.png 4 | Icons/PrismSmall.png 5 | Icons/PrismViewScale.png 6 | UI/PrismSurfacePanelWidget.ui 7 | UI/PrismPanelWidget.ui 8 | UI/PrismViewScalingWidget.ui 9 | 10 | 11 | PrismReader.xml 12 | 13 | 14 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/IdBlock.cxx: -------------------------------------------------------------------------------- 1 | /* 2 | ____ _ __ ____ __ ____ 3 | / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_- 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Utilities/mpi4py/Library/compat/sgimpi.h: -------------------------------------------------------------------------------- 1 | #ifndef PyMPI_COMPAT_SGIMPI_H 2 | #define PyMPI_COMPAT_SGIMPI_H 3 | 4 | /* ---------------------------------------------------------------- */ 5 | 6 | #undef MPI_ARGV_NULL 7 | #define MPI_ARGV_NULL ((char **)0) 8 | 9 | #undef MPI_ARGVS_NULL 10 | #define MPI_ARGVS_NULL ((char ***)0) 11 | 12 | #undef MPI_ERRCODES_IGNORE 13 | #define MPI_ERRCODES_IGNORE ((int *)0) 14 | 15 | /* ---------------------------------------------------------------- */ 16 | 17 | #endif /* !PyMPI_COMPAT_SGIMPI_H */ 18 | -------------------------------------------------------------------------------- /SuperBuild/install_g2c.cmake: -------------------------------------------------------------------------------- 1 | 2 | # needed if g77 was used 3 | if (UNIX AND PARAVIEW_ENABLE_PYTHON) 4 | 5 | find_file(g2c_library libg2c.so /usr/lib) 6 | 7 | get_filename_component(g2c_library_dir ${g2c_library} PATH) 8 | get_filename_component(g2c_library_name ${g2c_library} NAME) 9 | 10 | file(GLOB g2c_files "${g2c_library_dir}/${g2c_library_name}*") 11 | install(PROGRAMS ${g2c_files} 12 | DESTINATION ${PV_INSTALL_LIB_DIR} 13 | COMPONENT Runtime 14 | ) 15 | 16 | endif (UNIX AND PARAVIEW_ENABLE_PYTHON) 17 | -------------------------------------------------------------------------------- /Examples/Plugins/Filter/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | CMAKE_MINIMUM_REQUIRED(VERSION 2.4) 3 | 4 | IF(NOT ParaView_BINARY_DIR) 5 | FIND_PACKAGE(ParaView REQUIRED) 6 | INCLUDE(${PARAVIEW_USE_FILE}) 7 | ENDIF(NOT ParaView_BINARY_DIR) 8 | 9 | # create a paraview plugin containing server manager xml and the server 10 | # manager classes to build 11 | # this plugin can be loaded on the server side 12 | 13 | ADD_PARAVIEW_PLUGIN(SMMyElevation "1.0" 14 | SERVER_MANAGER_XML MyElevationFilter.xml 15 | SERVER_MANAGER_SOURCES vtkMyElevationFilter.cxx) 16 | 17 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/batch/qsub-test4-topo-3d-pleiades.sh: -------------------------------------------------------------------------------- 1 | #PBS -S /bin/bash 2 | #PBS -N t4-mt-3d-day 3 | #PBS -j oe 4 | #PBS -m eab 5 | #PBS -M burlen.loring@gmail.com 6 | 7 | module use -a /u/bloring/modulefiles 8 | module load PV3-3.8.1-R-IT 9 | module load SVTK-PV3-3.8.1-R-IT 10 | 11 | cd $PBS_O_WORKDIR 12 | 13 | mpiexec MagnetosphereTopoBatch /u/bloring/ParaView/SciVisToolKit/development/runConfig/test4-3D-day.xml /nobackupp40/hkarimab/d40/test4/data/test4.bovm /nobackupp40/hkarimab/d40/test4/data/topo-day-3d/ day 32000 32000 14 | 15 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/postproc/autocrop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # ____ _ __ ____ __ ____ 3 | # / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | # _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_- 2 | 5 | 6 | 7 | 10 | 11 | 12 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /SuperBuild/External_VisTrails.cmake: -------------------------------------------------------------------------------- 1 | 2 | set(VisTrails_source "${CMAKE_CURRENT_BINARY_DIR}/VisTrails") 3 | 4 | # create an external project to download yt, 5 | # and configure and build it 6 | ExternalProject_Add(VisTrails 7 | URL ${VISTRAILS_URL}/${VISTRAILS_GZ} 8 | URL_MD5 ${VISTRAILS_MD5} 9 | DOWNLOAD_DIR ${CMAKE_CURRENT_BINARY_DIR} 10 | SOURCE_DIR ${VisTrails_source} 11 | BINARY_DIR "" 12 | CONFIGURE_COMMAND "" 13 | BUILD_COMMAND "" 14 | UPDATE_COMMAND "" 15 | INSTALL_COMMAND "" 16 | DEPENDS 17 | ${VISTRAILS_dependencies} 18 | ) 19 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/postream.h: -------------------------------------------------------------------------------- 1 | /* 2 | ____ _ __ ____ __ ____ 3 | / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_- 13 | using std::ostream; 14 | 15 | /** 16 | Helper that prints rank of caller and returns cerr. 17 | */ 18 | ostream &pCerr(); 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /SuperBuild/CGNS_configure_step.cmake.in: -------------------------------------------------------------------------------- 1 | 2 | if(APPLE) 3 | set(ENV{CPPFLAGS} "-arch x86_64 -mmacosx-version-min=@CMAKE_OSX_DEPLOYMENT_TARGET@ -isysroot @CMAKE_OSX_SYSROOT@") 4 | set(ENV{CXXFLAGS} "-arch x86_64 -mmacosx-version-min=@CMAKE_OSX_DEPLOYMENT_TARGET@ -isysroot @CMAKE_OSX_SYSROOT@") 5 | set(ENV{CFLAGS} "-arch x86_64 -mmacosx-version-min=@CMAKE_OSX_DEPLOYMENT_TARGET@ -isysroot @CMAKE_OSX_SYSROOT@") 6 | endif() 7 | 8 | EXECUTE_PROCESS( 9 | COMMAND sh configure --prefix="@CGNS_install@" --without-fortran @cgns_64@ 10 | WORKING_DIRECTORY "@CGNS_source@" 11 | ) 12 | -------------------------------------------------------------------------------- /Utilities/mpi4py/Library/MPI/asmemory.pxi: -------------------------------------------------------------------------------- 1 | #--------------------------------------------------------------------- 2 | 3 | cdef inline object asmemory(object ob, void** base, MPI_Aint* size): 4 | cdef void *p = NULL 5 | cdef Py_ssize_t n = 0 6 | PyObject_AsWriteBuffer(ob, &p, &n) 7 | if base: base[0] = p 8 | if size: size[0] = n 9 | return ob 10 | 11 | cdef inline object tomemory(void *base, MPI_Aint size): 12 | return PyBuffer_FromReadWriteMemory(base, size) 13 | 14 | #--------------------------------------------------------------------- 15 | -------------------------------------------------------------------------------- /Plugins/TestPlugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | #-------------------------------------------------- 2 | # Find and Use ParaView 3 | #-------------------------------------------------- 4 | IF (ParaView_SOURCE_DIR) 5 | INCLUDE_DIRECTORIES( 6 | ${PARAVIEW_INCLUDE_DIRS} 7 | ${PARAVIEW_GUI_INCLUDE_DIRS} 8 | ${PARAVIEW_KWSYS_INCLUDE_DIRS} 9 | ${VTK_INCLUDE_DIR} 10 | ) 11 | ELSE (ParaView_SOURCE_DIR) 12 | FIND_PACKAGE(ParaView REQUIRED) 13 | INCLUDE(${PARAVIEW_USE_FILE}) 14 | ENDIF (ParaView_SOURCE_DIR) 15 | 16 | ADD_PARAVIEW_PLUGIN(PacMan "1.0" 17 | SERVER_MANAGER_XML PacMan.xml) 18 | -------------------------------------------------------------------------------- /Qt/Widgets/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | PROJECT(pqWidgetsTest) 3 | 4 | SET(MyTests 5 | FlatTreeView 6 | Animation 7 | ) 8 | 9 | INCLUDE_DIRECTORIES(${QtWidgets_SOURCE_DIR} ${QtWidgets_BINARY_DIR}) 10 | CREATE_TEST_SOURCELIST(Tests pqWidgetsTest.cxx ${MyTests}) 11 | ADD_EXECUTABLE(pqWidgetsTest QTestApp.cxx ${Tests}) 12 | TARGET_LINK_LIBRARIES(pqWidgetsTest pqWidgets ${QT_LIBRARIES} 13 | ${QT_QTNETWORK_LIBRARY}) 14 | 15 | FOREACH(test ${MyTests}) 16 | ADD_TEST(pqWidgets${test} "${EXECUTABLE_OUTPUT_PATH}/pqWidgetsTest" ${test} --exit) 17 | ENDFOREACH(test ${MyTests}) 18 | 19 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/vtkSQMetaDataKeys.h: -------------------------------------------------------------------------------- 1 | /* 2 | ____ _ __ ____ __ ____ 3 | / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_- 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- 1 | ## This file should be placed in the root directory of your project. 2 | ## Then modify the CMakeLists.txt file in the root directory of your 3 | ## project to incorporate the testing dashboard. 4 | ## # The following are required to uses Dart and the Cdash dashboard 5 | ## ENABLE_TESTING() 6 | ## INCLUDE(Dart) 7 | set(CTEST_PROJECT_NAME "ParaView") 8 | set(CTEST_NIGHTLY_START_TIME "21:00:00 EDT") 9 | 10 | set(CTEST_DROP_METHOD "http") 11 | set(CTEST_DROP_SITE "www.cdash.org") 12 | set(CTEST_DROP_LOCATION "/CDash/submit.php?project=ParaView") 13 | set(CTEST_DROP_SITE_CDASH TRUE) 14 | -------------------------------------------------------------------------------- /CoProcessing/CoProcessingConfig.cmake.in: -------------------------------------------------------------------------------- 1 | SET(CoProcessing_VERSION_MAJOR "@CoProcessing_VERSION_MAJOR@") 2 | SET(CoProcessing_VERSION_MINOR "@CoProcessing_VERSION_MINOR@") 3 | SET(CoProcessing_VERSION_PATCH "@CoProcessing_VERSION_PATCH@") 4 | 5 | SET(CoProcessing_SOURCE_DIR "@CoProcessing_SOURCE_DIR@") 6 | SET(CoProcessing_USE_FILE "@CoProcessing_USE_FILE@") 7 | 8 | SET(CoProcessing_INCLUDE_DIRS "@CoProcessing_INCLUDE_DIRS@") 9 | SET(CoProcessing_LIBRARY_DIRS "@CoProcessing_LIBRARY_DIRS@") 10 | 11 | # The CoProcessing library dependencies. 12 | INCLUDE("@CoProcessing_BINARY_DIR@/CPLibraryDepends.cmake") 13 | -------------------------------------------------------------------------------- /Documentation/Book/imagesizer.py: -------------------------------------------------------------------------------- 1 | #script to resize openoffice sized images to something readable 2 | import re 3 | import sys 4 | fname = sys.argv[1:] 5 | match_image = re.compile(".*WIDTH=(\d+) HEIGHT=(\d+).*") 6 | fi = open(fname[0], 'r') 7 | for line in fi: 8 | match = match_image.match(line) 9 | if match != None: 10 | width = int(match.group(1)) 11 | width2 = int(width*2.5) 12 | height = int(match.group(2)) 13 | height2 = int(height*2.5) 14 | print re.sub(str(width), str(width2), re.sub(str(height), str(height2), line)), 15 | else: 16 | print line, 17 | -------------------------------------------------------------------------------- /SuperBuild/python_configure_step.cmake.in: -------------------------------------------------------------------------------- 1 | 2 | if(UNIX) 3 | set(ENV{LD_LIBRARY_PATH} "@CMAKE_CURRENT_BINARY_DIR@/python-build/lib") 4 | include("@ParaViewSuperBuild_CMAKE_BINARY_DIR@/paraview_common_environment.cmake") 5 | 6 | set(library_param --enable-shared) 7 | 8 | if(APPLE) 9 | set(library_param --enable-framework=@CMAKE_CURRENT_BINARY_DIR@/python-build) 10 | endif() 11 | 12 | EXECUTE_PROCESS( 13 | COMMAND sh configure --prefix=@python_install@ ${library_param} --enable-unicode=ucs2 14 | WORKING_DIRECTORY "@python_base@" 15 | RESULT_VARIABLE rv 16 | ) 17 | endif() 18 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/CartesianDataBlockIODescriptorIterator.cxx: -------------------------------------------------------------------------------- 1 | /* 2 | ____ _ __ ____ __ ____ 3 | / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_- " << it.GetMemView(); 14 | return os; 15 | } 16 | -------------------------------------------------------------------------------- /SuperBuild/install_gfortran.cmake: -------------------------------------------------------------------------------- 1 | 2 | if (UNIX AND PARAVIEW_ENABLE_PYTHON) 3 | 4 | find_file(gfortran_library NAMES libgfortran libgfortran.so libgfortran.so.1 HINTS /usr/lib) 5 | 6 | get_filename_component(gfortran_library_dir ${gfortran_library} PATH) 7 | get_filename_component(gfortran_library_name ${gfortran_library} NAME) 8 | 9 | file(GLOB gfortran_files "${gfortran_library_dir}/${gfortran_library_name}*") 10 | install(PROGRAMS ${gfortran_files} 11 | DESTINATION ${PV_INSTALL_LIB_DIR} 12 | COMPONENT Runtime 13 | ) 14 | 15 | endif (UNIX AND PARAVIEW_ENABLE_PYTHON) 16 | -------------------------------------------------------------------------------- /SuperBuild/CTestConfig.cmake: -------------------------------------------------------------------------------- 1 | ## This file should be placed in the root directory of your project. 2 | ## Then modify the CMakeLists.txt file in the root directory of your 3 | ## project to incorporate the testing dashboard. 4 | ## # The following are required to uses Dart and the Cdash dashboard 5 | ## ENABLE_TESTING() 6 | ## INCLUDE(CTest) 7 | set(CTEST_PROJECT_NAME "ParaViewSuperBuild") 8 | set(CTEST_NIGHTLY_START_TIME "19:30:00 EST") 9 | 10 | set(CTEST_DROP_METHOD "http") 11 | set(CTEST_DROP_SITE "www.cdash.org") 12 | set(CTEST_DROP_LOCATION "/slicer4/submit.php?project=ParaView") 13 | set(CTEST_DROP_SITE_CDASH TRUE) 14 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/vtkSQMetaDataKeys.cxx: -------------------------------------------------------------------------------- 1 | /* 2 | ____ _ __ ____ __ ____ 3 | / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_-setParent(pqCoreUtilities::mainWidget()); 11 | PrismCore* core=PrismCore::instance(); 12 | 13 | QAction *prismView = new QAction(this); 14 | QAction *sesameFilter = new QAction(this); 15 | QAction *scaleView = new QAction(this); 16 | core->registerActions(prismView,sesameFilter,scaleView); 17 | } 18 | 19 | PrismMenuActions::~PrismMenuActions() 20 | { 21 | 22 | } 23 | 24 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/vtkSQPlaneSourceConstants.h: -------------------------------------------------------------------------------- 1 | /* 2 | ____ _ __ ____ __ ____ 3 | / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_- 2 | 3 | Icons/DataLoadManager.png 4 | Icons/EField.png 5 | Icons/BField.png 6 | Icons/ShowParticles.png 7 | Icons/ShowSolid.png 8 | Icons/ShowWireframeSolid.png 9 | Icons/ShowWireframeAndBack.png 10 | Icons/PlotOverZ.png 11 | Icons/BackgroundBW.png 12 | Icons/XPlusSideways.png 13 | Icons/ResetRangeTemporal.png 14 | Icons/ResetRangeCurrentTime.png 15 | 16 | 17 | -------------------------------------------------------------------------------- /Examples/CustomApplications/Demo1/myMainWindow.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | myMainWindow 4 | 5 | 6 | true 7 | 8 | 9 | 10 | 0 11 | 0 12 | 559 13 | 518 14 | 15 | 16 | 17 | MainWindow 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /Examples/Plugins/RenderPassViews/RenderPassViews.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/CartesianBounds.cxx: -------------------------------------------------------------------------------- 1 | /* 2 | ____ _ __ ____ __ ____ 3 | / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_-(bounds.GetData(),6); 17 | 18 | return os; 19 | } 20 | -------------------------------------------------------------------------------- /Plugins/PrismPlugins/PrismToolBarActions.cxx: -------------------------------------------------------------------------------- 1 | 2 | 3 | #include "PrismToolBarActions.h" 4 | #include "PrismCore.h" 5 | #include "pqCoreUtilities.h" 6 | 7 | PrismToolBarActions::PrismToolBarActions(QObject* p) 8 | : QActionGroup(p) 9 | { 10 | this->setParent(pqCoreUtilities::mainWidget()); 11 | PrismCore* core=PrismCore::instance(); 12 | 13 | QAction *prismView = new QAction(this); 14 | QAction *sesameFilter = new QAction(this); 15 | QAction *scaleView = new QAction(this); 16 | core->registerActions(prismView,sesameFilter,scaleView); 17 | } 18 | 19 | PrismToolBarActions::~PrismToolBarActions() 20 | { 21 | 22 | } 23 | 24 | -------------------------------------------------------------------------------- /DartConfig.cmake: -------------------------------------------------------------------------------- 1 | INCLUDE(${CMAKE_CURRENT_SOURCE_DIR}/CTestConfig.cmake) 2 | 3 | # Dashboard is opened for submissions for a 24 hour period starting at 4 | # the specified NIGHLY_START_TIME. Time is specified in 24 hour format. 5 | SET (NIGHTLY_START_TIME "${CTEST_NIGHTLY_START_TIME}") 6 | 7 | 8 | # Dart server to submit results (used by client) 9 | SET(DROP_METHOD http) 10 | IF(DROP_METHOD MATCHES http) 11 | IF (NOT DEFINED DROP_SITE) 12 | SET (DROP_SITE "${CTEST_DROP_SITE}") 13 | SET (DROP_LOCATION "${CTEST_DROP_LOCATION}") 14 | ENDIF (NOT DEFINED DROP_SITE) 15 | ENDIF(DROP_METHOD MATCHES http) 16 | 17 | SET (TRIGGER_SITE "${CTEST_TRIGGER_SITE}") 18 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/SystemInterfaceFactory.h: -------------------------------------------------------------------------------- 1 | /* 2 | ____ _ __ ____ __ ____ 3 | / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_- 11 | using std::cerr; 12 | 13 | //----------------------------------------------------------------------------- 14 | ostream &pCerr() 15 | { 16 | int WorldRank; 17 | MPI_Comm_rank(MPI_COMM_WORLD,&WorldRank); 18 | 19 | cerr << "[" << WorldRank << "] "; 20 | 21 | return cerr; 22 | } 23 | -------------------------------------------------------------------------------- /Examples/Plugins/Writer/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | # create a plugin that adds a reader to the ParaView GUI 3 | # it is added in the file dialog when doing opens/saves. 4 | 5 | CMAKE_MINIMUM_REQUIRED(VERSION 2.4) 6 | 7 | IF(NOT ParaView_BINARY_DIR) 8 | FIND_PACKAGE(ParaView REQUIRED) 9 | INCLUDE(${PARAVIEW_USE_FILE}) 10 | ENDIF(NOT ParaView_BINARY_DIR) 11 | 12 | IF (PARAVIEW_BUILD_QT_GUI) 13 | ADD_PARAVIEW_PLUGIN(MyTiffWriter "1.0" 14 | GUI_RESOURCE_FILES GUITiff.xml 15 | SERVER_MANAGER_XML writers.xml 16 | ) 17 | ELSE (PARAVIEW_BUILD_QT_GUI) 18 | ADD_PARAVIEW_PLUGIN(MyTiffWriter "1.0" 19 | SERVER_MANAGER_XML writers.xml 20 | ) 21 | ENDIF (PARAVIEW_BUILD_QT_GUI) 22 | -------------------------------------------------------------------------------- /SuperBuild/python_install_step.cmake.in: -------------------------------------------------------------------------------- 1 | 2 | if(UNIX) 3 | include("@ParaViewSuperBuild_CMAKE_BINARY_DIR@/paraview_common_environment.cmake") 4 | 5 | if(APPLE) 6 | set(ENV{DYLD_LIBRARY_PATH} "@CMAKE_CURRENT_BINARY_DIR@/python-build/lib") 7 | else(APPLE) 8 | set(ENV{LD_LIBRARY_PATH} "@CMAKE_CURRENT_BINARY_DIR@/python-build/lib") 9 | endif(APPLE) 10 | 11 | EXECUTE_PROCESS( 12 | COMMAND make install 13 | WORKING_DIRECTORY "@python_base@" 14 | ) 15 | 16 | EXECUTE_PROCESS( 17 | COMMAND @CMAKE_CURRENT_BINARY_DIR@/python-build/bin/python setup.py install 18 | WORKING_DIRECTORY "@python_base@" 19 | RESULT_VARIABLE rv 20 | ) 21 | 22 | endif() 23 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/postproc/annotate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | INPUT=$1 4 | shift 1 5 | 6 | OUTPUT=$1 7 | shift 1 8 | 9 | TEXT=$1 10 | shift 1 11 | 12 | FONT_SIZE=$1 13 | shift 1 14 | 15 | FONT_COLOR=$1 16 | shift 1 17 | 18 | if [[ -z "$INPUT" || -z "$OUTPUT" || -z "$TEXT" ]] 19 | then 20 | echo "Error: $0 /path/to/input /path/to/output text" 1>&2 21 | exit 22 | fi 23 | 24 | # default font size 25 | if [[ -z "$FONT_SIZE" ]] 26 | then 27 | FONT_SIZE=25 28 | fi 29 | 30 | # default font color 31 | if [[ -z "$FONT_COLOR" ]] 32 | then 33 | FONT_COLOR="w" 34 | fi 35 | 36 | gimp -i -b "(annotate \"$INPUT\" \"$OUTPUT\" \"$TEXT\" \"$FONT_SIZE\" \"$FONT_COLOR\")" -b "(gimp-quit 0)" 37 | -------------------------------------------------------------------------------- /Examples/Plugins/GUIToolBar/MyToolBarActions.cxx: -------------------------------------------------------------------------------- 1 | 2 | 3 | #include "MyToolBarActions.h" 4 | 5 | #include 6 | #include 7 | #include 8 | 9 | MyToolBarActions::MyToolBarActions(QObject* p) 10 | : QActionGroup(p) 11 | { 12 | QIcon icon = qApp->style()->standardIcon(QStyle::SP_MessageBoxCritical); 13 | 14 | QAction* a = this->addAction(new QAction(icon, "MyAction", this)); 15 | QObject::connect(a, SIGNAL(triggered(bool)), this, SLOT(onAction())); 16 | } 17 | 18 | MyToolBarActions::~MyToolBarActions() 19 | { 20 | } 21 | 22 | void MyToolBarActions::onAction() 23 | { 24 | QMessageBox::information(NULL, "MyAction", "MyAction was invoked\n"); 25 | } 26 | 27 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/eigen-2.0.12/include/eigen2/Eigen/LeastSquares: -------------------------------------------------------------------------------- 1 | #ifndef EIGEN_REGRESSION_MODULE_H 2 | #define EIGEN_REGRESSION_MODULE_H 3 | 4 | #include "Core" 5 | 6 | #include "src/Core/util/DisableMSVCWarnings.h" 7 | 8 | #include "QR" 9 | #include "Geometry" 10 | 11 | namespace Eigen { 12 | 13 | /** \defgroup LeastSquares_Module LeastSquares module 14 | * This module provides linear regression and related features. 15 | * 16 | * \code 17 | * #include 18 | * \endcode 19 | */ 20 | 21 | #include "src/LeastSquares/LeastSquares.h" 22 | 23 | } // namespace Eigen 24 | 25 | #include "src/Core/util/EnableMSVCWarnings.h" 26 | 27 | #endif // EIGEN_REGRESSION_MODULE_H 28 | -------------------------------------------------------------------------------- /SuperBuild/yt_make_step.cmake.in: -------------------------------------------------------------------------------- 1 | message("Building yt:\n@yt_binary@") 2 | set(ENV{LD_LIBRARY_PATH} "@python_install@/lib") 3 | set(ENV{VS_UNICODE_OUTPUT} "") 4 | 5 | if(APPLE) 6 | set(ENV{CFLAGS} "-arch x86_64 -mmacosx-version-min=@CMAKE_OSX_DEPLOYMENT_TARGET@ -isysroot @CMAKE_OSX_SYSROOT@") 7 | endif() 8 | 9 | execute_process( 10 | COMMAND "@PYTHON_EXECUTABLE@" setup.py build 11 | WORKING_DIRECTORY "@yt_binary@" 12 | RESULT_VARIABLE res 13 | OUTPUT_VARIABLE yt_OUT 14 | OUTPUT_VARIABLE yt_ERR) 15 | 16 | if(NOT ${res} EQUAL 0) 17 | message("yt Errors detected: \n${yt_OUT}\n${yt_ERR}") 18 | message(FATAL_ERROR "Error in config of yt") 19 | endif() 20 | message("yt build worked.") 21 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/util/pvd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [[ $# < 2 ]] 4 | then 5 | echo 6 | echo "usage:" 7 | echo "pvd.sh /path/to/name.pvd vtk-file-ext(eg.pvtp)" 8 | echo 9 | exit 1 10 | fi 11 | 12 | FNAME=$1 13 | PEXT=$2 14 | TIME=0 15 | 16 | echo "FNAME=$FNAME" 17 | echo "PEXT=$PEXT" 18 | 19 | echo "" > $FNAME 20 | echo "" >> $FNAME 21 | echo "" >> $FNAME 22 | 23 | for f in `find ./ -name '*.'$PEXT` 24 | do 25 | echo " " >> $FNAME 26 | let TIME=$TIME+1 27 | done 28 | 29 | echo "" >> $FNAME 30 | echo "" >> $FNAME 31 | 32 | exit 0 33 | -------------------------------------------------------------------------------- /Examples/Plugins/SMProxy/vtkSMMyBoundsDomain.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef vtkSMMyBoundsDomain_h 3 | #define vtkSMMyBoundsDomain_h 4 | 5 | #include "vtkSMBoundsDomain.h" 6 | 7 | /// useless but just showing we can do it 8 | class vtkSMMyBoundsDomain : public vtkSMBoundsDomain 9 | { 10 | public: 11 | static vtkSMMyBoundsDomain* New(); 12 | vtkTypeMacro(vtkSMMyBoundsDomain, vtkSMBoundsDomain); 13 | void PrintSelf(ostream& os, vtkIndent indent); 14 | 15 | // overload setting of default values so we can orient them 16 | // our way 17 | void Update(vtkSMProperty* prop); 18 | 19 | protected: 20 | vtkSMMyBoundsDomain(); 21 | ~vtkSMMyBoundsDomain(); 22 | 23 | }; 24 | 25 | #endif // vtkSMMyBoundsDomain_h 26 | 27 | -------------------------------------------------------------------------------- /Examples/PythonClient/eventdriver.py: -------------------------------------------------------------------------------- 1 | from PyQt4 import QtCore, QtNetwork, QtGui 2 | 3 | def exit(): 4 | import sys 5 | sys.exit(0) 6 | 7 | def sendMessage(): 8 | global sock, timer 9 | 10 | bl = QtCore.QByteArray() 11 | out = QtCore.QDataStream(bl, QtCore.QIODevice.WriteOnly) 12 | out.writeDouble(10) 13 | 14 | sock.write(bl) 15 | 16 | timer.start(30) 17 | 18 | 19 | app = QtGui.QApplication(['Event Driver']) 20 | 21 | sock = QtNetwork.QTcpSocket() 22 | sock.connectToHost("localhost", 12345) 23 | sock.disconnected.connect(exit) 24 | 25 | timer = QtCore.QTimer() 26 | timer.setSingleShot(True) 27 | timer.timeout.connect(sendMessage) 28 | timer.start(30) 29 | 30 | app.exec_() 31 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/minmax.h: -------------------------------------------------------------------------------- 1 | /* 2 | ____ _ __ ____ __ ____ 3 | / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_- 15 | T max(T a, T b){ return a 19 | T min(T a, T b){ return a 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ParaViewCore/ServerManager/Testing/Python/TestNumPy.cmake: -------------------------------------------------------------------------------- 1 | # This script detects whether numpy is present in the system 2 | EXECUTE_PROCESS(COMMAND ${PYTHON_EXECUTABLE} 3 | -c 4 | " 5 | import os 6 | import sys 7 | 8 | # prevents dashboard from truncating output of this test. 9 | # print >> sys.stderr, \"Enabling CTEST_FULL_OUTPUT\" 10 | # print >> sys.stderr, \"Checking NUMPY...\" 11 | try: 12 | import numpy 13 | numpy.__version__ 14 | # print >> sys.stderr, numpy.__version__ 15 | # print >> sys.stderr, \"----> import numpy WORKS!\" 16 | 17 | except ImportError: 18 | # print >> sys.stderr, \"----> import numpy FAILED.\" 19 | os._exit(0) 20 | 21 | os._exit(1) 22 | " 23 | RESULT_VARIABLE HAS_NUMPY 24 | ) 25 | -------------------------------------------------------------------------------- /Applications/ParaView/Testing/XML/VisItBridgePdb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/eigen-2.0.12/include/eigen2/Eigen/SVD: -------------------------------------------------------------------------------- 1 | #ifndef EIGEN_SVD_MODULE_H 2 | #define EIGEN_SVD_MODULE_H 3 | 4 | #include "Core" 5 | 6 | #include "src/Core/util/DisableMSVCWarnings.h" 7 | 8 | namespace Eigen { 9 | 10 | /** \defgroup SVD_Module SVD module 11 | * 12 | * \nonstableyet 13 | * 14 | * This module provides SVD decomposition for (currently) real matrices. 15 | * This decomposition is accessible via the following MatrixBase method: 16 | * - MatrixBase::svd() 17 | * 18 | * \code 19 | * #include 20 | * \endcode 21 | */ 22 | 23 | #include "src/SVD/SVD.h" 24 | 25 | } // namespace Eigen 26 | 27 | #include "src/Core/util/EnableMSVCWarnings.h" 28 | 29 | #endif // EIGEN_SVD_MODULE_H 30 | -------------------------------------------------------------------------------- /SuperBuild/freetype_patch_step.cmake.in: -------------------------------------------------------------------------------- 1 | 2 | if(WIN32) 3 | 4 | EXECUTE_PROCESS( 5 | COMMAND ${CMAKE_COMMAND} -E copy_if_different "@ParaViewSuperBuild_CMAKE_SOURCE_DIR@/freetypePatches/freetype.vcproj" "@freetype_source@/builds/win32/vc2008/freetype.vcproj" 6 | ) 7 | 8 | EXECUTE_PROCESS( 9 | COMMAND ${CMAKE_COMMAND} -E copy_if_different "@ParaViewSuperBuild_CMAKE_SOURCE_DIR@/freetypePatches/freetype.sln" "@freetype_source@/builds/win32/vc2008/freetype.sln" 10 | ) 11 | 12 | EXECUTE_PROCESS( 13 | COMMAND ${CMAKE_COMMAND} -E copy_if_different "@ParaViewSuperBuild_CMAKE_SOURCE_DIR@/freetypePatches/ftoption.h" "@freetype_source@/include/freetype/config/ftoption.h" 14 | ) 15 | 16 | else() 17 | 18 | endif() 19 | -------------------------------------------------------------------------------- /SuperBuild/Cython_make_step.cmake.in: -------------------------------------------------------------------------------- 1 | message("Building Cython:\n@Cython_binary@") 2 | set(ENV{LD_LIBRARY_PATH} "@python_install@/lib") 3 | set(ENV{VS_UNICODE_OUTPUT} "") 4 | 5 | if(APPLE) 6 | set(ENV{CFLAGS} "-arch x86_64 -mmacosx-version-min=@CMAKE_OSX_DEPLOYMENT_TARGET@ -isysroot @CMAKE_OSX_SYSROOT@") 7 | endif() 8 | 9 | execute_process( 10 | COMMAND "@PYTHON_EXECUTABLE@" setup.py build 11 | WORKING_DIRECTORY "@Cython_binary@" 12 | RESULT_VARIABLE res 13 | OUTPUT_VARIABLE Cython_OUT 14 | OUTPUT_VARIABLE Cython_ERR) 15 | 16 | if(NOT ${res} EQUAL 0) 17 | message("Cython Errors detected: \n${Cython_OUT}\n${Cython_ERR}") 18 | message(FATAL_ERROR "Error in config of Cython") 19 | endif() 20 | message("Cython build worked.") 21 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/script/batch/qsub-gentp-longhorn.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # (C) 2010 SciberQuest Inc. 4 | 5 | #$ -V # Inherit the submission environment 6 | #$ -cwd # Start job in submission dir 7 | #$ -N gentp-batch # Job name 8 | #$ -j y # Combine stderr and stdout into stdout 9 | #$ -o $HOME/$JOB_NAME.out # Name of the output file 10 | 11 | if [ -z $1 ] 12 | then 13 | echo "Error: \$1 should be set to path of the dataset." 14 | exit 15 | fi 16 | DATA_PATH=$1 17 | 18 | IBRUN_PATH=/share/sge6.2/default/pe_scripts 19 | 20 | $IBRUN_PATH/ibrun /home/01237/bloring/apps/SVTK-PV3-3.8-icc-R/gentp $DATA_PATH 21 | 22 | -------------------------------------------------------------------------------- /ParaViewCore/Common/Testing/ParaViewCoreCommonPrintSelf.cxx: -------------------------------------------------------------------------------- 1 | #include "vtkPVConfig.h" 2 | 3 | #include "vtkClientServerInterpreterInitializer.h" 4 | #include "vtkCommandOptions.h" 5 | #include "vtkCommandOptionsXMLParser.h" 6 | #include "vtkPVTestUtilities.h" 7 | #include "vtkPVXMLElement.h" 8 | #include "vtkPVXMLParser.h" 9 | #include "vtkStringList.h" 10 | 11 | #define PRINT_SELF(classname)\ 12 | c = classname::New(); c->Print(cout); c->Delete(); 13 | 14 | int main(int, char**) 15 | { 16 | vtkObject* c; 17 | PRINT_SELF(vtkCommandOptions); 18 | PRINT_SELF(vtkCommandOptionsXMLParser); 19 | PRINT_SELF(vtkPVTestUtilities); 20 | PRINT_SELF(vtkPVXMLElement); 21 | PRINT_SELF(vtkPVXMLParser); 22 | PRINT_SELF(vtkStringList); 23 | return 0; 24 | } 25 | -------------------------------------------------------------------------------- /SuperBuild/NUMPY_make_step.cmake.in: -------------------------------------------------------------------------------- 1 | message("Building NUMPY:\n@NUMPY_binary@") 2 | set(ENV{LD_LIBRARY_PATH} "@python_install@/lib") 3 | set(ENV{VS_UNICODE_OUTPUT} "") 4 | 5 | if(APPLE) 6 | set(ENV{CFLAGS} "-arch x86_64 -arch i386 -mmacosx-version-min=@CMAKE_OSX_DEPLOYMENT_TARGET@ -isysroot @CMAKE_OSX_SYSROOT@") 7 | endif() 8 | 9 | execute_process( 10 | COMMAND "@PYTHON_EXECUTABLE@" setup.py build @fcompiler_arg@ 11 | WORKING_DIRECTORY "@NUMPY_binary@" 12 | RESULT_VARIABLE res 13 | OUTPUT_VARIABLE NUMPY_OUT 14 | OUTPUT_VARIABLE NUMPY_ERR) 15 | 16 | if(NOT ${res} EQUAL 0) 17 | message("NUMPY Errors detected: \n${NUMPY_OUT}\n${NUMPY_ERR}") 18 | message(FATAL_ERROR "Error in config of NUMPY") 19 | endif() 20 | message("Numpy build worked.") 21 | -------------------------------------------------------------------------------- /SuperBuild/yt_install_step.cmake.in: -------------------------------------------------------------------------------- 1 | message("Installing yt:\n@yt_PREFIX_ARGS@") 2 | set(ENV{LD_LIBRARY_PATH} "@python_install@/lib") 3 | set(ENV{VS_UNICODE_OUTPUT} "") 4 | 5 | if(APPLE) 6 | set(ENV{CFLAGS} "-arch x86_64 -mmacosx-version-min=@CMAKE_OSX_DEPLOYMENT_TARGET@ -isysroot @CMAKE_OSX_SYSROOT@") 7 | endif() 8 | 9 | execute_process( 10 | COMMAND "@PYTHON_EXECUTABLE@" setup.py install @yt_PREFIX_ARGS@ --single-version-externally-managed --record "${CMAKE_CURRENT_BINARY_DIR}/distribute.record" 11 | WORKING_DIRECTORY "@yt_binary@" 12 | RESULT_VARIABLE res 13 | ) 14 | 15 | if(NOT ${res} EQUAL 0) 16 | message("yt Errors detected: \n${yt_OUT}\n${yt_ERR}") 17 | message(FATAL_ERROR "Error in config of yt") 18 | endif() 19 | message("yt install succeeded.") 20 | -------------------------------------------------------------------------------- /Qt/Python/QtPythonConfig.h.in: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2004 Sandia Corporation. 3 | * Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive 4 | * license for use of this work by or on behalf of the 5 | * U.S. Government. Redistribution and use in source and binary forms, with 6 | * or without modification, are permitted provided that this Notice and any 7 | * statement of authorship are reproduced on all copies. 8 | */ 9 | 10 | #ifndef _QtPythonConfig_h 11 | #define _QtPythonConfig_h 12 | 13 | #ifndef PARAVIEW_BUILD_SHARED_LIBS 14 | #cmakedefine PARAVIEW_BUILD_SHARED_LIBS 15 | #endif 16 | 17 | #define PV_PYTHON_MODULE_DIR "@PV_PYTHON_MODULE_DIR@" 18 | #define PV_PYTHON_LIBRARY_DIR "@LIBRARY_OUTPUT_PATH@" 19 | 20 | #endif // !_QtPythonConfig_h 21 | 22 | -------------------------------------------------------------------------------- /SuperBuild/External_LAPACK.cmake: -------------------------------------------------------------------------------- 1 | # The LAPACK external project for Titan 2 | 3 | set(lapack_source "${CMAKE_CURRENT_BINARY_DIR}/LAPACK") 4 | set(lapack_binary "${CMAKE_CURRENT_BINARY_DIR}/LAPACK-build") 5 | set(NUMPY_LAPACK_binary ${lapack_binary}) 6 | 7 | ExternalProject_Add(LAPACK 8 | DOWNLOAD_DIR ${CMAKE_CURRENT_BINARY_DIR} 9 | SOURCE_DIR ${lapack_source} 10 | BINARY_DIR ${lapack_binary} 11 | URL ${LAPACK_URL}/${LAPACK_GZ} 12 | URL_MD5 ${LAPACK_MD5} 13 | CMAKE_ARGS 14 | -DCMAKE_CXX_FLAGS:STRING=${pv_tpl_cxx_flags} 15 | -DCMAKE_C_FLAGS:STRING=${pv_tpl_c_flags} 16 | -DBUILD_SHARED_LIBS:BOOL=ON 17 | -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} 18 | ${LAPACK_EXTRA_ARGS} 19 | INSTALL_COMMAND "" 20 | ) 21 | list(APPEND trilinos_depends LAPACK) 22 | -------------------------------------------------------------------------------- /Examples/CustomApplications/Spreadsheet/README.txt: -------------------------------------------------------------------------------- 1 | This example demonstrates how to use the ParaView application framework for 2 | developing custom applications with work-flow different from that of ParaView's. 3 | 4 | This is a simple spreadsheet application that can be used to inspect raw data. 5 | The user loads a supported datafile and we immediately allow the user to look at 6 | the data attributes. 7 | 8 | This example demonstrates the following: 9 | * Building user inferface by subclassing QMainWindow 10 | - Interface does not use pipeline-browser/object-inspector framework at at 11 | all. 12 | * Unlike standard ParaView, we are not allowing user to split views or create 13 | different types of views i.e. the central widget in the MainWindow is 14 | custom-built. 15 | -------------------------------------------------------------------------------- /Plugins/H5PartReader/H5Part/src/H5BlockTypes.h: -------------------------------------------------------------------------------- 1 | #ifndef __H5BLOCKTYPES_H 2 | #define __H5BLOCKTYPES_H 3 | 4 | struct H5BlockPartition { 5 | h5part_int64_t i_start; 6 | h5part_int64_t i_end; 7 | h5part_int64_t j_start; 8 | h5part_int64_t j_end; 9 | h5part_int64_t k_start; 10 | h5part_int64_t k_end; 11 | }; 12 | 13 | struct H5BlockStruct { 14 | h5part_int64_t timestep; 15 | h5part_int64_t i_max; 16 | h5part_int64_t j_max; 17 | h5part_int64_t k_max; 18 | struct H5BlockPartition *user_layout; 19 | struct H5BlockPartition *write_layout; 20 | int have_layout; 21 | 22 | hid_t shape; 23 | hid_t memshape; 24 | hid_t diskshape; 25 | hid_t blockgroup; 26 | hid_t field_group_id; 27 | }; 28 | 29 | #define H5PART_ERR_LAYOUT -100 30 | #define H5PART_ERR_NOENT -101 31 | 32 | #endif 33 | -------------------------------------------------------------------------------- /Plugins/PrismPlugins/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INCLUDE(ParaViewTestingMacros) 2 | 3 | SET (PRISM_TESTS_WITH_BASELINES 4 | ${CMAKE_CURRENT_SOURCE_DIR}/PrismMultipleSurfaces.xml 5 | ${CMAKE_CURRENT_SOURCE_DIR}/PrismSelection.xml 6 | ${CMAKE_CURRENT_SOURCE_DIR}/PrismView.xml 7 | ${CMAKE_CURRENT_SOURCE_DIR}/PrismScaleView.xml 8 | ${CMAKE_CURRENT_SOURCE_DIR}/PrismScaleView1.xml 9 | ) 10 | 11 | SET (PrismMultipleSurfaces_BREAK TRUE) 12 | SET (PrismSelection_BREAK TRUE) 13 | SET (PrismView_BREAK TRUE) 14 | SET (PrismScaleView_BREAK TRUE) 15 | SET (PrismScaleView1_BREAK TRUE) 16 | 17 | IF (PARAVIEW_DATA_ROOT) 18 | add_client_tests("Prism" 19 | BASELINE_DIR ${PARAVIEW_DATA_ROOT}/Baseline 20 | TEST_SCRIPTS ${PRISM_TESTS_WITH_BASELINES} 21 | ) 22 | ENDIF (PARAVIEW_DATA_ROOT) 23 | -------------------------------------------------------------------------------- /Plugins/SQToolkit/GDAMetaDataKeys.h: -------------------------------------------------------------------------------- 1 | /* 2 | ____ _ __ ____ __ ____ 3 | / __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____ 4 | _\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_- 18 | * \endcode 19 | */ 20 | 21 | #include "src/LU/LU.h" 22 | #include "src/LU/Determinant.h" 23 | #include "src/LU/Inverse.h" 24 | 25 | } // namespace Eigen 26 | 27 | #include "src/Core/util/EnableMSVCWarnings.h" 28 | 29 | #endif // EIGEN_LU_MODULE_H 30 | -------------------------------------------------------------------------------- /CMake/ParaViewCPackOptions.cmake.in: -------------------------------------------------------------------------------- 1 | 2 | # This file is only included when building packagers via CPack. 3 | # 4 | # It is *not* included during a "make install" but it is included by cpack during 5 | # "make package"... 6 | # 7 | # Set an environment variable so that the bundle create scripts know the installation 8 | # is being driven by CPack. To avoid using $DESTDIR/Applications as a prefix... 9 | # 10 | set(ENV{ParaView_CPACK_GENERATOR} "${CPACK_GENERATOR}") 11 | 12 | if(CPACK_GENERATOR STREQUAL "DragNDrop") 13 | # When using CPack with the DragNDrop generator, only the ParaView "Bundle" component 14 | # is installed. 15 | # 16 | set(CPACK_INSTALL_CMAKE_PROJECTS "@CPACK_INSTALL_CMAKE_PROJECTS_DRAGNDROP@") 17 | else() 18 | set(CPACK_INSTALL_CMAKE_PROJECTS "@CPACK_INSTALL_CMAKE_PROJECTS@") 19 | endif() 20 | -------------------------------------------------------------------------------- /Plugins/Moments/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # This plugin contains a set of filters that helps analysis of flux and 2 | # circulation fields. Flux fields are defined on 2D cells and describe 3 | # flows through the area of the cell. Circulation fields are defined on 1D 4 | # cells and describes flows in the direction of the cell. 5 | 6 | SET(PLUGIN_NAME Moments) 7 | SET(PLUGIN_VERSION "0.0") 8 | 9 | INCLUDE_DIRECTORIES( 10 | ${CMAKE_CURRENT_BINARY_DIR} 11 | ${PARAVIEW_INCLUDE_DIRS} 12 | ${VTK_INCLUDE_DIR} 13 | ) 14 | 15 | SET(SM_XML 16 | Moments.xml 17 | ) 18 | 19 | SET(SM_SRC 20 | vtkMomentGlyphs.cxx 21 | vtkMomentVectors.cxx 22 | ) 23 | 24 | ADD_PARAVIEW_PLUGIN(${PLUGIN_NAME} ${PLUGIN_VERSION} 25 | REQUIRED_ON_SERVER 26 | SERVER_MANAGER_XML ${SM_XML} 27 | SERVER_MANAGER_SOURCES ${SM_SRC} 28 | ) 29 | -------------------------------------------------------------------------------- /Examples/CustomApplications/Demo1/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | cmake_minimum_required(VERSION 2.6) 3 | 4 | project(Demo1) 5 | 6 | FIND_PACKAGE(ParaView REQUIRED) 7 | INCLUDE(${PARAVIEW_USE_FILE}) 8 | 9 | INCLUDE(${ParaView_CMAKE_DIR}/ParaViewBranding.cmake) 10 | INCLUDE(${ParaView_CMAKE_DIR}/ParaViewPlugins.cmake) 11 | 12 | SET (SOURCE_FILES 13 | DemoApp1.cxx 14 | myMainWindow.cxx 15 | myMainWindow.h 16 | ) 17 | 18 | QT4_WRAP_CPP(MOC_SRCS 19 | myMainWindow.h 20 | ) 21 | 22 | QT4_WRAP_UI(UI_BUILT_SOURCES 23 | myMainWindow.ui 24 | ) 25 | 26 | INCLUDE_DIRECTORIES( 27 | ${CMAKE_CURRENT_SOURCE_DIR} 28 | ${CMAKE_CURRENT_BINARY_DIR}) 29 | 30 | ADD_EXECUTABLE(DemoApp1 ${SOURCE_FILES} ${MOC_SRCS} ${UI_BUILT_SOURCES}) 31 | TARGET_LINK_LIBRARIES(DemoApp1 pqCore pqComponents pqApplicationComponents 32 | ${QT_LIBRARIES} ) 33 | -------------------------------------------------------------------------------- /ParaViewCore/VTKExtensions/Testing/TestSpyPlotTracers.cxx: -------------------------------------------------------------------------------- 1 | #include "vtkDummyController.h" 2 | #include "vtkSmartPointer.h" 3 | #include "vtkSpyPlotReader.h" 4 | #include "vtkTestUtilities.h" 5 | 6 | #define VTK_CREATE(type,name) vtkSmartPointer name = vtkSmartPointer::New () 7 | 8 | int main (int argc, char * argv[]) 9 | { 10 | char *fname = vtkTestUtilities::ExpandDataFileName (argc, argv, "Data/SPCTH/ball_and_box.spcth"); 11 | 12 | VTK_CREATE(vtkDummyController, controller); 13 | vtkMultiProcessController::SetGlobalController (controller); 14 | 15 | VTK_CREATE(vtkSpyPlotReader, reader); 16 | reader->SetGlobalController (controller); 17 | reader->SetFileName (fname); 18 | reader->GenerateTracerArrayOn (); 19 | reader->Update (); 20 | 21 | delete [] fname; 22 | 23 | return 0; 24 | } 25 | --------------------------------------------------------------------------------