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

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 0b1a677 was 535e181, checked in by lewis, 8 years ago

Begin implementing 2D BSL loader into GUI

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