├── .clang-format ├── .gitmodules ├── .rodare.json ├── CHANGELOG.md ├── INSTALL.md ├── LICENSE ├── Modules ├── FindIceT.cmake ├── FindJansson.cmake └── FindLibWebSockets.cmake ├── README.md ├── TUNNEL.md ├── client ├── html │ └── visualisation.html ├── js │ ├── isaac │ │ ├── client.js │ │ ├── draw.js │ │ └── interface │ │ │ └── visualisation.js │ └── jscolor.js ├── old │ ├── interface.htm │ ├── interface_pof_foil.htm │ ├── interface_pof_lwfa.htm │ ├── interface_presentation.htm │ └── interface_vlc.htm ├── record.gif └── record_black.gif ├── documentation ├── tunnel_putty1.png ├── tunnel_putty2.png └── tunnel_putty3.png ├── example ├── CMakeLists.txt ├── example.cpp └── example_details.hpp ├── example_renderings ├── picongpu_kelvin_helmholtz_1.png ├── picongpu_kelvin_helmholtz_2.png ├── picongpu_kelvin_helmholtz_3.png ├── picongpu_kelvin_helmholtz_4.png ├── picongpu_kelvin_helmholtz_5.png ├── picongpu_kelvin_helmholtz_6.png ├── picongpu_kelvin_helmholtz_hd_1.png ├── picongpu_kelvin_helmholtz_hd_10_mag.png ├── picongpu_kelvin_helmholtz_hd_11_ele.png ├── picongpu_kelvin_helmholtz_hd_12_ele.png ├── picongpu_kelvin_helmholtz_hd_2.png ├── picongpu_kelvin_helmholtz_hd_3.png ├── picongpu_kelvin_helmholtz_hd_4.png ├── picongpu_kelvin_helmholtz_hd_5.png ├── picongpu_kelvin_helmholtz_hd_6.png ├── picongpu_kelvin_helmholtz_hd_7_cur.png ├── picongpu_kelvin_helmholtz_hd_8_cur.png ├── picongpu_kelvin_helmholtz_hd_9_mag.png ├── picongpu_wakefield_1.png ├── picongpu_wakefield_2.png ├── picongpu_wakefield_3.png ├── picongpu_wakefield_4.png ├── picongpu_wakefield_5_1.png ├── picongpu_wakefield_5_2.png ├── picongpu_wakefield_5_3.png ├── picongpu_wakefield_5_4.png ├── picongpu_wakefield_5_5.png ├── picongpu_wakefield_5_6.png ├── picongpu_wakefield_5_7.png ├── picongpu_wakefield_5_8.png ├── picongpu_wakefield_6.png ├── picongpu_wakefield_7.png ├── picongpu_wakefield_8.png ├── picongpu_wakefield_hd_1.png ├── picongpu_wakefield_hd_2.png ├── picongpu_wakefield_hd_3.png ├── picongpu_weibel_1.png ├── picongpu_weibel_2.png └── picongpu_weibel_3.png ├── helper_scripts ├── read_rtp_h264_5000.sh └── read_rtp_jpeg_5100.sh ├── isaac.png ├── isaac.svg ├── lib ├── CMakeLists.txt ├── Doxyfile ├── ISAACBaseDir.cmake ├── ISAACBaseDir.cmake.in ├── ISAACConfig.cmake ├── ISAACConfigVersion.cmake ├── ISAACConfigVersion.cmake.in ├── isaac.hpp └── isaac │ ├── isaac_common_kernel.hpp │ ├── isaac_communicator.hpp │ ├── isaac_compositors.hpp │ ├── isaac_controllers.hpp │ ├── isaac_defines.hpp │ ├── isaac_dither_kernel.hpp │ ├── isaac_functor_chain.hpp │ ├── isaac_functors.hpp │ ├── isaac_fusion_extension.hpp │ ├── isaac_helper.hpp │ ├── isaac_iso_kernel.hpp │ ├── isaac_kernel.hpp │ ├── isaac_macros.hpp │ ├── isaac_min_max_kernel.hpp │ ├── isaac_particle_kernel.hpp │ ├── isaac_ssao_kernel.hpp │ ├── isaac_texture.hpp │ ├── isaac_types.hpp │ ├── isaac_version.hpp │ ├── isaac_volume_kernel.hpp │ └── mainpage.dox └── server ├── CMakeLists.txt ├── Doxyfile ├── doc_search.css ├── header.html └── src ├── Broker.cpp ├── Broker.hpp ├── Common.cpp ├── Common.hpp ├── ImageConnector.cpp ├── ImageConnector.hpp ├── InsituConnector.cpp ├── InsituConnector.hpp ├── InsituConnectorMaster.cpp ├── InsituConnectorMaster.hpp ├── MessageAble.cpp ├── MessageAble.hpp ├── MetaDataClient.cpp ├── MetaDataClient.hpp ├── MetaDataConnector.cpp ├── MetaDataConnector.hpp ├── NetworkInterfaces.cpp ├── NetworkInterfaces.hpp ├── RTMPImageConnector.cpp ├── RTMPImageConnector.hpp ├── RTPImageConnector.cpp ├── RTPImageConnector.hpp ├── Runable.cpp ├── Runable.hpp ├── SDLImageConnector.cpp ├── SDLImageConnector.hpp ├── SaveFileImageConnector.cpp ├── SaveFileImageConnector.hpp ├── TCPDataConnector.cpp ├── TCPDataConnector.hpp ├── ThreadList.hpp ├── URIImageConnector.cpp ├── URIImageConnector.hpp ├── WebSocketDataConnector.cpp ├── WebSocketDataConnector.hpp ├── isaac.cpp ├── mainpage.dox └── version.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.rodare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/.rodare.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/FindIceT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/Modules/FindIceT.cmake -------------------------------------------------------------------------------- /Modules/FindJansson.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/Modules/FindJansson.cmake -------------------------------------------------------------------------------- /Modules/FindLibWebSockets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/Modules/FindLibWebSockets.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/README.md -------------------------------------------------------------------------------- /TUNNEL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/TUNNEL.md -------------------------------------------------------------------------------- /client/html/visualisation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/html/visualisation.html -------------------------------------------------------------------------------- /client/js/isaac/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/js/isaac/client.js -------------------------------------------------------------------------------- /client/js/isaac/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/js/isaac/draw.js -------------------------------------------------------------------------------- /client/js/isaac/interface/visualisation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/js/isaac/interface/visualisation.js -------------------------------------------------------------------------------- /client/js/jscolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/js/jscolor.js -------------------------------------------------------------------------------- /client/old/interface.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/old/interface.htm -------------------------------------------------------------------------------- /client/old/interface_pof_foil.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/old/interface_pof_foil.htm -------------------------------------------------------------------------------- /client/old/interface_pof_lwfa.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/old/interface_pof_lwfa.htm -------------------------------------------------------------------------------- /client/old/interface_presentation.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/old/interface_presentation.htm -------------------------------------------------------------------------------- /client/old/interface_vlc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/old/interface_vlc.htm -------------------------------------------------------------------------------- /client/record.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/record.gif -------------------------------------------------------------------------------- /client/record_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/client/record_black.gif -------------------------------------------------------------------------------- /documentation/tunnel_putty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/documentation/tunnel_putty1.png -------------------------------------------------------------------------------- /documentation/tunnel_putty2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/documentation/tunnel_putty2.png -------------------------------------------------------------------------------- /documentation/tunnel_putty3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/documentation/tunnel_putty3.png -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example/example.cpp -------------------------------------------------------------------------------- /example/example_details.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example/example_details.hpp -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_1.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_2.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_3.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_4.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_5.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_6.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_1.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_10_mag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_10_mag.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_11_ele.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_11_ele.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_12_ele.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_12_ele.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_2.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_3.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_4.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_5.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_6.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_7_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_7_cur.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_8_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_8_cur.png -------------------------------------------------------------------------------- /example_renderings/picongpu_kelvin_helmholtz_hd_9_mag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_kelvin_helmholtz_hd_9_mag.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_1.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_2.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_3.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_4.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_5_1.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_5_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_5_2.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_5_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_5_3.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_5_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_5_4.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_5_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_5_5.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_5_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_5_6.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_5_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_5_7.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_5_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_5_8.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_6.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_7.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_8.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_hd_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_hd_1.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_hd_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_hd_2.png -------------------------------------------------------------------------------- /example_renderings/picongpu_wakefield_hd_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_wakefield_hd_3.png -------------------------------------------------------------------------------- /example_renderings/picongpu_weibel_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_weibel_1.png -------------------------------------------------------------------------------- /example_renderings/picongpu_weibel_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_weibel_2.png -------------------------------------------------------------------------------- /example_renderings/picongpu_weibel_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/example_renderings/picongpu_weibel_3.png -------------------------------------------------------------------------------- /helper_scripts/read_rtp_h264_5000.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/helper_scripts/read_rtp_h264_5000.sh -------------------------------------------------------------------------------- /helper_scripts/read_rtp_jpeg_5100.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/helper_scripts/read_rtp_jpeg_5100.sh -------------------------------------------------------------------------------- /isaac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/isaac.png -------------------------------------------------------------------------------- /isaac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/isaac.svg -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/Doxyfile -------------------------------------------------------------------------------- /lib/ISAACBaseDir.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/ISAACBaseDir.cmake -------------------------------------------------------------------------------- /lib/ISAACBaseDir.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/ISAACBaseDir.cmake.in -------------------------------------------------------------------------------- /lib/ISAACConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/ISAACConfig.cmake -------------------------------------------------------------------------------- /lib/ISAACConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/ISAACConfigVersion.cmake -------------------------------------------------------------------------------- /lib/ISAACConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/ISAACConfigVersion.cmake.in -------------------------------------------------------------------------------- /lib/isaac.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_common_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_common_kernel.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_communicator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_communicator.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_compositors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_compositors.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_controllers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_controllers.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_defines.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_dither_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_dither_kernel.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_functor_chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_functor_chain.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_functors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_functors.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_fusion_extension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_fusion_extension.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_helper.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_iso_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_iso_kernel.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_kernel.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_macros.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_min_max_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_min_max_kernel.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_particle_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_particle_kernel.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_ssao_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_ssao_kernel.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_texture.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_types.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_version.hpp -------------------------------------------------------------------------------- /lib/isaac/isaac_volume_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/isaac_volume_kernel.hpp -------------------------------------------------------------------------------- /lib/isaac/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/lib/isaac/mainpage.dox -------------------------------------------------------------------------------- /server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/Doxyfile -------------------------------------------------------------------------------- /server/doc_search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/doc_search.css -------------------------------------------------------------------------------- /server/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/header.html -------------------------------------------------------------------------------- /server/src/Broker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/Broker.cpp -------------------------------------------------------------------------------- /server/src/Broker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/Broker.hpp -------------------------------------------------------------------------------- /server/src/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/Common.cpp -------------------------------------------------------------------------------- /server/src/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/Common.hpp -------------------------------------------------------------------------------- /server/src/ImageConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/ImageConnector.cpp -------------------------------------------------------------------------------- /server/src/ImageConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/ImageConnector.hpp -------------------------------------------------------------------------------- /server/src/InsituConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/InsituConnector.cpp -------------------------------------------------------------------------------- /server/src/InsituConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/InsituConnector.hpp -------------------------------------------------------------------------------- /server/src/InsituConnectorMaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/InsituConnectorMaster.cpp -------------------------------------------------------------------------------- /server/src/InsituConnectorMaster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/InsituConnectorMaster.hpp -------------------------------------------------------------------------------- /server/src/MessageAble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/MessageAble.cpp -------------------------------------------------------------------------------- /server/src/MessageAble.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/MessageAble.hpp -------------------------------------------------------------------------------- /server/src/MetaDataClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/MetaDataClient.cpp -------------------------------------------------------------------------------- /server/src/MetaDataClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/MetaDataClient.hpp -------------------------------------------------------------------------------- /server/src/MetaDataConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/MetaDataConnector.cpp -------------------------------------------------------------------------------- /server/src/MetaDataConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/MetaDataConnector.hpp -------------------------------------------------------------------------------- /server/src/NetworkInterfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/NetworkInterfaces.cpp -------------------------------------------------------------------------------- /server/src/NetworkInterfaces.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/NetworkInterfaces.hpp -------------------------------------------------------------------------------- /server/src/RTMPImageConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/RTMPImageConnector.cpp -------------------------------------------------------------------------------- /server/src/RTMPImageConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/RTMPImageConnector.hpp -------------------------------------------------------------------------------- /server/src/RTPImageConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/RTPImageConnector.cpp -------------------------------------------------------------------------------- /server/src/RTPImageConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/RTPImageConnector.hpp -------------------------------------------------------------------------------- /server/src/Runable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/Runable.cpp -------------------------------------------------------------------------------- /server/src/Runable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/Runable.hpp -------------------------------------------------------------------------------- /server/src/SDLImageConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/SDLImageConnector.cpp -------------------------------------------------------------------------------- /server/src/SDLImageConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/SDLImageConnector.hpp -------------------------------------------------------------------------------- /server/src/SaveFileImageConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/SaveFileImageConnector.cpp -------------------------------------------------------------------------------- /server/src/SaveFileImageConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/SaveFileImageConnector.hpp -------------------------------------------------------------------------------- /server/src/TCPDataConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/TCPDataConnector.cpp -------------------------------------------------------------------------------- /server/src/TCPDataConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/TCPDataConnector.hpp -------------------------------------------------------------------------------- /server/src/ThreadList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/ThreadList.hpp -------------------------------------------------------------------------------- /server/src/URIImageConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/URIImageConnector.cpp -------------------------------------------------------------------------------- /server/src/URIImageConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/URIImageConnector.hpp -------------------------------------------------------------------------------- /server/src/WebSocketDataConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/WebSocketDataConnector.cpp -------------------------------------------------------------------------------- /server/src/WebSocketDataConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/WebSocketDataConnector.hpp -------------------------------------------------------------------------------- /server/src/isaac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/isaac.cpp -------------------------------------------------------------------------------- /server/src/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/mainpage.dox -------------------------------------------------------------------------------- /server/src/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComputationalRadiationPhysics/isaac/HEAD/server/src/version.hpp --------------------------------------------------------------------------------