Main Page | Modules | Alphabetical List | Data Structures | File List | Data Fields | Globals

sequence.h

Go to the documentation of this file.
00001 /************************************************************************* 00002 * $Id: sequence.h,v 1.17 2005/09/07 07:13:33 yougz Exp $ 00003 ************************************************************************** 00004 This software is governed by the CeCILL license under French law and 00005 abiding by the rules of distribution of free software. You can use, 00006 modify and/ or redistribute the software under the terms of the CeCILL 00007 license as circulated by CEA, CNRS and INRIA at the following URL 00008 "http://www.cecill.info". 00009 00010 As a counterpart to the access to the source code and rights to copy, 00011 modify and redistribute granted by the license, users are provided only 00012 with a limited warranty and the software's author, the holder of the 00013 economic rights, and the successive licensors have only limited 00014 liability. 00015 00016 In this respect, the user's attention is drawn to the risks associated 00017 with loading, using, modifying and/or developing or reproducing the 00018 software by the user in light of its specific status of free software, 00019 that may mean that it is complicated to manipulate, and that also 00020 therefore means that it is reserved for developers and experienced 00021 professionals having in-depth computer knowledge. Users are therefore 00022 encouraged to load and test the software's suitability as regards their 00023 requirements in conditions enabling the security of their systems and/or 00024 data to be ensured and, more generally, to use and operate it in the 00025 same conditions as regards security. 00026 00027 The fact that you are presently reading this means that you have had 00028 knowledge of the CeCILL license and that you accept its terms. 00029 00030 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de 00031 l'Image). All rights reserved. See License.txt for details. 00032 00033 Version 1.0 05/09/2005 00034 *************************************************************************/ 00035 #ifndef _SEQUENCE_H 00036 #define _SEQUENCE_H 00037 00038 #include <stdio.h> 00039 #include <idvol.h> 00040 00041 #include <experience.h> 00042 #include <object.h> 00043 00045 typedef struct _SeqParam { 00047 double te; 00049 double tr; 00051 double ti; 00053 double teta; 00055 double tfact; 00056 } SEQPARAM; 00057 00059 typedef PPPVOLUME_COMPLEX_DOUBLE (*PSEQ)(SEQPARAM *,EXPERIENCE3D*); 00060 00061 /*************************************************** 00062 * Basic function prototypes 00063 ***************************************************/ 00064 void SetSeqParamTE(SEQPARAM *,double); 00065 void SetSeqParamTR(SEQPARAM *,double); 00066 void SetSeqParamTI(SEQPARAM *,double); 00067 void SetSeqParamTeta(SEQPARAM *,double); 00068 void SetSeqParamTfact(SEQPARAM *,double); 00069 00070 /*************************************************** 00071 * Prototypes of all the sequence functions 00072 ***************************************************/ 00073 /* Definition in seq-se.c */ 00074 PPPVOLUME_COMPLEX_DOUBLE SeqSpinEcho1D(SEQPARAM *,EXPERIENCE3D*); 00075 PPPVOLUME_COMPLEX_DOUBLE SeqSpinEcho2D(SEQPARAM *,EXPERIENCE3D*); 00076 PPPVOLUME_COMPLEX_DOUBLE SeqSpinEcho3D(SEQPARAM *,EXPERIENCE3D*); 00077 /* Definition in seq-ge.c */ 00078 PPPVOLUME_COMPLEX_DOUBLE SeqGradientEcho1D(SEQPARAM *,EXPERIENCE3D*); 00079 PPPVOLUME_COMPLEX_DOUBLE SeqGradientEcho2D(SEQPARAM *,EXPERIENCE3D*); 00080 PPPVOLUME_COMPLEX_DOUBLE SeqGradientEcho3D(SEQPARAM *,EXPERIENCE3D*); 00081 /* Definition in seq-tf.c */ 00082 PPPVOLUME_COMPLEX_DOUBLE SeqTrueFisp1D(SEQPARAM *,EXPERIENCE3D*); 00083 PPPVOLUME_COMPLEX_DOUBLE SeqTrueFisp2D(SEQPARAM *,EXPERIENCE3D*); 00084 PPPVOLUME_COMPLEX_DOUBLE SeqTrueFisp3D(SEQPARAM *,EXPERIENCE3D*); 00085 /* Definition in seq-ir.c */ 00086 PPPVOLUME_COMPLEX_DOUBLE SeqInversionRecuperation1D(SEQPARAM *,EXPERIENCE3D*); 00087 PPPVOLUME_COMPLEX_DOUBLE SeqInversionRecuperation2D(SEQPARAM *,EXPERIENCE3D*); 00088 PPPVOLUME_COMPLEX_DOUBLE SeqInversionRecuperation3D(SEQPARAM *,EXPERIENCE3D*); 00089 /* Definition in seq-fid.c */ 00090 PPPVOLUME_COMPLEX_DOUBLE SeqFreeInduction1D(SEQPARAM *,EXPERIENCE3D*); 00091 /* Definition in seq-tse.c */ 00092 PPPVOLUME_COMPLEX_DOUBLE SeqTurboSpinEcho2D(SEQPARAM *,EXPERIENCE3D*); 00093 00094 00095 PPPVOLUME_COMPLEX_DOUBLE SeqTestSE2D(SEQPARAM *,EXPERIENCE3D*); 00096 00097 PPPVOLUME_COMPLEX_DOUBLE RunSequence(char *,SEQPARAM *,OBJECT3D *,EXPERIENCE3D*); 00098 PSEQ GetSequenceByName (char *); 00099 00101 typedef struct _SeqFunc { 00103 int seqnum; 00105 char seqname[80]; 00107 PSEQ pseq; 00108 } SEQFUNC; 00109 00110 #endif

Generated on Wed Oct 19 09:28:34 2005 for SIMRI3D by doxygen 1.3.7