📄 fits_ttc.h
字号:
/***************************************************************************
文件名:fits_ttc.h
copyright :1.0 中国科学院光电研究院有效载荷应用中心
创建人 : 冯鹏
日期:2007.1.20
修改人: 无
日期: 无
描述:定义处理工程遥测数据文件时所需要的数据结构和函数原形
***************************************************************************/
#ifndef FITS_TTC_H
#define FITS_TTC_H
#include <string>
#include "fits_util.h"
#include "hxmt_file.h"
#include "Fits.h"
#include "fitsio.h"
typedef struct TTC_struct
{
timespec_t time;
double V_JIM1;
double V_JIM2;
double I_JIM1;
double I_JIM2;
double T_JIM1;
double T_JIM2;
} TTC_t;
int LoadTTC( const hxmt_file_t *hxmtfile , struct sci_intern *s );
int open_fits_ttc( const hxmt_file_t *hxmtfile, fitsfile **fptr );
int write_fits_ttc( fitsfile *fptr, const TTC_t *ttc, int n );
int close_fits_ttc( fitsfile *fptr );
#endif /* FITS_TTC_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -