00001 /*************************************************************************** 00002 seqacqdeph.h - description 00003 ------------------- 00004 begin : Tue Aug 13 2002 00005 copyright : (C) 2001 by Thies H. Jochimsen 00006 email : jochimse@cns.mpg.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef SEQACQDEPH_H 00019 #define SEQACQDEPH_H 00020 00021 #include <odinseq/seqgradchanparallel.h> 00022 #include <odinseq/seqgradtrapez.h> 00023 00024 00025 class SeqAcqInterface; // forward declaration 00026 00027 00040 enum dephaseMode {FID,spinEcho,rephase}; 00041 00042 00043 00045 00051 class SeqAcqDeph : public SeqGradChanParallel { 00052 00053 public: 00054 00061 SeqAcqDeph(const STD_string& object_label,const SeqAcqInterface& acq, dephaseMode mode = FID); 00062 00066 SeqAcqDeph(const SeqAcqDeph& sad); 00067 00071 SeqAcqDeph(const STD_string& object_label = "unnamedSeqAcqDeph"); 00072 00076 SeqAcqDeph& operator = (const SeqAcqDeph& sad); 00077 00081 const SeqVector& get_epi_segment_vector() const; 00082 00086 const SeqVector& get_epi_reduction_vector() const; 00087 00088 00089 private: 00090 void common_init(); 00091 00092 SeqVector dummyvec; 00093 Handler<const SeqVector*> segvec; 00094 00095 00096 }; 00097 00098 00102 #endif
1.5.6