location_maps.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2018 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 
20 #ifndef LIBMESH_LOCATION_MAPS_H
21 #define LIBMESH_LOCATION_MAPS_H
22 
23 #include "libmesh/libmesh_config.h"
24 
25 // Local Includes
26 #include "libmesh/libmesh_common.h"
27 #include "libmesh/point.h"
28 
29 // C++ Includes
30 #include <unordered_map>
31 #include <vector>
32 
33 namespace libMesh
34 {
35 
36 // Forward Declarations
37 class Elem;
38 class MeshBase;
39 class Node;
40 
41 
52 template <typename T>
54 {
55  typedef std::unordered_multimap<unsigned int, T *> map_type;
56 public:
57  void init(MeshBase &);
58 
59  void clear() { _map.clear(); }
60 
61  void insert(T &);
62 
63  bool empty() const { return _map.empty(); }
64 
65  T * find(const Point &,
66  const Real tol = TOLERANCE);
67 
68  Point point_of(const T &) const;
69 
70 protected:
71  unsigned int key(const Point &);
72 
73  void fill(MeshBase &);
74 
75 private:
77  std::vector<Real> _lower_bound;
78  std::vector<Real> _upper_bound;
79 };
80 
81 } // namespace libMesh
82 
83 
84 #endif // LIBMESH_LOCATION_MAPS_H
T * find(const Point &, const Real tol=TOLERANCE)
std::vector< Real > _upper_bound
Definition: location_maps.h:78
Point point_of(const T &) const
static const Real TOLERANCE
Base class for Mesh.
Definition: mesh_base.h:77
std::map-like data structure using hashed Points for keys.
Definition: location_maps.h:53
void fill(MeshBase &)
unsigned int key(const Point &)
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
void init(MeshBase &)
Definition: location_maps.C:46
std::vector< Real > _lower_bound
Definition: location_maps.h:77
A geometric point in (x,y,z) space.
Definition: point.h:38
bool empty() const
Definition: location_maps.h:63
std::unordered_multimap< unsigned int, T * > map_type
Definition: location_maps.h:55