24 #include <CCfits/CCfits>
43 string test_upper_string{
"THATSTRING"};
44 log.info() <<
"This is the test upper string: " << test_upper_string;
46 string test_lower_string = ::CCfits::FITSUtil::lowerCase(test_upper_string);
47 log.info() <<
"This is the test lower string: " << test_lower_string;
49 log.info() <<
"done with test program! ";
52 log.info() <<
"Opening the file " << fits_file_path.string();
53 ::CCfits::FITS fits_file(fits_file_path.string());
55 ::CCfits::ExtHDU& extension = fits_file.extension(1);
57 log.info() <<
"Extension comments: " << extension.getComments();