Reference documentation for deal.II version 9.2.0
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\) \(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\) \(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\) \(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
property_pool.h
Go to the documentation of this file.
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2017 - 2019 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE.md at
12 // the top level directory of deal.II.
13 //
14 // ---------------------------------------------------------------------
15 
16 #ifndef dealii_particles_property_pool_h
17 #define dealii_particles_property_pool_h
18 
19 #include <deal.II/base/config.h>
20 
22 
24 
25 namespace Particles
26 {
44  {
45  public:
51  using Handle = double *;
52 
56  static const Handle invalid_handle;
57 
61  PropertyPool(const unsigned int n_properties_per_slot);
62 
68  Handle
70 
76  void
77  deallocate_properties_array(const Handle handle);
78 
84  get_properties(const Handle handle);
85 
90  void
91  reserve(const std::size_t size);
92 
96  unsigned int
97  n_properties_per_slot() const;
98 
99  private:
103  const unsigned int n_properties;
104  };
105 
106 
107 } // namespace Particles
108 
110 
111 #endif
array_view.h
ArrayView
Definition: array_view.h:77
Particles::PropertyPool::get_properties
ArrayView< double > get_properties(const Handle handle)
Definition: property_pool.cc:53
Particles::PropertyPool
Definition: property_pool.h:43
Particles
Definition: data_out.h:27
Particles::PropertyPool::n_properties
const unsigned int n_properties
Definition: property_pool.h:103
Particles::PropertyPool::invalid_handle
static const Handle invalid_handle
Definition: property_pool.h:56
Particles::PropertyPool::PropertyPool
PropertyPool(const unsigned int n_properties_per_slot)
Definition: property_pool.cc:26
double
DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_OPEN
Definition: config.h:358
Particles::PropertyPool::n_properties_per_slot
unsigned int n_properties_per_slot() const
Definition: property_pool.cc:69
Particles::PropertyPool::allocate_properties_array
Handle allocate_properties_array()
Definition: property_pool.cc:33
Particles::PropertyPool::deallocate_properties_array
void deallocate_properties_array(const Handle handle)
Definition: property_pool.cc:45
Particles::PropertyPool::reserve
void reserve(const std::size_t size)
Definition: property_pool.cc:61
config.h
DEAL_II_NAMESPACE_CLOSE
#define DEAL_II_NAMESPACE_CLOSE
Definition: config.h:359