ROOT 6.13/01 Reference Guide |
Definition at line 47 of file TFFTComplex.h.
Public Member Functions | |
TFFTComplex () | |
default More... | |
TFFTComplex (Int_t n, Bool_t inPlace) | |
For 1d transforms Allocates memory for the input array, and, if inPlace = kFALSE, for the output array. More... | |
TFFTComplex (Int_t ndim, Int_t *n, Bool_t inPlace=kFALSE) | |
For multidim. More... | |
virtual | ~TFFTComplex () |
Destroys the data arrays and the plan. More... | |
virtual Int_t * | GetN () const |
virtual Int_t | GetNdim () const |
virtual void | GetPointComplex (Int_t ipoint, Double_t &re, Double_t &im, Bool_t fromInput=kFALSE) const |
returns real and imaginary parts of the point #ipoint More... | |
virtual void | GetPointComplex (const Int_t *ipoint, Double_t &re, Double_t &im, Bool_t fromInput=kFALSE) const |
For multidimensional transforms. Returns real and imaginary parts of the point #ipoint. More... | |
virtual Double_t | GetPointReal (Int_t, Bool_t) const |
virtual Double_t | GetPointReal (const Int_t *, Bool_t) const |
virtual void | GetPoints (Double_t *data, Bool_t fromInput=kFALSE) const |
Copies the output(or input) into the argument array. More... | |
virtual void | GetPointsComplex (Double_t *re, Double_t *im, Bool_t fromInput=kFALSE) const |
Copies real and imaginary parts of the output (input) into the argument arrays. More... | |
virtual void | GetPointsComplex (Double_t *data, Bool_t fromInput=kFALSE) const |
Copies the output(input) into the argument array. More... | |
virtual Double_t * | GetPointsReal (Bool_t) const |
virtual Int_t | GetSign () const |
virtual Int_t | GetSize () const |
virtual Option_t * | GetTransformFlag () const |
virtual Option_t * | GetType () const |
virtual void | Init (Option_t *flags, Int_t sign, const Int_t *) |
Creates the fftw-plan. More... | |
virtual Bool_t | IsInplace () const |
virtual void | SetPoint (Int_t ipoint, Double_t re, Double_t im=0) |
sets real and imaginary parts of point # ipoint More... | |
virtual void | SetPoint (const Int_t *ipoint, Double_t re, Double_t im=0) |
For multidim. transforms. Sets real and imaginary parts of point # ipoint. More... | |
virtual void | SetPointComplex (Int_t ipoint, TComplex &c) |
virtual void | SetPoints (const Double_t *data) |
set all points. More... | |
virtual void | SetPointsComplex (const Double_t *re, const Double_t *im) |
set all points. the values are copied More... | |
virtual void | Transform () |
Computes the transform, specified in Init() function. More... | |
Protected Member Functions | |
UInt_t | MapFlag (Option_t *flag) |
allowed options: "ES" - FFTW_ESTIMATE "M" - FFTW_MEASURE "P" - FFTW_PATIENT "EX" - FFTW_EXHAUSTIVE More... | |
Protected Attributes | |
TString | fFlags |
void * | fIn |
Int_t * | fN |
Int_t | fNdim |
void * | fOut |
void * | fPlan |
Int_t | fSign |
Int_t | fTotalSize |
#include <TFFTComplex.h>
TFFTComplex::TFFTComplex | ( | ) |
default
Definition at line 49 of file TFFTComplex.cxx.
TFFTComplex::TFFTComplex | ( | Int_t | n, |
Bool_t | inPlace | ||
) |
For 1d transforms Allocates memory for the input array, and, if inPlace = kFALSE, for the output array.
Definition at line 64 of file TFFTComplex.cxx.
TFFTComplex::TFFTComplex | ( | Int_t | ndim, |
Int_t * | n, | ||
Bool_t | inPlace = kFALSE |
||
) |
For multidim.
transforms Allocates memory for the input array, and, if inPlace = kFALSE, for the output array
Definition at line 83 of file TFFTComplex.cxx.
|
virtual |
Destroys the data arrays and the plan.
However, some plan information stays around until the root session is over, and is reused if other plans of the same size are created
Definition at line 106 of file TFFTComplex.cxx.
|
inlinevirtual |
Definition at line 68 of file TFFTComplex.h.
|
inlinevirtual |
Definition at line 69 of file TFFTComplex.h.
|
virtual |
returns real and imaginary parts of the point #ipoint
Definition at line 184 of file TFFTComplex.cxx.
|
virtual |
For multidimensional transforms. Returns real and imaginary parts of the point #ipoint.
Definition at line 198 of file TFFTComplex.cxx.
|
inlinevirtual |
Definition at line 77 of file TFFTComplex.h.
|
inlinevirtual |
Definition at line 78 of file TFFTComplex.h.
|
virtual |
Copies the output(or input) into the argument array.
Definition at line 166 of file TFFTComplex.cxx.
|
virtual |
Copies real and imaginary parts of the output (input) into the argument arrays.
Definition at line 216 of file TFFTComplex.cxx.
|
virtual |
Copies the output(input) into the argument array.
Definition at line 234 of file TFFTComplex.cxx.
|
inlinevirtual |
Definition at line 81 of file TFFTComplex.h.
|
inlinevirtual |
Definition at line 72 of file TFFTComplex.h.
|
inlinevirtual |
Definition at line 70 of file TFFTComplex.h.
|
inlinevirtual |
Definition at line 73 of file TFFTComplex.h.
|
inlinevirtual |
Definition at line 71 of file TFFTComplex.h.
|
virtual |
Creates the fftw-plan.
NOTE: input and output arrays are overwritten during initialisation, so don't set any points, before running this function!!!!!
2nd parameter: +1 Argument kind is dummy and doesn't need to be specified Possible flag_options: "ES" (from "estimate") - no time in preparing the transform, but probably sub-optimal performance "M" (from "measure") - some time spend in finding the optimal way to do the transform "P" (from "patient") - more time spend in finding the optimal way to do the transform "EX" (from "exhaustive") - the most optimal way is found This option should be chosen depending on how many transforms of the same size and type are going to be done. Planning is only done once, for the first transform of this size and type.
Definition at line 135 of file TFFTComplex.cxx.
|
inlinevirtual |
Definition at line 74 of file TFFTComplex.h.
|
protected |
allowed options: "ES" - FFTW_ESTIMATE "M" - FFTW_MEASURE "P" - FFTW_PATIENT "EX" - FFTW_EXHAUSTIVE
Definition at line 313 of file TFFTComplex.cxx.
|
virtual |
sets real and imaginary parts of point # ipoint
Definition at line 252 of file TFFTComplex.cxx.
|
virtual |
For multidim. transforms. Sets real and imaginary parts of point # ipoint.
Definition at line 261 of file TFFTComplex.cxx.
|
virtual |
Definition at line 273 of file TFFTComplex.cxx.
|
virtual |
set all points.
the values are copied. points should be ordered as follows: [re_0, im_0, re_1, im_1, ..., re_n, im_n)
Definition at line 283 of file TFFTComplex.cxx.
|
virtual |
set all points. the values are copied
Definition at line 294 of file TFFTComplex.cxx.
|
virtual |
Computes the transform, specified in Init() function.
Definition at line 153 of file TFFTComplex.cxx.
|
protected |
Definition at line 56 of file TFFTComplex.h.
|
protected |
Definition at line 49 of file TFFTComplex.h.
|
protected |
Definition at line 54 of file TFFTComplex.h.
|
protected |
Definition at line 52 of file TFFTComplex.h.
|
protected |
Definition at line 50 of file TFFTComplex.h.
|
protected |
Definition at line 51 of file TFFTComplex.h.
|
protected |
Definition at line 55 of file TFFTComplex.h.
|
protected |
Definition at line 53 of file TFFTComplex.h.