GADGET-4
io_halotrees.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 HALOTREES_IO_H
13 #define HALOTREES_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 
33 class halotrees_io : public IO_Def
34 {
35  private:
36  mergertree *MergerTree;
37 
38  public:
39  halotrees_io(mergertree *MergerTree_ptr, MPI_Comm comm, int format);
40 
41  void halotrees_save_trees(void);
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 
60  struct io_header
61  {
62  long long Nhalos;
63  long long TotNhalos;
64 
65  long long Ntrees;
66  long long TotNtrees;
67 
68  int num_files;
69  int lastsnapshotnr;
70  };
71  io_header header;
72 };
73 
74 #endif
75 
76 #endif /* HALOTREES_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