Skip to content

Commit

Permalink
Refs #6597 Fixed the header
Browse files Browse the repository at this point in the history
  • Loading branch information
jmborr committed Feb 20, 2013
1 parent 99221a0 commit 934e7b1
Showing 1 changed file with 44 additions and 2 deletions.
46 changes: 44 additions & 2 deletions Code/Mantid/Framework/Algorithms/src/ExtractFFTSpectrum.cpp
@@ -1,6 +1,48 @@
/*WIKI* This algorithm iterates the [[FFT]] algorithm on each spectrum of InputWorkspace, computing the Fourier Transform and storing the transformed spectrum in OutputWorkspace. If InputImagWorkspace is also passed, then the pair spectrum ''i'' of InputWorkspace (real) and spectrum ''i'' of InputImagWorkspace (real) are taken together as spectrum ''i'' of a complex workspace, on which [[FFT]] is applied.
/*WIKI*
This algorithm iterates the [[FFT]] algorithm on each spectrum of InputWorkspace, computing the Fourier Transform and storing the transformed spectrum in OutputWorkspace. If InputImagWorkspace is also passed, then the pair spectrum ''i'' of InputWorkspace (real) and spectrum ''i'' of InputImagWorkspace (real) are taken together as spectrum ''i'' of a complex workspace, on which [[FFT]] is applied.
The FFTPart parameter specifies which transform is selected from the output of the [[FFT]] algorithm:
For the case of input containing real and imaginary workspaces:
{| border="1" cellpadding="5" cellspacing="0"
!FFTPart
!Description
|-
|0
|Complete real part
|-
|1
|Complete imaginary part
|-
|2
|Complete transform modulus
|}
For the case of input containing no imaginary workspace:
{| border="1" cellpadding="5" cellspacing="0"
!FFTPart
!Description
|-
|0
|Real part, positive frequencies
|-
|1
|Imaginary part, positive frequencies
|-
|2
|Modulus, positive frequencies
|-
|3
|Complete real part
|-
|4
|Complete imaginary part
|-
|5
|Complete transform modulus
|}
The FFTPart parameter specifies which spectra is selected from the output of the [[FFT]] algorithm. Allowed values are: 3 - the real part of the transform, 4 - the imaginary part, 5 - the modulus. Values 0,1, and 2 repeat the spectra for values 3,4, and 5 respectively, but for the positive frequencies only. Consult the [[FFT]] for more details.
*WIKI*/
//----------------------------------------------------------------------
// Includes
Expand Down

0 comments on commit 934e7b1

Please sign in to comment.