/* * This file is part of Healpix_cxx. * * Healpix_cxx is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Healpix_cxx is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Healpix_cxx; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * For more information about HEALPix, see http://healpix.jpl.nasa.gov */ /* * Healpix_cxx is being developed at the Max-Planck-Institut fuer Astrophysik * and financially supported by the Deutsches Zentrum fuer Luft- und Raumfahrt * (DLR). */ /* * Copyright (C) 2003-2010 Max-Planck-Society * Author: Martin Reinecke */ #include "cxxutils.h" #include "paramfile.h" #include "healpix_map.h" #include "healpix_map_fitsio.h" #include "fitshandle.h" #include "levels_facilities.h" using namespace std; namespace { template void udgrade_cxx (paramfile ¶ms) { string infile = params.template find("infile"); string outfile = params.template find("outfile"); int order = Healpix_Base::nside2order (params.template find("nside")); bool polarisation = params.template find("polarisation",false); bool pessimistic = params.template find("pessimistic",false); if (!polarisation) { Healpix_Map inmap; read_Healpix_map_from_fits(infile,inmap,1,2); Healpix_Map outmap (order, inmap.Scheme()); outmap.Import(inmap,pessimistic); write_Healpix_map_to_fits (outfile,outmap,planckType()); } else { Healpix_Map inmap; read_Healpix_map_from_fits(infile,inmap,1,2); Healpix_Map outmapT (order, inmap.Scheme()), outmapQ (order, inmap.Scheme()), outmapU (order, inmap.Scheme()); outmapT.Import(inmap,pessimistic); read_Healpix_map_from_fits(infile,inmap,2,2); outmapQ.Import(inmap,pessimistic); read_Healpix_map_from_fits(infile,inmap,3,2); outmapU.Import(inmap,pessimistic); write_Healpix_map_to_fits (outfile,outmapT,outmapQ,outmapU,planckType()); } } } // unnamed namespace int udgrade_cxx_module (int argc, const char **argv) { module_startup ("udgrade_cxx", argc, argv, 2, ""); paramfile params (argv[1]); bool dp = params.find ("double_precision",false); dp ? udgrade_cxx(params) : udgrade_cxx(params); return 0; }