RSTT  3.2.0
Regional Seismic Travel Time
All Classes Namespaces Files Functions Variables Typedefs Friends Macros
CrustalProfileStore.h
Go to the documentation of this file.
1 //- ****************************************************************************
2 //-
3 //- Copyright 2009 National Technology & Engineering Solutions of Sandia, LLC
4 //- (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the U.S.
5 //- Government retains certain rights in this software.
6 //-
7 //- BSD Open Source License
8 //- All rights reserved.
9 //-
10 //- Redistribution and use in source and binary forms, with or without
11 //- modification, are permitted provided that the following conditions are met:
12 //-
13 //- 1. Redistributions of source code must retain the above copyright notice,
14 //- this list of conditions and the following disclaimer.
15 //-
16 //- 2. Redistributions in binary form must reproduce the above copyright
17 //- notice, this list of conditions and the following disclaimer in the
18 //- documentation and/or other materials provided with the distribution.
19 //-
20 //- 3. Neither the name of the copyright holder nor the names of its
21 //- contributors may be used to endorse or promote products derived from
22 //- this software without specific prior written permission.
23 //-
24 //- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 //- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 //- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 //- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
28 //- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 //- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 //- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 //- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 //- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 //- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 //- POSSIBILITY OF SUCH DAMAGE.
35 //-
36 //- ****************************************************************************
37 
38 #ifndef CrustalProfileStore_H
39 #define CrustalProfileStore_H
40 
41 // **** _SYSTEM INCLUDES_ ******************************************************
42 
43 #include <map>
44 #include <list>
45 
46 using namespace std;
47 
48 // **** _LOCAL INCLUDES_ *******************************************************
49 
50 #include "SLBMGlobals.h"
51 #include "CrustalProfile.h"
52 #include "Location.h"
53 // **** _BEGIN SLBM NAMESPACE_ **************************************************
54 
55 namespace slbm {
56 
108 {
109 
110 public:
111 
113  CrustalProfileStore(Grid& grid, const int& maxSize);
114 
117 
118  void clear();
119 
121  const double& lat, const double& lon, const double& depth);
122 
123  int getNCrustalProfiles() { return (int)profiles.size(); };
124 
125  size_t memSize();
126 
127 private:
128 
129  Grid& grid;
130 
131  int maxSize;
132 
133  map<string, CrustalProfile*> profiles;
134 
135  list<string> priority;
136 
137  list<CrustalProfile*> pool;
138 
139  string locString;
140 
141 };
142 
143 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
144 //
145 // INLINE FUNCTIONS
146 //
147 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
148 
149 inline size_t CrustalProfileStore::memSize()
150 {
151  size_t n = 0;
152  for (map<string, CrustalProfile*>::iterator
153  it = profiles.begin();
154  it != profiles.end();
155  it++)
156  n += it->second->memSize();
157  return (int)n;
158 }
159 
160 } // end slbm namespace
161 
162 #endif // CrustalProfileStore.h
#define SLBM_EXP_IMP
Definition: SLBMGlobals.h:180
A profile through the Earth model that stores interface radius, and interval P or S wave velocity inf...
CrustalProfileStore supports pool allocation for CrustalProfile objects.
CrustalProfileStore(Grid &grid, const int &maxSize)
Constructor.
~CrustalProfileStore()
Destructor.
CrustalProfile * getCrustalProfile(const int &phase, const double &lat, const double &lon, const double &depth)
A 2 dimensional, horizontal grid of GirdProfile objects.
Definition: Grid.h:91
virtual size_t memSize()