Update of /cvsroot/teem/teem/src/ten
In directory sc8-pr-cvs1:/tmp/cvs-serv25421
Modified Files:
GNUmakefile aniso.c bimod.c chan.c defaultsTen.c enumsTen.c
epireg.c fiber.c fiberMethods.c glyph.c miscTen.c mod.c
tenGage.c tendAnhist.c tendAnplot.c tendAnscale.c tendAnvol.c
tendBmat.c tendCalc.c tendEllipse.c tendEpireg.c tendEstim.c
tendEval.c tendEvaladd.c tendEvalclamp.c tendEvalpow.c
tendEvec.c tendEvecrgb.c tendEvq.c tendExpand.c tendFiber.c
tendFlotsam.c tendGlyph.c tendMake.c tendNorm.c tendPoint.c
tendSatin.c tendShrink.c tendSim.c tendSlice.c tendSten.c
tensor.c
Added Files:
privateTen.h
Removed Files:
tenPrivate.h
Log Message:
FILE RENAME: tenPrivate.h --> privateTen.h
--- NEW FILE: privateTen.h ---
/*
teem: Gordon Kindlmann's research software
Copyright (C) 2003, 2002, 2001, 2000, 1999, 1998 University of Utah
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef TEN_PRIVATE_HAS_BEEN_INCLUDED
#define TEN_PRIVATE_HAS_BEEN_INCLUDED
#ifdef __cplusplus
extern "C" {
#endif
#define TEND_CMD(name, info) \
unrrduCmd tend_##name##Cmd = { #name, info, tend_##name##Main }
/* USAGE, PARSE: both copied verbatim from unrrdu/privateUnrrdu.h */
#define USAGE(info) \
if (!argc) { \
hestInfo(stderr, me, (info), hparm); \
hestUsage(stderr, hopt, me, hparm); \
hestGlossary(stderr, hopt, hparm); \
airMopError(mop); \
return 2; \
}
#define PARSE() \
if ((pret=hestParse(hopt, argc, argv, &perr, hparm))) { \
if (1 == pret) { \
fprintf(stderr, "%s: %s\n", me, perr); free(perr); \
hestUsage(stderr, hopt, me, hparm); \
airMopError(mop); \
return 2; \
} else { \
/* ... like tears ... in rain. Time ... to die. */ \
exit(1); \
} \
}
#ifdef __cplusplus
}
#endif
#endif /* TEN_PRIVATE_HAS_BEEN_INCLUDED */
Index: GNUmakefile
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/GNUmakefile,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** GNUmakefile 16 Oct 2003 20:33:54 -0000 1.33
--- GNUmakefile 8 Dec 2003 23:19:02 -0000 1.34
***************
*** 46,50 ****
$(L).NEED = echo limn gage dye unrrdu ell nrrd biff air
$(L).PUBLIC_HEADERS = ten.h tenMacros.h
! $(L).PRIVATE_HEADERS = tenPrivate.h
$(L).OBJS = tensor.o chan.o aniso.o glyph.o enumsTen.o miscTen.o mod.o \
tenGage.o fiberMethods.o fiber.o epireg.o defaultsTen.o bimod.o \
--- 46,50 ----
$(L).NEED = echo limn gage dye unrrdu ell nrrd biff air
$(L).PUBLIC_HEADERS = ten.h tenMacros.h
! $(L).PRIVATE_HEADERS = privateTen.h
$(L).OBJS = tensor.o chan.o aniso.o glyph.o enumsTen.o miscTen.o mod.o \
tenGage.o fiberMethods.o fiber.o epireg.o defaultsTen.o bimod.o \
Index: aniso.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/aniso.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** aniso.c 13 Oct 2003 13:18:45 -0000 1.23
--- aniso.c 8 Dec 2003 23:19:02 -0000 1.24
***************
*** 18,24 ****
*/
-
#include "ten.h"
! #include "tenPrivate.h"
float tenAnisoSigma = 0.000001;
--- 18,23 ----
*/
#include "ten.h"
! #include "privateTen.h"
float tenAnisoSigma = 0.000001;
Index: bimod.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/bimod.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** bimod.c 18 Sep 2003 09:05:19 -0000 1.4
--- bimod.c 8 Dec 2003 23:19:02 -0000 1.5
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
tenEMBimodalParm*
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
tenEMBimodalParm*
Index: chan.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/chan.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** chan.c 16 Oct 2003 20:29:14 -0000 1.27
--- chan.c 8 Dec 2003 23:19:02 -0000 1.28
***************
*** 18,24 ****
*/
-
#include "ten.h"
! #include "tenPrivate.h"
/*
--- 18,23 ----
*/
#include "ten.h"
! #include "privateTen.h"
/*
Index: defaultsTen.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/defaultsTen.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** defaultsTen.c 14 Oct 2003 08:20:38 -0000 1.6
--- defaultsTen.c 8 Dec 2003 23:19:02 -0000 1.7
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
const char *
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
const char *
Index: enumsTen.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/enumsTen.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** enumsTen.c 13 Oct 2003 13:19:05 -0000 1.11
--- enumsTen.c 8 Dec 2003 23:19:02 -0000 1.12
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
/* -------------------------------------------------------------- */
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
/* -------------------------------------------------------------- */
Index: epireg.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/epireg.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** epireg.c 7 Oct 2003 20:05:19 -0000 1.21
--- epireg.c 8 Dec 2003 23:19:02 -0000 1.22
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
int
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
int
Index: fiber.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/fiber.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** fiber.c 16 Oct 2003 10:28:53 -0000 1.9
--- fiber.c 8 Dec 2003 23:19:03 -0000 1.10
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define TEN_FIBER_INCR 512
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define TEN_FIBER_INCR 512
Index: fiberMethods.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/fiberMethods.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** fiberMethods.c 14 Oct 2003 08:20:38 -0000 1.10
--- fiberMethods.c 8 Dec 2003 23:19:03 -0000 1.11
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
/*
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
/*
Index: glyph.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/glyph.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** glyph.c 18 Nov 2003 10:04:54 -0000 1.29
--- glyph.c 8 Dec 2003 23:19:03 -0000 1.30
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
tenGlyphParm *
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
tenGlyphParm *
Index: miscTen.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/miscTen.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** miscTen.c 30 Oct 2003 21:35:25 -0000 1.19
--- miscTen.c 8 Dec 2003 23:19:03 -0000 1.20
***************
*** 20,24 ****
#include "ten.h"
! #include "tenPrivate.h"
int
--- 20,24 ----
#include "ten.h"
! #include "privateTen.h"
int
Index: mod.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/mod.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** mod.c 16 Oct 2003 20:34:52 -0000 1.7
--- mod.c 8 Dec 2003 23:19:03 -0000 1.8
***************
*** 20,24 ****
#include "ten.h"
! #include "tenPrivate.h"
int
--- 20,24 ----
#include "ten.h"
! #include "privateTen.h"
int
Index: tenGage.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tenGage.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** tenGage.c 26 Aug 2003 21:36:06 -0000 1.7
--- tenGage.c 8 Dec 2003 23:19:03 -0000 1.8
***************
*** 20,24 ****
#include "ten.h"
! #include "tenPrivate.h"
/*
--- 20,24 ----
#include "ten.h"
! #include "privateTen.h"
/*
Index: tendAnhist.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendAnhist.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** tendAnhist.c 23 Jul 2003 01:20:30 -0000 1.3
--- tendAnhist.c 8 Dec 2003 23:19:03 -0000 1.4
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Generate barycentric histograms of anisotropy"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Generate barycentric histograms of anisotropy"
Index: tendAnplot.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendAnplot.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** tendAnplot.c 27 Jul 2003 09:33:26 -0000 1.7
--- tendAnplot.c 8 Dec 2003 23:19:03 -0000 1.8
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Graph anisotropy metric in barycentric coords"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Graph anisotropy metric in barycentric coords"
Index: tendAnscale.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendAnscale.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** tendAnscale.c 16 Oct 2003 20:37:15 -0000 1.3
--- tendAnscale.c 8 Dec 2003 23:19:03 -0000 1.4
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Scale the anisotropic component of the tensors"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Scale the anisotropic component of the tensors"
Index: tendAnvol.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendAnvol.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** tendAnvol.c 23 Jul 2003 01:20:30 -0000 1.5
--- tendAnvol.c 8 Dec 2003 23:19:03 -0000 1.6
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Apply an anisotropy metric to a DT volume"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Apply an anisotropy metric to a DT volume"
Index: tendBmat.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendBmat.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** tendBmat.c 16 Oct 2003 10:01:01 -0000 1.3
--- tendBmat.c 8 Dec 2003 23:19:03 -0000 1.4
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Calculate B-matrix given gradient directions"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Calculate B-matrix given gradient directions"
Index: tendCalc.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendCalc.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** tendCalc.c 23 Jul 2003 01:20:30 -0000 1.8
--- tendCalc.c 8 Dec 2003 23:19:03 -0000 1.9
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Calculate tensors from DW images"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Calculate tensors from DW images"
Index: tendEllipse.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendEllipse.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** tendEllipse.c 6 Oct 2003 11:05:41 -0000 1.2
--- tendEllipse.c 8 Dec 2003 23:19:03 -0000 1.3
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Generate postscript renderings of 2D glyphs"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Generate postscript renderings of 2D glyphs"
Index: tendEpireg.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendEpireg.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** tendEpireg.c 7 Oct 2003 21:01:01 -0000 1.12
--- tendEpireg.c 8 Dec 2003 23:19:03 -0000 1.13
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Register diffusion-weighted echo-planar images"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Register diffusion-weighted echo-planar images"
Index: tendEstim.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendEstim.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** tendEstim.c 16 Oct 2003 20:33:01 -0000 1.10
--- tendEstim.c 8 Dec 2003 23:19:03 -0000 1.11
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Estimate tensors from a set of DW images"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Estimate tensors from a set of DW images"
Index: tendEval.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendEval.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** tendEval.c 12 Oct 2003 23:19:34 -0000 1.12
--- tendEval.c 8 Dec 2003 23:19:03 -0000 1.13
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Calculate one or more eigenvalues in a DT volume"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Calculate one or more eigenvalues in a DT volume"
Index: tendEvaladd.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendEvaladd.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** tendEvaladd.c 16 Oct 2003 21:20:42 -0000 1.1
--- tendEvaladd.c 8 Dec 2003 23:19:03 -0000 1.2
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Modify shape by adding a constant to all eigenvalues"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Modify shape by adding a constant to all eigenvalues"
Index: tendEvalclamp.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendEvalclamp.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** tendEvalclamp.c 7 Oct 2003 13:57:41 -0000 1.1
--- tendEvalclamp.c 8 Dec 2003 23:19:03 -0000 1.2
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Modify shape by clamping eigenvalues in some range"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Modify shape by clamping eigenvalues in some range"
Index: tendEvalpow.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendEvalpow.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** tendEvalpow.c 7 Oct 2003 13:57:41 -0000 1.1
--- tendEvalpow.c 8 Dec 2003 23:19:03 -0000 1.2
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Modify shape by raising eigenvalues to some power"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Modify shape by raising eigenvalues to some power"
Index: tendEvec.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendEvec.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** tendEvec.c 12 Oct 2003 23:19:35 -0000 1.13
--- tendEvec.c 8 Dec 2003 23:19:03 -0000 1.14
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Calculate one or more eigenvectors in a DT volume"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Calculate one or more eigenvectors in a DT volume"
Index: tendEvecrgb.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendEvecrgb.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** tendEvecrgb.c 13 Oct 2003 13:21:18 -0000 1.3
--- tendEvecrgb.c 8 Dec 2003 23:19:03 -0000 1.4
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Make an RGB volume from an eigenvector and an anisotropy"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Make an RGB volume from an eigenvector and an anisotropy"
Index: tendEvq.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendEvq.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** tendEvq.c 23 Jul 2003 01:20:30 -0000 1.5
--- tendEvq.c 8 Dec 2003 23:19:03 -0000 1.6
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Quantize directions of diffusion"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Quantize directions of diffusion"
Index: tendExpand.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendExpand.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** tendExpand.c 23 Jul 2003 01:20:30 -0000 1.5
--- tendExpand.c 8 Dec 2003 23:19:03 -0000 1.6
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Converts a 7-value DT volume to a 9-value DT volume"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Converts a 7-value DT volume to a 9-value DT volume"
Index: tendFiber.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendFiber.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** tendFiber.c 14 Oct 2003 08:28:38 -0000 1.5
--- tendFiber.c 8 Dec 2003 23:19:03 -0000 1.6
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Extract a single fiber tract, given a start point"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Extract a single fiber tract, given a start point"
Index: tendFlotsam.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendFlotsam.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** tendFlotsam.c 23 Jul 2003 01:20:30 -0000 1.3
--- tendFlotsam.c 8 Dec 2003 23:19:03 -0000 1.4
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
/*
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
/*
Index: tendGlyph.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendGlyph.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** tendGlyph.c 18 Nov 2003 10:04:55 -0000 1.19
--- tendGlyph.c 8 Dec 2003 23:19:03 -0000 1.20
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Generate postscript or ray-traced renderings of 3D glyphs"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Generate postscript or ray-traced renderings of 3D glyphs"
Index: tendMake.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendMake.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** tendMake.c 23 Jul 2003 01:20:30 -0000 1.4
--- tendMake.c 8 Dec 2003 23:19:03 -0000 1.5
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Create DT volume from confidence and eigensystem"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Create DT volume from confidence and eigensystem"
Index: tendNorm.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendNorm.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** tendNorm.c 7 Oct 2003 16:08:22 -0000 1.2
--- tendNorm.c 8 Dec 2003 23:19:03 -0000 1.3
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Normalize tensor size"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Normalize tensor size"
Index: tendPoint.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendPoint.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** tendPoint.c 12 Oct 2003 23:19:35 -0000 1.5
--- tendPoint.c 8 Dec 2003 23:19:03 -0000 1.6
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Describe everything about one sample in a DT volume"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Describe everything about one sample in a DT volume"
Index: tendSatin.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendSatin.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** tendSatin.c 16 Oct 2003 09:40:33 -0000 1.14
--- tendSatin.c 8 Dec 2003 23:19:03 -0000 1.15
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Generate a pretty synthetic DT volume"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Generate a pretty synthetic DT volume"
Index: tendShrink.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendShrink.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** tendShrink.c 23 Jul 2003 01:20:30 -0000 1.3
--- tendShrink.c 8 Dec 2003 23:19:03 -0000 1.4
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Converts a 9-value DT volume to a 7-value DT volume"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Converts a 9-value DT volume to a 7-value DT volume"
Index: tendSim.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendSim.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** tendSim.c 23 Jul 2003 01:20:30 -0000 1.3
--- tendSim.c 8 Dec 2003 23:19:03 -0000 1.4
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Simulate DW images from a tensor field"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Simulate DW images from a tensor field"
Index: tendSlice.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendSlice.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** tendSlice.c 7 Oct 2003 13:56:18 -0000 1.2
--- tendSlice.c 8 Dec 2003 23:19:03 -0000 1.3
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Slice 3D tensors to get slab/image of 3D/2D tensors"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Slice 3D tensors to get slab/image of 3D/2D tensors"
Index: tendSten.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tendSten.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** tendSten.c 23 Jul 2003 01:20:30 -0000 1.3
--- tendSten.c 8 Dec 2003 23:19:03 -0000 1.4
***************
*** 19,23 ****
#include "ten.h"
! #include "tenPrivate.h"
#define INFO "Calculate structure tensors from a scalar field"
--- 19,23 ----
#include "ten.h"
! #include "privateTen.h"
#define INFO "Calculate structure tensors from a scalar field"
Index: tensor.c
===================================================================
RCS file: /cvsroot/teem/teem/src/ten/tensor.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** tensor.c 12 Oct 2003 23:19:35 -0000 1.23
--- tensor.c 8 Dec 2003 23:19:03 -0000 1.24
***************
*** 20,24 ****
#include "ten.h"
! #include "tenPrivate.h"
int tenVerbose = 0;
--- 20,24 ----
#include "ten.h"
! #include "privateTen.h"
int tenVerbose = 0;
--- tenPrivate.h DELETED ---
|