示例#1
0
void get_input_pixels(std::string fname, std::vector<std::string> &pix_name) {
	H5::H5File *file = H5Utils::openFile(fname, H5Utils::READ);
	
	file->iterateElems("/photometry/", NULL, fetch_pixel_name, reinterpret_cast<void*>(&pix_name));
	
	delete file;
}