00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef RECOB1FIT_H
00019 #define RECOB1FIT_H
00020
00021 #include "step.h"
00022
00023 class RecoB1Fit : public RecoStep {
00024
00025
00026 STD_string label() const {return "b1fit";}
00027 STD_string description() const {return "B1-mapping method based on: Fast, Accurate, and Precise Mapping of the RF Field In Vivo Using the 180 Signal Null. Dowell et al., Magn Reson Med 58 (2007).";}
00028 bool process(RecoData& rd, RecoController& controller);
00029 RecoCoord input_coord() const {return RecoCoord::coord_with_mode(RecoIndex::collected,userdef,line3d,line,readout);}
00030 void modify_coord(RecoCoord& coord) const {coord.set_mode(RecoIndex::single,userdef);}
00031 RecoStep* allocate() const {return new RecoB1Fit;}
00032 void init() {}
00033
00034 };
00035
00036
00037 #endif
00038