#include <itkConceptChecking.h>
#include "rtkConfiguration.h"
#include "rtkFFTProjectionsConvolutionImageFilter.h"
#include "rtkMacro.h"
#include "rtkFFTRampImageFilter.hxx"
Go to the source code of this file.
◆ ITK_GCC_PRAGMA_POP
◆ ITK_GCC_PRAGMA_PUSH
◆ ITK_GCC_SUPPRESS_Wfloat_equal
◆ itkSetMacro [1/2]
      
        
          | #define itkSetMacro | ( |  | name, | 
        
          |  |  |  | type | 
        
          |  | ) |  |  | 
      
 
Value:virtual void Set##name(type _arg)                 \
  {                                                 \
    itkDebugMacro("setting " #name " to " << _arg); \
    ITK_GCC_PRAGMA_PUSH                                 \
    ITK_GCC_SUPPRESS_Wfloat_equal                       \
    if (this->m_##name != _arg)                     \
    {                                               \
      this->m_##name = std::move(_arg);             \
      this->Modified();                             \
      this->m_KernelFFT = nullptr;                  \
    }                                               \
    ITK_GCC_PRAGMA_POP                                  \
  }                                                 \
  ITK_MACROEND_NOOP_STATEMENT
Definition at line 186 of file rtkFFTRampImageFilter.h.
 
 
◆ itkSetMacro [2/2]
      
        
          | #define itkSetMacro | ( |  | name, | 
        
          |  |  |  | type | 
        
          |  | ) |  |  | 
      
 
Value:virtual void Set##name(type _arg)                 \
  {                                                 \
    itkDebugMacro("setting " #name " to " << _arg); \
    ITK_GCC_PRAGMA_PUSH                                 \
    ITK_GCC_SUPPRESS_Wfloat_equal                       \
    if (this->m_##name != _arg)                     \
    {                                               \
      this->m_##name = std::move(_arg);             \
      this->Modified();                             \
    }                                               \
    ITK_GCC_PRAGMA_POP                                  \
  }                                                 \
  ITK_MACROEND_NOOP_STATEMENT
Definition at line 186 of file rtkFFTRampImageFilter.h.