├── .arcconfig ├── CMakeLists.txt ├── CTestConfig.cmake ├── FindRTToolbox.cmake ├── LICENSE ├── README.md ├── RTToolboxConfig.cmake.in ├── RTToolboxConfigure.h.in ├── apps ├── BioModelCalc │ ├── BioModelCalc.cpp │ ├── BioModelCalcApplicationData.cpp │ ├── BioModelCalcApplicationData.h │ ├── BioModelCalcHelper.cpp │ ├── BioModelCalcHelper.h │ ├── BioModelCmdLineParser.cpp │ ├── BioModelCmdLineParser.h │ ├── CMakeLists.txt │ └── files.cmake ├── CMakeLists.txt ├── DoseAcc │ ├── CMakeLists.txt │ ├── DoseAcc.cpp │ ├── DoseAccApplicationData.cpp │ ├── DoseAccApplicationData.h │ ├── DoseAccCmdLineParser.cpp │ ├── DoseAccCmdLineParser.h │ ├── DoseAccHelper.cpp │ ├── DoseAccHelper.h │ └── files.cmake ├── DoseMap │ ├── CMakeLists.txt │ ├── DoseMap.cpp │ ├── DoseMapApplicationData.cpp │ ├── DoseMapApplicationData.h │ ├── DoseMapCmdLineParser.cpp │ ├── DoseMapCmdLineParser.h │ ├── DoseMapHelper.cpp │ ├── DoseMapHelper.h │ └── files.cmake ├── DoseTool │ ├── CMakeLists.txt │ ├── DoseTool.cpp │ ├── DoseToolApplicationData.cpp │ ├── DoseToolApplicationData.h │ ├── DoseToolCmdLineParser.cpp │ ├── DoseToolCmdLineParser.h │ ├── DoseToolHelper.cpp │ ├── DoseToolHelper.h │ └── files.cmake └── VoxelizerTool │ ├── CMakeLists.txt │ ├── VoxelizerTool.cpp │ ├── VoxelizerToolApplicationData.cpp │ ├── VoxelizerToolApplicationData.h │ ├── VoxelizerToolCmdLineParser.cpp │ ├── VoxelizerToolCmdLineParser.h │ ├── VoxelizerToolHelper.cpp │ ├── VoxelizerToolHelper.h │ └── files.cmake ├── cmake ├── CTestCustom.ctest.in ├── ITKConfig.cmake.in ├── PackageDepends │ ├── RTTB_ArgumentParsingLib_Config.cmake │ ├── RTTB_Boost_Config.cmake │ ├── RTTB_DCMTK_Config.cmake │ ├── RTTB_ITK_Config.cmake │ ├── RTTB_Litmus_Config.cmake │ ├── RTTB_MatchPoint_Config.cmake │ └── RTTB_RTTBData_Config.cmake ├── RemoveTemporaryFiles.cmake.in ├── moduleConf.cmake.in ├── moduleExports.h.in ├── rttbFunctionCheckModuleDependencies.cmake ├── rttbFunctionCreateModule.cmake ├── rttbFunctionOrganizeSources.cmake ├── rttbFunctionUseModules.cmake ├── rttbMacroCreateApplication.cmake ├── rttbMacroCreateApplicationTests.cmake ├── rttbMacroCreateModuleConf.cmake ├── rttbMacroCreateTestModule.cmake └── rttbSampleBuildTest.cmake.in ├── code ├── CMakeLists.txt ├── algorithms │ ├── CMakeLists.txt │ ├── files.cmake │ ├── rttbArithmetic.cpp │ ├── rttbArithmetic.h │ ├── rttbArithmetic.tpp │ ├── rttbBinaryFunctorAccessor.h │ ├── rttbBinaryFunctorAccessor.tpp │ ├── rttbDoseStatistics.cpp │ ├── rttbDoseStatistics.h │ ├── rttbDoseStatisticsCalculator.cpp │ ├── rttbDoseStatisticsCalculator.h │ ├── rttbDoseToVolumeMeasureCollection.cpp │ ├── rttbDoseToVolumeMeasureCollection.h │ ├── rttbDoseToVolumeMeasureCollectionCalculator.cpp │ ├── rttbDoseToVolumeMeasureCollectionCalculator.h │ ├── rttbDxVolumeToDoseMeasureCollectionCalculator.cpp │ ├── rttbDxVolumeToDoseMeasureCollectionCalculator.h │ ├── rttbMOCxVolumeToDoseMeasureCollectionCalculator.cpp │ ├── rttbMOCxVolumeToDoseMeasureCollectionCalculator.h │ ├── rttbMOHxVolumeToDoseMeasureCollectionCalculator.cpp │ ├── rttbMOHxVolumeToDoseMeasureCollectionCalculator.h │ ├── rttbMaxOHxVolumeToDoseMeasureCollectionCalculator.cpp │ ├── rttbMaxOHxVolumeToDoseMeasureCollectionCalculator.h │ ├── rttbMeasureCollection.cpp │ ├── rttbMeasureCollection.h │ ├── rttbMinOCxVolumeToDoseMeasureCollectionCalculator.cpp │ ├── rttbMinOCxVolumeToDoseMeasureCollectionCalculator.h │ ├── rttbVolumeToDoseMeasureCollection.cpp │ ├── rttbVolumeToDoseMeasureCollection.h │ ├── rttbVolumeToDoseMeasureCollectionCalculator.cpp │ ├── rttbVolumeToDoseMeasureCollectionCalculator.h │ ├── rttbVxDoseToVolumeMeasureCollectionCalculator.cpp │ └── rttbVxDoseToVolumeMeasureCollectionCalculator.h ├── core │ ├── CMakeLists.txt │ ├── files.cmake │ ├── rttbAccessorInterface.h │ ├── rttbAccessorWithGeoInfoBase.cpp │ ├── rttbAccessorWithGeoInfoBase.h │ ├── rttbBaseType.h │ ├── rttbCommon.h │ ├── rttbDVH.cpp │ ├── rttbDVH.h │ ├── rttbDVHCalculator.cpp │ ├── rttbDVHCalculator.h │ ├── rttbDVHGeneratorInterface.h │ ├── rttbDVHSet.cpp │ ├── rttbDVHSet.h │ ├── rttbDataNotAvailableException.h │ ├── rttbDoseAccessorGeneratorBase.h │ ├── rttbDoseAccessorGeneratorInterface.h │ ├── rttbDoseAccessorInterface.h │ ├── rttbDoseIteratorInterface.cpp │ ├── rttbDoseIteratorInterface.h │ ├── rttbException.h │ ├── rttbExceptionMacros.h │ ├── rttbGenericDoseIterator.cpp │ ├── rttbGenericDoseIterator.h │ ├── rttbGenericMaskedDoseIterator.cpp │ ├── rttbGenericMaskedDoseIterator.h │ ├── rttbGeometricInfo.cpp │ ├── rttbGeometricInfo.h │ ├── rttbIndexConversionInterface.h │ ├── rttbIndexOutOfBoundsException.h │ ├── rttbInvalidDoseException.h │ ├── rttbInvalidParameterException.h │ ├── rttbMappingOutsideOfImageException.h │ ├── rttbMaskAccessorGeneratorBase.h │ ├── rttbMaskAccessorGeneratorInterface.h │ ├── rttbMaskAccessorInterface.h │ ├── rttbMaskAccessorProcessorBase.h │ ├── rttbMaskAccessorProcessorInterface.h │ ├── rttbMaskVoxel.cpp │ ├── rttbMaskVoxel.h │ ├── rttbMaskedDoseIteratorInterface.cpp │ ├── rttbMaskedDoseIteratorInterface.h │ ├── rttbMutableDoseAccessorInterface.cpp │ ├── rttbMutableDoseAccessorInterface.h │ ├── rttbMutableMaskAccessorInterface.cpp │ ├── rttbMutableMaskAccessorInterface.h │ ├── rttbNullPointerException.h │ ├── rttbPaddingException.h │ ├── rttbStrVectorStructureSetGenerator.cpp │ ├── rttbStrVectorStructureSetGenerator.h │ ├── rttbStructure.cpp │ ├── rttbStructure.h │ ├── rttbStructureSet.cpp │ ├── rttbStructureSet.h │ ├── rttbStructureSetGeneratorInterface.h │ ├── rttbUtils.cpp │ └── rttbUtils.h ├── indices │ ├── CMakeLists.txt │ ├── files.cmake │ ├── rttbConformalIndex.cpp │ ├── rttbConformalIndex.h │ ├── rttbConformationNumber.cpp │ ├── rttbConformationNumber.h │ ├── rttbConformityIndex.cpp │ ├── rttbConformityIndex.h │ ├── rttbCoverageIndex.cpp │ ├── rttbCoverageIndex.h │ ├── rttbDoseIndex.cpp │ ├── rttbDoseIndex.h │ ├── rttbDvhBasedDoseIndex.cpp │ ├── rttbDvhBasedDoseIndex.h │ ├── rttbGammaIndex.cpp │ ├── rttbGammaIndex.h │ ├── rttbHomogeneityIndex.cpp │ ├── rttbHomogeneityIndex.h │ ├── rttbSpatialDoseIndex.cpp │ └── rttbSpatialDoseIndex.h ├── interpolation │ ├── CMakeLists.txt │ ├── ITKTransformation │ │ ├── CMakeLists.txt │ │ ├── files.cmake │ │ ├── rttbITKTransformation.cpp │ │ └── rttbITKTransformation.h │ ├── MatchPointTransformation │ │ ├── CMakeLists.txt │ │ ├── files.cmake │ │ ├── rttbMatchPointTransformation.cpp │ │ └── rttbMatchPointTransformation.h │ ├── files.cmake │ ├── rttbInterpolationBase.cpp │ ├── rttbInterpolationBase.h │ ├── rttbLinearInterpolation.cpp │ ├── rttbLinearInterpolation.h │ ├── rttbMappableDoseAccessorInterface.h │ ├── rttbNearestNeighborInterpolation.cpp │ ├── rttbNearestNeighborInterpolation.h │ ├── rttbRosuMappableDoseAccessor.cpp │ ├── rttbRosuMappableDoseAccessor.h │ ├── rttbSimpleMappableDoseAccessor.cpp │ ├── rttbSimpleMappableDoseAccessor.h │ └── rttbTransformationInterface.h ├── io │ ├── CMakeLists.txt │ ├── dicom │ │ ├── CMakeLists.txt │ │ ├── files.cmake │ │ ├── rttbDVHDicomFileReader.cpp │ │ ├── rttbDVHDicomFileReader.h │ │ ├── rttbDcmrtException.h │ │ ├── rttbDicomDoseAccessor.cpp │ │ ├── rttbDicomDoseAccessor.h │ │ ├── rttbDicomFileDoseAccessorGenerator.cpp │ │ ├── rttbDicomFileDoseAccessorGenerator.h │ │ ├── rttbDicomFileDoseAccessorWriter.cpp │ │ ├── rttbDicomFileDoseAccessorWriter.h │ │ ├── rttbDicomFileReaderHelper.cpp │ │ ├── rttbDicomFileReaderHelper.h │ │ ├── rttbDicomFileStructureSetGenerator.cpp │ │ ├── rttbDicomFileStructureSetGenerator.h │ │ ├── rttbDicomIODDoseAccessorGenerator.cpp │ │ ├── rttbDicomIODDoseAccessorGenerator.h │ │ ├── rttbDicomIODStructureSetGenerator.cpp │ │ └── rttbDicomIODStructureSetGenerator.h │ ├── helax │ │ ├── CMakeLists.txt │ │ ├── files.cmake │ │ ├── rttbDicomHelaxDoseAccessor.cpp │ │ ├── rttbDicomHelaxDoseAccessor.h │ │ ├── rttbDicomHelaxFileDoseAccessorGenerator.cpp │ │ ├── rttbDicomHelaxFileDoseAccessorGenerator.h │ │ ├── rttbDicomHelaxIODVecDoseAccessorGenerator.cpp │ │ ├── rttbDicomHelaxIODVecDoseAccessorGenerator.h │ │ └── rttbDicomIODDoseAccessorGenerator.cpp │ ├── itk │ │ ├── CMakeLists.txt │ │ ├── files.cmake │ │ ├── itkDoseAccessorImageFilter.cpp │ │ ├── itkDoseAccessorImageFilter.h │ │ ├── itkMaskAccessorImageSource.cpp │ │ ├── itkMaskAccessorImageSource.h │ │ ├── rttbDoseAccessorConversionSettingInterface.h │ │ ├── rttbDoseAccessorProcessorBase.h │ │ ├── rttbDoseAccessorProcessorInterface.h │ │ ├── rttbFileDispatch.cpp │ │ ├── rttbFileDispatch.h │ │ ├── rttbGenericImageReader.cpp │ │ ├── rttbGenericImageReader.h │ │ ├── rttbITKException.h │ │ ├── rttbITKIOHelper.cpp │ │ ├── rttbITKIOHelper.h │ │ ├── rttbITKIOHelper.tpp │ │ ├── rttbITKImageAccessor.cpp │ │ ├── rttbITKImageAccessor.h │ │ ├── rttbITKImageAccessorConverter.cpp │ │ ├── rttbITKImageAccessorConverter.h │ │ ├── rttbITKImageAccessorGenerator.cpp │ │ ├── rttbITKImageAccessorGenerator.h │ │ ├── rttbITKImageFileAccessorGenerator.cpp │ │ ├── rttbITKImageFileAccessorGenerator.h │ │ ├── rttbITKImageFileMaskAccessorGenerator.cpp │ │ ├── rttbITKImageFileMaskAccessorGenerator.h │ │ ├── rttbITKImageMaskAccessor.cpp │ │ ├── rttbITKImageMaskAccessor.h │ │ ├── rttbITKImageMaskAccessorConverter.cpp │ │ ├── rttbITKImageMaskAccessorConverter.h │ │ ├── rttbITKImageMaskAccessorGenerator.cpp │ │ ├── rttbITKImageMaskAccessorGenerator.h │ │ ├── rttbImageReader.h │ │ ├── rttbImageReader.tpp │ │ ├── rttbImageWriter.cpp │ │ └── rttbImageWriter.h │ ├── models │ │ ├── CMakeLists.txt │ │ ├── files.cmake │ │ ├── rttbModelXMLWriter.cpp │ │ └── rttbModelXMLWriter.h │ ├── other │ │ ├── CMakeLists.txt │ │ ├── files.cmake │ │ ├── rttbDVHXMLFileReader.cpp │ │ ├── rttbDVHXMLFileReader.h │ │ ├── rttbDVHXMLFileWriter.cpp │ │ ├── rttbDVHXMLFileWriter.h │ │ ├── rttbDoseStatisticsXMLReader.cpp │ │ ├── rttbDoseStatisticsXMLReader.h │ │ ├── rttbDoseStatisticsXMLWriter.cpp │ │ └── rttbDoseStatisticsXMLWriter.h │ ├── rttbDVHWriterInterface.h │ └── utils │ │ ├── CMakeLists.txt │ │ ├── files.cmake │ │ ├── rttbDoseLoader.cpp │ │ ├── rttbDoseLoader.h │ │ ├── rttbStructLoader.cpp │ │ └── rttbStructLoader.h ├── masks │ ├── CMakeLists.txt │ ├── files.cmake │ ├── rttbBoostMask.cpp │ ├── rttbBoostMask.h │ ├── rttbBoostMaskAccessor.cpp │ ├── rttbBoostMaskAccessor.h │ ├── rttbBoostMaskGenerateMaskVoxelListThread.cpp │ ├── rttbBoostMaskGenerateMaskVoxelListThread.h │ ├── rttbBoostMaskVoxelizationThread.cpp │ ├── rttbBoostMaskVoxelizationThread.h │ ├── rttbGenericMutableMaskAccessor.cpp │ └── rttbGenericMutableMaskAccessor.h ├── models │ ├── CMakeLists.txt │ ├── files.cmake │ ├── rttbBaseTypeModels.h │ ├── rttbBioModel.cpp │ ├── rttbBioModel.h │ ├── rttbBioModelCurve.cpp │ ├── rttbBioModelCurve.h │ ├── rttbBioModelScatterPlots.cpp │ ├── rttbBioModelScatterPlots.h │ ├── rttbDoseBasedModels.cpp │ ├── rttbDoseBasedModels.h │ ├── rttbDvhBasedModels.cpp │ ├── rttbDvhBasedModels.h │ ├── rttbIntegration.cpp │ ├── rttbIntegration.h │ ├── rttbLQModelAccessor.cpp │ ├── rttbLQModelAccessor.h │ ├── rttbNTCPLKBModel.cpp │ ├── rttbNTCPLKBModel.h │ ├── rttbNTCPModel.h │ ├── rttbNTCPRSModel.cpp │ ├── rttbNTCPRSModel.h │ ├── rttbTCPLQModel.cpp │ ├── rttbTCPLQModel.h │ ├── rttbTCPModel.cpp │ └── rttbTCPModel.h └── testhelper │ ├── CMakeLists.txt │ ├── CreateTestStructure.cpp │ ├── CreateTestStructure.h │ ├── DummyDVHGenerator.cpp │ ├── DummyDVHGenerator.h │ ├── DummyDoseAccessor.cpp │ ├── DummyDoseAccessor.h │ ├── DummyInhomogeneousDoseAccessor.cpp │ ├── DummyInhomogeneousDoseAccessor.h │ ├── DummyMaskAccessor.cpp │ ├── DummyMaskAccessor.h │ ├── DummyMutableDoseAccessor.cpp │ ├── DummyMutableDoseAccessor.h │ ├── DummyStructure.cpp │ ├── DummyStructure.h │ └── files.cmake ├── documentation ├── CMakeLists.txt ├── RTToolbox_build.txt ├── RTToolbox_changelog.txt ├── RTToolbox_contributors.txt ├── RTToolbox_examples.txt ├── RTToolbox_info.txt ├── RTToolbox_structure.txt ├── doxygen.config.in └── images │ ├── Homepage-RTToolbox.png │ ├── dkfz.png │ └── icon.png ├── rttbGenerateRTToolboxConfig.cmake ├── testing ├── CMakeLists.txt ├── algorithms │ ├── ArithmeticTest.cpp │ ├── BinaryFunctorAccessorTest.cpp │ ├── CMakeLists.txt │ ├── DoseStatisticsCalculatorTest.cpp │ ├── DoseStatisticsTest.cpp │ ├── files.cmake │ └── rttbAlgorithmsTests.cpp ├── apps │ ├── BioModelCalc │ │ ├── BioModelCalcInvalidParametersTest.cpp │ │ ├── BioModelCalcParameterMapsTest.cpp │ │ ├── BioModelCalcSimpleTest.cpp │ │ ├── BioModelCalcTests.cpp │ │ ├── CMakeLists.txt │ │ └── files.cmake │ ├── CMakeLists.txt │ ├── DoseAcc │ │ ├── CMakeLists.txt │ │ ├── DoseAccInvalidParametersTest.cpp │ │ ├── DoseAccNeutralWeightTest.cpp │ │ ├── DoseAccSimpleTest.cpp │ │ ├── DoseAccTests.cpp │ │ └── files.cmake │ ├── DoseMap │ │ ├── CMakeLists.txt │ │ ├── DoseMapInvalidParametersTest.cpp │ │ ├── DoseMapSimpleTest.cpp │ │ ├── DoseMapTests.cpp │ │ └── files.cmake │ ├── DoseTool │ │ ├── CMakeLists.txt │ │ ├── DoseToolDVHTest.cpp │ │ ├── DoseToolDicomDoseTest.cpp │ │ ├── DoseToolITKDoseTest.cpp │ │ ├── DoseToolInvalidParametersTest.cpp │ │ ├── DoseToolRegexTest.cpp │ │ ├── DoseToolTests.cpp │ │ └── files.cmake │ └── VoxelizerTool │ │ ├── CMakeLists.txt │ │ ├── VoxelizerToolDifferentCommandsTest.cpp │ │ ├── VoxelizerToolIncorrectCommandsTest.cpp │ │ ├── VoxelizerToolTests.cpp │ │ ├── VoxelizerToolVoxelValueTest.cpp │ │ ├── VoxelizerToolVoxelizerAllStructsTest.cpp │ │ ├── VoxelizerToolVoxelizerStructTest.cpp │ │ └── files.cmake ├── core │ ├── BaseTypeTest.cpp │ ├── CMakeLists.txt │ ├── DVHCalculatorTest.cpp │ ├── DVHSetTest.cpp │ ├── DVHTest.cpp │ ├── GenericDoseIteratorTest.cpp │ ├── GenericMaskedDoseIteratorTest.cpp │ ├── GeometricInfoTest.cpp │ ├── MaskVoxelTest.cpp │ ├── StrVectorStructureSetGeneratorTest.cpp │ ├── StructureSetTest.cpp │ ├── StructureTest.cpp │ ├── files.cmake │ └── rttbCoreTests.cpp ├── examples │ ├── CMakeLists.txt │ ├── RTBioModelExampleTest.cpp │ ├── RTBioModelScatterPlotExampleTest.cpp │ ├── RTDVHTest.cpp │ ├── RTDoseStatisticsDicomTest.cpp │ ├── files.cmake │ └── rttbTestExamples.cpp ├── indices │ ├── CMakeLists.txt │ ├── ConformalIndexTest.cpp │ ├── ConformationNumberTest.cpp │ ├── ConformityIndexTest.cpp │ ├── CoverageIndexTest.cpp │ ├── GammaIndexTest.cpp │ ├── HomogeneityIndexTest.cpp │ ├── files.cmake │ └── rttbIndicesTests.cpp ├── interpolation │ ├── CMakeLists.txt │ ├── DummyTransformation.cpp │ ├── DummyTransformation.h │ ├── InterpolationITKTransformation │ │ ├── CMakeLists.txt │ │ ├── SimpleMappableDoseAccessorWithITKTest.cpp │ │ ├── files.cmake │ │ └── rttbInterpolationITKTransformationTests.cpp │ ├── InterpolationMatchPointTransformation │ │ ├── CMakeLists.txt │ │ ├── SimpleMappableDoseAccessorWithMatchPointTest.cpp │ │ ├── files.cmake │ │ ├── registrationHelper.cpp │ │ ├── registrationHelper.h │ │ ├── registrationTest.h │ │ ├── rttbInterpolationMatchPointTests.cpp │ │ ├── simpleRegistrationWorkflow.cpp │ │ └── simpleRegistrationWorkflow.h │ ├── InterpolationTest.cpp │ ├── RosuMappableDoseAccessorTest.cpp │ ├── SimpleMappableDoseAccessorTest.cpp │ ├── files.cmake │ └── rttbInterpolationTests.cpp ├── io │ ├── CMakeLists.txt │ ├── dicom │ │ ├── CMakeLists.txt │ │ ├── DicomDoseAccessorConverterTest.cpp │ │ ├── DicomDoseAccessorGeneratorTest.cpp │ │ ├── DicomFileReaderHelperTest.cpp │ │ ├── DicomIOTest.cpp │ │ ├── DicomStructureSetGeneratorTest.cpp │ │ ├── files.cmake │ │ └── rttbIOTests.cpp │ ├── helax │ │ ├── CMakeLists.txt │ │ ├── DicomHelaxDoseAccessorGeneratorTest.cpp │ │ ├── DicomHelaxIOTest.cpp │ │ ├── files.cmake │ │ └── rttbHelaxIOTests.cpp │ ├── itk │ │ ├── CMakeLists.txt │ │ ├── ITKBioModelAccessorConverterTest.cpp │ │ ├── ITKDoseAccessorConverterTest.cpp │ │ ├── ITKDoseAccessorGeneratorTest.cpp │ │ ├── ITKIOTest.cpp │ │ ├── ITKMaskAccessorConverterTest.cpp │ │ ├── ITKMaskAccessorGeneratorTest.cpp │ │ ├── files.cmake │ │ └── rttbITKIOTests.cpp │ ├── models │ │ ├── CMakeLists.txt │ │ ├── ModelsIOTest.cpp │ │ ├── files.cmake │ │ └── rttbModelsIOTests.cpp │ ├── other │ │ ├── CMakeLists.txt │ │ ├── CompareDVH.cpp │ │ ├── CompareDVH.h │ │ ├── CompareDoseStatistic.cpp │ │ ├── CompareDoseStatistic.h │ │ ├── DVHXMLIOTest.cpp │ │ ├── DoseStatisticsIOTest.cpp │ │ ├── OtherIOTest.cpp │ │ ├── files.cmake │ │ └── rttbIOTests.cpp │ ├── rttbDoseAccessorTester.cpp │ └── rttbDoseAccessorTester.h ├── masks │ ├── BoostMaskTest.cpp │ ├── CMakeLists.txt │ ├── files.cmake │ └── rttbBoostMaskTests.cpp ├── models │ ├── BioModelScatterPlotTest.cpp │ ├── BioModelTest.cpp │ ├── CMakeLists.txt │ ├── DummyModel.cpp │ ├── DummyModel.h │ ├── DvhBasedModelsTest.cpp │ ├── LQModelAccessorTest.cpp │ ├── files.cmake │ ├── rttbModelsTest.cpp │ ├── rttbScatterTester.cpp │ └── rttbScatterTester.h └── validation │ ├── CMakeLists.txt │ ├── VoxelizationDVHComparisonTest.cpp │ ├── VoxelizationValidationTest.cpp │ ├── files.cmake │ └── rttbValidationTests.cpp └── utilities ├── ArgumentParsingLib ├── ArgumentParsingLib.tar.gz ├── ArgumentParsingLibConfig.cmake.in ├── CMakeLists.txt ├── main │ ├── CMakeLists.txt │ ├── CmdLineParserBase.cpp │ ├── CmdLineParserBase.h │ ├── CmdLineParserBase.tpp │ ├── XMLGenerator.cpp │ ├── XMLGenerator.h │ ├── parseXML.cpp │ └── parseXML.h └── test │ ├── CMakeLists.txt │ ├── CmdLineParserBaseTest.cpp │ ├── DownloadProject.CMakeLists.cmake.in │ ├── DownloadProject.cmake │ ├── XMLGeneratorTest.cpp │ ├── data │ ├── XMLBoolean.xml │ ├── XMLComplex.xml │ ├── XMLDouble.xml │ ├── XMLInput.xml │ ├── XMLInteger.xml │ ├── XMLOutput.xml │ ├── XMLString.xml │ ├── XMLStringEnum.xml │ ├── XMLStringVector.xml │ ├── empty.xml │ ├── invalid.xml │ ├── notwellformed1.xml │ ├── notwellformed2.xml │ ├── notwellformed3.xml │ ├── sample.cfg │ ├── sample.xml │ ├── simple.xml │ └── working.xml │ └── parseXMLTest.cpp └── Litmus └── Litmus.tar.gz /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/.arcconfig -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /FindRTToolbox.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/FindRTToolbox.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/README.md -------------------------------------------------------------------------------- /RTToolboxConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/RTToolboxConfig.cmake.in -------------------------------------------------------------------------------- /RTToolboxConfigure.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/RTToolboxConfigure.h.in -------------------------------------------------------------------------------- /apps/BioModelCalc/BioModelCalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/BioModelCalc/BioModelCalc.cpp -------------------------------------------------------------------------------- /apps/BioModelCalc/BioModelCalcApplicationData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/BioModelCalc/BioModelCalcApplicationData.cpp -------------------------------------------------------------------------------- /apps/BioModelCalc/BioModelCalcApplicationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/BioModelCalc/BioModelCalcApplicationData.h -------------------------------------------------------------------------------- /apps/BioModelCalc/BioModelCalcHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/BioModelCalc/BioModelCalcHelper.cpp -------------------------------------------------------------------------------- /apps/BioModelCalc/BioModelCalcHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/BioModelCalc/BioModelCalcHelper.h -------------------------------------------------------------------------------- /apps/BioModelCalc/BioModelCmdLineParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/BioModelCalc/BioModelCmdLineParser.cpp -------------------------------------------------------------------------------- /apps/BioModelCalc/BioModelCmdLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/BioModelCalc/BioModelCmdLineParser.h -------------------------------------------------------------------------------- /apps/BioModelCalc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/BioModelCalc/CMakeLists.txt -------------------------------------------------------------------------------- /apps/BioModelCalc/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/BioModelCalc/files.cmake -------------------------------------------------------------------------------- /apps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/CMakeLists.txt -------------------------------------------------------------------------------- /apps/DoseAcc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseAcc/CMakeLists.txt -------------------------------------------------------------------------------- /apps/DoseAcc/DoseAcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseAcc/DoseAcc.cpp -------------------------------------------------------------------------------- /apps/DoseAcc/DoseAccApplicationData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseAcc/DoseAccApplicationData.cpp -------------------------------------------------------------------------------- /apps/DoseAcc/DoseAccApplicationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseAcc/DoseAccApplicationData.h -------------------------------------------------------------------------------- /apps/DoseAcc/DoseAccCmdLineParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseAcc/DoseAccCmdLineParser.cpp -------------------------------------------------------------------------------- /apps/DoseAcc/DoseAccCmdLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseAcc/DoseAccCmdLineParser.h -------------------------------------------------------------------------------- /apps/DoseAcc/DoseAccHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseAcc/DoseAccHelper.cpp -------------------------------------------------------------------------------- /apps/DoseAcc/DoseAccHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseAcc/DoseAccHelper.h -------------------------------------------------------------------------------- /apps/DoseAcc/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseAcc/files.cmake -------------------------------------------------------------------------------- /apps/DoseMap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseMap/CMakeLists.txt -------------------------------------------------------------------------------- /apps/DoseMap/DoseMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseMap/DoseMap.cpp -------------------------------------------------------------------------------- /apps/DoseMap/DoseMapApplicationData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseMap/DoseMapApplicationData.cpp -------------------------------------------------------------------------------- /apps/DoseMap/DoseMapApplicationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseMap/DoseMapApplicationData.h -------------------------------------------------------------------------------- /apps/DoseMap/DoseMapCmdLineParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseMap/DoseMapCmdLineParser.cpp -------------------------------------------------------------------------------- /apps/DoseMap/DoseMapCmdLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseMap/DoseMapCmdLineParser.h -------------------------------------------------------------------------------- /apps/DoseMap/DoseMapHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseMap/DoseMapHelper.cpp -------------------------------------------------------------------------------- /apps/DoseMap/DoseMapHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseMap/DoseMapHelper.h -------------------------------------------------------------------------------- /apps/DoseMap/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseMap/files.cmake -------------------------------------------------------------------------------- /apps/DoseTool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseTool/CMakeLists.txt -------------------------------------------------------------------------------- /apps/DoseTool/DoseTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseTool/DoseTool.cpp -------------------------------------------------------------------------------- /apps/DoseTool/DoseToolApplicationData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseTool/DoseToolApplicationData.cpp -------------------------------------------------------------------------------- /apps/DoseTool/DoseToolApplicationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseTool/DoseToolApplicationData.h -------------------------------------------------------------------------------- /apps/DoseTool/DoseToolCmdLineParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseTool/DoseToolCmdLineParser.cpp -------------------------------------------------------------------------------- /apps/DoseTool/DoseToolCmdLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseTool/DoseToolCmdLineParser.h -------------------------------------------------------------------------------- /apps/DoseTool/DoseToolHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseTool/DoseToolHelper.cpp -------------------------------------------------------------------------------- /apps/DoseTool/DoseToolHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseTool/DoseToolHelper.h -------------------------------------------------------------------------------- /apps/DoseTool/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/DoseTool/files.cmake -------------------------------------------------------------------------------- /apps/VoxelizerTool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/VoxelizerTool/CMakeLists.txt -------------------------------------------------------------------------------- /apps/VoxelizerTool/VoxelizerTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/VoxelizerTool/VoxelizerTool.cpp -------------------------------------------------------------------------------- /apps/VoxelizerTool/VoxelizerToolApplicationData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/VoxelizerTool/VoxelizerToolApplicationData.cpp -------------------------------------------------------------------------------- /apps/VoxelizerTool/VoxelizerToolApplicationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/VoxelizerTool/VoxelizerToolApplicationData.h -------------------------------------------------------------------------------- /apps/VoxelizerTool/VoxelizerToolCmdLineParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/VoxelizerTool/VoxelizerToolCmdLineParser.cpp -------------------------------------------------------------------------------- /apps/VoxelizerTool/VoxelizerToolCmdLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/VoxelizerTool/VoxelizerToolCmdLineParser.h -------------------------------------------------------------------------------- /apps/VoxelizerTool/VoxelizerToolHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/VoxelizerTool/VoxelizerToolHelper.cpp -------------------------------------------------------------------------------- /apps/VoxelizerTool/VoxelizerToolHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/VoxelizerTool/VoxelizerToolHelper.h -------------------------------------------------------------------------------- /apps/VoxelizerTool/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/apps/VoxelizerTool/files.cmake -------------------------------------------------------------------------------- /cmake/CTestCustom.ctest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/CTestCustom.ctest.in -------------------------------------------------------------------------------- /cmake/ITKConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/ITKConfig.cmake.in -------------------------------------------------------------------------------- /cmake/PackageDepends/RTTB_ArgumentParsingLib_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/PackageDepends/RTTB_ArgumentParsingLib_Config.cmake -------------------------------------------------------------------------------- /cmake/PackageDepends/RTTB_Boost_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/PackageDepends/RTTB_Boost_Config.cmake -------------------------------------------------------------------------------- /cmake/PackageDepends/RTTB_DCMTK_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/PackageDepends/RTTB_DCMTK_Config.cmake -------------------------------------------------------------------------------- /cmake/PackageDepends/RTTB_ITK_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/PackageDepends/RTTB_ITK_Config.cmake -------------------------------------------------------------------------------- /cmake/PackageDepends/RTTB_Litmus_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/PackageDepends/RTTB_Litmus_Config.cmake -------------------------------------------------------------------------------- /cmake/PackageDepends/RTTB_MatchPoint_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/PackageDepends/RTTB_MatchPoint_Config.cmake -------------------------------------------------------------------------------- /cmake/PackageDepends/RTTB_RTTBData_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/PackageDepends/RTTB_RTTBData_Config.cmake -------------------------------------------------------------------------------- /cmake/RemoveTemporaryFiles.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/RemoveTemporaryFiles.cmake.in -------------------------------------------------------------------------------- /cmake/moduleConf.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/moduleConf.cmake.in -------------------------------------------------------------------------------- /cmake/moduleExports.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/moduleExports.h.in -------------------------------------------------------------------------------- /cmake/rttbFunctionCheckModuleDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/rttbFunctionCheckModuleDependencies.cmake -------------------------------------------------------------------------------- /cmake/rttbFunctionCreateModule.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/rttbFunctionCreateModule.cmake -------------------------------------------------------------------------------- /cmake/rttbFunctionOrganizeSources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/rttbFunctionOrganizeSources.cmake -------------------------------------------------------------------------------- /cmake/rttbFunctionUseModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/rttbFunctionUseModules.cmake -------------------------------------------------------------------------------- /cmake/rttbMacroCreateApplication.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/rttbMacroCreateApplication.cmake -------------------------------------------------------------------------------- /cmake/rttbMacroCreateApplicationTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/rttbMacroCreateApplicationTests.cmake -------------------------------------------------------------------------------- /cmake/rttbMacroCreateModuleConf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/rttbMacroCreateModuleConf.cmake -------------------------------------------------------------------------------- /cmake/rttbMacroCreateTestModule.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/rttbMacroCreateTestModule.cmake -------------------------------------------------------------------------------- /cmake/rttbSampleBuildTest.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/cmake/rttbSampleBuildTest.cmake.in -------------------------------------------------------------------------------- /code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/CMakeLists.txt -------------------------------------------------------------------------------- /code/algorithms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/CMakeLists.txt -------------------------------------------------------------------------------- /code/algorithms/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/files.cmake -------------------------------------------------------------------------------- /code/algorithms/rttbArithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbArithmetic.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbArithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbArithmetic.h -------------------------------------------------------------------------------- /code/algorithms/rttbArithmetic.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbArithmetic.tpp -------------------------------------------------------------------------------- /code/algorithms/rttbBinaryFunctorAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbBinaryFunctorAccessor.h -------------------------------------------------------------------------------- /code/algorithms/rttbBinaryFunctorAccessor.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbBinaryFunctorAccessor.tpp -------------------------------------------------------------------------------- /code/algorithms/rttbDoseStatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbDoseStatistics.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbDoseStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbDoseStatistics.h -------------------------------------------------------------------------------- /code/algorithms/rttbDoseStatisticsCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbDoseStatisticsCalculator.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbDoseStatisticsCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbDoseStatisticsCalculator.h -------------------------------------------------------------------------------- /code/algorithms/rttbDoseToVolumeMeasureCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbDoseToVolumeMeasureCollection.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbDoseToVolumeMeasureCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbDoseToVolumeMeasureCollection.h -------------------------------------------------------------------------------- /code/algorithms/rttbDoseToVolumeMeasureCollectionCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbDoseToVolumeMeasureCollectionCalculator.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbDoseToVolumeMeasureCollectionCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbDoseToVolumeMeasureCollectionCalculator.h -------------------------------------------------------------------------------- /code/algorithms/rttbDxVolumeToDoseMeasureCollectionCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbDxVolumeToDoseMeasureCollectionCalculator.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbDxVolumeToDoseMeasureCollectionCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbDxVolumeToDoseMeasureCollectionCalculator.h -------------------------------------------------------------------------------- /code/algorithms/rttbMOCxVolumeToDoseMeasureCollectionCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbMOCxVolumeToDoseMeasureCollectionCalculator.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbMOCxVolumeToDoseMeasureCollectionCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbMOCxVolumeToDoseMeasureCollectionCalculator.h -------------------------------------------------------------------------------- /code/algorithms/rttbMOHxVolumeToDoseMeasureCollectionCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbMOHxVolumeToDoseMeasureCollectionCalculator.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbMOHxVolumeToDoseMeasureCollectionCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbMOHxVolumeToDoseMeasureCollectionCalculator.h -------------------------------------------------------------------------------- /code/algorithms/rttbMaxOHxVolumeToDoseMeasureCollectionCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbMaxOHxVolumeToDoseMeasureCollectionCalculator.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbMaxOHxVolumeToDoseMeasureCollectionCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbMaxOHxVolumeToDoseMeasureCollectionCalculator.h -------------------------------------------------------------------------------- /code/algorithms/rttbMeasureCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbMeasureCollection.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbMeasureCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbMeasureCollection.h -------------------------------------------------------------------------------- /code/algorithms/rttbMinOCxVolumeToDoseMeasureCollectionCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbMinOCxVolumeToDoseMeasureCollectionCalculator.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbMinOCxVolumeToDoseMeasureCollectionCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbMinOCxVolumeToDoseMeasureCollectionCalculator.h -------------------------------------------------------------------------------- /code/algorithms/rttbVolumeToDoseMeasureCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbVolumeToDoseMeasureCollection.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbVolumeToDoseMeasureCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbVolumeToDoseMeasureCollection.h -------------------------------------------------------------------------------- /code/algorithms/rttbVolumeToDoseMeasureCollectionCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbVolumeToDoseMeasureCollectionCalculator.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbVolumeToDoseMeasureCollectionCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbVolumeToDoseMeasureCollectionCalculator.h -------------------------------------------------------------------------------- /code/algorithms/rttbVxDoseToVolumeMeasureCollectionCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbVxDoseToVolumeMeasureCollectionCalculator.cpp -------------------------------------------------------------------------------- /code/algorithms/rttbVxDoseToVolumeMeasureCollectionCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/algorithms/rttbVxDoseToVolumeMeasureCollectionCalculator.h -------------------------------------------------------------------------------- /code/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/CMakeLists.txt -------------------------------------------------------------------------------- /code/core/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/files.cmake -------------------------------------------------------------------------------- /code/core/rttbAccessorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbAccessorInterface.h -------------------------------------------------------------------------------- /code/core/rttbAccessorWithGeoInfoBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbAccessorWithGeoInfoBase.cpp -------------------------------------------------------------------------------- /code/core/rttbAccessorWithGeoInfoBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbAccessorWithGeoInfoBase.h -------------------------------------------------------------------------------- /code/core/rttbBaseType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbBaseType.h -------------------------------------------------------------------------------- /code/core/rttbCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbCommon.h -------------------------------------------------------------------------------- /code/core/rttbDVH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDVH.cpp -------------------------------------------------------------------------------- /code/core/rttbDVH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDVH.h -------------------------------------------------------------------------------- /code/core/rttbDVHCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDVHCalculator.cpp -------------------------------------------------------------------------------- /code/core/rttbDVHCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDVHCalculator.h -------------------------------------------------------------------------------- /code/core/rttbDVHGeneratorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDVHGeneratorInterface.h -------------------------------------------------------------------------------- /code/core/rttbDVHSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDVHSet.cpp -------------------------------------------------------------------------------- /code/core/rttbDVHSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDVHSet.h -------------------------------------------------------------------------------- /code/core/rttbDataNotAvailableException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDataNotAvailableException.h -------------------------------------------------------------------------------- /code/core/rttbDoseAccessorGeneratorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDoseAccessorGeneratorBase.h -------------------------------------------------------------------------------- /code/core/rttbDoseAccessorGeneratorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDoseAccessorGeneratorInterface.h -------------------------------------------------------------------------------- /code/core/rttbDoseAccessorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDoseAccessorInterface.h -------------------------------------------------------------------------------- /code/core/rttbDoseIteratorInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDoseIteratorInterface.cpp -------------------------------------------------------------------------------- /code/core/rttbDoseIteratorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbDoseIteratorInterface.h -------------------------------------------------------------------------------- /code/core/rttbException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbException.h -------------------------------------------------------------------------------- /code/core/rttbExceptionMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbExceptionMacros.h -------------------------------------------------------------------------------- /code/core/rttbGenericDoseIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbGenericDoseIterator.cpp -------------------------------------------------------------------------------- /code/core/rttbGenericDoseIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbGenericDoseIterator.h -------------------------------------------------------------------------------- /code/core/rttbGenericMaskedDoseIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbGenericMaskedDoseIterator.cpp -------------------------------------------------------------------------------- /code/core/rttbGenericMaskedDoseIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbGenericMaskedDoseIterator.h -------------------------------------------------------------------------------- /code/core/rttbGeometricInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbGeometricInfo.cpp -------------------------------------------------------------------------------- /code/core/rttbGeometricInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbGeometricInfo.h -------------------------------------------------------------------------------- /code/core/rttbIndexConversionInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbIndexConversionInterface.h -------------------------------------------------------------------------------- /code/core/rttbIndexOutOfBoundsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbIndexOutOfBoundsException.h -------------------------------------------------------------------------------- /code/core/rttbInvalidDoseException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbInvalidDoseException.h -------------------------------------------------------------------------------- /code/core/rttbInvalidParameterException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbInvalidParameterException.h -------------------------------------------------------------------------------- /code/core/rttbMappingOutsideOfImageException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMappingOutsideOfImageException.h -------------------------------------------------------------------------------- /code/core/rttbMaskAccessorGeneratorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMaskAccessorGeneratorBase.h -------------------------------------------------------------------------------- /code/core/rttbMaskAccessorGeneratorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMaskAccessorGeneratorInterface.h -------------------------------------------------------------------------------- /code/core/rttbMaskAccessorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMaskAccessorInterface.h -------------------------------------------------------------------------------- /code/core/rttbMaskAccessorProcessorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMaskAccessorProcessorBase.h -------------------------------------------------------------------------------- /code/core/rttbMaskAccessorProcessorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMaskAccessorProcessorInterface.h -------------------------------------------------------------------------------- /code/core/rttbMaskVoxel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMaskVoxel.cpp -------------------------------------------------------------------------------- /code/core/rttbMaskVoxel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMaskVoxel.h -------------------------------------------------------------------------------- /code/core/rttbMaskedDoseIteratorInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMaskedDoseIteratorInterface.cpp -------------------------------------------------------------------------------- /code/core/rttbMaskedDoseIteratorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMaskedDoseIteratorInterface.h -------------------------------------------------------------------------------- /code/core/rttbMutableDoseAccessorInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMutableDoseAccessorInterface.cpp -------------------------------------------------------------------------------- /code/core/rttbMutableDoseAccessorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMutableDoseAccessorInterface.h -------------------------------------------------------------------------------- /code/core/rttbMutableMaskAccessorInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMutableMaskAccessorInterface.cpp -------------------------------------------------------------------------------- /code/core/rttbMutableMaskAccessorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbMutableMaskAccessorInterface.h -------------------------------------------------------------------------------- /code/core/rttbNullPointerException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbNullPointerException.h -------------------------------------------------------------------------------- /code/core/rttbPaddingException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbPaddingException.h -------------------------------------------------------------------------------- /code/core/rttbStrVectorStructureSetGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbStrVectorStructureSetGenerator.cpp -------------------------------------------------------------------------------- /code/core/rttbStrVectorStructureSetGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbStrVectorStructureSetGenerator.h -------------------------------------------------------------------------------- /code/core/rttbStructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbStructure.cpp -------------------------------------------------------------------------------- /code/core/rttbStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbStructure.h -------------------------------------------------------------------------------- /code/core/rttbStructureSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbStructureSet.cpp -------------------------------------------------------------------------------- /code/core/rttbStructureSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbStructureSet.h -------------------------------------------------------------------------------- /code/core/rttbStructureSetGeneratorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbStructureSetGeneratorInterface.h -------------------------------------------------------------------------------- /code/core/rttbUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbUtils.cpp -------------------------------------------------------------------------------- /code/core/rttbUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/core/rttbUtils.h -------------------------------------------------------------------------------- /code/indices/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/CMakeLists.txt -------------------------------------------------------------------------------- /code/indices/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/files.cmake -------------------------------------------------------------------------------- /code/indices/rttbConformalIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbConformalIndex.cpp -------------------------------------------------------------------------------- /code/indices/rttbConformalIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbConformalIndex.h -------------------------------------------------------------------------------- /code/indices/rttbConformationNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbConformationNumber.cpp -------------------------------------------------------------------------------- /code/indices/rttbConformationNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbConformationNumber.h -------------------------------------------------------------------------------- /code/indices/rttbConformityIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbConformityIndex.cpp -------------------------------------------------------------------------------- /code/indices/rttbConformityIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbConformityIndex.h -------------------------------------------------------------------------------- /code/indices/rttbCoverageIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbCoverageIndex.cpp -------------------------------------------------------------------------------- /code/indices/rttbCoverageIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbCoverageIndex.h -------------------------------------------------------------------------------- /code/indices/rttbDoseIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbDoseIndex.cpp -------------------------------------------------------------------------------- /code/indices/rttbDoseIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbDoseIndex.h -------------------------------------------------------------------------------- /code/indices/rttbDvhBasedDoseIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbDvhBasedDoseIndex.cpp -------------------------------------------------------------------------------- /code/indices/rttbDvhBasedDoseIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbDvhBasedDoseIndex.h -------------------------------------------------------------------------------- /code/indices/rttbGammaIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbGammaIndex.cpp -------------------------------------------------------------------------------- /code/indices/rttbGammaIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbGammaIndex.h -------------------------------------------------------------------------------- /code/indices/rttbHomogeneityIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbHomogeneityIndex.cpp -------------------------------------------------------------------------------- /code/indices/rttbHomogeneityIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbHomogeneityIndex.h -------------------------------------------------------------------------------- /code/indices/rttbSpatialDoseIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbSpatialDoseIndex.cpp -------------------------------------------------------------------------------- /code/indices/rttbSpatialDoseIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/indices/rttbSpatialDoseIndex.h -------------------------------------------------------------------------------- /code/interpolation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/CMakeLists.txt -------------------------------------------------------------------------------- /code/interpolation/ITKTransformation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/ITKTransformation/CMakeLists.txt -------------------------------------------------------------------------------- /code/interpolation/ITKTransformation/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/ITKTransformation/files.cmake -------------------------------------------------------------------------------- /code/interpolation/ITKTransformation/rttbITKTransformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/ITKTransformation/rttbITKTransformation.cpp -------------------------------------------------------------------------------- /code/interpolation/ITKTransformation/rttbITKTransformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/ITKTransformation/rttbITKTransformation.h -------------------------------------------------------------------------------- /code/interpolation/MatchPointTransformation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/MatchPointTransformation/CMakeLists.txt -------------------------------------------------------------------------------- /code/interpolation/MatchPointTransformation/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/MatchPointTransformation/files.cmake -------------------------------------------------------------------------------- /code/interpolation/MatchPointTransformation/rttbMatchPointTransformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/MatchPointTransformation/rttbMatchPointTransformation.cpp -------------------------------------------------------------------------------- /code/interpolation/MatchPointTransformation/rttbMatchPointTransformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/MatchPointTransformation/rttbMatchPointTransformation.h -------------------------------------------------------------------------------- /code/interpolation/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/files.cmake -------------------------------------------------------------------------------- /code/interpolation/rttbInterpolationBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbInterpolationBase.cpp -------------------------------------------------------------------------------- /code/interpolation/rttbInterpolationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbInterpolationBase.h -------------------------------------------------------------------------------- /code/interpolation/rttbLinearInterpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbLinearInterpolation.cpp -------------------------------------------------------------------------------- /code/interpolation/rttbLinearInterpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbLinearInterpolation.h -------------------------------------------------------------------------------- /code/interpolation/rttbMappableDoseAccessorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbMappableDoseAccessorInterface.h -------------------------------------------------------------------------------- /code/interpolation/rttbNearestNeighborInterpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbNearestNeighborInterpolation.cpp -------------------------------------------------------------------------------- /code/interpolation/rttbNearestNeighborInterpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbNearestNeighborInterpolation.h -------------------------------------------------------------------------------- /code/interpolation/rttbRosuMappableDoseAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbRosuMappableDoseAccessor.cpp -------------------------------------------------------------------------------- /code/interpolation/rttbRosuMappableDoseAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbRosuMappableDoseAccessor.h -------------------------------------------------------------------------------- /code/interpolation/rttbSimpleMappableDoseAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbSimpleMappableDoseAccessor.cpp -------------------------------------------------------------------------------- /code/interpolation/rttbSimpleMappableDoseAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbSimpleMappableDoseAccessor.h -------------------------------------------------------------------------------- /code/interpolation/rttbTransformationInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/interpolation/rttbTransformationInterface.h -------------------------------------------------------------------------------- /code/io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/CMakeLists.txt -------------------------------------------------------------------------------- /code/io/dicom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/CMakeLists.txt -------------------------------------------------------------------------------- /code/io/dicom/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/files.cmake -------------------------------------------------------------------------------- /code/io/dicom/rttbDVHDicomFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDVHDicomFileReader.cpp -------------------------------------------------------------------------------- /code/io/dicom/rttbDVHDicomFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDVHDicomFileReader.h -------------------------------------------------------------------------------- /code/io/dicom/rttbDcmrtException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDcmrtException.h -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomDoseAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomDoseAccessor.cpp -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomDoseAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomDoseAccessor.h -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomFileDoseAccessorGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomFileDoseAccessorGenerator.cpp -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomFileDoseAccessorGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomFileDoseAccessorGenerator.h -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomFileDoseAccessorWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomFileDoseAccessorWriter.cpp -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomFileDoseAccessorWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomFileDoseAccessorWriter.h -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomFileReaderHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomFileReaderHelper.cpp -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomFileReaderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomFileReaderHelper.h -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomFileStructureSetGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomFileStructureSetGenerator.cpp -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomFileStructureSetGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomFileStructureSetGenerator.h -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomIODDoseAccessorGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomIODDoseAccessorGenerator.cpp -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomIODDoseAccessorGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomIODDoseAccessorGenerator.h -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomIODStructureSetGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomIODStructureSetGenerator.cpp -------------------------------------------------------------------------------- /code/io/dicom/rttbDicomIODStructureSetGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/dicom/rttbDicomIODStructureSetGenerator.h -------------------------------------------------------------------------------- /code/io/helax/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/helax/CMakeLists.txt -------------------------------------------------------------------------------- /code/io/helax/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/helax/files.cmake -------------------------------------------------------------------------------- /code/io/helax/rttbDicomHelaxDoseAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/helax/rttbDicomHelaxDoseAccessor.cpp -------------------------------------------------------------------------------- /code/io/helax/rttbDicomHelaxDoseAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/helax/rttbDicomHelaxDoseAccessor.h -------------------------------------------------------------------------------- /code/io/helax/rttbDicomHelaxFileDoseAccessorGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/helax/rttbDicomHelaxFileDoseAccessorGenerator.cpp -------------------------------------------------------------------------------- /code/io/helax/rttbDicomHelaxFileDoseAccessorGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/helax/rttbDicomHelaxFileDoseAccessorGenerator.h -------------------------------------------------------------------------------- /code/io/helax/rttbDicomHelaxIODVecDoseAccessorGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/helax/rttbDicomHelaxIODVecDoseAccessorGenerator.cpp -------------------------------------------------------------------------------- /code/io/helax/rttbDicomHelaxIODVecDoseAccessorGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/helax/rttbDicomHelaxIODVecDoseAccessorGenerator.h -------------------------------------------------------------------------------- /code/io/helax/rttbDicomIODDoseAccessorGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/helax/rttbDicomIODDoseAccessorGenerator.cpp -------------------------------------------------------------------------------- /code/io/itk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/CMakeLists.txt -------------------------------------------------------------------------------- /code/io/itk/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/files.cmake -------------------------------------------------------------------------------- /code/io/itk/itkDoseAccessorImageFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/itkDoseAccessorImageFilter.cpp -------------------------------------------------------------------------------- /code/io/itk/itkDoseAccessorImageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/itkDoseAccessorImageFilter.h -------------------------------------------------------------------------------- /code/io/itk/itkMaskAccessorImageSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/itkMaskAccessorImageSource.cpp -------------------------------------------------------------------------------- /code/io/itk/itkMaskAccessorImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/itkMaskAccessorImageSource.h -------------------------------------------------------------------------------- /code/io/itk/rttbDoseAccessorConversionSettingInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbDoseAccessorConversionSettingInterface.h -------------------------------------------------------------------------------- /code/io/itk/rttbDoseAccessorProcessorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbDoseAccessorProcessorBase.h -------------------------------------------------------------------------------- /code/io/itk/rttbDoseAccessorProcessorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbDoseAccessorProcessorInterface.h -------------------------------------------------------------------------------- /code/io/itk/rttbFileDispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbFileDispatch.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbFileDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbFileDispatch.h -------------------------------------------------------------------------------- /code/io/itk/rttbGenericImageReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbGenericImageReader.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbGenericImageReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbGenericImageReader.h -------------------------------------------------------------------------------- /code/io/itk/rttbITKException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKException.h -------------------------------------------------------------------------------- /code/io/itk/rttbITKIOHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKIOHelper.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbITKIOHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKIOHelper.h -------------------------------------------------------------------------------- /code/io/itk/rttbITKIOHelper.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKIOHelper.tpp -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageAccessor.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageAccessor.h -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageAccessorConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageAccessorConverter.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageAccessorConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageAccessorConverter.h -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageAccessorGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageAccessorGenerator.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageAccessorGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageAccessorGenerator.h -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageFileAccessorGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageFileAccessorGenerator.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageFileAccessorGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageFileAccessorGenerator.h -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageFileMaskAccessorGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageFileMaskAccessorGenerator.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageFileMaskAccessorGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageFileMaskAccessorGenerator.h -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageMaskAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageMaskAccessor.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageMaskAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageMaskAccessor.h -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageMaskAccessorConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageMaskAccessorConverter.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageMaskAccessorConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageMaskAccessorConverter.h -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageMaskAccessorGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageMaskAccessorGenerator.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbITKImageMaskAccessorGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbITKImageMaskAccessorGenerator.h -------------------------------------------------------------------------------- /code/io/itk/rttbImageReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbImageReader.h -------------------------------------------------------------------------------- /code/io/itk/rttbImageReader.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbImageReader.tpp -------------------------------------------------------------------------------- /code/io/itk/rttbImageWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbImageWriter.cpp -------------------------------------------------------------------------------- /code/io/itk/rttbImageWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/itk/rttbImageWriter.h -------------------------------------------------------------------------------- /code/io/models/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/models/CMakeLists.txt -------------------------------------------------------------------------------- /code/io/models/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/models/files.cmake -------------------------------------------------------------------------------- /code/io/models/rttbModelXMLWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/models/rttbModelXMLWriter.cpp -------------------------------------------------------------------------------- /code/io/models/rttbModelXMLWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/models/rttbModelXMLWriter.h -------------------------------------------------------------------------------- /code/io/other/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/other/CMakeLists.txt -------------------------------------------------------------------------------- /code/io/other/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/other/files.cmake -------------------------------------------------------------------------------- /code/io/other/rttbDVHXMLFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/other/rttbDVHXMLFileReader.cpp -------------------------------------------------------------------------------- /code/io/other/rttbDVHXMLFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/other/rttbDVHXMLFileReader.h -------------------------------------------------------------------------------- /code/io/other/rttbDVHXMLFileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/other/rttbDVHXMLFileWriter.cpp -------------------------------------------------------------------------------- /code/io/other/rttbDVHXMLFileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/other/rttbDVHXMLFileWriter.h -------------------------------------------------------------------------------- /code/io/other/rttbDoseStatisticsXMLReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/other/rttbDoseStatisticsXMLReader.cpp -------------------------------------------------------------------------------- /code/io/other/rttbDoseStatisticsXMLReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/other/rttbDoseStatisticsXMLReader.h -------------------------------------------------------------------------------- /code/io/other/rttbDoseStatisticsXMLWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/other/rttbDoseStatisticsXMLWriter.cpp -------------------------------------------------------------------------------- /code/io/other/rttbDoseStatisticsXMLWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/other/rttbDoseStatisticsXMLWriter.h -------------------------------------------------------------------------------- /code/io/rttbDVHWriterInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/rttbDVHWriterInterface.h -------------------------------------------------------------------------------- /code/io/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/utils/CMakeLists.txt -------------------------------------------------------------------------------- /code/io/utils/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/utils/files.cmake -------------------------------------------------------------------------------- /code/io/utils/rttbDoseLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/utils/rttbDoseLoader.cpp -------------------------------------------------------------------------------- /code/io/utils/rttbDoseLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/utils/rttbDoseLoader.h -------------------------------------------------------------------------------- /code/io/utils/rttbStructLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/utils/rttbStructLoader.cpp -------------------------------------------------------------------------------- /code/io/utils/rttbStructLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/io/utils/rttbStructLoader.h -------------------------------------------------------------------------------- /code/masks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/CMakeLists.txt -------------------------------------------------------------------------------- /code/masks/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/files.cmake -------------------------------------------------------------------------------- /code/masks/rttbBoostMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/rttbBoostMask.cpp -------------------------------------------------------------------------------- /code/masks/rttbBoostMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/rttbBoostMask.h -------------------------------------------------------------------------------- /code/masks/rttbBoostMaskAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/rttbBoostMaskAccessor.cpp -------------------------------------------------------------------------------- /code/masks/rttbBoostMaskAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/rttbBoostMaskAccessor.h -------------------------------------------------------------------------------- /code/masks/rttbBoostMaskGenerateMaskVoxelListThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/rttbBoostMaskGenerateMaskVoxelListThread.cpp -------------------------------------------------------------------------------- /code/masks/rttbBoostMaskGenerateMaskVoxelListThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/rttbBoostMaskGenerateMaskVoxelListThread.h -------------------------------------------------------------------------------- /code/masks/rttbBoostMaskVoxelizationThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/rttbBoostMaskVoxelizationThread.cpp -------------------------------------------------------------------------------- /code/masks/rttbBoostMaskVoxelizationThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/rttbBoostMaskVoxelizationThread.h -------------------------------------------------------------------------------- /code/masks/rttbGenericMutableMaskAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/rttbGenericMutableMaskAccessor.cpp -------------------------------------------------------------------------------- /code/masks/rttbGenericMutableMaskAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/masks/rttbGenericMutableMaskAccessor.h -------------------------------------------------------------------------------- /code/models/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/CMakeLists.txt -------------------------------------------------------------------------------- /code/models/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/files.cmake -------------------------------------------------------------------------------- /code/models/rttbBaseTypeModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbBaseTypeModels.h -------------------------------------------------------------------------------- /code/models/rttbBioModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbBioModel.cpp -------------------------------------------------------------------------------- /code/models/rttbBioModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbBioModel.h -------------------------------------------------------------------------------- /code/models/rttbBioModelCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbBioModelCurve.cpp -------------------------------------------------------------------------------- /code/models/rttbBioModelCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbBioModelCurve.h -------------------------------------------------------------------------------- /code/models/rttbBioModelScatterPlots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbBioModelScatterPlots.cpp -------------------------------------------------------------------------------- /code/models/rttbBioModelScatterPlots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbBioModelScatterPlots.h -------------------------------------------------------------------------------- /code/models/rttbDoseBasedModels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbDoseBasedModels.cpp -------------------------------------------------------------------------------- /code/models/rttbDoseBasedModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbDoseBasedModels.h -------------------------------------------------------------------------------- /code/models/rttbDvhBasedModels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbDvhBasedModels.cpp -------------------------------------------------------------------------------- /code/models/rttbDvhBasedModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbDvhBasedModels.h -------------------------------------------------------------------------------- /code/models/rttbIntegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbIntegration.cpp -------------------------------------------------------------------------------- /code/models/rttbIntegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbIntegration.h -------------------------------------------------------------------------------- /code/models/rttbLQModelAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbLQModelAccessor.cpp -------------------------------------------------------------------------------- /code/models/rttbLQModelAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbLQModelAccessor.h -------------------------------------------------------------------------------- /code/models/rttbNTCPLKBModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbNTCPLKBModel.cpp -------------------------------------------------------------------------------- /code/models/rttbNTCPLKBModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbNTCPLKBModel.h -------------------------------------------------------------------------------- /code/models/rttbNTCPModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbNTCPModel.h -------------------------------------------------------------------------------- /code/models/rttbNTCPRSModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbNTCPRSModel.cpp -------------------------------------------------------------------------------- /code/models/rttbNTCPRSModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbNTCPRSModel.h -------------------------------------------------------------------------------- /code/models/rttbTCPLQModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbTCPLQModel.cpp -------------------------------------------------------------------------------- /code/models/rttbTCPLQModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbTCPLQModel.h -------------------------------------------------------------------------------- /code/models/rttbTCPModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbTCPModel.cpp -------------------------------------------------------------------------------- /code/models/rttbTCPModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/models/rttbTCPModel.h -------------------------------------------------------------------------------- /code/testhelper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/CMakeLists.txt -------------------------------------------------------------------------------- /code/testhelper/CreateTestStructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/CreateTestStructure.cpp -------------------------------------------------------------------------------- /code/testhelper/CreateTestStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/CreateTestStructure.h -------------------------------------------------------------------------------- /code/testhelper/DummyDVHGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyDVHGenerator.cpp -------------------------------------------------------------------------------- /code/testhelper/DummyDVHGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyDVHGenerator.h -------------------------------------------------------------------------------- /code/testhelper/DummyDoseAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyDoseAccessor.cpp -------------------------------------------------------------------------------- /code/testhelper/DummyDoseAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyDoseAccessor.h -------------------------------------------------------------------------------- /code/testhelper/DummyInhomogeneousDoseAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyInhomogeneousDoseAccessor.cpp -------------------------------------------------------------------------------- /code/testhelper/DummyInhomogeneousDoseAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyInhomogeneousDoseAccessor.h -------------------------------------------------------------------------------- /code/testhelper/DummyMaskAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyMaskAccessor.cpp -------------------------------------------------------------------------------- /code/testhelper/DummyMaskAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyMaskAccessor.h -------------------------------------------------------------------------------- /code/testhelper/DummyMutableDoseAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyMutableDoseAccessor.cpp -------------------------------------------------------------------------------- /code/testhelper/DummyMutableDoseAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyMutableDoseAccessor.h -------------------------------------------------------------------------------- /code/testhelper/DummyStructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyStructure.cpp -------------------------------------------------------------------------------- /code/testhelper/DummyStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/DummyStructure.h -------------------------------------------------------------------------------- /code/testhelper/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/code/testhelper/files.cmake -------------------------------------------------------------------------------- /documentation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/documentation/CMakeLists.txt -------------------------------------------------------------------------------- /documentation/RTToolbox_build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/documentation/RTToolbox_build.txt -------------------------------------------------------------------------------- /documentation/RTToolbox_changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/documentation/RTToolbox_changelog.txt -------------------------------------------------------------------------------- /documentation/RTToolbox_contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/documentation/RTToolbox_contributors.txt -------------------------------------------------------------------------------- /documentation/RTToolbox_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/documentation/RTToolbox_examples.txt -------------------------------------------------------------------------------- /documentation/RTToolbox_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/documentation/RTToolbox_info.txt -------------------------------------------------------------------------------- /documentation/RTToolbox_structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/documentation/RTToolbox_structure.txt -------------------------------------------------------------------------------- /documentation/doxygen.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/documentation/doxygen.config.in -------------------------------------------------------------------------------- /documentation/images/Homepage-RTToolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/documentation/images/Homepage-RTToolbox.png -------------------------------------------------------------------------------- /documentation/images/dkfz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/documentation/images/dkfz.png -------------------------------------------------------------------------------- /documentation/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/documentation/images/icon.png -------------------------------------------------------------------------------- /rttbGenerateRTToolboxConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/rttbGenerateRTToolboxConfig.cmake -------------------------------------------------------------------------------- /testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/CMakeLists.txt -------------------------------------------------------------------------------- /testing/algorithms/ArithmeticTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/algorithms/ArithmeticTest.cpp -------------------------------------------------------------------------------- /testing/algorithms/BinaryFunctorAccessorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/algorithms/BinaryFunctorAccessorTest.cpp -------------------------------------------------------------------------------- /testing/algorithms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/algorithms/CMakeLists.txt -------------------------------------------------------------------------------- /testing/algorithms/DoseStatisticsCalculatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/algorithms/DoseStatisticsCalculatorTest.cpp -------------------------------------------------------------------------------- /testing/algorithms/DoseStatisticsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/algorithms/DoseStatisticsTest.cpp -------------------------------------------------------------------------------- /testing/algorithms/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/algorithms/files.cmake -------------------------------------------------------------------------------- /testing/algorithms/rttbAlgorithmsTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/algorithms/rttbAlgorithmsTests.cpp -------------------------------------------------------------------------------- /testing/apps/BioModelCalc/BioModelCalcInvalidParametersTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/BioModelCalc/BioModelCalcInvalidParametersTest.cpp -------------------------------------------------------------------------------- /testing/apps/BioModelCalc/BioModelCalcParameterMapsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/BioModelCalc/BioModelCalcParameterMapsTest.cpp -------------------------------------------------------------------------------- /testing/apps/BioModelCalc/BioModelCalcSimpleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/BioModelCalc/BioModelCalcSimpleTest.cpp -------------------------------------------------------------------------------- /testing/apps/BioModelCalc/BioModelCalcTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/BioModelCalc/BioModelCalcTests.cpp -------------------------------------------------------------------------------- /testing/apps/BioModelCalc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/BioModelCalc/CMakeLists.txt -------------------------------------------------------------------------------- /testing/apps/BioModelCalc/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/BioModelCalc/files.cmake -------------------------------------------------------------------------------- /testing/apps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/CMakeLists.txt -------------------------------------------------------------------------------- /testing/apps/DoseAcc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseAcc/CMakeLists.txt -------------------------------------------------------------------------------- /testing/apps/DoseAcc/DoseAccInvalidParametersTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseAcc/DoseAccInvalidParametersTest.cpp -------------------------------------------------------------------------------- /testing/apps/DoseAcc/DoseAccNeutralWeightTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseAcc/DoseAccNeutralWeightTest.cpp -------------------------------------------------------------------------------- /testing/apps/DoseAcc/DoseAccSimpleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseAcc/DoseAccSimpleTest.cpp -------------------------------------------------------------------------------- /testing/apps/DoseAcc/DoseAccTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseAcc/DoseAccTests.cpp -------------------------------------------------------------------------------- /testing/apps/DoseAcc/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseAcc/files.cmake -------------------------------------------------------------------------------- /testing/apps/DoseMap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseMap/CMakeLists.txt -------------------------------------------------------------------------------- /testing/apps/DoseMap/DoseMapInvalidParametersTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseMap/DoseMapInvalidParametersTest.cpp -------------------------------------------------------------------------------- /testing/apps/DoseMap/DoseMapSimpleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseMap/DoseMapSimpleTest.cpp -------------------------------------------------------------------------------- /testing/apps/DoseMap/DoseMapTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseMap/DoseMapTests.cpp -------------------------------------------------------------------------------- /testing/apps/DoseMap/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseMap/files.cmake -------------------------------------------------------------------------------- /testing/apps/DoseTool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseTool/CMakeLists.txt -------------------------------------------------------------------------------- /testing/apps/DoseTool/DoseToolDVHTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseTool/DoseToolDVHTest.cpp -------------------------------------------------------------------------------- /testing/apps/DoseTool/DoseToolDicomDoseTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseTool/DoseToolDicomDoseTest.cpp -------------------------------------------------------------------------------- /testing/apps/DoseTool/DoseToolITKDoseTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseTool/DoseToolITKDoseTest.cpp -------------------------------------------------------------------------------- /testing/apps/DoseTool/DoseToolInvalidParametersTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseTool/DoseToolInvalidParametersTest.cpp -------------------------------------------------------------------------------- /testing/apps/DoseTool/DoseToolRegexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseTool/DoseToolRegexTest.cpp -------------------------------------------------------------------------------- /testing/apps/DoseTool/DoseToolTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseTool/DoseToolTests.cpp -------------------------------------------------------------------------------- /testing/apps/DoseTool/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/DoseTool/files.cmake -------------------------------------------------------------------------------- /testing/apps/VoxelizerTool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/VoxelizerTool/CMakeLists.txt -------------------------------------------------------------------------------- /testing/apps/VoxelizerTool/VoxelizerToolDifferentCommandsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/VoxelizerTool/VoxelizerToolDifferentCommandsTest.cpp -------------------------------------------------------------------------------- /testing/apps/VoxelizerTool/VoxelizerToolIncorrectCommandsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/VoxelizerTool/VoxelizerToolIncorrectCommandsTest.cpp -------------------------------------------------------------------------------- /testing/apps/VoxelizerTool/VoxelizerToolTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/VoxelizerTool/VoxelizerToolTests.cpp -------------------------------------------------------------------------------- /testing/apps/VoxelizerTool/VoxelizerToolVoxelValueTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/VoxelizerTool/VoxelizerToolVoxelValueTest.cpp -------------------------------------------------------------------------------- /testing/apps/VoxelizerTool/VoxelizerToolVoxelizerAllStructsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/VoxelizerTool/VoxelizerToolVoxelizerAllStructsTest.cpp -------------------------------------------------------------------------------- /testing/apps/VoxelizerTool/VoxelizerToolVoxelizerStructTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/VoxelizerTool/VoxelizerToolVoxelizerStructTest.cpp -------------------------------------------------------------------------------- /testing/apps/VoxelizerTool/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/apps/VoxelizerTool/files.cmake -------------------------------------------------------------------------------- /testing/core/BaseTypeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/BaseTypeTest.cpp -------------------------------------------------------------------------------- /testing/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/CMakeLists.txt -------------------------------------------------------------------------------- /testing/core/DVHCalculatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/DVHCalculatorTest.cpp -------------------------------------------------------------------------------- /testing/core/DVHSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/DVHSetTest.cpp -------------------------------------------------------------------------------- /testing/core/DVHTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/DVHTest.cpp -------------------------------------------------------------------------------- /testing/core/GenericDoseIteratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/GenericDoseIteratorTest.cpp -------------------------------------------------------------------------------- /testing/core/GenericMaskedDoseIteratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/GenericMaskedDoseIteratorTest.cpp -------------------------------------------------------------------------------- /testing/core/GeometricInfoTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/GeometricInfoTest.cpp -------------------------------------------------------------------------------- /testing/core/MaskVoxelTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/MaskVoxelTest.cpp -------------------------------------------------------------------------------- /testing/core/StrVectorStructureSetGeneratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/StrVectorStructureSetGeneratorTest.cpp -------------------------------------------------------------------------------- /testing/core/StructureSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/StructureSetTest.cpp -------------------------------------------------------------------------------- /testing/core/StructureTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/StructureTest.cpp -------------------------------------------------------------------------------- /testing/core/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/files.cmake -------------------------------------------------------------------------------- /testing/core/rttbCoreTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/core/rttbCoreTests.cpp -------------------------------------------------------------------------------- /testing/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/examples/CMakeLists.txt -------------------------------------------------------------------------------- /testing/examples/RTBioModelExampleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/examples/RTBioModelExampleTest.cpp -------------------------------------------------------------------------------- /testing/examples/RTBioModelScatterPlotExampleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/examples/RTBioModelScatterPlotExampleTest.cpp -------------------------------------------------------------------------------- /testing/examples/RTDVHTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/examples/RTDVHTest.cpp -------------------------------------------------------------------------------- /testing/examples/RTDoseStatisticsDicomTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/examples/RTDoseStatisticsDicomTest.cpp -------------------------------------------------------------------------------- /testing/examples/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/examples/files.cmake -------------------------------------------------------------------------------- /testing/examples/rttbTestExamples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/examples/rttbTestExamples.cpp -------------------------------------------------------------------------------- /testing/indices/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/indices/CMakeLists.txt -------------------------------------------------------------------------------- /testing/indices/ConformalIndexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/indices/ConformalIndexTest.cpp -------------------------------------------------------------------------------- /testing/indices/ConformationNumberTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/indices/ConformationNumberTest.cpp -------------------------------------------------------------------------------- /testing/indices/ConformityIndexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/indices/ConformityIndexTest.cpp -------------------------------------------------------------------------------- /testing/indices/CoverageIndexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/indices/CoverageIndexTest.cpp -------------------------------------------------------------------------------- /testing/indices/GammaIndexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/indices/GammaIndexTest.cpp -------------------------------------------------------------------------------- /testing/indices/HomogeneityIndexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/indices/HomogeneityIndexTest.cpp -------------------------------------------------------------------------------- /testing/indices/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/indices/files.cmake -------------------------------------------------------------------------------- /testing/indices/rttbIndicesTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/indices/rttbIndicesTests.cpp -------------------------------------------------------------------------------- /testing/interpolation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/CMakeLists.txt -------------------------------------------------------------------------------- /testing/interpolation/DummyTransformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/DummyTransformation.cpp -------------------------------------------------------------------------------- /testing/interpolation/DummyTransformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/DummyTransformation.h -------------------------------------------------------------------------------- /testing/interpolation/InterpolationITKTransformation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationITKTransformation/CMakeLists.txt -------------------------------------------------------------------------------- /testing/interpolation/InterpolationITKTransformation/SimpleMappableDoseAccessorWithITKTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationITKTransformation/SimpleMappableDoseAccessorWithITKTest.cpp -------------------------------------------------------------------------------- /testing/interpolation/InterpolationITKTransformation/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationITKTransformation/files.cmake -------------------------------------------------------------------------------- /testing/interpolation/InterpolationITKTransformation/rttbInterpolationITKTransformationTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationITKTransformation/rttbInterpolationITKTransformationTests.cpp -------------------------------------------------------------------------------- /testing/interpolation/InterpolationMatchPointTransformation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationMatchPointTransformation/CMakeLists.txt -------------------------------------------------------------------------------- /testing/interpolation/InterpolationMatchPointTransformation/SimpleMappableDoseAccessorWithMatchPointTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationMatchPointTransformation/SimpleMappableDoseAccessorWithMatchPointTest.cpp -------------------------------------------------------------------------------- /testing/interpolation/InterpolationMatchPointTransformation/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationMatchPointTransformation/files.cmake -------------------------------------------------------------------------------- /testing/interpolation/InterpolationMatchPointTransformation/registrationHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationMatchPointTransformation/registrationHelper.cpp -------------------------------------------------------------------------------- /testing/interpolation/InterpolationMatchPointTransformation/registrationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationMatchPointTransformation/registrationHelper.h -------------------------------------------------------------------------------- /testing/interpolation/InterpolationMatchPointTransformation/registrationTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationMatchPointTransformation/registrationTest.h -------------------------------------------------------------------------------- /testing/interpolation/InterpolationMatchPointTransformation/rttbInterpolationMatchPointTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationMatchPointTransformation/rttbInterpolationMatchPointTests.cpp -------------------------------------------------------------------------------- /testing/interpolation/InterpolationMatchPointTransformation/simpleRegistrationWorkflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationMatchPointTransformation/simpleRegistrationWorkflow.cpp -------------------------------------------------------------------------------- /testing/interpolation/InterpolationMatchPointTransformation/simpleRegistrationWorkflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationMatchPointTransformation/simpleRegistrationWorkflow.h -------------------------------------------------------------------------------- /testing/interpolation/InterpolationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/InterpolationTest.cpp -------------------------------------------------------------------------------- /testing/interpolation/RosuMappableDoseAccessorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/RosuMappableDoseAccessorTest.cpp -------------------------------------------------------------------------------- /testing/interpolation/SimpleMappableDoseAccessorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/SimpleMappableDoseAccessorTest.cpp -------------------------------------------------------------------------------- /testing/interpolation/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/files.cmake -------------------------------------------------------------------------------- /testing/interpolation/rttbInterpolationTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/interpolation/rttbInterpolationTests.cpp -------------------------------------------------------------------------------- /testing/io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/CMakeLists.txt -------------------------------------------------------------------------------- /testing/io/dicom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/dicom/CMakeLists.txt -------------------------------------------------------------------------------- /testing/io/dicom/DicomDoseAccessorConverterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/dicom/DicomDoseAccessorConverterTest.cpp -------------------------------------------------------------------------------- /testing/io/dicom/DicomDoseAccessorGeneratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/dicom/DicomDoseAccessorGeneratorTest.cpp -------------------------------------------------------------------------------- /testing/io/dicom/DicomFileReaderHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/dicom/DicomFileReaderHelperTest.cpp -------------------------------------------------------------------------------- /testing/io/dicom/DicomIOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/dicom/DicomIOTest.cpp -------------------------------------------------------------------------------- /testing/io/dicom/DicomStructureSetGeneratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/dicom/DicomStructureSetGeneratorTest.cpp -------------------------------------------------------------------------------- /testing/io/dicom/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/dicom/files.cmake -------------------------------------------------------------------------------- /testing/io/dicom/rttbIOTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/dicom/rttbIOTests.cpp -------------------------------------------------------------------------------- /testing/io/helax/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/helax/CMakeLists.txt -------------------------------------------------------------------------------- /testing/io/helax/DicomHelaxDoseAccessorGeneratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/helax/DicomHelaxDoseAccessorGeneratorTest.cpp -------------------------------------------------------------------------------- /testing/io/helax/DicomHelaxIOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/helax/DicomHelaxIOTest.cpp -------------------------------------------------------------------------------- /testing/io/helax/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/helax/files.cmake -------------------------------------------------------------------------------- /testing/io/helax/rttbHelaxIOTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/helax/rttbHelaxIOTests.cpp -------------------------------------------------------------------------------- /testing/io/itk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/itk/CMakeLists.txt -------------------------------------------------------------------------------- /testing/io/itk/ITKBioModelAccessorConverterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/itk/ITKBioModelAccessorConverterTest.cpp -------------------------------------------------------------------------------- /testing/io/itk/ITKDoseAccessorConverterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/itk/ITKDoseAccessorConverterTest.cpp -------------------------------------------------------------------------------- /testing/io/itk/ITKDoseAccessorGeneratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/itk/ITKDoseAccessorGeneratorTest.cpp -------------------------------------------------------------------------------- /testing/io/itk/ITKIOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/itk/ITKIOTest.cpp -------------------------------------------------------------------------------- /testing/io/itk/ITKMaskAccessorConverterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/itk/ITKMaskAccessorConverterTest.cpp -------------------------------------------------------------------------------- /testing/io/itk/ITKMaskAccessorGeneratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/itk/ITKMaskAccessorGeneratorTest.cpp -------------------------------------------------------------------------------- /testing/io/itk/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/itk/files.cmake -------------------------------------------------------------------------------- /testing/io/itk/rttbITKIOTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/itk/rttbITKIOTests.cpp -------------------------------------------------------------------------------- /testing/io/models/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/models/CMakeLists.txt -------------------------------------------------------------------------------- /testing/io/models/ModelsIOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/models/ModelsIOTest.cpp -------------------------------------------------------------------------------- /testing/io/models/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/models/files.cmake -------------------------------------------------------------------------------- /testing/io/models/rttbModelsIOTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/models/rttbModelsIOTests.cpp -------------------------------------------------------------------------------- /testing/io/other/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/other/CMakeLists.txt -------------------------------------------------------------------------------- /testing/io/other/CompareDVH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/other/CompareDVH.cpp -------------------------------------------------------------------------------- /testing/io/other/CompareDVH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/other/CompareDVH.h -------------------------------------------------------------------------------- /testing/io/other/CompareDoseStatistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/other/CompareDoseStatistic.cpp -------------------------------------------------------------------------------- /testing/io/other/CompareDoseStatistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/other/CompareDoseStatistic.h -------------------------------------------------------------------------------- /testing/io/other/DVHXMLIOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/other/DVHXMLIOTest.cpp -------------------------------------------------------------------------------- /testing/io/other/DoseStatisticsIOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/other/DoseStatisticsIOTest.cpp -------------------------------------------------------------------------------- /testing/io/other/OtherIOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/other/OtherIOTest.cpp -------------------------------------------------------------------------------- /testing/io/other/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/other/files.cmake -------------------------------------------------------------------------------- /testing/io/other/rttbIOTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/other/rttbIOTests.cpp -------------------------------------------------------------------------------- /testing/io/rttbDoseAccessorTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/rttbDoseAccessorTester.cpp -------------------------------------------------------------------------------- /testing/io/rttbDoseAccessorTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/io/rttbDoseAccessorTester.h -------------------------------------------------------------------------------- /testing/masks/BoostMaskTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/masks/BoostMaskTest.cpp -------------------------------------------------------------------------------- /testing/masks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/masks/CMakeLists.txt -------------------------------------------------------------------------------- /testing/masks/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/masks/files.cmake -------------------------------------------------------------------------------- /testing/masks/rttbBoostMaskTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/masks/rttbBoostMaskTests.cpp -------------------------------------------------------------------------------- /testing/models/BioModelScatterPlotTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/models/BioModelScatterPlotTest.cpp -------------------------------------------------------------------------------- /testing/models/BioModelTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/models/BioModelTest.cpp -------------------------------------------------------------------------------- /testing/models/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/models/CMakeLists.txt -------------------------------------------------------------------------------- /testing/models/DummyModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/models/DummyModel.cpp -------------------------------------------------------------------------------- /testing/models/DummyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/models/DummyModel.h -------------------------------------------------------------------------------- /testing/models/DvhBasedModelsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/models/DvhBasedModelsTest.cpp -------------------------------------------------------------------------------- /testing/models/LQModelAccessorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/models/LQModelAccessorTest.cpp -------------------------------------------------------------------------------- /testing/models/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/models/files.cmake -------------------------------------------------------------------------------- /testing/models/rttbModelsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/models/rttbModelsTest.cpp -------------------------------------------------------------------------------- /testing/models/rttbScatterTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/models/rttbScatterTester.cpp -------------------------------------------------------------------------------- /testing/models/rttbScatterTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/models/rttbScatterTester.h -------------------------------------------------------------------------------- /testing/validation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/validation/CMakeLists.txt -------------------------------------------------------------------------------- /testing/validation/VoxelizationDVHComparisonTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/validation/VoxelizationDVHComparisonTest.cpp -------------------------------------------------------------------------------- /testing/validation/VoxelizationValidationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/validation/VoxelizationValidationTest.cpp -------------------------------------------------------------------------------- /testing/validation/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/validation/files.cmake -------------------------------------------------------------------------------- /testing/validation/rttbValidationTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/testing/validation/rttbValidationTests.cpp -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/ArgumentParsingLib.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/ArgumentParsingLib.tar.gz -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/ArgumentParsingLibConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/ArgumentParsingLibConfig.cmake.in -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/CMakeLists.txt -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/main/CMakeLists.txt -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/main/CmdLineParserBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/main/CmdLineParserBase.cpp -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/main/CmdLineParserBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/main/CmdLineParserBase.h -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/main/CmdLineParserBase.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/main/CmdLineParserBase.tpp -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/main/XMLGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/main/XMLGenerator.cpp -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/main/XMLGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/main/XMLGenerator.h -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/main/parseXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/main/parseXML.cpp -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/main/parseXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/main/parseXML.h -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/CMakeLists.txt -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/CmdLineParserBaseTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/CmdLineParserBaseTest.cpp -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/DownloadProject.CMakeLists.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/DownloadProject.CMakeLists.cmake.in -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/DownloadProject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/DownloadProject.cmake -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/XMLGeneratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/XMLGeneratorTest.cpp -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/XMLBoolean.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/XMLBoolean.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/XMLComplex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/XMLComplex.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/XMLDouble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/XMLDouble.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/XMLInput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/XMLInput.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/XMLInteger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/XMLInteger.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/XMLOutput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/XMLOutput.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/XMLString.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/XMLString.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/XMLStringEnum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/XMLStringEnum.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/XMLStringVector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/XMLStringVector.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/empty.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/invalid.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/notwellformed1.xml: -------------------------------------------------------------------------------- 1 | not even xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/notwellformed2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/notwellformed2.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/notwellformed3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/notwellformed3.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/sample.cfg -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/sample.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/simple.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/data/working.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/data/working.xml -------------------------------------------------------------------------------- /utilities/ArgumentParsingLib/test/parseXMLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/ArgumentParsingLib/test/parseXMLTest.cpp -------------------------------------------------------------------------------- /utilities/Litmus/Litmus.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-DKFZ/RTTB/HEAD/utilities/Litmus/Litmus.tar.gz --------------------------------------------------------------------------------