ODIN
conjphase.h
1 /***************************************************************************
2  conjphase.h - description
3  -------------------
4  begin : Wed Jun 6 2007
5  copyright : (C) 2000-2021 by Thies Jochimsen
6  email : thies@jochimsen.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef RECOCONJPHASE_H
19 #define RECOCONJPHASE_H
20 
21 #include "fieldmap.h"
22 
23 
24 class RecoConjPhaseFT : public RecoFieldMapUser {
25 
26  // implementing virtual functions of RecoStep
27  STD_string label() const {return "conjphase";}
28  STD_string description() const {return "Discrete Fourier transform with conjugate-phase correction according to field map";}
29  bool process(RecoData& rd, RecoController& controller);
30  RecoCoord input_coord() const {return RecoCoord::coord_with_mode(RecoIndex::collected, readout);}
31  void modify_coord(RecoCoord& coord) const {coord.set_mode(RecoIndex::collected, line3d, line);}
32  RecoStep* allocate() const {return new RecoConjPhaseFT;}
33  void init() {}
34 
35  Mutex trajmutex;
36 };
37 
38 
39 #endif
40 
Definition: tjthread.h:46
conjphase: Discrete Fourier transform with conjugate-phase correction according to field map
Definition: conjphase.h:24
static RecoCoord coord_with_mode(RecoIndex::indexMode m, recoDim d1=n_recoDims, recoDim d2=n_recoDims, recoDim d3=n_recoDims, recoDim d4=n_recoDims, recoDim d5=n_recoDims, recoDim d6=n_recoDims, recoDim d7=n_recoDims, recoDim d8=n_recoDims)
Definition: index.h:254
RecoCoord & set_mode(RecoIndex::indexMode m, recoDim d1=n_recoDims, recoDim d2=n_recoDims, recoDim d3=n_recoDims, recoDim d4=n_recoDims, recoDim d5=n_recoDims, recoDim d6=n_recoDims, recoDim d7=n_recoDims, recoDim d8=n_recoDims)
Definition: index.h:238