Difference between revisions of "lltlg2mrc(API)"
From EosPedia
(Created page with "DataManip/ltlg/src/'''ltlg2mrc''' is API for converting ltlg file to mrcImage. It is ued by ltlg2mrc. == constant == == struct == typedef struct lltlg2mrcInfo {...") |
|||
Line 1: | Line 1: | ||
− | DataManip/ltlg/src/'''ltlg2mrc''' is API for converting [[ltlg]] file to [[mrcImage]]. It is | + | DataManip/ltlg/src/'''ltlg2mrc''' is API for converting [[ltlg]] file to [[mrcImage]]. It is used by [[ltlg2mrc]]. |
== constant == | == constant == |
Latest revision as of 00:18, 2 September 2014
DataManip/ltlg/src/ltlg2mrc is API for converting ltlg file to mrcImage. It is used by ltlg2mrc.
constant
struct
typedef struct lltlg2mrcInfo { long flagIn; char* In; FILE* fptIn; long flagOut; char* Out; FILE* fptOut; long flagconfigFile; FILE* fptconfigFile; long flagTitle; char* Title; long flagdelta; float delta; long flagRepeatDistance; float RepeatDistance; long flagrMax; float rMax; long flagphiStart; float phiStart; long flagzMin; float zMin; long flagzMax; float zMax; long flagdeltaz; float deltaz; long flagWeightOf0thLayer; float WeightOf0thLayer; long flagLayer; FILE* fptLayer; long f99; long flagCUT; float CUT; long flagMean; float Mean; long flagSigma; float Sigma; long Inverse; long notInteractive; long AntiPole; long mode; } lltlg2mrcInfo;
API
extern void lltlg2mrc(ltlgData* ltlg, mrcImage* mrc, lltlg2mrcInfo* linfo); extern void ltlg2mrcConfigFileRead(lltlg2mrcInfo* linfo, FILE* fpt);