00001
00002
00003
00004
00005
00006
00007
00008 #include <stdio.h>
00009 #include <stdlib.h>
00010 #include "../../libcpixe/libcpixe.h"
00011 int main()
00012 {
00013 char abscoeffilename[300]="../../databases/xabs.abs";
00014 int maxZ=92;
00015 AbsCoef *TotAbsCoefArray;
00016 AbsCoef ac;
00017 double E;
00018
00019 readAbsCoef(abscoeffilename, maxZ, &TotAbsCoefArray);
00020
00021 ac=TotAbsCoefArray[55];
00022 E=ac.enr[3];
00023 printf("\n\n\nEnerLII=%lf\n\n",E);
00024
00025
00026 E=TotAbsCoefArray[14].enr[1];
00027 printf("E K=%lf\n\n",E);
00028 return 0;
00029 }