├── .editorconfig ├── .github └── workflows │ ├── dependencies.txt │ ├── doc.yml │ ├── main.yml │ ├── run-litmus.sh │ └── test-dependencies.txt ├── .gitignore ├── .jenkinsFile ├── CMakeLists.txt ├── CPPLINT.cfg ├── LICENSE ├── Makefile ├── ModelFitting ├── CMakeLists.txt ├── ModelFitting │ ├── Engine │ │ ├── AsinhChiSquareComparator.h │ │ ├── ChiSquareComparator.h │ │ ├── DataVsModelInputTraits.h │ │ ├── DataVsModelResiduals.h │ │ ├── EngineParameterManager.h │ │ ├── EngineValueResidual.h │ │ ├── GSLEngine.h │ │ ├── LeastSquareEngine.h │ │ ├── LeastSquareEngineManager.h │ │ ├── LeastSquareSummary.h │ │ ├── LevmarEngine.h │ │ ├── LogChiSquareComparator.h │ │ ├── OpenCvDataVsModelInputTraits.h │ │ ├── ResidualBlockProvider.h │ │ ├── ResidualEstimator.h │ │ ├── WorldValueResidual.h │ │ └── _impl │ │ │ ├── DataVsModelResiduals.icpp │ │ │ ├── EngineParameterManager.icpp │ │ │ └── ResidualEstimator.icpp │ ├── Image │ │ ├── ImageTraits.h │ │ ├── NullPsf.h │ │ └── PsfTraits.h │ ├── Models │ │ ├── AutoSharp.h │ │ ├── CircularlySymmetricModelComponent.h │ │ ├── CompactExponentialModel.h │ │ ├── CompactModelBase.h │ │ ├── CompactSersicModel.h │ │ ├── ConstantModel.h │ │ ├── ExtendedModel.h │ │ ├── FlattenedMoffatComponent.h │ │ ├── FrameModel.h │ │ ├── ModelComponent.h │ │ ├── OldSharp.h │ │ ├── OnlySmooth.h │ │ ├── PointModel.h │ │ ├── PositionedModel.h │ │ ├── RotatedModelComponent.h │ │ ├── ScaledModelComponent.h │ │ ├── SersicProfile.h │ │ ├── SharpRegionManager.h │ │ ├── TransformModelComponent.h │ │ ├── TransformedModel.h │ │ └── _impl │ │ │ ├── CircularlySymmetricModelComponent.icpp │ │ │ ├── CompactExponentialModel.icpp │ │ │ ├── CompactModelBase.icpp │ │ │ ├── CompactSersicModel.icpp │ │ │ ├── ExtendedModel.icpp │ │ │ └── FrameModel.icpp │ └── Parameters │ │ ├── BasicParameter.h │ │ ├── CoordinateConverter.h │ │ ├── DependentParameter.h │ │ ├── EngineParameter.h │ │ ├── ExpSigmoidConverter.h │ │ ├── ManualParameter.h │ │ ├── NeutralConverter.h │ │ ├── NormalizedConverter.h │ │ └── SigmoidConverter.h ├── auxdir │ ├── gal.fits │ ├── image.fits │ ├── multiframe.fits │ ├── psf.fits │ └── psf_gal.fits ├── src │ └── lib │ │ ├── Engine │ │ ├── EngineParameterManager.cpp │ │ ├── EngineValueResidual.cpp │ │ ├── GSLEngine.cpp │ │ ├── LeastSquareEngineManager.cpp │ │ ├── LevmarEngine.cpp │ │ ├── ResidualEstimator.cpp │ │ └── WorldValueResidual.cpp │ │ ├── Models │ │ ├── AutoSharp.cpp │ │ ├── ConstantModel.cpp │ │ ├── FlattenedMoffatComponent.cpp │ │ ├── OldSharp.cpp │ │ ├── OnlySmooth.cpp │ │ ├── PointModel.cpp │ │ ├── PositionedModel.cpp │ │ ├── RotatedModelComponent.cpp │ │ ├── ScaledModelComponent.cpp │ │ ├── SersicProfile.cpp │ │ └── TransformModelComponent.cpp │ │ └── Parameters │ │ ├── BasicParameter.cpp │ │ ├── EngineParameter.cpp │ │ ├── ExpSigmoidConverter.cpp │ │ ├── NeutralConverter.cpp │ │ ├── NormalizedConverter.cpp │ │ └── SigmoidConverter.cpp └── tests │ └── src │ ├── Engine │ └── Engine_test.cpp │ ├── Models │ ├── AutoSharp_test.cpp │ ├── CircularlySymmetricModelComponent_test.cpp │ ├── OldSharp_test.cpp │ ├── RotatedModelComponent_test.cpp │ ├── ScaledModelComponent_test.cpp │ ├── SersicProfile_test.cpp │ ├── TestHelper.h │ └── TransformModelComponent_test.cpp │ └── Parameters │ ├── BasicParameter_test.cpp │ ├── DependentParameter_test.cpp │ ├── EngineParameter_test.cpp │ ├── ExampleClass_test.cpp │ ├── ExpSigmoidConverter_test.cpp │ ├── ManualParameter_test.cpp │ ├── NeutralConverter_test.cpp │ └── SigmoidConverter_test.cpp ├── README.md ├── SEBenchmarks ├── CMakeLists.txt └── src │ └── program │ ├── BenchBackgroundConvolution.cpp │ ├── BenchBackgroundModel.cpp │ ├── BenchConvolution.cpp │ ├── BenchRendering.cpp │ └── BenchVariablePsfStack.cpp ├── SEFramework ├── CMakeLists.txt ├── SEFramework │ ├── Aperture │ │ ├── Aperture.h │ │ ├── CircularAperture.h │ │ ├── EllipticalAperture.h │ │ ├── Flagging.h │ │ ├── FluxMeasurement.h │ │ ├── NeighbourInfo.h │ │ └── TransformedAperture.h │ ├── Background │ │ ├── Background.h │ │ └── BackgroundAnalyzer.h │ ├── Configuration │ │ └── Configurable.h │ ├── Convolution │ │ ├── Convolution.h │ │ ├── DFT.h │ │ ├── DirectConvolution.h │ │ └── OpenCVConvolution.h │ ├── CoordinateSystem │ │ ├── CoordinateSystem.h │ │ └── WCS.h │ ├── FFT │ │ ├── FFT.h │ │ └── FFTHelper.h │ ├── FITS │ │ ├── FitsFile.h │ │ ├── FitsImageSource.h │ │ ├── FitsReader.h │ │ ├── FitsWriter.h │ │ └── TemporaryFitsImageSource.h │ ├── Frame │ │ └── Frame.h │ ├── Image │ │ ├── BufferedImage.h │ │ ├── ConstantImage.h │ │ ├── FunctionalImage.h │ │ ├── Image.h │ │ ├── ImageAccessor.h │ │ ├── ImageChunk.h │ │ ├── ImageProcessing.h │ │ ├── ImageProcessingList.h │ │ ├── ImageSource.h │ │ ├── ImageSourceWithMetadata.h │ │ ├── ImageTile.h │ │ ├── InterpolatedImageSource.h │ │ ├── MaskedImage.h │ │ ├── MirrorImage.h │ │ ├── PaddedImage.h │ │ ├── ProcessedImage.h │ │ ├── ProcessingImageSource.h │ │ ├── RecenterImage.h │ │ ├── ScaledImageSource.h │ │ ├── SubImage.h │ │ ├── ThresholdedImage.h │ │ ├── TileManager.h │ │ ├── VectorImage.h │ │ ├── WriteableBufferedImage.h │ │ └── WriteableImage.h │ ├── Output │ │ ├── Output.h │ │ └── OutputRegistry.h │ ├── Pipeline │ │ ├── Deblending.h │ │ ├── Measurement.h │ │ ├── Partition.h │ │ ├── PipelineStage.h │ │ ├── Segmentation.h │ │ └── SourceGrouping.h │ ├── Plugin │ │ ├── Plugin.h │ │ ├── PluginAPI.h │ │ ├── PluginManager.h │ │ └── StaticPlugin.h │ ├── Property │ │ ├── DetectionFrame.h │ │ ├── Property.h │ │ ├── PropertyHolder.h │ │ ├── PropertyId.h │ │ └── PropertyNotFoundException.h │ ├── Psf │ │ ├── Psf.h │ │ ├── VariablePsf.h │ │ └── VariablePsfStack.h │ ├── Source │ │ ├── SimpleSource.h │ │ ├── SimpleSourceFactory.h │ │ ├── SimpleSourceGroup.h │ │ ├── SimpleSourceGroupFactory.h │ │ ├── SourceFactory.h │ │ ├── SourceFlags.h │ │ ├── SourceGroupFactory.h │ │ ├── SourceGroupInterface.h │ │ ├── SourceGroupWithOnDemandProperties.h │ │ ├── SourceGroupWithOnDemandPropertiesFactory.h │ │ ├── SourceInterface.h │ │ ├── SourceWithOnDemandProperties.h │ │ └── SourceWithOnDemandPropertiesFactory.h │ └── Task │ │ ├── GroupTask.h │ │ ├── SourceTask.h │ │ ├── Task.h │ │ ├── TaskFactory.h │ │ ├── TaskFactoryRegistry.h │ │ └── TaskProvider.h ├── auxdir │ ├── multiple_hdu.fits │ ├── wcs_header.fits │ └── with_primary.fits ├── src │ └── lib │ │ ├── Aperture │ │ ├── CircularAperture.cpp │ │ ├── EllipticalAperture.cpp │ │ ├── Flagging.cpp │ │ ├── FluxMeasurement.cpp │ │ ├── NeighbourInfo.cpp │ │ └── TransformedAperture.cpp │ │ ├── CoordinateSystem │ │ └── WCS.cpp │ │ ├── FFT │ │ └── FFT.cpp │ │ ├── FITS │ │ ├── FitsFile.cpp │ │ └── FitsImageSource.cpp │ │ ├── Frame │ │ └── Frame.cpp │ │ ├── Image │ │ ├── BufferedImage.cpp │ │ ├── ImageTile.cpp │ │ └── TileManager.cpp │ │ ├── Output │ │ └── OutputRegistry.cpp │ │ ├── Pipeline │ │ ├── Deblending.cpp │ │ ├── Partition.cpp │ │ ├── PipelineStage.cpp │ │ ├── Segmentation.cpp │ │ └── SourceGrouping.cpp │ │ ├── Plugin │ │ └── PluginManager.cpp │ │ ├── Property │ │ ├── PropertyHolder.cpp │ │ └── PropertyId.cpp │ │ ├── Psf │ │ ├── VariablePsf.cpp │ │ └── VariablePsfStack.cpp │ │ ├── Source │ │ ├── EntangledSource.cpp │ │ ├── SimpleSourceGroup.cpp │ │ ├── SourceGroupWithOnDemandProperties.cpp │ │ └── SourceWithOnDemandProperties.cpp │ │ └── Task │ │ ├── TaskFactoryRegistry.cpp │ │ └── TaskProvider.cpp └── tests │ └── src │ ├── Aperture │ ├── Fixture.icpp │ ├── Flagging_test.cpp │ ├── FluxMeasurement_test.cpp │ ├── NeighbourInfo_test.cpp │ └── TransformedAperture_test.cpp │ ├── Convolution │ ├── DFT_test.cpp │ └── DirectConvolution_test.cpp │ ├── CoordinateSystem │ └── WCS_test.cpp │ ├── FFT │ └── FFT_test.cpp │ ├── FITS │ ├── 1px.fits.h │ ├── FitsImageSource_test.cpp │ ├── FitsReader_test.cpp │ └── TemporaryFitsSource_test.cpp │ ├── Image │ ├── BufferedImage_test.cpp │ ├── FunctionalImage_test.cpp │ ├── ImageAccessor_test.cpp │ ├── ImageChunk_test.cpp │ ├── InterpolatedImageSource_test.cpp │ ├── MaskedImage_test.cpp │ ├── MirrorImage_test.cpp │ ├── PaddedImage_test.cpp │ ├── RecenterImage_test.cpp │ ├── ScaledImageSource_test.cpp │ ├── SubImage_test.cpp │ └── VectorImage_test.cpp │ ├── Pipeline │ ├── Deblending_test.cpp │ ├── Partition_test.cpp │ └── SourceGrouping_test.cpp │ ├── Property │ ├── PropertyHolder_test.cpp │ └── PropertyId_test.cpp │ ├── Psf │ ├── CubicFullPsf.icpp │ ├── LinearFullPsf.icpp │ └── VariablePsf_test.cpp │ ├── Source │ ├── SimpleSource_test.cpp │ ├── SourceGroupWithOnDemandProperties_test.cpp │ ├── SourceInterface_test.cpp │ └── SourceWithOnDemandProperties_test.cpp │ └── Task │ └── TaskProvider_test.cpp ├── SEImplementation ├── CMakeLists.txt ├── SEImplementation │ ├── Background │ │ ├── BackgroundAnalyzerFactory.h │ │ ├── SE │ │ │ ├── ImageMode.h │ │ │ ├── KappaSigmaBinning.h │ │ │ ├── MedianFilter.h │ │ │ ├── ReplaceUndefImage.h │ │ │ └── SEBackgroundLevelAnalyzer.h │ │ ├── SimpleBackgroundAnalyzer.h │ │ └── Utils.h │ ├── CheckImages │ │ ├── CheckImages.h │ │ ├── DetectionIdCheckImage.h │ │ ├── GroupIdCheckImage.h │ │ ├── MoffatCheckImage.h │ │ └── SourceIdCheckImage.h │ ├── Common │ │ ├── OnnxCommon.h │ │ └── OnnxModel.h │ ├── Configuration │ │ ├── AttractorsPartitionConfig.h │ │ ├── BackgroundConfig.h │ │ ├── CheckImagesConfig.h │ │ ├── CleaningConfig.h │ │ ├── DeblendStepConfig.h │ │ ├── DetectionFrameConfig.h │ │ ├── DetectionImageConfig.h │ │ ├── FileManagerConfig.h │ │ ├── GroupingConfig.h │ │ ├── LegacyModelFittingConfig.h │ │ ├── MagnitudeConfig.h │ │ ├── MeasurementFrameConfig.h │ │ ├── MeasurementImageConfig.h │ │ ├── MemoryConfig.h │ │ ├── MinAreaPartitionConfig.h │ │ ├── ModelFittingConfig.h │ │ ├── MultiThreadingConfig.h │ │ ├── MultiThresholdPartitionConfig.h │ │ ├── OutputConfig.h │ │ ├── PartitionStepConfig.h │ │ ├── PythonConfig.h │ │ ├── RngConfig.h │ │ ├── SE2BackgroundConfig.h │ │ ├── SamplingConfig.h │ │ ├── SegmentationConfig.h │ │ └── WeightImageConfig.h │ ├── Deblending │ │ ├── Cleaning.h │ │ └── DeblendingFactory.h │ ├── Grouping │ │ ├── AssocCriteria.h │ │ ├── AssocGrouping.h │ │ ├── GroupingFactory.h │ │ ├── LineSelectionCriteria.h │ │ ├── MoffatCriteria.h │ │ ├── MoffatGrouping.h │ │ ├── NoGroupingCriteria.h │ │ ├── OverlappingBoundariesCriteria.h │ │ ├── SplitSourcesCriteria.h │ │ └── SplitSourcesGrouping.h │ ├── Image │ │ ├── DownSampledImagePsf.h │ │ ├── ImageInterfaceTraits.h │ │ ├── ImagePsf.h │ │ ├── LockedWriteableImage.h │ │ ├── VectorImageDataVsModelInputTraits.h │ │ └── WriteableImageInterfaceTraits.h │ ├── Measurement │ │ ├── DummyMeasurement.h │ │ ├── MeasurementFactory.h │ │ └── MultithreadedMeasurement.h │ ├── Output │ │ ├── AsciiOutput.h │ │ ├── FitsOutput.h │ │ ├── FlushableOutput.h │ │ ├── LdacOutput.h │ │ └── OutputFactory.h │ ├── Partition │ │ ├── AttractorsPartitionStep.h │ │ ├── MinAreaPartitionStep.h │ │ ├── MultiThresholdPartitionStep.h │ │ └── PartitionFactory.h │ ├── Plugin │ │ ├── AperturePhotometry │ │ │ ├── ApertureFlag.h │ │ │ ├── ApertureFlagTask.h │ │ │ ├── AperturePhotometry.h │ │ │ ├── AperturePhotometryArray.h │ │ │ ├── AperturePhotometryArrayTask.h │ │ │ ├── AperturePhotometryConfig.h │ │ │ ├── AperturePhotometryPlugin.h │ │ │ ├── AperturePhotometryTask.h │ │ │ └── AperturePhotometryTaskFactory.h │ │ ├── AssocMode │ │ │ ├── AssocMode.h │ │ │ ├── AssocModeConfig.h │ │ │ ├── AssocModeDummyTask.h │ │ │ ├── AssocModePartitionStep.h │ │ │ ├── AssocModePlugin.h │ │ │ ├── AssocModeTask.h │ │ │ └── AssocModeTaskFactory.h │ │ ├── AutoPhotometry │ │ │ ├── AutoPhotometry.h │ │ │ ├── AutoPhotometryArray.h │ │ │ ├── AutoPhotometryArrayTask.h │ │ │ ├── AutoPhotometryConfig.h │ │ │ ├── AutoPhotometryFlag.h │ │ │ ├── AutoPhotometryFlagTask.h │ │ │ ├── AutoPhotometryPlugin.h │ │ │ ├── AutoPhotometryTask.h │ │ │ └── AutoPhotometryTaskFactory.h │ │ ├── BlendedFlag │ │ │ ├── BlendedFlag.h │ │ │ ├── BlendedFlagPlugin.h │ │ │ ├── BlendedFlagTask.h │ │ │ └── BlendedFlagTaskFactory.h │ │ ├── BoundaryFlag │ │ │ ├── BoundaryFlag.h │ │ │ ├── BoundaryFlagPlugin.h │ │ │ ├── BoundaryFlagSourceTask.h │ │ │ └── BoundaryFlagTaskFactory.h │ │ ├── CoreThresholdPartition │ │ │ ├── CoreThresholdPartitionConfig.h │ │ │ ├── CoreThresholdPartitionPlugin.h │ │ │ ├── CoreThresholdPartitionStep.h │ │ │ ├── CoreThresholdPartitionTask.h │ │ │ ├── CoreThresholdPartitionTaskFactory.h │ │ │ └── NCorePixel.h │ │ ├── DetectionFrameCoordinates │ │ │ ├── DetectionFrameCoordinates.h │ │ │ ├── DetectionFrameCoordinatesPlugin.h │ │ │ ├── DetectionFrameCoordinatesTask.h │ │ │ └── DetectionFrameCoordinatesTaskFactory.h │ │ ├── DetectionFrameGroupStamp │ │ │ ├── DetectionFrameGroupStamp.h │ │ │ ├── DetectionFrameGroupStampPlugin.h │ │ │ ├── DetectionFrameGroupStampTask.h │ │ │ └── DetectionFrameGroupStampTaskFactory.h │ │ ├── DetectionFrameImages │ │ │ ├── DetectionFrameImages.h │ │ │ ├── DetectionFrameImagesPlugin.h │ │ │ ├── DetectionFrameImagesTask.h │ │ │ └── DetectionFrameImagesTaskFactory.h │ │ ├── DetectionFrameInfo │ │ │ ├── DetectionFrameInfo.h │ │ │ ├── DetectionFrameInfoPlugin.h │ │ │ ├── DetectionFrameInfoTask.h │ │ │ └── DetectionFrameInfoTaskFactory.h │ │ ├── DetectionFramePixelValues │ │ │ ├── DetectionFramePixelValues.h │ │ │ ├── DetectionFramePixelValuesPlugin.h │ │ │ ├── DetectionFramePixelValuesTask.h │ │ │ └── DetectionFramePixelValuesTaskFactory.h │ │ ├── DetectionFrameSourceStamp │ │ │ ├── DetectionFrameSourceStamp.h │ │ │ ├── DetectionFrameSourceStampPlugin.h │ │ │ ├── DetectionFrameSourceStampTask.h │ │ │ └── DetectionFrameSourceStampTaskFactory.h │ │ ├── ErrorEllipse │ │ │ ├── ErrorEllipse.h │ │ │ ├── ErrorEllipsePlugin.h │ │ │ ├── ErrorEllipseTask.h │ │ │ └── ErrorEllipseTaskFactory.h │ │ ├── ExternalFlag │ │ │ ├── ExternalFlag.h │ │ │ ├── ExternalFlagConfig.h │ │ │ ├── ExternalFlagPlugin.h │ │ │ ├── ExternalFlagTask.h │ │ │ └── ExternalFlagTaskFactory.h │ │ ├── FlexibleModelFitting │ │ │ ├── FlexibleModelFitting.h │ │ │ ├── FlexibleModelFittingConverterFactory.h │ │ │ ├── FlexibleModelFittingFrame.h │ │ │ ├── FlexibleModelFittingIterativeTask.h │ │ │ ├── FlexibleModelFittingModel.h │ │ │ ├── FlexibleModelFittingParameter.h │ │ │ ├── FlexibleModelFittingParameterManager.h │ │ │ ├── FlexibleModelFittingPlugin.h │ │ │ ├── FlexibleModelFittingPrior.h │ │ │ ├── FlexibleModelFittingTask.h │ │ │ ├── FlexibleModelFittingTaskFactory.h │ │ │ └── OnnxCompactModel.h │ │ ├── FluxRadius │ │ │ ├── FluxRadius.h │ │ │ ├── FluxRadiusConfig.h │ │ │ ├── FluxRadiusPlugin.h │ │ │ ├── FluxRadiusTask.h │ │ │ └── FluxRadiusTaskFactory.h │ │ ├── GroupInfo │ │ │ ├── GroupInfo.h │ │ │ ├── GroupInfoPlugin.h │ │ │ ├── GroupInfoTask.h │ │ │ └── GroupInfoTaskFactory.h │ │ ├── GrowthCurve │ │ │ ├── GrowthCurve.h │ │ │ ├── GrowthCurveConfig.h │ │ │ ├── GrowthCurvePlugin.h │ │ │ ├── GrowthCurveResampled.h │ │ │ ├── GrowthCurveResampledTask.h │ │ │ ├── GrowthCurveTask.h │ │ │ └── GrowthCurveTaskFactory.h │ │ ├── HduNumber │ │ │ ├── HduNumber.h │ │ │ ├── HduNumberPlugin.h │ │ │ ├── HduNumberTask.h │ │ │ └── HduNumberTaskFactory.h │ │ ├── IsophotalFlux │ │ │ ├── IsophotalFlux.h │ │ │ ├── IsophotalFluxPlugin.h │ │ │ ├── IsophotalFluxTask.h │ │ │ └── IsophotalFluxTaskFactory.h │ │ ├── Jacobian │ │ │ ├── Jacobian.h │ │ │ ├── JacobianPlugin.h │ │ │ ├── JacobianTask.h │ │ │ └── JacobianTaskFactory.h │ │ ├── KronRadius │ │ │ ├── KronRadius.h │ │ │ ├── KronRadiusPlugin.h │ │ │ ├── KronRadiusTask.h │ │ │ └── KronRadiusTaskFactory.h │ │ ├── MeasurementFrame │ │ │ ├── MeasurementFrame.h │ │ │ ├── MeasurementFramePlugin.h │ │ │ ├── MeasurementFrameTask.h │ │ │ └── MeasurementFrameTaskFactory.h │ │ ├── MeasurementFrameCoordinates │ │ │ ├── MeasurementFrameCoordinates.h │ │ │ ├── MeasurementFrameCoordinatesPlugin.h │ │ │ ├── MeasurementFrameCoordinatesTask.h │ │ │ └── MeasurementFrameCoordinatesTaskFactory.h │ │ ├── MeasurementFrameGroupRectangle │ │ │ ├── MeasurementFrameGroupRectangle.h │ │ │ ├── MeasurementFrameGroupRectanglePlugin.h │ │ │ ├── MeasurementFrameGroupRectangleTask.h │ │ │ └── MeasurementFrameGroupRectangleTaskFactory.h │ │ ├── MeasurementFrameImages │ │ │ ├── MeasurementFrameImages.h │ │ │ ├── MeasurementFrameImagesPlugin.h │ │ │ ├── MeasurementFrameImagesTask.h │ │ │ └── MeasurementFrameImagesTaskFactory.h │ │ ├── MeasurementFrameInfo │ │ │ ├── MeasurementFrameInfo.h │ │ │ ├── MeasurementFrameInfoPlugin.h │ │ │ ├── MeasurementFrameInfoTask.h │ │ │ └── MeasurementFrameInfoTaskFactory.h │ │ ├── MeasurementFramePixelCentroid │ │ │ ├── MeasurementFramePixelCentroid.h │ │ │ ├── MeasurementFramePixelCentroidPlugin.h │ │ │ ├── MeasurementFramePixelCentroidTask.h │ │ │ └── MeasurementFramePixelCentroidTaskFactory.h │ │ ├── MeasurementFrameRectangle │ │ │ ├── MeasurementFrameRectangle.h │ │ │ ├── MeasurementFrameRectanglePlugin.h │ │ │ ├── MeasurementFrameRectangleTask.h │ │ │ ├── MeasurementFrameRectangleTaskFactory.h │ │ │ └── MeasurementFrameRectangleTaskNoDetect.h │ │ ├── MoffatModelFitting │ │ │ ├── MoffatModelEvaluator.h │ │ │ ├── MoffatModelEvaluatorTask.h │ │ │ ├── MoffatModelFitting.h │ │ │ ├── MoffatModelFittingPlugin.h │ │ │ ├── MoffatModelFittingTask.h │ │ │ └── MoffatModelFittingTaskFactory.h │ │ ├── NDetectedPixels │ │ │ ├── NDetectedPixels.h │ │ │ ├── NDetectedPixelsPlugin.h │ │ │ ├── NDetectedPixelsSourceTask.h │ │ │ └── NDetectedPixelsTaskFactory.h │ │ ├── Onnx │ │ │ ├── OnnxConfig.h │ │ │ ├── OnnxPlugin.h │ │ │ ├── OnnxProperty.h │ │ │ ├── OnnxSourceTask.h │ │ │ └── OnnxTaskFactory.h │ │ ├── PeakValue │ │ │ ├── PeakValue.h │ │ │ ├── PeakValuePlugin.h │ │ │ ├── PeakValueTask.h │ │ │ └── PeakValueTaskFactory.h │ │ ├── PixelBoundaries │ │ │ ├── PixelBoundaries.h │ │ │ ├── PixelBoundariesPlugin.h │ │ │ ├── PixelBoundariesTask.h │ │ │ └── PixelBoundariesTaskFactory.h │ │ ├── PixelCentroid │ │ │ ├── PixelCentroid.h │ │ │ ├── PixelCentroidPlugin.h │ │ │ ├── PixelCentroidTask.h │ │ │ └── PixelCentroidTaskFactory.h │ │ ├── Psf │ │ │ ├── PsfPlugin.h │ │ │ ├── PsfPluginConfig.h │ │ │ ├── PsfProperty.h │ │ │ ├── PsfTask.h │ │ │ └── PsfTaskFactory.h │ │ ├── ReferenceCoordinates │ │ │ ├── ReferenceCoordinates.h │ │ │ ├── ReferenceCoordinatesPlugin.h │ │ │ ├── ReferenceCoordinatesTask.h │ │ │ └── ReferenceCoordinatesTaskFactory.h │ │ ├── SNRRatio │ │ │ ├── SNRRatio.h │ │ │ ├── SNRRatioPlugin.h │ │ │ ├── SNRRatioSourceTask.h │ │ │ └── SNRRatioTaskFactory.h │ │ ├── SaturateFlag │ │ │ ├── SaturateFlag.h │ │ │ ├── SaturateFlagPlugin.h │ │ │ ├── SaturateFlagSourceTask.h │ │ │ └── SaturateFlagTaskFactory.h │ │ ├── ShapeParameters │ │ │ ├── ShapeParameters.h │ │ │ ├── ShapeParametersPlugin.h │ │ │ ├── ShapeParametersTask.h │ │ │ └── ShapeParametersTaskFactory.h │ │ ├── SourceFlags │ │ │ ├── SourceFlags.h │ │ │ ├── SourceFlagsPlugin.h │ │ │ ├── SourceFlagsSourceTask.h │ │ │ └── SourceFlagsTaskFactory.h │ │ ├── SourceIDs │ │ │ ├── SourceID.h │ │ │ ├── SourceIDTask.h │ │ │ ├── SourceIDTaskFactory.h │ │ │ └── SourceIDsPlugin.h │ │ ├── SourcePsf │ │ │ ├── SourcePsfPlugin.h │ │ │ ├── SourcePsfProperty.h │ │ │ ├── SourcePsfTask.h │ │ │ └── SourcePsfTaskFactory.h │ │ ├── Vignet │ │ │ ├── Vignet.h │ │ │ ├── VignetArray.h │ │ │ ├── VignetArraySourceTask.h │ │ │ ├── VignetConfig.h │ │ │ ├── VignetPlugin.h │ │ │ ├── VignetSourceTask.h │ │ │ └── VignetTaskFactory.h │ │ └── WorldCentroid │ │ │ ├── WorldCentroid.h │ │ │ ├── WorldCentroidPlugin.h │ │ │ ├── WorldCentroidTask.h │ │ │ └── WorldCentroidTaskFactory.h │ ├── Prefetcher │ │ └── Prefetcher.h │ ├── Property │ │ ├── PixelCoordinateList.h │ │ └── SourceId.h │ ├── PythonConfig │ │ ├── ObjectInfo.h │ │ ├── PyAperture.h │ │ ├── PyFitsFile.h │ │ ├── PyId.h │ │ ├── PyMeasurementImage.h │ │ ├── PyOutputWrapper.h │ │ ├── PythonInterpreter.h │ │ └── PythonModule.h │ └── Segmentation │ │ ├── AssocSegmentation.h │ │ ├── BFSSegmentation.h │ │ ├── BackgroundConvolution.h │ │ ├── BgConvolutionImageSource.h │ │ ├── BgDFTConvolutionImageSource.h │ │ ├── Lutz.h │ │ ├── LutzSegmentation.h │ │ ├── MLSegmentation.h │ │ └── SegmentationFactory.h ├── python │ └── sourcextractor │ │ ├── __init__.py │ │ └── config │ │ ├── __init__.py │ │ ├── argv.py │ │ ├── compat.py │ │ ├── measurement_config.py │ │ ├── measurement_images.py │ │ └── model_fitting.py ├── src │ └── lib │ │ ├── Background │ │ ├── BackgroundAnalyzerFactory.cpp │ │ ├── SE │ │ │ ├── ImageMode.cpp │ │ │ ├── ReplaceUndefImage.cpp │ │ │ └── SEBackgroundLevelAnalyzer.cpp │ │ └── SimpleBackgroundAnalyzer.cpp │ │ ├── CheckImages │ │ ├── CheckImages.cpp │ │ ├── DetectionIdCheckImage.cpp │ │ ├── GroupIdCheckImage.cpp │ │ ├── MoffatCheckImage.cpp │ │ └── SourceIdCheckImage.cpp │ │ ├── Common │ │ ├── OnnxCommon.cpp │ │ └── OnnxModel.cpp │ │ ├── Configuration │ │ ├── AttractorsPartitionConfig.cpp │ │ ├── BackgroundConfig.cpp │ │ ├── CheckImagesConfig.cpp │ │ ├── CleaningConfig.cpp │ │ ├── DeblendStepConfig.cpp │ │ ├── DetectionFrameConfig.cpp │ │ ├── DetectionImageConfig.cpp │ │ ├── FileManagerConfig.cpp │ │ ├── GroupingConfig.cpp │ │ ├── LegacyModelFittingConfig.cpp │ │ ├── MagnitudeConfig.cpp │ │ ├── MeasurementFrameConfig.cpp │ │ ├── MeasurementImageConfig.cpp │ │ ├── MemoryConfig.cpp │ │ ├── MinAreaPartitionConfig.cpp │ │ ├── ModelFittingConfig.cpp │ │ ├── MultiThreadingConfig.cpp │ │ ├── MultiThresholdPartitionConfig.cpp │ │ ├── OutputConfig.cpp │ │ ├── PartitionStepConfig.cpp │ │ ├── PythonConfig.cpp │ │ ├── RngConfig.cpp │ │ ├── SE2BackgroundConfig.cpp │ │ ├── SamplingConfig.cpp │ │ ├── SegmentationConfig.cpp │ │ └── WeightImageConfig.cpp │ │ ├── Deblending │ │ └── Cleaning.cpp │ │ ├── Grouping │ │ ├── AssocCriteria.cpp │ │ ├── AssocGrouping.cpp │ │ ├── GroupingFactory.cpp │ │ ├── LineSelectionCriteria.cpp │ │ ├── MoffatCriteria.cpp │ │ ├── MoffatGrouping.cpp │ │ ├── OverlappingBoundariesCriteria.cpp │ │ ├── SplitSourcesCriteria.cpp │ │ └── SplitSourcesGrouping.cpp │ │ ├── Image │ │ ├── DownSampledImagePsf.cpp │ │ └── ImageInterfaceTraits.cpp │ │ ├── Measurement │ │ ├── MeasurementFactory.cpp │ │ └── MultithreadedMeasurement.cpp │ │ ├── Output │ │ ├── LdacOutput.cpp │ │ └── OutputFactory.cpp │ │ ├── Partition │ │ ├── AttractorsPartitionStep.cpp │ │ ├── MinAreaPartitionStep.cpp │ │ └── MultiThresholdPartitionStep.cpp │ │ ├── Plugin │ │ ├── AperturePhotometry │ │ │ ├── ApertureFlagTask.cpp │ │ │ ├── AperturePhotometryArrayTask.cpp │ │ │ ├── AperturePhotometryConfig.cpp │ │ │ ├── AperturePhotometryPlugin.cpp │ │ │ ├── AperturePhotometryTask.cpp │ │ │ └── AperturePhotometryTaskFactory.cpp │ │ ├── AssocMode │ │ │ ├── AssocModeConfig.cpp │ │ │ ├── AssocModePartitionStep.cpp │ │ │ ├── AssocModePlugin.cpp │ │ │ ├── AssocModeTask.cpp │ │ │ └── AssocModeTaskFactory.cpp │ │ ├── AutoPhotometry │ │ │ ├── AutoPhotometryArrayTask.cpp │ │ │ ├── AutoPhotometryConfig.cpp │ │ │ ├── AutoPhotometryFlagTask.cpp │ │ │ ├── AutoPhotometryPlugin.cpp │ │ │ ├── AutoPhotometryTask.cpp │ │ │ └── AutoPhotometryTaskFactory.cpp │ │ ├── BlendedFlag │ │ │ └── BlendedFlagPlugin.cpp │ │ ├── BoundaryFlag │ │ │ └── BoundaryFlagPlugin.cpp │ │ ├── CoreThresholdPartition │ │ │ ├── CoreThresholdPartitionConfig.cpp │ │ │ ├── CoreThresholdPartitionPlugin.cpp │ │ │ └── CoreThresholdPartitionStep.cpp │ │ ├── DetectionFrameCoordinates │ │ │ ├── DetectionFrameCoordinatesPlugin.cpp │ │ │ ├── DetectionFrameCoordinatesTask.cpp │ │ │ └── DetectionFrameCoordinatesTaskFactory.cpp │ │ ├── DetectionFrameGroupStamp │ │ │ ├── DetectionFrameGroupStampPlugin.cpp │ │ │ ├── DetectionFrameGroupStampTask.cpp │ │ │ └── DetectionFrameGroupStampTaskFactory.cpp │ │ ├── DetectionFrameImages │ │ │ ├── DetectionFrameImagesPlugin.cpp │ │ │ ├── DetectionFrameImagesTask.cpp │ │ │ └── DetectionFrameImagesTaskFactory.cpp │ │ ├── DetectionFrameInfo │ │ │ ├── DetectionFrameInfoPlugin.cpp │ │ │ ├── DetectionFrameInfoTask.cpp │ │ │ └── DetectionFrameInfoTaskFactory.cpp │ │ ├── DetectionFramePixelValues │ │ │ ├── DetectionFramePixelValuesPlugin.cpp │ │ │ ├── DetectionFramePixelValuesTask.cpp │ │ │ └── DetectionFramePixelValuesTaskFactory.cpp │ │ ├── DetectionFrameSourceStamp │ │ │ ├── DetectionFrameSourceStampPlugin.cpp │ │ │ ├── DetectionFrameSourceStampTask.cpp │ │ │ └── DetectionFrameSourceStampTaskFactory.cpp │ │ ├── ErrorEllipse │ │ │ ├── ErrorEllipsePlugin.cpp │ │ │ ├── ErrorEllipseTask.cpp │ │ │ └── ErrorEllipseTaskFactory.cpp │ │ ├── ExternalFlag │ │ │ ├── ExternalFlagConfig.cpp │ │ │ ├── ExternalFlagPlugin.cpp │ │ │ ├── ExternalFlagTask.cpp │ │ │ └── ExternalFlagTaskFactory.cpp │ │ ├── FlexibleModelFitting │ │ │ ├── FlexibleModelFittingConverterFactory.cpp │ │ │ ├── FlexibleModelFittingIterativeTask.cpp │ │ │ ├── FlexibleModelFittingModel.cpp │ │ │ ├── FlexibleModelFittingParameter.cpp │ │ │ ├── FlexibleModelFittingPlugin.cpp │ │ │ ├── FlexibleModelFittingPrior.cpp │ │ │ ├── FlexibleModelFittingTask.cpp │ │ │ └── FlexibleModelFittingTaskFactory.cpp │ │ ├── FluxRadius │ │ │ ├── FluxRadiusConfig.cpp │ │ │ ├── FluxRadiusPlugin.cpp │ │ │ ├── FluxRadiusTask.cpp │ │ │ └── FluxRadiusTaskFactory.cpp │ │ ├── GroupInfo │ │ │ ├── GroupInfoPlugin.cpp │ │ │ ├── GroupInfoTask.cpp │ │ │ └── GroupInfoTaskFactory.cpp │ │ ├── GrowthCurve │ │ │ ├── GrowthCurveConfig.cpp │ │ │ ├── GrowthCurvePlugin.cpp │ │ │ ├── GrowthCurveResampledTask.cpp │ │ │ ├── GrowthCurveTask.cpp │ │ │ └── GrowthCurveTaskFactory.cpp │ │ ├── HduNumber │ │ │ ├── HduNumberPlugin.cpp │ │ │ ├── HduNumberTask.cpp │ │ │ └── HduNumberTaskFactory.cpp │ │ ├── IsophotalFlux │ │ │ ├── IsophotalFluxPlugin.cpp │ │ │ ├── IsophotalFluxTask.cpp │ │ │ └── IsophotalFluxTaskFactory.cpp │ │ ├── Jacobian │ │ │ ├── JacobianPlugin.cpp │ │ │ ├── JacobianTask.cpp │ │ │ └── JacobianTaskFactory.cpp │ │ ├── KronRadius │ │ │ ├── KronRadiusPlugin.cpp │ │ │ ├── KronRadiusTask.cpp │ │ │ └── KronRadiusTaskFactory.cpp │ │ ├── MeasurementFrame │ │ │ ├── MeasurementFramePlugin.cpp │ │ │ ├── MeasurementFrameTask.cpp │ │ │ └── MeasurementFrameTaskFactory.cpp │ │ ├── MeasurementFrameCoordinates │ │ │ ├── MeasurementFrameCoordinatesPlugin.cpp │ │ │ ├── MeasurementFrameCoordinatesTask.cpp │ │ │ └── MeasurementFrameCoordinatesTaskFactory.cpp │ │ ├── MeasurementFrameGroupRectangle │ │ │ ├── MeasurementFrameGroupRectanglePlugin.cpp │ │ │ ├── MeasurementFrameGroupRectangleTask.cpp │ │ │ └── MeasurementFrameGroupRectangleTaskFactory.cpp │ │ ├── MeasurementFrameImages │ │ │ ├── MeasurementFrameImagesPlugin.cpp │ │ │ ├── MeasurementFrameImagesTask.cpp │ │ │ └── MeasurementFrameImagesTaskFactory.cpp │ │ ├── MeasurementFrameInfo │ │ │ ├── MeasurementFrameInfoPlugin.cpp │ │ │ ├── MeasurementFrameInfoTask.cpp │ │ │ └── MeasurementFrameInfoTaskFactory.cpp │ │ ├── MeasurementFramePixelCentroid │ │ │ ├── MeasurementFramePixelCentroidPlugin.cpp │ │ │ ├── MeasurementFramePixelCentroidTask.cpp │ │ │ └── MeasurementFramePixelCentroidTaskFactory.cpp │ │ ├── MeasurementFrameRectangle │ │ │ ├── MeasurementFrameRectanglePlugin.cpp │ │ │ ├── MeasurementFrameRectangleTask.cpp │ │ │ ├── MeasurementFrameRectangleTaskFactory.cpp │ │ │ └── MeasurementFrameRectangleTaskNoDetect.cpp │ │ ├── MoffatModelFitting │ │ │ ├── MoffatModelEvaluator.cpp │ │ │ ├── MoffatModelFittingPlugin.cpp │ │ │ ├── MoffatModelFittingTask.cpp │ │ │ └── MoffatModelFittingTaskFactory.cpp │ │ ├── NDetectedPixels │ │ │ └── NDetectedPixelsPlugin.cpp │ │ ├── Onnx │ │ │ ├── OnnxConfig.cpp │ │ │ ├── OnnxPlugin.cpp │ │ │ ├── OnnxSourceTask.cpp │ │ │ └── OnnxTaskFactory.cpp │ │ ├── PeakValue │ │ │ └── PeakValuePlugin.cpp │ │ ├── PixelBoundaries │ │ │ ├── PixelBoundariesPlugin.cpp │ │ │ ├── PixelBoundariesTask.cpp │ │ │ └── PixelBoundariesTaskFactory.cpp │ │ ├── PixelCentroid │ │ │ ├── PixelCentroidPlugin.cpp │ │ │ ├── PixelCentroidTask.cpp │ │ │ └── PixelCentroidTaskFactory.cpp │ │ ├── Psf │ │ │ ├── PsfPlugin.cpp │ │ │ ├── PsfPluginConfig.cpp │ │ │ ├── PsfTask.cpp │ │ │ └── PsfTaskFactory.cpp │ │ ├── ReferenceCoordinates │ │ │ ├── ReferenceCoordinatesPlugin.cpp │ │ │ ├── ReferenceCoordinatesTask.cpp │ │ │ └── ReferenceCoordinatesTaskFactory.cpp │ │ ├── SNRRatio │ │ │ └── SNRRatioPlugin.cpp │ │ ├── SaturateFlag │ │ │ └── SaturateFlagPlugin.cpp │ │ ├── ShapeParameters │ │ │ ├── ShapeParametersPlugin.cpp │ │ │ ├── ShapeParametersTask.cpp │ │ │ └── ShapeParametersTaskFactory.cpp │ │ ├── SourceFlags │ │ │ ├── SourceFlagsPlugin.cpp │ │ │ ├── SourceFlagsSourceTask.cpp │ │ │ └── SourceFlagsTaskFactory.cpp │ │ ├── SourceIDs │ │ │ └── SourceIDsPlugin.cpp │ │ ├── SourcePsf │ │ │ ├── SourcePsfPlugin.cpp │ │ │ ├── SourcePsfTask.cpp │ │ │ └── SourcePsfTaskFactory.cpp │ │ ├── Vignet │ │ │ ├── VignetArraySourceTask.cpp │ │ │ ├── VignetConfig.cpp │ │ │ ├── VignetPlugin.cpp │ │ │ ├── VignetSourceTask.cpp │ │ │ └── VignetTaskFactory.cpp │ │ └── WorldCentroid │ │ │ ├── WorldCentroidPlugin.cpp │ │ │ ├── WorldCentroidTask.cpp │ │ │ └── WorldCentroidTaskFactory.cpp │ │ ├── Prefetcher │ │ └── Prefetcher.cpp │ │ ├── PythonConfig │ │ ├── ObjectInfo.cpp │ │ ├── PyAperture.cpp │ │ ├── PyFitsFile.cpp │ │ ├── PyId.cpp │ │ ├── PyMeasurementImage.cpp │ │ ├── PyOutputWrapper.cpp │ │ ├── PythonInterpreter.cpp │ │ └── PythonModule.cpp │ │ └── Segmentation │ │ ├── AssocSegmentation.cpp │ │ ├── BFSSegmentation.cpp │ │ ├── BackgroundConvolution.cpp │ │ ├── BgConvolutionImageSource.cpp │ │ ├── BgDFTConvolutionImageSource.cpp │ │ ├── Lutz.cpp │ │ ├── LutzSegmentation.cpp │ │ ├── MLSegmentation.cpp │ │ └── SegmentationFactory.cpp └── tests │ └── src │ ├── Background │ ├── BackgroundHistogram_test.cpp │ ├── KappaSigmaBinning_test.cpp │ ├── MedianFilterImage_test.cpp │ └── ReplaceUndefImage_test.cpp │ ├── Grouping │ └── OverlappingBoundariesCriteria_test.cpp │ ├── Image │ ├── ImageInterfaceTraits_test.cpp │ └── ImagePsf_test.cpp │ ├── Partition │ ├── AttractorsPartitionStep_test.cpp │ ├── MinAreaPartitionStep_test.cpp │ └── MultiThresholdPartitionStep_test.cpp │ ├── Plugin │ ├── AperturePhotometry │ │ └── AperturePhotometry_test.cpp │ ├── AssocMode │ │ └── AssocMode_test.cpp │ ├── DetectionFramePixelValues │ │ └── DetectionFramePixelValues_test.cpp │ ├── DetectionFrameSourceStamp │ │ └── DetectionFrameSourceStamp_test.cpp │ ├── ExternalFlag │ │ └── ExternalFlag_test.cpp │ ├── FluxRadius │ │ └── FluxRadius_test.cpp │ ├── GrowthCurve │ │ └── GrowthCurve_test.cpp │ ├── IsophotalFlux │ │ └── IsophotalFlux_test.cpp │ ├── Jacobian │ │ ├── JacobianGroupTask_test.cpp │ │ └── JacobianSourceTask_test.cpp │ ├── MoffatModelFitting │ │ └── MoffatModelFitting_test.cpp │ ├── PixelBoundaries │ │ └── PixelBoundaries_test.cpp │ ├── PixelCentroid │ │ └── PixelCentroid_test.cpp │ └── Psf │ │ └── PsfTask_test.cpp │ └── Segmentation │ ├── BackgroundConvolution_test.cpp │ └── LutzSegmentation_test.cpp ├── SEMain ├── CMakeLists.txt ├── SEMain │ ├── PluginConfig.h │ ├── ProgressLogger.h │ ├── ProgressMediator.h │ ├── ProgressNCurses.h │ ├── ProgressReporter.h │ ├── ProgressReporterFactory.h │ ├── Sorter.h │ └── SourceXtractorConfig.h ├── auxdir │ └── SEMain │ │ ├── sourcextractor++.desktop │ │ └── sourcextractor++.png ├── conf │ └── sourcextractor++.conf ├── scripts │ └── AppRun └── src │ ├── lib │ ├── PluginConfig.cpp │ ├── ProgressLogger.cpp │ ├── ProgressMediator.cpp │ ├── ProgressNCurses.cpp │ ├── ProgressReporterFactory.cpp │ ├── Sorter.cpp │ └── SourceXtractorConfig.cpp │ └── program │ ├── SourceXtractor.cpp │ └── TestImage.cpp ├── SEUtils ├── CMakeLists.txt ├── SEUtils │ ├── HilbertCurve.h │ ├── IsClose.h │ ├── IsNan.h │ ├── KdTree.h │ ├── Mat22.h │ ├── Misc.h │ ├── NumericalDerivative.h │ ├── Observable.h │ ├── PixelCoordinate.h │ ├── PixelRectangle.h │ ├── QuadTree.h │ ├── TestUtils.h │ ├── Types.h │ ├── VariantCast.h │ └── _impl │ │ ├── KdTree.icpp │ │ └── QuadTree.icpp └── tests │ └── src │ ├── KdTree_test.cpp │ ├── Misc_test.cpp │ ├── NumericalDerivative_test.cpp │ ├── Observable_test.cpp │ ├── PixelCoordinate_test.cpp │ └── QuadTree_test.cpp ├── cmake ├── LocalBuildFlags.cmake └── modules │ ├── FindBoostDLL.cmake │ ├── FindBoostPython.cmake │ ├── FindLevmar.cmake │ ├── FindNcurses.cmake │ ├── FindOnnxRuntime.cmake │ ├── FindReadline.cmake │ └── Findyaml-cpp.cmake └── doc ├── .gitignore ├── Configuration ├── MeasurementConfigurationSystem.dox └── ModelingConfiguration.dox ├── ImplementationHowTos ├── HowToAddAPartitionStep.dox ├── HowToAddASourcePropertyComputation.dox ├── HowToAddASourcePropertyComputationWithConfiguration.dox ├── HowToAddASourcePropertyComputationWithInstances.dox ├── HowToRegisterAPlugin.dox └── ImplementationHowTos.dox ├── Makefile ├── Makefile.in ├── Overview.dox ├── SExtractor.dox ├── assets ├── flowchart.drawio ├── rangetypes.py ├── sersicprior.py └── sersicpriordata.svg ├── img ├── aggregation.png └── grouping.png ├── requirements.txt ├── src ├── Association.rst ├── Background.rst ├── Config.rst ├── ConfigAPI.rst ├── Flagging.rst ├── Input.rst ├── Installing.rst ├── Introduction.rst ├── License.rst ├── Measurements.rst ├── Model.rst ├── Output.rst ├── Photom.rst ├── Position.rst ├── Processing.rst ├── TestData.rst ├── Troubles.rst ├── Using.rst ├── Weighting.rst ├── conf.py ├── conf.py.in ├── config_api │ ├── aperture.rst │ ├── argv.rst │ ├── measurement_images.rst │ ├── model_fitting.rst │ └── output.rst ├── figures │ ├── by-sa.pdf │ ├── by-sa.svg │ ├── colorprior.pdf │ ├── colorprior.svg │ ├── detandmeas.pdf │ ├── detandmeas.svg │ ├── flowchart.pdf │ ├── flowchart.svg │ ├── modevsmean.pdf │ ├── modevsmean.svg │ ├── psf_data.pdf │ ├── psf_data.svg │ ├── psf_table.pdf │ ├── psf_table.svg │ ├── rangetypes.pdf │ ├── rangetypes.svg │ ├── robustgalfit.png │ ├── sersicpriors.pdf │ └── sersicpriors.svg ├── global.rst ├── index.rst ├── keys.rst ├── references.bib ├── references.rst └── roles.rst └── theme └── css └── custom.css /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/.github/workflows/dependencies.txt -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/run-litmus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/.github/workflows/run-litmus.sh -------------------------------------------------------------------------------- /.github/workflows/test-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/.github/workflows/test-dependencies.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /.jenkinsFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/.jenkinsFile -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/CPPLINT.cfg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/Makefile -------------------------------------------------------------------------------- /ModelFitting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/CMakeLists.txt -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/AsinhChiSquareComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/AsinhChiSquareComparator.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/ChiSquareComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/ChiSquareComparator.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/DataVsModelInputTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/DataVsModelInputTraits.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/DataVsModelResiduals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/DataVsModelResiduals.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/EngineParameterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/EngineParameterManager.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/EngineValueResidual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/EngineValueResidual.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/GSLEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/GSLEngine.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/LeastSquareEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/LeastSquareEngine.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/LeastSquareEngineManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/LeastSquareEngineManager.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/LeastSquareSummary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/LeastSquareSummary.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/LevmarEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/LevmarEngine.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/LogChiSquareComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/LogChiSquareComparator.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/OpenCvDataVsModelInputTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/OpenCvDataVsModelInputTraits.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/ResidualBlockProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/ResidualBlockProvider.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/ResidualEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/ResidualEstimator.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/WorldValueResidual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/WorldValueResidual.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/_impl/DataVsModelResiduals.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/_impl/DataVsModelResiduals.icpp -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/_impl/EngineParameterManager.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/_impl/EngineParameterManager.icpp -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Engine/_impl/ResidualEstimator.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Engine/_impl/ResidualEstimator.icpp -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Image/ImageTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Image/ImageTraits.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Image/NullPsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Image/NullPsf.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Image/PsfTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Image/PsfTraits.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/AutoSharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/AutoSharp.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/CircularlySymmetricModelComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/CircularlySymmetricModelComponent.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/CompactExponentialModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/CompactExponentialModel.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/CompactModelBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/CompactModelBase.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/CompactSersicModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/CompactSersicModel.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/ConstantModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/ConstantModel.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/ExtendedModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/ExtendedModel.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/FlattenedMoffatComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/FlattenedMoffatComponent.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/FrameModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/FrameModel.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/ModelComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/ModelComponent.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/OldSharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/OldSharp.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/OnlySmooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/OnlySmooth.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/PointModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/PointModel.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/PositionedModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/PositionedModel.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/RotatedModelComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/RotatedModelComponent.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/ScaledModelComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/ScaledModelComponent.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/SersicProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/SersicProfile.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/SharpRegionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/SharpRegionManager.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/TransformModelComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/TransformModelComponent.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/TransformedModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/TransformedModel.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/_impl/CompactExponentialModel.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/_impl/CompactExponentialModel.icpp -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/_impl/CompactModelBase.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/_impl/CompactModelBase.icpp -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/_impl/CompactSersicModel.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/_impl/CompactSersicModel.icpp -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/_impl/ExtendedModel.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/_impl/ExtendedModel.icpp -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Models/_impl/FrameModel.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Models/_impl/FrameModel.icpp -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Parameters/BasicParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Parameters/BasicParameter.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Parameters/CoordinateConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Parameters/CoordinateConverter.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Parameters/DependentParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Parameters/DependentParameter.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Parameters/EngineParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Parameters/EngineParameter.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Parameters/ExpSigmoidConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Parameters/ExpSigmoidConverter.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Parameters/ManualParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Parameters/ManualParameter.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Parameters/NeutralConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Parameters/NeutralConverter.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Parameters/NormalizedConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Parameters/NormalizedConverter.h -------------------------------------------------------------------------------- /ModelFitting/ModelFitting/Parameters/SigmoidConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/ModelFitting/Parameters/SigmoidConverter.h -------------------------------------------------------------------------------- /ModelFitting/auxdir/gal.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/auxdir/gal.fits -------------------------------------------------------------------------------- /ModelFitting/auxdir/image.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/auxdir/image.fits -------------------------------------------------------------------------------- /ModelFitting/auxdir/multiframe.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/auxdir/multiframe.fits -------------------------------------------------------------------------------- /ModelFitting/auxdir/psf.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/auxdir/psf.fits -------------------------------------------------------------------------------- /ModelFitting/auxdir/psf_gal.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/auxdir/psf_gal.fits -------------------------------------------------------------------------------- /ModelFitting/src/lib/Engine/EngineParameterManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Engine/EngineParameterManager.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Engine/EngineValueResidual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Engine/EngineValueResidual.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Engine/GSLEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Engine/GSLEngine.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Engine/LeastSquareEngineManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Engine/LeastSquareEngineManager.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Engine/LevmarEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Engine/LevmarEngine.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Engine/ResidualEstimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Engine/ResidualEstimator.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Engine/WorldValueResidual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Engine/WorldValueResidual.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Models/AutoSharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Models/AutoSharp.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Models/ConstantModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Models/ConstantModel.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Models/FlattenedMoffatComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Models/FlattenedMoffatComponent.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Models/OldSharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Models/OldSharp.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Models/OnlySmooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Models/OnlySmooth.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Models/PointModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Models/PointModel.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Models/PositionedModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Models/PositionedModel.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Models/RotatedModelComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Models/RotatedModelComponent.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Models/ScaledModelComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Models/ScaledModelComponent.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Models/SersicProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Models/SersicProfile.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Models/TransformModelComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Models/TransformModelComponent.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Parameters/BasicParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Parameters/BasicParameter.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Parameters/EngineParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Parameters/EngineParameter.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Parameters/ExpSigmoidConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Parameters/ExpSigmoidConverter.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Parameters/NeutralConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Parameters/NeutralConverter.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Parameters/NormalizedConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Parameters/NormalizedConverter.cpp -------------------------------------------------------------------------------- /ModelFitting/src/lib/Parameters/SigmoidConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/src/lib/Parameters/SigmoidConverter.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Engine/Engine_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Engine/Engine_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Models/AutoSharp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Models/AutoSharp_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Models/CircularlySymmetricModelComponent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Models/CircularlySymmetricModelComponent_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Models/OldSharp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Models/OldSharp_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Models/RotatedModelComponent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Models/RotatedModelComponent_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Models/ScaledModelComponent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Models/ScaledModelComponent_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Models/SersicProfile_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Models/SersicProfile_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Models/TestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Models/TestHelper.h -------------------------------------------------------------------------------- /ModelFitting/tests/src/Models/TransformModelComponent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Models/TransformModelComponent_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Parameters/BasicParameter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Parameters/BasicParameter_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Parameters/DependentParameter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Parameters/DependentParameter_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Parameters/EngineParameter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Parameters/EngineParameter_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Parameters/ExampleClass_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Parameters/ExampleClass_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Parameters/ExpSigmoidConverter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Parameters/ExpSigmoidConverter_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Parameters/ManualParameter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Parameters/ManualParameter_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Parameters/NeutralConverter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Parameters/NeutralConverter_test.cpp -------------------------------------------------------------------------------- /ModelFitting/tests/src/Parameters/SigmoidConverter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/ModelFitting/tests/src/Parameters/SigmoidConverter_test.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/README.md -------------------------------------------------------------------------------- /SEBenchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEBenchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /SEBenchmarks/src/program/BenchBackgroundConvolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEBenchmarks/src/program/BenchBackgroundConvolution.cpp -------------------------------------------------------------------------------- /SEBenchmarks/src/program/BenchBackgroundModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEBenchmarks/src/program/BenchBackgroundModel.cpp -------------------------------------------------------------------------------- /SEBenchmarks/src/program/BenchConvolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEBenchmarks/src/program/BenchConvolution.cpp -------------------------------------------------------------------------------- /SEBenchmarks/src/program/BenchRendering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEBenchmarks/src/program/BenchRendering.cpp -------------------------------------------------------------------------------- /SEBenchmarks/src/program/BenchVariablePsfStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEBenchmarks/src/program/BenchVariablePsfStack.cpp -------------------------------------------------------------------------------- /SEFramework/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/CMakeLists.txt -------------------------------------------------------------------------------- /SEFramework/SEFramework/Aperture/Aperture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Aperture/Aperture.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Aperture/CircularAperture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Aperture/CircularAperture.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Aperture/EllipticalAperture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Aperture/EllipticalAperture.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Aperture/Flagging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Aperture/Flagging.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Aperture/FluxMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Aperture/FluxMeasurement.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Aperture/NeighbourInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Aperture/NeighbourInfo.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Aperture/TransformedAperture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Aperture/TransformedAperture.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Background/Background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Background/Background.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Background/BackgroundAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Background/BackgroundAnalyzer.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Configuration/Configurable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Configuration/Configurable.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Convolution/Convolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Convolution/Convolution.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Convolution/DFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Convolution/DFT.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Convolution/DirectConvolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Convolution/DirectConvolution.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Convolution/OpenCVConvolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Convolution/OpenCVConvolution.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/CoordinateSystem/CoordinateSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/CoordinateSystem/CoordinateSystem.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/CoordinateSystem/WCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/CoordinateSystem/WCS.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/FFT/FFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/FFT/FFT.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/FFT/FFTHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/FFT/FFTHelper.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/FITS/FitsFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/FITS/FitsFile.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/FITS/FitsImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/FITS/FitsImageSource.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/FITS/FitsReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/FITS/FitsReader.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/FITS/FitsWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/FITS/FitsWriter.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/FITS/TemporaryFitsImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/FITS/TemporaryFitsImageSource.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Frame/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Frame/Frame.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/BufferedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/BufferedImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ConstantImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ConstantImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/FunctionalImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/FunctionalImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/Image.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ImageAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ImageAccessor.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ImageChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ImageChunk.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ImageProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ImageProcessing.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ImageProcessingList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ImageProcessingList.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ImageSource.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ImageSourceWithMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ImageSourceWithMetadata.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ImageTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ImageTile.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/InterpolatedImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/InterpolatedImageSource.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/MaskedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/MaskedImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/MirrorImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/MirrorImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/PaddedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/PaddedImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ProcessedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ProcessedImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ProcessingImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ProcessingImageSource.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/RecenterImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/RecenterImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ScaledImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ScaledImageSource.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/SubImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/SubImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/ThresholdedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/ThresholdedImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/TileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/TileManager.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/VectorImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/VectorImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/WriteableBufferedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/WriteableBufferedImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Image/WriteableImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Image/WriteableImage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Output/Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Output/Output.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Output/OutputRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Output/OutputRegistry.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Pipeline/Deblending.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Pipeline/Deblending.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Pipeline/Measurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Pipeline/Measurement.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Pipeline/Partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Pipeline/Partition.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Pipeline/PipelineStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Pipeline/PipelineStage.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Pipeline/Segmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Pipeline/Segmentation.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Pipeline/SourceGrouping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Pipeline/SourceGrouping.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Plugin/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Plugin/Plugin.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Plugin/PluginAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Plugin/PluginAPI.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Plugin/PluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Plugin/PluginManager.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Plugin/StaticPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Plugin/StaticPlugin.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Property/DetectionFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Property/DetectionFrame.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Property/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Property/Property.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Property/PropertyHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Property/PropertyHolder.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Property/PropertyId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Property/PropertyId.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Property/PropertyNotFoundException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Property/PropertyNotFoundException.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Psf/Psf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Psf/Psf.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Psf/VariablePsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Psf/VariablePsf.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Psf/VariablePsfStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Psf/VariablePsfStack.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SimpleSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SimpleSource.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SimpleSourceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SimpleSourceFactory.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SimpleSourceGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SimpleSourceGroup.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SimpleSourceGroupFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SimpleSourceGroupFactory.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SourceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SourceFactory.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SourceFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SourceFlags.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SourceGroupFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SourceGroupFactory.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SourceGroupInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SourceGroupInterface.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SourceGroupWithOnDemandProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SourceGroupWithOnDemandProperties.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SourceInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SourceInterface.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SourceWithOnDemandProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SourceWithOnDemandProperties.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Source/SourceWithOnDemandPropertiesFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Source/SourceWithOnDemandPropertiesFactory.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Task/GroupTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Task/GroupTask.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Task/SourceTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Task/SourceTask.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Task/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Task/Task.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Task/TaskFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Task/TaskFactory.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Task/TaskFactoryRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Task/TaskFactoryRegistry.h -------------------------------------------------------------------------------- /SEFramework/SEFramework/Task/TaskProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/SEFramework/Task/TaskProvider.h -------------------------------------------------------------------------------- /SEFramework/auxdir/multiple_hdu.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/auxdir/multiple_hdu.fits -------------------------------------------------------------------------------- /SEFramework/auxdir/wcs_header.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/auxdir/wcs_header.fits -------------------------------------------------------------------------------- /SEFramework/auxdir/with_primary.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/auxdir/with_primary.fits -------------------------------------------------------------------------------- /SEFramework/src/lib/Aperture/CircularAperture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Aperture/CircularAperture.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Aperture/EllipticalAperture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Aperture/EllipticalAperture.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Aperture/Flagging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Aperture/Flagging.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Aperture/FluxMeasurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Aperture/FluxMeasurement.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Aperture/NeighbourInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Aperture/NeighbourInfo.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Aperture/TransformedAperture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Aperture/TransformedAperture.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/CoordinateSystem/WCS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/CoordinateSystem/WCS.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/FFT/FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/FFT/FFT.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/FITS/FitsFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/FITS/FitsFile.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/FITS/FitsImageSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/FITS/FitsImageSource.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Frame/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Frame/Frame.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Image/BufferedImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Image/BufferedImage.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Image/ImageTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Image/ImageTile.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Image/TileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Image/TileManager.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Output/OutputRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Output/OutputRegistry.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Pipeline/Deblending.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Pipeline/Deblending.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Pipeline/Partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Pipeline/Partition.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Pipeline/PipelineStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Pipeline/PipelineStage.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Pipeline/Segmentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Pipeline/Segmentation.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Pipeline/SourceGrouping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Pipeline/SourceGrouping.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Plugin/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Plugin/PluginManager.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Property/PropertyHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Property/PropertyHolder.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Property/PropertyId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Property/PropertyId.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Psf/VariablePsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Psf/VariablePsf.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Psf/VariablePsfStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Psf/VariablePsfStack.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Source/EntangledSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Source/EntangledSource.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Source/SimpleSourceGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Source/SimpleSourceGroup.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Source/SourceGroupWithOnDemandProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Source/SourceGroupWithOnDemandProperties.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Source/SourceWithOnDemandProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Source/SourceWithOnDemandProperties.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Task/TaskFactoryRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Task/TaskFactoryRegistry.cpp -------------------------------------------------------------------------------- /SEFramework/src/lib/Task/TaskProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/src/lib/Task/TaskProvider.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Aperture/Fixture.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Aperture/Fixture.icpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Aperture/Flagging_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Aperture/Flagging_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Aperture/FluxMeasurement_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Aperture/FluxMeasurement_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Aperture/NeighbourInfo_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Aperture/NeighbourInfo_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Aperture/TransformedAperture_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Aperture/TransformedAperture_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Convolution/DFT_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Convolution/DFT_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Convolution/DirectConvolution_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Convolution/DirectConvolution_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/CoordinateSystem/WCS_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/CoordinateSystem/WCS_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/FFT/FFT_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/FFT/FFT_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/FITS/1px.fits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/FITS/1px.fits.h -------------------------------------------------------------------------------- /SEFramework/tests/src/FITS/FitsImageSource_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/FITS/FitsImageSource_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/FITS/FitsReader_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/FITS/FitsReader_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/FITS/TemporaryFitsSource_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/FITS/TemporaryFitsSource_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/BufferedImage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/BufferedImage_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/FunctionalImage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/FunctionalImage_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/ImageAccessor_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/ImageAccessor_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/ImageChunk_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/ImageChunk_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/InterpolatedImageSource_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/InterpolatedImageSource_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/MaskedImage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/MaskedImage_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/MirrorImage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/MirrorImage_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/PaddedImage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/PaddedImage_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/RecenterImage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/RecenterImage_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/ScaledImageSource_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/ScaledImageSource_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/SubImage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/SubImage_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Image/VectorImage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Image/VectorImage_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Pipeline/Deblending_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Pipeline/Deblending_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Pipeline/Partition_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Pipeline/Partition_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Pipeline/SourceGrouping_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Pipeline/SourceGrouping_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Property/PropertyHolder_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Property/PropertyHolder_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Property/PropertyId_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Property/PropertyId_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Psf/CubicFullPsf.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Psf/CubicFullPsf.icpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Psf/LinearFullPsf.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Psf/LinearFullPsf.icpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Psf/VariablePsf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Psf/VariablePsf_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Source/SimpleSource_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Source/SimpleSource_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Source/SourceGroupWithOnDemandProperties_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Source/SourceGroupWithOnDemandProperties_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Source/SourceInterface_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Source/SourceInterface_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Source/SourceWithOnDemandProperties_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Source/SourceWithOnDemandProperties_test.cpp -------------------------------------------------------------------------------- /SEFramework/tests/src/Task/TaskProvider_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEFramework/tests/src/Task/TaskProvider_test.cpp -------------------------------------------------------------------------------- /SEImplementation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/CMakeLists.txt -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Background/BackgroundAnalyzerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Background/BackgroundAnalyzerFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Background/SE/ImageMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Background/SE/ImageMode.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Background/SE/KappaSigmaBinning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Background/SE/KappaSigmaBinning.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Background/SE/MedianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Background/SE/MedianFilter.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Background/SE/ReplaceUndefImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Background/SE/ReplaceUndefImage.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Background/SimpleBackgroundAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Background/SimpleBackgroundAnalyzer.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Background/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Background/Utils.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/CheckImages/CheckImages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/CheckImages/CheckImages.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/CheckImages/DetectionIdCheckImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/CheckImages/DetectionIdCheckImage.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/CheckImages/GroupIdCheckImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/CheckImages/GroupIdCheckImage.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/CheckImages/MoffatCheckImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/CheckImages/MoffatCheckImage.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/CheckImages/SourceIdCheckImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/CheckImages/SourceIdCheckImage.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Common/OnnxCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Common/OnnxCommon.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Common/OnnxModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Common/OnnxModel.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/BackgroundConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/BackgroundConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/CheckImagesConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/CheckImagesConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/CleaningConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/CleaningConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/DeblendStepConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/DeblendStepConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/DetectionFrameConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/DetectionFrameConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/DetectionImageConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/DetectionImageConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/FileManagerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/FileManagerConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/GroupingConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/GroupingConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/MagnitudeConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/MagnitudeConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/MeasurementFrameConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/MeasurementFrameConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/MeasurementImageConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/MeasurementImageConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/MemoryConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/MemoryConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/MinAreaPartitionConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/MinAreaPartitionConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/ModelFittingConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/ModelFittingConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/MultiThreadingConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/MultiThreadingConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/OutputConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/OutputConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/PartitionStepConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/PartitionStepConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/PythonConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/PythonConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/RngConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/RngConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/SE2BackgroundConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/SE2BackgroundConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/SamplingConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/SamplingConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/SegmentationConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/SegmentationConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Configuration/WeightImageConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Configuration/WeightImageConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Deblending/Cleaning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Deblending/Cleaning.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Deblending/DeblendingFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Deblending/DeblendingFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Grouping/AssocCriteria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Grouping/AssocCriteria.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Grouping/AssocGrouping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Grouping/AssocGrouping.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Grouping/GroupingFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Grouping/GroupingFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Grouping/LineSelectionCriteria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Grouping/LineSelectionCriteria.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Grouping/MoffatCriteria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Grouping/MoffatCriteria.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Grouping/MoffatGrouping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Grouping/MoffatGrouping.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Grouping/NoGroupingCriteria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Grouping/NoGroupingCriteria.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Grouping/SplitSourcesCriteria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Grouping/SplitSourcesCriteria.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Grouping/SplitSourcesGrouping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Grouping/SplitSourcesGrouping.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Image/DownSampledImagePsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Image/DownSampledImagePsf.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Image/ImageInterfaceTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Image/ImageInterfaceTraits.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Image/ImagePsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Image/ImagePsf.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Image/LockedWriteableImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Image/LockedWriteableImage.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Image/WriteableImageInterfaceTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Image/WriteableImageInterfaceTraits.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Measurement/DummyMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Measurement/DummyMeasurement.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Measurement/MeasurementFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Measurement/MeasurementFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Measurement/MultithreadedMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Measurement/MultithreadedMeasurement.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Output/AsciiOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Output/AsciiOutput.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Output/FitsOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Output/FitsOutput.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Output/FlushableOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Output/FlushableOutput.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Output/LdacOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Output/LdacOutput.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Output/OutputFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Output/OutputFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Partition/AttractorsPartitionStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Partition/AttractorsPartitionStep.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Partition/MinAreaPartitionStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Partition/MinAreaPartitionStep.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Partition/PartitionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Partition/PartitionFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/AssocMode/AssocMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/AssocMode/AssocMode.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/AssocMode/AssocModeConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/AssocMode/AssocModeConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/AssocMode/AssocModeDummyTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/AssocMode/AssocModeDummyTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/AssocMode/AssocModePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/AssocMode/AssocModePlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/AssocMode/AssocModeTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/AssocMode/AssocModeTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/AutoPhotometry/AutoPhotometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/AutoPhotometry/AutoPhotometry.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/BlendedFlag/BlendedFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/BlendedFlag/BlendedFlag.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/BlendedFlag/BlendedFlagPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/BlendedFlag/BlendedFlagPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/BlendedFlag/BlendedFlagTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/BlendedFlag/BlendedFlagTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/BoundaryFlag/BoundaryFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/BoundaryFlag/BoundaryFlag.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/ErrorEllipse/ErrorEllipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/ErrorEllipse/ErrorEllipse.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/ErrorEllipse/ErrorEllipseTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/ErrorEllipse/ErrorEllipseTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/ExternalFlag/ExternalFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/ExternalFlag/ExternalFlag.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/ExternalFlag/ExternalFlagTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/ExternalFlag/ExternalFlagTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/FluxRadius/FluxRadius.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/FluxRadius/FluxRadius.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/FluxRadius/FluxRadiusConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/FluxRadius/FluxRadiusConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/FluxRadius/FluxRadiusPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/FluxRadius/FluxRadiusPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/FluxRadius/FluxRadiusTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/FluxRadius/FluxRadiusTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/GroupInfo/GroupInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/GroupInfo/GroupInfo.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/GroupInfo/GroupInfoPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/GroupInfo/GroupInfoPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/GroupInfo/GroupInfoTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/GroupInfo/GroupInfoTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/GrowthCurve/GrowthCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/GrowthCurve/GrowthCurve.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/GrowthCurve/GrowthCurveConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/GrowthCurve/GrowthCurveConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/GrowthCurve/GrowthCurvePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/GrowthCurve/GrowthCurvePlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/GrowthCurve/GrowthCurveTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/GrowthCurve/GrowthCurveTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/HduNumber/HduNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/HduNumber/HduNumber.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/HduNumber/HduNumberPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/HduNumber/HduNumberPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/HduNumber/HduNumberTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/HduNumber/HduNumberTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/IsophotalFlux/IsophotalFlux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/IsophotalFlux/IsophotalFlux.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Jacobian/Jacobian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Jacobian/Jacobian.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Jacobian/JacobianPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Jacobian/JacobianPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Jacobian/JacobianTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Jacobian/JacobianTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Jacobian/JacobianTaskFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Jacobian/JacobianTaskFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/KronRadius/KronRadius.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/KronRadius/KronRadius.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/KronRadius/KronRadiusPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/KronRadius/KronRadiusPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/KronRadius/KronRadiusTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/KronRadius/KronRadiusTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Onnx/OnnxConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Onnx/OnnxConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Onnx/OnnxPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Onnx/OnnxPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Onnx/OnnxProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Onnx/OnnxProperty.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Onnx/OnnxSourceTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Onnx/OnnxSourceTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Onnx/OnnxTaskFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Onnx/OnnxTaskFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/PeakValue/PeakValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/PeakValue/PeakValue.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/PeakValue/PeakValuePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/PeakValue/PeakValuePlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/PeakValue/PeakValueTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/PeakValue/PeakValueTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/PixelCentroid/PixelCentroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/PixelCentroid/PixelCentroid.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Psf/PsfPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Psf/PsfPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Psf/PsfPluginConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Psf/PsfPluginConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Psf/PsfProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Psf/PsfProperty.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Psf/PsfTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Psf/PsfTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Psf/PsfTaskFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Psf/PsfTaskFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SNRRatio/SNRRatio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SNRRatio/SNRRatio.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SNRRatio/SNRRatioPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SNRRatio/SNRRatioPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SNRRatio/SNRRatioSourceTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SNRRatio/SNRRatioSourceTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SNRRatio/SNRRatioTaskFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SNRRatio/SNRRatioTaskFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SaturateFlag/SaturateFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SaturateFlag/SaturateFlag.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SourceFlags/SourceFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SourceFlags/SourceFlags.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SourceFlags/SourceFlagsPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SourceFlags/SourceFlagsPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SourceIDs/SourceID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SourceIDs/SourceID.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SourceIDs/SourceIDTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SourceIDs/SourceIDTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SourceIDs/SourceIDTaskFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SourceIDs/SourceIDTaskFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SourceIDs/SourceIDsPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SourceIDs/SourceIDsPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SourcePsf/SourcePsfPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SourcePsf/SourcePsfPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SourcePsf/SourcePsfProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SourcePsf/SourcePsfProperty.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/SourcePsf/SourcePsfTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/SourcePsf/SourcePsfTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Vignet/Vignet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Vignet/Vignet.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Vignet/VignetArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Vignet/VignetArray.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Vignet/VignetArraySourceTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Vignet/VignetArraySourceTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Vignet/VignetConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Vignet/VignetConfig.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Vignet/VignetPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Vignet/VignetPlugin.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Vignet/VignetSourceTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Vignet/VignetSourceTask.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/Vignet/VignetTaskFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/Vignet/VignetTaskFactory.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Plugin/WorldCentroid/WorldCentroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Plugin/WorldCentroid/WorldCentroid.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Prefetcher/Prefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Prefetcher/Prefetcher.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Property/PixelCoordinateList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Property/PixelCoordinateList.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Property/SourceId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Property/SourceId.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/PythonConfig/ObjectInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/PythonConfig/ObjectInfo.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/PythonConfig/PyAperture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/PythonConfig/PyAperture.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/PythonConfig/PyFitsFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/PythonConfig/PyFitsFile.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/PythonConfig/PyId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/PythonConfig/PyId.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/PythonConfig/PyMeasurementImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/PythonConfig/PyMeasurementImage.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/PythonConfig/PyOutputWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/PythonConfig/PyOutputWrapper.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/PythonConfig/PythonInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/PythonConfig/PythonInterpreter.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/PythonConfig/PythonModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/PythonConfig/PythonModule.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Segmentation/AssocSegmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Segmentation/AssocSegmentation.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Segmentation/BFSSegmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Segmentation/BFSSegmentation.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Segmentation/BackgroundConvolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Segmentation/BackgroundConvolution.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Segmentation/Lutz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Segmentation/Lutz.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Segmentation/LutzSegmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Segmentation/LutzSegmentation.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Segmentation/MLSegmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Segmentation/MLSegmentation.h -------------------------------------------------------------------------------- /SEImplementation/SEImplementation/Segmentation/SegmentationFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/SEImplementation/Segmentation/SegmentationFactory.h -------------------------------------------------------------------------------- /SEImplementation/python/sourcextractor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/python/sourcextractor/__init__.py -------------------------------------------------------------------------------- /SEImplementation/python/sourcextractor/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/python/sourcextractor/config/__init__.py -------------------------------------------------------------------------------- /SEImplementation/python/sourcextractor/config/argv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/python/sourcextractor/config/argv.py -------------------------------------------------------------------------------- /SEImplementation/python/sourcextractor/config/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/python/sourcextractor/config/compat.py -------------------------------------------------------------------------------- /SEImplementation/python/sourcextractor/config/measurement_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/python/sourcextractor/config/measurement_config.py -------------------------------------------------------------------------------- /SEImplementation/python/sourcextractor/config/measurement_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/python/sourcextractor/config/measurement_images.py -------------------------------------------------------------------------------- /SEImplementation/python/sourcextractor/config/model_fitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/python/sourcextractor/config/model_fitting.py -------------------------------------------------------------------------------- /SEImplementation/src/lib/Background/BackgroundAnalyzerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Background/BackgroundAnalyzerFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Background/SE/ImageMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Background/SE/ImageMode.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Background/SE/ReplaceUndefImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Background/SE/ReplaceUndefImage.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Background/SE/SEBackgroundLevelAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Background/SE/SEBackgroundLevelAnalyzer.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Background/SimpleBackgroundAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Background/SimpleBackgroundAnalyzer.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/CheckImages/CheckImages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/CheckImages/CheckImages.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/CheckImages/DetectionIdCheckImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/CheckImages/DetectionIdCheckImage.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/CheckImages/GroupIdCheckImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/CheckImages/GroupIdCheckImage.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/CheckImages/MoffatCheckImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/CheckImages/MoffatCheckImage.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/CheckImages/SourceIdCheckImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/CheckImages/SourceIdCheckImage.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Common/OnnxCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Common/OnnxCommon.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Common/OnnxModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Common/OnnxModel.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/AttractorsPartitionConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/AttractorsPartitionConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/BackgroundConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/BackgroundConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/CheckImagesConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/CheckImagesConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/CleaningConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/CleaningConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/DeblendStepConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/DeblendStepConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/DetectionFrameConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/DetectionFrameConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/DetectionImageConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/DetectionImageConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/FileManagerConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/FileManagerConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/GroupingConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/GroupingConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/LegacyModelFittingConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/LegacyModelFittingConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/MagnitudeConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/MagnitudeConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/MeasurementFrameConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/MeasurementFrameConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/MeasurementImageConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/MeasurementImageConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/MemoryConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/MemoryConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/MinAreaPartitionConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/MinAreaPartitionConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/ModelFittingConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/ModelFittingConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/MultiThreadingConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/MultiThreadingConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/MultiThresholdPartitionConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/MultiThresholdPartitionConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/OutputConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/OutputConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/PartitionStepConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/PartitionStepConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/PythonConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/PythonConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/RngConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/RngConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/SE2BackgroundConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/SE2BackgroundConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/SamplingConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/SamplingConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/SegmentationConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/SegmentationConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Configuration/WeightImageConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Configuration/WeightImageConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Deblending/Cleaning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Deblending/Cleaning.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Grouping/AssocCriteria.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Grouping/AssocCriteria.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Grouping/AssocGrouping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Grouping/AssocGrouping.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Grouping/GroupingFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Grouping/GroupingFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Grouping/LineSelectionCriteria.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Grouping/LineSelectionCriteria.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Grouping/MoffatCriteria.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Grouping/MoffatCriteria.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Grouping/MoffatGrouping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Grouping/MoffatGrouping.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Grouping/OverlappingBoundariesCriteria.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Grouping/OverlappingBoundariesCriteria.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Grouping/SplitSourcesCriteria.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Grouping/SplitSourcesCriteria.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Grouping/SplitSourcesGrouping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Grouping/SplitSourcesGrouping.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Image/DownSampledImagePsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Image/DownSampledImagePsf.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Image/ImageInterfaceTraits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Image/ImageInterfaceTraits.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Measurement/MeasurementFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Measurement/MeasurementFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Measurement/MultithreadedMeasurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Measurement/MultithreadedMeasurement.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Output/LdacOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Output/LdacOutput.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Output/OutputFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Output/OutputFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Partition/AttractorsPartitionStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Partition/AttractorsPartitionStep.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Partition/MinAreaPartitionStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Partition/MinAreaPartitionStep.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Partition/MultiThresholdPartitionStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Partition/MultiThresholdPartitionStep.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/AperturePhotometry/ApertureFlagTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/AperturePhotometry/ApertureFlagTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/AssocMode/AssocModeConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/AssocMode/AssocModeConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/AssocMode/AssocModePartitionStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/AssocMode/AssocModePartitionStep.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/AssocMode/AssocModePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/AssocMode/AssocModePlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/AssocMode/AssocModeTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/AssocMode/AssocModeTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/AssocMode/AssocModeTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/AssocMode/AssocModeTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/AutoPhotometry/AutoPhotometryConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/AutoPhotometry/AutoPhotometryConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/AutoPhotometry/AutoPhotometryPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/AutoPhotometry/AutoPhotometryPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/AutoPhotometry/AutoPhotometryTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/AutoPhotometry/AutoPhotometryTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/BlendedFlag/BlendedFlagPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/BlendedFlag/BlendedFlagPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/BoundaryFlag/BoundaryFlagPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/BoundaryFlag/BoundaryFlagPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/ErrorEllipse/ErrorEllipsePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/ErrorEllipse/ErrorEllipsePlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/ErrorEllipse/ErrorEllipseTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/ErrorEllipse/ErrorEllipseTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/ErrorEllipse/ErrorEllipseTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/ErrorEllipse/ErrorEllipseTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/ExternalFlag/ExternalFlagConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/ExternalFlag/ExternalFlagConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/ExternalFlag/ExternalFlagPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/ExternalFlag/ExternalFlagPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/ExternalFlag/ExternalFlagTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/ExternalFlag/ExternalFlagTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/FluxRadius/FluxRadiusConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/FluxRadius/FluxRadiusConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/FluxRadius/FluxRadiusPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/FluxRadius/FluxRadiusPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/FluxRadius/FluxRadiusTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/FluxRadius/FluxRadiusTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/FluxRadius/FluxRadiusTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/FluxRadius/FluxRadiusTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/GroupInfo/GroupInfoPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/GroupInfo/GroupInfoPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/GroupInfo/GroupInfoTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/GroupInfo/GroupInfoTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/GroupInfo/GroupInfoTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/GroupInfo/GroupInfoTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/GrowthCurve/GrowthCurveConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/GrowthCurve/GrowthCurveConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/GrowthCurve/GrowthCurvePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/GrowthCurve/GrowthCurvePlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/GrowthCurve/GrowthCurveTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/GrowthCurve/GrowthCurveTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/GrowthCurve/GrowthCurveTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/GrowthCurve/GrowthCurveTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/HduNumber/HduNumberPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/HduNumber/HduNumberPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/HduNumber/HduNumberTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/HduNumber/HduNumberTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/HduNumber/HduNumberTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/HduNumber/HduNumberTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/IsophotalFlux/IsophotalFluxPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/IsophotalFlux/IsophotalFluxPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/IsophotalFlux/IsophotalFluxTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/IsophotalFlux/IsophotalFluxTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Jacobian/JacobianPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Jacobian/JacobianPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Jacobian/JacobianTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Jacobian/JacobianTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Jacobian/JacobianTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Jacobian/JacobianTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/KronRadius/KronRadiusPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/KronRadius/KronRadiusPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/KronRadius/KronRadiusTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/KronRadius/KronRadiusTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/KronRadius/KronRadiusTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/KronRadius/KronRadiusTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Onnx/OnnxConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Onnx/OnnxConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Onnx/OnnxPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Onnx/OnnxPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Onnx/OnnxSourceTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Onnx/OnnxSourceTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Onnx/OnnxTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Onnx/OnnxTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/PeakValue/PeakValuePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/PeakValue/PeakValuePlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/PixelCentroid/PixelCentroidPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/PixelCentroid/PixelCentroidPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/PixelCentroid/PixelCentroidTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/PixelCentroid/PixelCentroidTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Psf/PsfPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Psf/PsfPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Psf/PsfPluginConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Psf/PsfPluginConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Psf/PsfTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Psf/PsfTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Psf/PsfTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Psf/PsfTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/SNRRatio/SNRRatioPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/SNRRatio/SNRRatioPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/SaturateFlag/SaturateFlagPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/SaturateFlag/SaturateFlagPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/SourceFlags/SourceFlagsPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/SourceFlags/SourceFlagsPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/SourceFlags/SourceFlagsSourceTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/SourceFlags/SourceFlagsSourceTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/SourceFlags/SourceFlagsTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/SourceFlags/SourceFlagsTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/SourceIDs/SourceIDsPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/SourceIDs/SourceIDsPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/SourcePsf/SourcePsfPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/SourcePsf/SourcePsfPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/SourcePsf/SourcePsfTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/SourcePsf/SourcePsfTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/SourcePsf/SourcePsfTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/SourcePsf/SourcePsfTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Vignet/VignetArraySourceTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Vignet/VignetArraySourceTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Vignet/VignetConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Vignet/VignetConfig.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Vignet/VignetPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Vignet/VignetPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Vignet/VignetSourceTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Vignet/VignetSourceTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/Vignet/VignetTaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/Vignet/VignetTaskFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/WorldCentroid/WorldCentroidPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/WorldCentroid/WorldCentroidPlugin.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Plugin/WorldCentroid/WorldCentroidTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Plugin/WorldCentroid/WorldCentroidTask.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Prefetcher/Prefetcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Prefetcher/Prefetcher.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/PythonConfig/ObjectInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/PythonConfig/ObjectInfo.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/PythonConfig/PyAperture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/PythonConfig/PyAperture.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/PythonConfig/PyFitsFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/PythonConfig/PyFitsFile.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/PythonConfig/PyId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/PythonConfig/PyId.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/PythonConfig/PyMeasurementImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/PythonConfig/PyMeasurementImage.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/PythonConfig/PyOutputWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/PythonConfig/PyOutputWrapper.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/PythonConfig/PythonInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/PythonConfig/PythonInterpreter.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/PythonConfig/PythonModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/PythonConfig/PythonModule.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Segmentation/AssocSegmentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Segmentation/AssocSegmentation.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Segmentation/BFSSegmentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Segmentation/BFSSegmentation.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Segmentation/BackgroundConvolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Segmentation/BackgroundConvolution.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Segmentation/BgConvolutionImageSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Segmentation/BgConvolutionImageSource.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Segmentation/BgDFTConvolutionImageSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Segmentation/BgDFTConvolutionImageSource.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Segmentation/Lutz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Segmentation/Lutz.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Segmentation/LutzSegmentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Segmentation/LutzSegmentation.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Segmentation/MLSegmentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Segmentation/MLSegmentation.cpp -------------------------------------------------------------------------------- /SEImplementation/src/lib/Segmentation/SegmentationFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/src/lib/Segmentation/SegmentationFactory.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Background/BackgroundHistogram_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Background/BackgroundHistogram_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Background/KappaSigmaBinning_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Background/KappaSigmaBinning_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Background/MedianFilterImage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Background/MedianFilterImage_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Background/ReplaceUndefImage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Background/ReplaceUndefImage_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Image/ImageInterfaceTraits_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Image/ImageInterfaceTraits_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Image/ImagePsf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Image/ImagePsf_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Partition/AttractorsPartitionStep_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Partition/AttractorsPartitionStep_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Partition/MinAreaPartitionStep_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Partition/MinAreaPartitionStep_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Plugin/AssocMode/AssocMode_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Plugin/AssocMode/AssocMode_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Plugin/ExternalFlag/ExternalFlag_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Plugin/ExternalFlag/ExternalFlag_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Plugin/FluxRadius/FluxRadius_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Plugin/FluxRadius/FluxRadius_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Plugin/GrowthCurve/GrowthCurve_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Plugin/GrowthCurve/GrowthCurve_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Plugin/IsophotalFlux/IsophotalFlux_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Plugin/IsophotalFlux/IsophotalFlux_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Plugin/Jacobian/JacobianGroupTask_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Plugin/Jacobian/JacobianGroupTask_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Plugin/Jacobian/JacobianSourceTask_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Plugin/Jacobian/JacobianSourceTask_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Plugin/PixelCentroid/PixelCentroid_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Plugin/PixelCentroid/PixelCentroid_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Plugin/Psf/PsfTask_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Plugin/Psf/PsfTask_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Segmentation/BackgroundConvolution_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Segmentation/BackgroundConvolution_test.cpp -------------------------------------------------------------------------------- /SEImplementation/tests/src/Segmentation/LutzSegmentation_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEImplementation/tests/src/Segmentation/LutzSegmentation_test.cpp -------------------------------------------------------------------------------- /SEMain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/CMakeLists.txt -------------------------------------------------------------------------------- /SEMain/SEMain/PluginConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/SEMain/PluginConfig.h -------------------------------------------------------------------------------- /SEMain/SEMain/ProgressLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/SEMain/ProgressLogger.h -------------------------------------------------------------------------------- /SEMain/SEMain/ProgressMediator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/SEMain/ProgressMediator.h -------------------------------------------------------------------------------- /SEMain/SEMain/ProgressNCurses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/SEMain/ProgressNCurses.h -------------------------------------------------------------------------------- /SEMain/SEMain/ProgressReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/SEMain/ProgressReporter.h -------------------------------------------------------------------------------- /SEMain/SEMain/ProgressReporterFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/SEMain/ProgressReporterFactory.h -------------------------------------------------------------------------------- /SEMain/SEMain/Sorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/SEMain/Sorter.h -------------------------------------------------------------------------------- /SEMain/SEMain/SourceXtractorConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/SEMain/SourceXtractorConfig.h -------------------------------------------------------------------------------- /SEMain/auxdir/SEMain/sourcextractor++.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/auxdir/SEMain/sourcextractor++.desktop -------------------------------------------------------------------------------- /SEMain/auxdir/SEMain/sourcextractor++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/auxdir/SEMain/sourcextractor++.png -------------------------------------------------------------------------------- /SEMain/conf/sourcextractor++.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/conf/sourcextractor++.conf -------------------------------------------------------------------------------- /SEMain/scripts/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/scripts/AppRun -------------------------------------------------------------------------------- /SEMain/src/lib/PluginConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/src/lib/PluginConfig.cpp -------------------------------------------------------------------------------- /SEMain/src/lib/ProgressLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/src/lib/ProgressLogger.cpp -------------------------------------------------------------------------------- /SEMain/src/lib/ProgressMediator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/src/lib/ProgressMediator.cpp -------------------------------------------------------------------------------- /SEMain/src/lib/ProgressNCurses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/src/lib/ProgressNCurses.cpp -------------------------------------------------------------------------------- /SEMain/src/lib/ProgressReporterFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/src/lib/ProgressReporterFactory.cpp -------------------------------------------------------------------------------- /SEMain/src/lib/Sorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/src/lib/Sorter.cpp -------------------------------------------------------------------------------- /SEMain/src/lib/SourceXtractorConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/src/lib/SourceXtractorConfig.cpp -------------------------------------------------------------------------------- /SEMain/src/program/SourceXtractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/src/program/SourceXtractor.cpp -------------------------------------------------------------------------------- /SEMain/src/program/TestImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEMain/src/program/TestImage.cpp -------------------------------------------------------------------------------- /SEUtils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/CMakeLists.txt -------------------------------------------------------------------------------- /SEUtils/SEUtils/HilbertCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/HilbertCurve.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/IsClose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/IsClose.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/IsNan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/IsNan.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/KdTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/KdTree.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/Mat22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/Mat22.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/Misc.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/NumericalDerivative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/NumericalDerivative.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/Observable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/Observable.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/PixelCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/PixelCoordinate.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/PixelRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/PixelRectangle.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/QuadTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/QuadTree.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/TestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/TestUtils.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/Types.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/VariantCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/VariantCast.h -------------------------------------------------------------------------------- /SEUtils/SEUtils/_impl/KdTree.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/_impl/KdTree.icpp -------------------------------------------------------------------------------- /SEUtils/SEUtils/_impl/QuadTree.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/SEUtils/_impl/QuadTree.icpp -------------------------------------------------------------------------------- /SEUtils/tests/src/KdTree_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/tests/src/KdTree_test.cpp -------------------------------------------------------------------------------- /SEUtils/tests/src/Misc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/tests/src/Misc_test.cpp -------------------------------------------------------------------------------- /SEUtils/tests/src/NumericalDerivative_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/tests/src/NumericalDerivative_test.cpp -------------------------------------------------------------------------------- /SEUtils/tests/src/Observable_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/tests/src/Observable_test.cpp -------------------------------------------------------------------------------- /SEUtils/tests/src/PixelCoordinate_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/tests/src/PixelCoordinate_test.cpp -------------------------------------------------------------------------------- /SEUtils/tests/src/QuadTree_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/SEUtils/tests/src/QuadTree_test.cpp -------------------------------------------------------------------------------- /cmake/LocalBuildFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/cmake/LocalBuildFlags.cmake -------------------------------------------------------------------------------- /cmake/modules/FindBoostDLL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/cmake/modules/FindBoostDLL.cmake -------------------------------------------------------------------------------- /cmake/modules/FindBoostPython.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/cmake/modules/FindBoostPython.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLevmar.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/cmake/modules/FindLevmar.cmake -------------------------------------------------------------------------------- /cmake/modules/FindNcurses.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/cmake/modules/FindNcurses.cmake -------------------------------------------------------------------------------- /cmake/modules/FindOnnxRuntime.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/cmake/modules/FindOnnxRuntime.cmake -------------------------------------------------------------------------------- /cmake/modules/FindReadline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/cmake/modules/FindReadline.cmake -------------------------------------------------------------------------------- /cmake/modules/Findyaml-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/cmake/modules/Findyaml-cpp.cmake -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | /html/ 2 | -------------------------------------------------------------------------------- /doc/Configuration/MeasurementConfigurationSystem.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/Configuration/MeasurementConfigurationSystem.dox -------------------------------------------------------------------------------- /doc/Configuration/ModelingConfiguration.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/Configuration/ModelingConfiguration.dox -------------------------------------------------------------------------------- /doc/ImplementationHowTos/HowToAddAPartitionStep.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/ImplementationHowTos/HowToAddAPartitionStep.dox -------------------------------------------------------------------------------- /doc/ImplementationHowTos/HowToAddASourcePropertyComputation.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/ImplementationHowTos/HowToAddASourcePropertyComputation.dox -------------------------------------------------------------------------------- /doc/ImplementationHowTos/HowToRegisterAPlugin.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/ImplementationHowTos/HowToRegisterAPlugin.dox -------------------------------------------------------------------------------- /doc/ImplementationHowTos/ImplementationHowTos.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/ImplementationHowTos/ImplementationHowTos.dox -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/Makefile.in -------------------------------------------------------------------------------- /doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/Overview.dox -------------------------------------------------------------------------------- /doc/SExtractor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/SExtractor.dox -------------------------------------------------------------------------------- /doc/assets/flowchart.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/assets/flowchart.drawio -------------------------------------------------------------------------------- /doc/assets/rangetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/assets/rangetypes.py -------------------------------------------------------------------------------- /doc/assets/sersicprior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/assets/sersicprior.py -------------------------------------------------------------------------------- /doc/assets/sersicpriordata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/assets/sersicpriordata.svg -------------------------------------------------------------------------------- /doc/img/aggregation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/img/aggregation.png -------------------------------------------------------------------------------- /doc/img/grouping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/img/grouping.png -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/src/Association.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Association.rst -------------------------------------------------------------------------------- /doc/src/Background.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Background.rst -------------------------------------------------------------------------------- /doc/src/Config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Config.rst -------------------------------------------------------------------------------- /doc/src/ConfigAPI.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/ConfigAPI.rst -------------------------------------------------------------------------------- /doc/src/Flagging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Flagging.rst -------------------------------------------------------------------------------- /doc/src/Input.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Input.rst -------------------------------------------------------------------------------- /doc/src/Installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Installing.rst -------------------------------------------------------------------------------- /doc/src/Introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Introduction.rst -------------------------------------------------------------------------------- /doc/src/License.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/License.rst -------------------------------------------------------------------------------- /doc/src/Measurements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Measurements.rst -------------------------------------------------------------------------------- /doc/src/Model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Model.rst -------------------------------------------------------------------------------- /doc/src/Output.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Output.rst -------------------------------------------------------------------------------- /doc/src/Photom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Photom.rst -------------------------------------------------------------------------------- /doc/src/Position.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Position.rst -------------------------------------------------------------------------------- /doc/src/Processing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Processing.rst -------------------------------------------------------------------------------- /doc/src/TestData.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/TestData.rst -------------------------------------------------------------------------------- /doc/src/Troubles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Troubles.rst -------------------------------------------------------------------------------- /doc/src/Using.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Using.rst -------------------------------------------------------------------------------- /doc/src/Weighting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/Weighting.rst -------------------------------------------------------------------------------- /doc/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/conf.py -------------------------------------------------------------------------------- /doc/src/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/conf.py.in -------------------------------------------------------------------------------- /doc/src/config_api/aperture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/config_api/aperture.rst -------------------------------------------------------------------------------- /doc/src/config_api/argv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/config_api/argv.rst -------------------------------------------------------------------------------- /doc/src/config_api/measurement_images.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/config_api/measurement_images.rst -------------------------------------------------------------------------------- /doc/src/config_api/model_fitting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/config_api/model_fitting.rst -------------------------------------------------------------------------------- /doc/src/config_api/output.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/config_api/output.rst -------------------------------------------------------------------------------- /doc/src/figures/by-sa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/by-sa.pdf -------------------------------------------------------------------------------- /doc/src/figures/by-sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/by-sa.svg -------------------------------------------------------------------------------- /doc/src/figures/colorprior.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/colorprior.pdf -------------------------------------------------------------------------------- /doc/src/figures/colorprior.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/colorprior.svg -------------------------------------------------------------------------------- /doc/src/figures/detandmeas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/detandmeas.pdf -------------------------------------------------------------------------------- /doc/src/figures/detandmeas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/detandmeas.svg -------------------------------------------------------------------------------- /doc/src/figures/flowchart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/flowchart.pdf -------------------------------------------------------------------------------- /doc/src/figures/flowchart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/flowchart.svg -------------------------------------------------------------------------------- /doc/src/figures/modevsmean.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/modevsmean.pdf -------------------------------------------------------------------------------- /doc/src/figures/modevsmean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/modevsmean.svg -------------------------------------------------------------------------------- /doc/src/figures/psf_data.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/psf_data.pdf -------------------------------------------------------------------------------- /doc/src/figures/psf_data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/psf_data.svg -------------------------------------------------------------------------------- /doc/src/figures/psf_table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/psf_table.pdf -------------------------------------------------------------------------------- /doc/src/figures/psf_table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/psf_table.svg -------------------------------------------------------------------------------- /doc/src/figures/rangetypes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/rangetypes.pdf -------------------------------------------------------------------------------- /doc/src/figures/rangetypes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/rangetypes.svg -------------------------------------------------------------------------------- /doc/src/figures/robustgalfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/robustgalfit.png -------------------------------------------------------------------------------- /doc/src/figures/sersicpriors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/sersicpriors.pdf -------------------------------------------------------------------------------- /doc/src/figures/sersicpriors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/figures/sersicpriors.svg -------------------------------------------------------------------------------- /doc/src/global.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/global.rst -------------------------------------------------------------------------------- /doc/src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/index.rst -------------------------------------------------------------------------------- /doc/src/keys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/keys.rst -------------------------------------------------------------------------------- /doc/src/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/references.bib -------------------------------------------------------------------------------- /doc/src/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/src/references.rst -------------------------------------------------------------------------------- /doc/src/roles.rst: -------------------------------------------------------------------------------- 1 | .. role:: param 2 | 3 | -------------------------------------------------------------------------------- /doc/theme/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrorama/SourceXtractorPlusPlus/HEAD/doc/theme/css/custom.css --------------------------------------------------------------------------------