⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fits_tcl.h

📁 本源码是一个用于卫星数据处理的程序
💻 H
字号:
/***************************************************************************
文件名:fits_tcl.h
copyright :1.0 中国科学院光电研究院有效载荷应用中心
创建人 : 冯鹏
日期:2007.1.20
修改人: 无
日期: 无
描述:定义处理校时数据时所需要的数据结构和函数原形
***************************************************************************/

#ifndef FITS_TCL_H_
#define FITS_TCL_H_

#include <string>
#include "fits_util.h"
#include "hxmt_file.h"
#include "Fits.h"
#include "fitsio.h"


typedef struct TCL_struct
{
	
	timespec_t time;
	double tcal;
	
} TCL_t;




int LoadTCL( const hxmt_file_t *hxmtfile , struct sci_intern *s );

int open_fits_tcl( const hxmt_file_t *hxmtfile, fitsfile **fptr );
int write_fits_tcl( fitsfile *fptr, const TCL_t *tcl, int n );
int close_fits_tcl( fitsfile *fptr );









#endif /* FITS_TCL_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -