Changeset 32951
- Timestamp:
- Dec 13, 2011, 11:44:33 AM (15 years ago)
- Location:
- branches/eam_branches/ipp-20111122/Ohana/src/opihi/cmd.astro
- Files:
-
- 1 added
- 3 edited
-
Makefile (modified) (1 diff)
-
init.c (modified) (2 diffs)
-
spex1dgas.c (added)
-
spex2dgas.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20111122/Ohana/src/opihi/cmd.astro/Makefile
r32909 r32951 58 58 $(SRC)/spec.$(ARCH).o \ 59 59 $(SRC)/specpairfit.$(ARCH).o \ 60 $(SRC)/spex1dgas.$(ARCH).o \ 60 61 $(SRC)/spex2dgas.$(ARCH).o \ 61 62 $(SRC)/mkclusters.$(ARCH).o \ -
branches/eam_branches/ipp-20111122/Ohana/src/opihi/cmd.astro/init.c
r32909 r32951 46 46 int spec PROTO((int, char **)); 47 47 int specpairfit PROTO((int, char **)); 48 int spex1dgas PROTO((int, char **)); 48 49 int spex2dgas PROTO((int, char **)); 49 50 int mkclusters PROTO((int, char **)); … … 97 98 {1, "spec", spec, "extract a spectrum"}, 98 99 {1, "specpairfit", specpairfit, "fit spectrum to another spectrum"}, 100 {1, "spex1dgas", spex1dgas, "minimize distances in 1D"}, 99 101 {1, "spex2dgas", spex2dgas, "minimize distances in 2D"}, 100 102 {1, "mkclusters", mkclusters, "group spectra by distance"}, -
branches/eam_branches/ipp-20111122/Ohana/src/opihi/cmd.astro/spex2dgas.c
r32922 r32951 49 49 void sortfriends (float *X, int *IDX1, int N); 50 50 51 void get_pressure_gradient (int iObj, int nCloseMax, float farFrac, int nearNeighbors, float maxPressure) {51 static void get_pressure_gradient (int iObj, int nCloseMax, float farFrac, int nearNeighbors, float maxPressure) { 52 52 53 53 int i; … … 107 107 } 108 108 109 void move_object (int iObj) {109 static void move_object (int iObj) { 110 110 111 111 object[iObj].Xo += 0.25*object[iObj].dPdX;
Note:
See TracChangeset
for help on using the changeset viewer.
