122 {
123 SCANNED_ARG *scanned;
124 SDDS_TABLE inputPage, *copiedPage, outputPage;
125 long copiedPages;
126 char *inputfile, *outputfile;
127 char **column, **excludeColumn = NULL;
128 int32_t columns;
129 long excludeColumns;
130 char *indParameterName;
131 char **copyColumn;
132 int32_t copyColumns;
133 long verbose;
134 long slopeErrors;
135 long iArg, i;
136 double *indVar;
137 char *indVarUnits;
138 char **intColumn, **slopeColumn, **slopeSigmaColumn;
139 char *Units, *slopeUnits;
140 double *depVar;
141 long order;
142 double *coef, *coefsigma, *weight, *diff, chi;
143 long iCol, iPage;
144 int64_t rows, iRow;
145 double *slope, slope2, slopeAve, slopeSigma;
146 unsigned long pipeFlags, majorOrderFlag;
147 long tmpfile_used, noWarnings;
148 long generateIndex;
149 short columnMajorOrder = -1;
150
151 copiedPage = NULL;
152 slopeSigmaColumn = NULL;
153 slopeUnits = Units = indVarUnits = NULL;
154 rows = 0;
155 slope = NULL;
156 slope2 = 0;
157 coef = coefsigma = weight = diff = slope = NULL;
158
159 argc =
scanargs(&scanned, argc, argv);
160 if (argc == 1)
162
163 inputfile = outputfile = NULL;
164 columns = excludeColumns = 0;
165 column = excludeColumn = NULL;
166 indParameterName = NULL;
167 verbose = 0;
168 slopeErrors = 0;
169 pipeFlags = 0;
170 tmpfile_used = 0;
171 noWarnings = 0;
172 for (iArg = 1; iArg < argc; iArg++) {
173 if (scanned[iArg].arg_type == OPTION) {
175 switch (
match_string(scanned[iArg].list[0], commandline_option, N_OPTIONS, UNIQUE_MATCH)) {
176 case CLO_MAJOR_ORDER:
177 majorOrderFlag = 0;
178 scanned[iArg].n_items--;
179 if (scanned[iArg].n_items > 0 &&
180 (!
scanItemList(&majorOrderFlag, scanned[iArg].list + 1, &scanned[iArg].n_items, 0,
181 "row", -1, NULL, 0, SDDS_ROW_MAJOR_ORDER,
182 "column", -1, NULL, 0, SDDS_COLUMN_MAJOR_ORDER, NULL)))
183 SDDS_Bomb(
"invalid -majorOrder syntax/values");
184 if (majorOrderFlag & SDDS_COLUMN_MAJOR_ORDER)
185 columnMajorOrder = 1;
186 else if (majorOrderFlag & SDDS_ROW_MAJOR_ORDER)
187 columnMajorOrder = 0;
188 break;
189 case CLO_INDEPENDENT_PARAMETER:
190 if (!(indParameterName = scanned[iArg].list[1]))
191 SDDS_Bomb(
"no string given for option -independentVariable");
192 break;
193 case CLO_COLUMNS:
194 if (columns)
195 SDDS_Bomb(
"only one -columns option may be given");
196 if (scanned[iArg].n_items < 2)
198 column =
tmalloc(
sizeof(*column) * (columns = scanned[iArg].n_items - 1));
199 for (i = 0; i < columns; i++)
200 column[i] = scanned[iArg].list[i + 1];
201 break;
202 case CLO_EXCLUDE:
203 if (excludeColumns)
204 SDDS_Bomb(
"only one -excludeColumns option may be given");
205 if (scanned[iArg].n_items < 2)
206 SDDS_Bomb(
"invalid -excludeColumns syntax");
207 excludeColumn =
tmalloc(
sizeof(*excludeColumn) * (excludeColumns = scanned[iArg].n_items - 1));
208 for (i = 0; i < excludeColumns; i++)
209 excludeColumn[i] = scanned[iArg].list[i + 1];
210 break;
211 case CLO_VERBOSE:
212 verbose = 1;
213 break;
214 case CLO_PIPE:
215 if (!
processPipeOption(scanned[iArg].list + 1, scanned[iArg].n_items - 1, &pipeFlags))
217 break;
218 case CLO_SLOPE_ERRORS:
219 slopeErrors = 1;
220 break;
221 default:
223 break;
224 }
225 } else {
226 if (!inputfile)
227 inputfile = scanned[iArg].list[0];
228 else if (!outputfile)
229 outputfile = scanned[iArg].list[0];
230 else
232 }
233 }
234
235 processFilenames(
"sddsvslopes", &inputfile, &outputfile, pipeFlags, noWarnings, &tmpfile_used);
236
237 if (!indParameterName)
238 SDDS_Bomb(
"independentVariable not given");
239
240 if (!excludeColumns) {
241 excludeColumn = defaultExcludedColumn;
242 excludeColumns = DEFAULT_EXCLUDED_COLUMNS;
243 }
244
245 if (verbose)
246 fprintf(stderr, "Reading file %s.\n", inputfile);
248 copiedPages = 0;
249 while (SDDS_ReadTable(&inputPage) > 0) {
250 if (!copiedPages) {
253 } else {
255 }
258 if (!SDDS_CopyTable(&copiedPage[copiedPages], &inputPage))
260 copiedPages++;
261 }
262 if (copiedPages < 2) {
263 fprintf(stderr, "Insufficient data (i.e., number of data pages) to fit a straight line.\n");
264 exit(EXIT_FAILURE);
265 }
267 case SDDS_CHECK_WRONGUNITS:
268 case SDDS_CHECK_OKAY:
269 break;
270 default:
271 fprintf(stderr, "Something wrong with column %s.\n", "Rootname");
272 exit(EXIT_FAILURE);
273 }
275 case SDDS_CHECK_WRONGUNITS:
276 case SDDS_CHECK_OKAY:
277 generateIndex = 0;
278 break;
279 case SDDS_CHECK_NONEXISTENT:
280 generateIndex = 1;
281 break;
282 default:
283 fprintf(stderr, "Something wrong with column %s.\n", "Index");
284 exit(EXIT_FAILURE);
285 }
286
287
288
289 indVar = (double *)malloc(sizeof(*indVar) * copiedPages);
291 case SDDS_CHECK_WRONGUNITS:
292 case SDDS_CHECK_OKAY:
293 break;
294 default:
295 fprintf(stderr, "Something wrong with parameter %s.\n", indParameterName);
296 exit(EXIT_FAILURE);
297 }
298 for (iPage = 0; iPage < copiedPages; iPage++) {
301 }
304 if (!indVarUnits) {
305 indVarUnits = (char *)malloc(sizeof(*indVarUnits));
306 indVarUnits[0] = 0;
307 }
308
309
310
311
312 if (!set_multicolumn_flags(&inputPage, &column, &columns, excludeColumn, excludeColumns)) {
314 exit(EXIT_FAILURE);
315 }
316
317
318
319 intColumn = (char **)malloc((sizeof(char *) * columns));
320 slopeColumn = (char **)malloc((sizeof(char *) * columns));
321 if (slopeErrors)
322 slopeSigmaColumn = (char **)malloc((sizeof(char *) * columns));
323 for (i = 0; i < columns; i++) {
324 intColumn[i] = (char *)malloc((sizeof(char) * (strlen(column[i]) + strlen("Intercept") + 1)));
325 strcat(strcpy(intColumn[i], column[i]), "Intercept");
326 slopeColumn[i] = (char *)malloc((sizeof(char) * (strlen(column[i]) + strlen("Slope") + 1)));
327 strcat(strcpy(slopeColumn[i], column[i]), "Slope");
328 if (slopeErrors) {
329 slopeSigmaColumn[i] = (char *)malloc((sizeof(char) * (strlen(column[i]) + strlen("SlopeSigma") + 1)));
330 strcat(strcpy(slopeSigmaColumn[i], column[i]), "SlopeSigma");
331 }
332 }
333
334
335
336 if (verbose)
337 fprintf(stderr, "Opening file %s.\n", outputfile);
338 if (!
SDDS_InitializeOutput(&outputPage, SDDS_BINARY, 1,
"lsf of sddsvexperiment", NULL, outputfile) ||
344 if (columnMajorOrder != -1)
345 outputPage.layout.data_mode.column_major = columnMajorOrder;
346 else
347 outputPage.layout.data_mode.column_major = inputPage.layout.data_mode.column_major;
348 for (iCol = 0; iCol < columns; iCol++) {
351 if (!Units) {
352 Units = (char *)malloc(sizeof(*Units));
353 Units[0] = 0;
354 }
357
358 if (strlen(indVarUnits) && strlen(Units)) {
359 slopeUnits = (char *)malloc(sizeof(*slopeUnits) * (strlen(Units) + strlen(indVarUnits) + 2));
360 strcat(strcat(strcpy(slopeUnits, Units), "/"), indVarUnits);
361 }
362 if (strlen(indVarUnits) && !strlen(Units)) {
363 slopeUnits = (char *)malloc(sizeof(*slopeUnits) * (strlen(indVarUnits) + 2));
364 strcat(strcpy(slopeUnits, "1/"), indVarUnits);
365 }
366 if (!strlen(indVarUnits) && strlen(Units)) {
367 slopeUnits = (char *)malloc(sizeof(*slopeUnits) * (strlen(Units) + 2));
368 strcpy(slopeUnits, Units);
369 }
370 if (!strlen(indVarUnits) && !strlen(Units)) {
371 slopeUnits = (char *)malloc(sizeof(*slopeUnits));
372 slopeUnits[0] = '\0';
373 }
376 if (slopeErrors) {
379 }
380 free(slopeUnits);
381 }
383 !SDDS_StartTable(&outputPage, rows) ||
384 !
SDDS_SetParameters(&outputPage, SDDS_SET_BY_NAME | SDDS_PASS_BY_VALUE,
"InputFile", inputfile ? inputfile :
"pipe", NULL) ||
385 !
SDDS_SetParameters(&outputPage, SDDS_SET_BY_NAME | SDDS_PASS_BY_VALUE, 0,
"IndependentVariable", indParameterName, NULL))
387
388
389
390
391 copyColumns = DEFAULT_COPY_COLUMNS;
392 copyColumn = defaultCopyColumn;
393 if (!set_multicolumn_flags(&inputPage, ©Column, ©Columns, NULL, 0)) {
395 exit(EXIT_FAILURE);
396 }
399 depVar = (double *)malloc(sizeof(*depVar) * copiedPages);
400 weight = (double *)malloc(sizeof(*weight) * copiedPages);
401 diff = (double *)malloc(sizeof(*diff) * copiedPages);
402 order = 1;
403 coef = (double *)malloc(sizeof(*coef) * (order + 1));
404 coefsigma = (double *)malloc(sizeof(*coefsigma) * (order + 1));
405 if (slopeErrors)
406 slope = (double *)malloc(sizeof(*slope) * copiedPages);
407 for (iCol = 0; iCol < columns; iCol++) {
408 for (iPage = 0; iPage < copiedPages; iPage++)
409 weight[iPage] = 1;
410 if (verbose)
411 fprintf(stderr, "Doing column %s.\n", column[iCol]);
412 for (iRow = 0; iRow < rows; iRow++) {
413 for (iPage = 0; iPage < copiedPages; iPage++) {
414 if (!
SDDS_GetValue(&copiedPage[iPage], column[iCol], iRow, &depVar[iPage]))
416 }
417 if (!(
lsfn(indVar, depVar, weight, copiedPages, order, coef, coefsigma, &chi, diff))) {
418 fprintf(stderr, "Problem with call to lsfn.\n");
419 exit(EXIT_FAILURE);
420 }
421 if (generateIndex) {
422 if (!
SDDS_SetRowValues(&outputPage, SDDS_SET_BY_NAME | SDDS_PASS_BY_VALUE, iRow,
"Index", iRow, intColumn[iCol], coef[0], slopeColumn[iCol], coef[1], NULL))
424 } else {
425 if (!
SDDS_SetRowValues(&outputPage, SDDS_SET_BY_NAME | SDDS_PASS_BY_VALUE, iRow, intColumn[iCol], coef[0], slopeColumn[iCol], coef[1], NULL))
427 }
428 if (slopeErrors) {
429
430 slopeAve = slope2 = 0;
431 for (iPage = 0; iPage < copiedPages; iPage++) {
432 weight[iPage] = 1e10;
433 if (iPage)
434 weight[iPage - 1] = 1;
435 if (!(
lsfn(indVar, depVar, weight, copiedPages, order, coef, coefsigma, &chi, diff))) {
436 fprintf(stderr, "Problem with call to lsfn.\n");
437 exit(EXIT_FAILURE);
438 }
439 slope[iPage] = coef[1];
440 slopeAve += slope[iPage];
441 slope2 += slope[iPage] * slope[iPage];
442 }
443 slopeSigma = sqrt(slope2 / copiedPages - (slopeAve / copiedPages) * (slopeAve / copiedPages));
444 if (!
SDDS_SetRowValues(&outputPage, SDDS_SET_BY_NAME | SDDS_PASS_BY_VALUE, iRow, slopeSigmaColumn[iCol], slopeSigma, NULL))
446 }
447 }
448 }
449
452 for (iPage = 0; iPage < copiedPages; iPage++) {
455 }
456
460 exit(EXIT_FAILURE);
462 free(column);
465 free(intColumn);
466 free(slopeColumn);
467 if (slopeErrors) {
469 free(slopeSigmaColumn);
470 }
471
472 free(copiedPage);
473 free(indVar);
474 free(depVar);
475 if (weight)
476 free(weight);
477 if (diff)
478 free(diff);
479 if (slope)
480 free(slope);
481 if (coef)
482 free(coef);
483 if (coefsigma)
484 free(coefsigma);
485 if (Units)
486 free(Units);
487 if (indVarUnits)
488 free(indVarUnits);
489
491
492 return EXIT_SUCCESS;
493}
int32_t SDDS_CopyColumns(SDDS_DATASET *SDDS_target, SDDS_DATASET *SDDS_source)
int32_t SDDS_InitializeCopy(SDDS_DATASET *SDDS_target, SDDS_DATASET *SDDS_source, char *filename, char *filemode)
int32_t SDDS_SetRowValues(SDDS_DATASET *SDDS_dataset, int32_t mode, int64_t row,...)
int32_t SDDS_SetParameters(SDDS_DATASET *SDDS_dataset, int32_t mode,...)
int32_t SDDS_GetParameterInformation(SDDS_DATASET *SDDS_dataset, char *field_name, void *memory, int32_t mode,...)
Retrieves information about a specified parameter in the SDDS dataset.
int32_t SDDS_GetColumnInformation(SDDS_DATASET *SDDS_dataset, char *field_name, void *memory, int32_t mode,...)
Retrieves information about a specified column in the SDDS dataset.
int32_t SDDS_InitializeOutput(SDDS_DATASET *SDDS_dataset, int32_t data_mode, int32_t lines_per_row, const char *description, const char *contents, const char *filename)
Initializes the SDDS output dataset.
int32_t SDDS_DefineColumn(SDDS_DATASET *SDDS_dataset, const char *name, const char *symbol, const char *units, const char *description, const char *format_string, int32_t type, int32_t field_length)
Defines a data column within the SDDS dataset.
int32_t SDDS_WriteLayout(SDDS_DATASET *SDDS_dataset)
Writes the SDDS layout header to the output file.
int32_t SDDS_DefineParameter(SDDS_DATASET *SDDS_dataset, const char *name, const char *symbol, const char *units, const char *description, const char *format_string, int32_t type, char *fixed_value)
Defines a data parameter with a fixed string value.
int32_t SDDS_FreeStringArray(char **string, int64_t strings)
Frees an array of strings by deallocating each individual string.
int32_t SDDS_CheckColumn(SDDS_DATASET *SDDS_dataset, char *name, char *units, int32_t type, FILE *fp_message)
Checks if a column exists in the SDDS dataset with the specified name, units, and type.
void SDDS_PrintErrors(FILE *fp, int32_t mode)
Prints recorded error messages to a specified file stream.
void SDDS_Bomb(char *message)
Terminates the program after printing an error message and recorded errors.
int32_t SDDS_CheckParameter(SDDS_DATASET *SDDS_dataset, char *name, char *units, int32_t type, FILE *fp_message)
Checks if a parameter exists in the SDDS dataset with the specified name, units, and type.
#define SDDS_STRING
Identifier for the string data type.
#define SDDS_DOUBLE
Identifier for the double data type.
#define SDDS_ANY_INTEGER_TYPE
Special identifier used by SDDS_Check*() routines to accept any integer type.
#define SDDS_LONG64
Identifier for the signed 64-bit integer data type.
void * tmalloc(uint64_t size_of_block)
Allocates a memory block of the specified size with zero initialization.
void bomb(char *error, char *usage)
Reports error messages to the terminal and aborts the program.
char * delete_chars(char *s, char *t)
Removes all occurrences of characters found in string t from string s.
long lsfn(double *xd, double *yd, double *sy, long nd, long nf, double *coef, double *s_coef, double *chi, double *diff)
Computes nth order polynomial least squares fit.
long match_string(char *string, char **option, long n_options, long mode)
Matches a given string against an array of option strings based on specified modes.
long replaceFileAndBackUp(char *file, char *replacement)
Replaces a file with a replacement file and creates a backup of the original.
int scanargs(SCANNED_ARG **scanned, int argc, char **argv)
long processPipeOption(char **item, long items, unsigned long *flags)
void processFilenames(char *programName, char **input, char **output, unsigned long pipeFlags, long noWarnings, long *tmpOutputUsed)
void free_scanargs(SCANNED_ARG **scanned, int argc)
long scanItemList(unsigned long *flags, char **item, long *items, unsigned long mode,...)
Scans a list of items and assigns values based on provided keywords and types.