00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef RECOCHANNEL_H
00019 #define RECOCHANNEL_H
00020
00021 #include "step.h"
00022
00023
00024 class RecoChannelSum : public RecoStep {
00025
00026
00027 STD_string label() const {return "chansum";}
00028 STD_string description() const {return "Combine images from different channels";}
00029 bool process(RecoData& rd, RecoController& controller);
00030 RecoCoord input_coord() const {return RecoCoord::coord_with_mode(RecoIndex::collected,channel,line3d,line,readout);}
00031 void modify_coord(RecoCoord& coord) const {coord.set_mode(RecoIndex::single, channel);}
00032 RecoStep* allocate() const {return new RecoChannelSum;}
00033 void init();
00034
00035 JDXbool phasecomb;
00036
00037 };
00038
00039
00040 #endif
00041