FFTBestLength.h
Go to the documentation of this file.
1 #ifndef WIRECELLUTIL_FFTBESTLENGTH_H
2 #define WIRECELLUTIL_FFTBESTLENGTH_H
3 
4 #include <cstddef>
5 
6 namespace WireCell{
7  // Return suggested number of samples for performing an FFT which
8  // should have no worse performance than the input nsamples.
9  std::size_t fft_best_length(size_t nsamples, bool keep_odd_even=false);
10 }
11 
12 
13 #endif
std::size_t fft_best_length(size_t nsamples, bool keep_odd_even=false)
Definition: Main.h:22