Skip to content

Commit

Permalink
BUG: correct itkTypeMacro parameters where needed
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Rit committed Apr 29, 2020
1 parent 9621249 commit 1c204a4
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion include/rtkCudaDisplacedDetectorImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class RTK_EXPORT CudaDisplacedDetectorImageFilter
itkNewMacro(Self);

/** Run-time type information (and related methods). */
itkTypeMacro(Self, Superclass);
itkTypeMacro(CudaDisplacedDetectorImageFilter, itk::CudaInPlaceImageFilter);

protected:
/** Standard constructor **/
Expand Down
2 changes: 1 addition & 1 deletion include/rtkCudaFDKWeightProjectionFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class RTK_EXPORT CudaFDKWeightProjectionFilter
itkNewMacro(Self);

/** Run-time type information (and related methods). */
itkTypeMacro(Self, Superclass);
itkTypeMacro(CudaFDKWeightProjectionFilter, itk::CudaInPlaceImageFilter);

protected:
/** Standard constructor **/
Expand Down
2 changes: 1 addition & 1 deletion include/rtkCudaLagCorrectionImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class RTK_EXPORT CudaLagCorrectionImageFilter
itkNewMacro(Self);

/** Run-time type information (and related methods). */
itkTypeMacro(Self, Superclass);
itkTypeMacro(CudaLagCorrectionImageFilter, itk::CudaInPlaceImageFilter);

protected:
/** Standard constructor **/
Expand Down
2 changes: 1 addition & 1 deletion include/rtkCudaParkerShortScanImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class RTK_EXPORT CudaParkerShortScanImageFilter
itkNewMacro(Self);

/** Run-time type information (and related methods). */
itkTypeMacro(Self, Superclass);
itkTypeMacro(CudaParkerShortScanImageFilter, itk::CudaInPlaceImageFilter);

protected:
/** Standard constructor **/
Expand Down
2 changes: 1 addition & 1 deletion include/rtkCudaPolynomialGainCorrectionImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class RTK_EXPORT CudaPolynomialGainCorrectionImageFilter
itkNewMacro(Self);

/** Run-time type information (and related methods). */
itkTypeMacro(Self, Superclass);
itkTypeMacro(CudaPolynomialGainCorrectionImageFilter, itk::CudaImageToImageFilter);

protected:
/** Standard constructor **/
Expand Down
2 changes: 1 addition & 1 deletion include/rtkDePierroRegularizationImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class ITK_EXPORT DePierroRegularizationImageFilter : public itk::ImageToImageFil
itkNewMacro(Self);

/** Run-time type information (and related methods). */
itkTypeMacro(DePierroRegularizationFilter, itk::ImageToImageFilter);
itkTypeMacro(DePierroRegularizationImageFilter, itk::ImageToImageFilter);

/** Get / Set the hyper parameter for the regularization */
itkGetMacro(Beta, double);
Expand Down
2 changes: 1 addition & 1 deletion include/rtkPhaseReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ITK_EXPORT PhaseReader : public itk::CSVFileReaderBase
itkNewMacro(Self);

/** Run-time type information (and related methods) */
itkTypeMacro(Self, Superclass);
itkTypeMacro(PhaseReader, itk::CSVFileReaderBase);

/** The value type of the dataset. */
using ValueType = float;
Expand Down
2 changes: 1 addition & 1 deletion include/rtkPhasesToInterpolationWeights.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ITK_EXPORT PhasesToInterpolationWeights : public itk::CSVFileReaderBase
itkNewMacro(Self);

/** Run-time type information (and related methods) */
itkTypeMacro(Self, Superclass);
itkTypeMacro(PhasesToInterpolationWeights, itk::CSVFileReaderBase);

/** DataFrame Object types */
using Array2DType = itk::Array2D<float>;
Expand Down
2 changes: 1 addition & 1 deletion include/rtkSignalToInterpolationWeights.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ITK_EXPORT SignalToInterpolationWeights : public itk::CSVFileReaderBase
itkNewMacro(Self);

/** Run-time type information (and related methods) */
itkTypeMacro(Self, Superclass);
itkTypeMacro(SignalToInterpolationWeights, itk::CSVFileReaderBase);

/** DataFrame Object types */
using Array2DType = itk::Array2D<float>;
Expand Down

0 comments on commit 1c204a4

Please sign in to comment.