Xmipp  v3.23.11-Nereus
Classes | Functions
Collaboration diagram for FFTSettings:

Classes

class  FFTSettings< T >
 

Functions

template<typename T >
std::ostream & operator<< (std::ostream &, const FFTSettings< T > &)
 

Detailed Description

Function Documentation

◆ operator<<()

template<typename T >
std::ostream& operator<< ( std::ostream &  ,
const FFTSettings< T > &   
)

Definition at line 5 of file fft_settings.cpp.

7 {
8  os << s.m_spatial.x() << "(" << s.m_freq.x() << ")"
9  << " * " << s.m_spatial.y() << " * "
10  << s.m_spatial.z() << " * " << s.m_spatial.n() << ", batch: " << s.m_batch
11  << ", inPlace: " << (s.m_isInPlace ? "yes" : "no")
12  << ", isForward: " << (s.m_isForward ? "yes" : "no");
13  return os;
14 }