Changeset 14590 for trunk/Ohana/src/relphot
- Timestamp:
- Aug 21, 2007, 2:10:20 PM (19 years ago)
- Location:
- trunk/Ohana/src/relphot/src
- Files:
-
- 3 edited
-
args.c (modified) (1 diff)
-
initialize.c (modified) (1 diff)
-
plotstuff.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/relphot/src/args.c
r9633 r14590 11 11 if ((N = get_argument (argc, argv, "-time"))) { 12 12 remove_argument (N, &argc, argv); 13 if (! str_to_time (argv[N], &TSTART)) {13 if (!ohana_str_to_time (argv[N], &TSTART)) { 14 14 fprintf (stderr, "ERROR: syntax error\n"); 15 15 return (FALSE); 16 16 } 17 17 remove_argument (N, &argc, argv); 18 if (! str_to_dtime (argv[N], &trange)) {19 if (! str_to_time (argv[N], &TSTOP)) {18 if (!ohana_str_to_dtime (argv[N], &trange)) { 19 if (!ohana_str_to_time (argv[N], &TSTOP)) { 20 20 fprintf (stderr, "ERROR: syntax error\n"); 21 21 return (FALSE); -
trunk/Ohana/src/relphot/src/initialize.c
r12332 r14590 30 30 fprintf (stderr, "current parameter settings:\n"); 31 31 if (TimeSelect) { 32 fprintf (stderr, "TimeSelect: TRUE (%s - %s)\n", sec_to_date (TSTART),sec_to_date (TSTOP));32 fprintf (stderr, "TimeSelect: TRUE (%s - %s)\n", ohana_sec_to_date (TSTART), ohana_sec_to_date (TSTOP)); 33 33 } else { 34 34 fprintf (stderr, "TimeSelect: FALSE\n"); -
trunk/Ohana/src/relphot/src/plotstuff.c
r14382 r14590 81 81 82 82 float *values; 83 int i , Nbytes;83 int i; 84 84 85 85 if (Npts < 1) return;
Note:
See TracChangeset
for help on using the changeset viewer.
