00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef RECOZEROFILL_H
00019 #define RECOZEROFILL_H
00020
00021 #include "step.h"
00022
00023 class RecoZeroFill : public RecoStep {
00024
00025
00026 STD_string label() const {return "zerofill";}
00027 STD_string description() const {return "Fill k-space with zeroes to match matrix size of protocol";}
00028 bool process(RecoData& rd, RecoController& controller);
00029 RecoCoord input_coord() const {return RecoCoord::coord_with_mode(RecoIndex::collected,line3d,line,readout);}
00030 void modify_coord(RecoCoord& coord) const {}
00031 RecoStep* allocate() const {return new RecoZeroFill;}
00032 void init();
00033
00034 JDXint minread;
00035 JDXint minphase;
00036 JDXint minslice;
00037
00038
00039 };
00040
00041
00042 #endif
00043