00001 #define nx 4096
00002 #define ny 4096
00003
00004 #define oneau 1.49597870692e11
00005
00006 struct rotpar{
00007 int rotbad;
00008 int rotpairs;
00009 float rotcadence;
00010 int flatfield_version;
00011 };
00012
00013 struct code_param{
00014 double convergence;
00015 int maxiter;
00016 double omega;
00017 double norm;
00018 double croprad;
00019 double rotcoef0;
00020 double rotcoef1;
00021 double rotcoef2;
00022 };
00023
00024 struct list{
00025 int val;
00026 struct list *next;
00027 };
00028
00029
00030
00031