GADGET-4
io_treelinks.h
Go to the documentation of this file.
1/*******************************************************************************
2 * \copyright This file is part of the GADGET4 N-body/SPH code developed
3 * \copyright by Volker Springel. Copyright (C) 2014-2020 by Volker Springel
4 * \copyright (vspringel@mpa-garching.mpg.de) and all contributing authors.
5 *******************************************************************************/
6
12#ifndef TREELINKS_IO_H
13#define TREELINKS_IO_H
14
15#include "gadgetconfig.h"
16
17#ifdef MERGERTREE
18
19#include "../data/allvars.h"
20#include "../data/dtypes.h"
21#include "../data/mymalloc.h"
22#include "../fof/fof.h"
23#include "../io/hdf5_util.h"
24#include "../io/io.h"
25#include "../logs/timer.h"
26#include "../main/simulation.h"
27#include "../mergertree/mergertree.h"
28#include "../mpi_utils/mpi_utils.h"
29#include "../sort/parallel_sort.h"
30#include "../subfind/subfind.h"
31#include "../system/system.h"
32
33class treelinks_io : public IO_Def
34{
35 private:
36 mergertree *MergerTree;
37
38 public:
39 treelinks_io(mergertree *MergerTree_ptr, MPI_Comm comm, int format);
40
41 void treelinks_save(int num);
42
43 /* supplied virtual functions */
44 void fill_file_header(int writeTask, int lastTask, long long *nloc_part, long long *npart);
45 void read_file_header(const char *fname, int filenr, int readTask, int lastTask, long long *nloc_part, long long *npart,
46 int *nstart);
47 void get_datagroup_name(int grnr, char *gname);
48 void write_header_fields(hid_t);
49 void read_header_fields(const char *fname);
50 void read_increase_numbers(int type, int n_for_this_task);
51 int get_filenr_from_header(void);
52 void set_filenr_in_header(int);
53 void *get_base_address_of_structure(enum arrays array, int index);
54 int get_type_of_element(int index);
55 void set_type_of_element(int index, int type);
56
59 struct io_header
60 {
61 long long Nsubhalos;
62 long long TotNsubhalos;
63 int num_files;
64 };
65 io_header header;
66
67 int Nsubhalos;
68 long long TotNsubhalos;
69
70 private:
71};
72
73#endif
74
75#endif /* TREELINKS_IO_H */
Definition: io.h:129
virtual int get_filenr_from_header(void)=0
virtual void * get_base_address_of_structure(enum arrays array, int index)=0
virtual void set_type_of_element(int index, int type)=0
virtual void read_increase_numbers(int type, int n_for_this_task)=0
virtual void fill_file_header(int writeTask, int lastTask, long long *nloc_part, long long *npart)=0
virtual void read_header_fields(const char *fname)=0
virtual void read_file_header(const char *fname, int filenr, int readTask, int lastTask, long long *nloc_part, long long *npart, int *nstart)=0
virtual void set_filenr_in_header(int)=0
virtual void write_header_fields(hid_t)=0
virtual void get_datagroup_name(int grnr, char *gname)=0
virtual int get_type_of_element(int index)=0
arrays
Definition: io.h:30