source: sasview/src/sas/sascalc/file_converter/c_ext/bsl_loader.h @ c3f0114

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since c3f0114 was 6eaf89ea, checked in by lewis, 8 years ago

Implement reading BSL/OTOKO header file

  • Property mode set to 100644
File size: 345 bytes
Line 
1#ifndef bsl_loader_h
2#define bsl_loader_h
3
4typedef struct {
5    // File to load
6    char *filename;
7    // Frame to load
8    int frame;
9    // Number of pixels in the file
10    int n_pixels;
11    // Number of rasters in the file
12    int n_rasters;
13    // Whether or not the bytes are in reverse order
14    int swap_bytes;
15} CLoader_params;
16
17#endif
Note: See TracBrowser for help on using the repository browser.