aboutsummaryrefslogtreecommitdiff
path: root/CarpetDev/CarpetIOF5_standalone/src/data_region.cc
blob: 99b188323d3b036c3f6c1ad2b007da21f1c7f274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include <cassert>
#include <cstdlib>
#include <sstream>
#include <string>

#include <hdf5.h>

#include "cctk.h"

#include "carpet.hh"

#include "data_region.hh"
#include "utils.hh"



namespace CarpetIOF5 {
  
  namespace F5 {
    
    using std::ostringstream;
    
    
    
    data_region_t::
    data_region_t (physical_quantity_t & physical_quantity,
                   bbox<int, dim> const & region)
      : m_physical_quantity (physical_quantity),
        m_region (region),
        m_name (string ("region-") + F5::name_from_ibbox (region))
    {
      assert (not region.empty());
      
      m_hdf5_data_region
        = open_or_create_group (m_physical_quantity
                                .get_hdf5_physical_quantity(),
                                m_name.c_str());
      assert (m_hdf5_data_region >= 0);
      
      assert (invariant());
    }
    
    
    
    data_region_t::
    ~ data_region_t ()
    {
      herr_t const herr = H5Gclose (m_hdf5_data_region);
      assert (not herr);
    }
    
    
    
    physical_quantity_t & data_region_t::
    get_physical_quantity ()
      const
    {
      return m_physical_quantity;
    }
    
    
    
    bbox<int, dim> const & data_region_t::
    get_region ()
      const
    {
      return m_region;
    }
    
    
    
    hid_t data_region_t::
    get_hdf5_data_region ()
      const
    {
      return m_hdf5_data_region;
    }
    
    
    
    bool data_region_t::
    invariant ()
      const
    {
      return (not m_region.empty()
              and m_hdf5_data_region >= 0);
    }
    
  } // namespace F5

} // namespace CarpetIOF5