- 论坛徽章:
- 0
|
本人用函数fread读取如下结构的.mca文件,在vc++2005 中能正确读取,而在gcc中却不能!!
各位兄台帮帮忙!- #include <iostream>
- #include "spa.h"
- #include "pcaheader.h"
- using namespace std;
- int main()
- {
- FILE *ff;
- PCAHEADER_C kk;
- ff=fopen("kk.dat","rb");
- if(ff)
- if(fread(&kk,sizeof(char),sizeof(PCAHEADER_C),ff) != sizeof(PCAHEADER_C))
- {
- printf("fail!\n");
- return -1;
- }
- printf("c0=%f\t c1=%f\t,c2=%f\n chn=%d\n",kk.c0,kk.c1,kk.c2,kk.chn_number);
- fclose(ff);
- return 0;
- }
复制代码 结构如下:(附上.mca文件)- typedef struct{ /*size=128 offset*/
- short readout_type; /*1 - setup, 2 - spectrum data,
- 3 - ROI list, 4 - learn/execute task 0*/
- short mac_number; /*MAC #1 - 4 2*/
- short region; /*0 - full, 1 - first half, .......
- 30- sixteenth sixteenth, 4*/
- unsigned long tag_n; /*0 - 99999999 6*/
- char id[26]; /*identification of spectrum 10*/
- short acq_mode; /*0x0100 -- PHA-, 0x0180 -- PHA+
- 0x0200 -- PHA-&MXR, 0x0280 -- PHA+&MXR
- 0x0300 -- MCSR- 0x0380 -- MCSR+ 36*/
- long time; /*time in second since 00:00:00 GMT 1980 38*/
- unsigned short millitm; /*milliseconds 42*/
- unsigned short timezone; /*difference in minuts westword between
- GMT and local time 44*/
- unsigned short dstflag; /*day light savings time flag 46*/
- long livetime; /*elapsed live time in hundredths of sec 48*/
- long realtime; /*elapsed true time in hundredths of sec 52*/
- long sweeps; /*elapsed MCSR sweeps 56*/
- double preset; /*elapsed computational preset 60*/
- float c2; /*energy cal. equation 2nd order term 68*/
- float c1; /*energy cal. equation ist order term 72*/
- float c0; /*energy cal. equation constant term 76*/
- char unit[5]; /*energy cal. units ASC-II 80*/
- char unittype; /*energy cal. units
- 0 -- keV, 1 -- MeV, 2 -- eV,
- 3 -- other (user defined) 85*/
- char format; /*energy reporting format
- 0 -- 6.1, 1 -- 6.2, 2 -- 6.3,
- 3 -- 6.4, 4 -- 6.5 86*/
- char order; /*energy equation order
- 1 -- first order, 2 -- second order 87*/
- short spm_num; /*spectrum number 88*/
- short naa_flag; /*must be 27575, if processed by NAA V2.xx 90*/
- short filler[17]; /*reserved 92*/
- short chn_number; /*MCA channel number 126*/
- }PCAHEADER_C;
复制代码 |
|