00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef RECOFILTER_H
00019 #define RECOFILTER_H
00020
00021 #include "step.h"
00022
00023 #include <odinpara/jdxfilter.h>
00024
00025 class RecoFilter : public RecoStep {
00026
00027
00028 STD_string label() const {return "filter";}
00029 STD_string description() const {return "Lowpass filter in k-space with plateau at the center";}
00030 bool process(RecoData& rd, RecoController& controller);
00031 RecoCoord input_coord() const {return RecoCoord::coord_with_mode(RecoIndex::collected,line3d,line,readout);}
00032 void modify_coord(RecoCoord& coord) const {}
00033 RecoStep* allocate() const {return new RecoFilter;}
00034 void init();
00035
00036 JDXfilter filter;
00037 JDXfloat plateau;
00038
00039 };
00040
00041
00042
00043 #endif
00044