00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef RECOBLADECOMB_H
00019 #define RECOBLADECOMB_H
00020
00021 #include "step.h"
00022
00023 class RecoBladeComb : public RecoStep {
00024
00025 ~RecoBladeComb();
00026
00027
00028 STD_string label() const {return "bladecomb";}
00029 STD_string description() const {return "Pre-processing of PROPELLER blades: phase correction and coordinate rotation for gridding";}
00030 bool process(RecoData& rd, RecoController& controller);
00031 RecoCoord input_coord() const {return RecoCoord::coord_with_mode(RecoIndex::collected,cycle,line3d,line,readout);}
00032 void modify_coord(RecoCoord& coord) const {coord.set_mode(RecoIndex::separate,cycle,line3d,line);}
00033 RecoStep* allocate() const {return new RecoBladeComb;}
00034 void init();
00035
00036 JDXbool keyhole;
00037 JDXfilter filter;
00038 JDXfloat transition;
00039
00040 STD_map<int,KspaceTraj*> trajmap;
00041 Mutex trajmutex;
00042
00043 };
00044
00045
00046 #endif
00047