/******************************************************************************* * This file is part of SWIFT. * Copyright (c) 2012 Matthieu Schaller (schaller@strw.leidenuniv.nl). * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 Lesser General Public License * along with this program. If not, see . * ******************************************************************************/ #ifndef SWIFT_SINGLE_IO_H #define SWIFT_SINGLE_IO_H /* Config parameters. */ #include #if defined(HAVE_HDF5) && !defined(WITH_MPI) /* Local includes */ #include "ic_info.h" #include "part.h" struct engine; struct unit_system; void read_ic_single( const char *fileName, const struct unit_system *internal_units, double dim[3], struct part **parts, struct gpart **gparts, struct sink **sinks, struct spart **sparts, struct bpart **bparts, size_t *Ngas, size_t *Ndm, size_t *Ndm_background, size_t *Nnuparts, size_t *Nsinks, size_t *Nstars, size_t *Nblackholes, int *flag_entropy, const int with_hydro, const int with_gravity, const int with_sinks, const int with_stars, const int with_black_holes, const int with_cosmology, const int cleanup_h, const int cleanup_sqrt_a, const double h, const double a, const int nr_threads, const int dry_run, const int remap_ids, struct ic_info *ics_metadata); void write_output_single(struct engine *e, const struct unit_system *internal_units, const struct unit_system *snapshot_units, const int fof); #endif /* HAVE_HDF5 && !WITH_MPI */ #endif /* SWIFT_SINGLE_IO_H */