Add replacements for pbc enumerations
[gromacs.git] / src / gromacs / analysisdata / framelocaldata.h
blob5d086b34a133cc2daf90c33a9b05907f34b069e8
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2014,2015,2017,2019, by the GROMACS development team, led by
5 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 * and including many others, as listed in the AUTHORS file in the
7 * top-level source directory and at http://www.gromacs.org.
9 * GROMACS is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1
12 * of the License, or (at your option) any later version.
14 * GROMACS is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with GROMACS; if not, see
21 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * If you want to redistribute modifications to GROMACS, please
25 * consider that scientific software is very special. Version
26 * control is crucial - bugs must be traceable. We will be happy to
27 * consider code for inclusion in the official distribution, but
28 * derived work must not be called official GROMACS. Details are found
29 * in the README & COPYING files - if they are missing, get the
30 * official version at http://www.gromacs.org.
32 * To help us fund GROMACS development, we humbly ask that you cite
33 * the research papers on the package. Check out http://www.gromacs.org.
35 /*! \internal \file
36 * \brief
37 * Defines gmx::AnalysisDataFrameLocalData and supporting types.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_analysisdata
42 #ifndef GMX_ANALYSISDATA_FRAMELOCALDATA_H
43 #define GMX_ANALYSISDATA_FRAMELOCALDATA_H
45 #include <algorithm>
46 #include <numeric>
47 #include <vector>
49 #include "gromacs/analysisdata/paralleloptions.h"
50 #include "gromacs/utility/arrayref.h"
51 #include "gromacs/utility/gmxassert.h"
53 namespace gmx
56 //! \addtogroup module_analysisdata
57 //! \{
59 /*! \internal
60 * \brief
61 * Handle to a single data set within frame-local data array.
63 * Methods in this class do not throw.
65 * \see AnalysisDataFrameLocalData
67 template<typename ValueType>
68 class AnalysisDataFrameLocalDataSetHandle
70 public:
71 //! Constructs a handle from an array of values.
72 explicit AnalysisDataFrameLocalDataSetHandle(ArrayRef<ValueType> values)
73 : values_(values)
77 //! Clears all values in the data set.
78 void clear()
80 std::fill(values_.begin(), values_.end(), ValueType());
83 //! Accesses a single value in the data set.
84 ValueType &value(int column)
86 GMX_ASSERT(column >= 0 && column < ssize(values_),
87 "Invalid column index");
88 return values_[column];
91 private:
92 ArrayRef<ValueType> values_;
95 /*! \internal
96 * \brief
97 * Handle to a single frame data within frame-local data array.
99 * Methods in this class do not throw.
101 * \see AnalysisDataFrameLocalData
103 template<typename ValueType>
104 class AnalysisDataFrameLocalDataHandle
106 public:
107 //! Shorthand for the internal array of values.
108 typedef std::vector<ValueType> ValueArray;
109 //! Shorthand for a handle to a single data set.
110 typedef AnalysisDataFrameLocalDataSetHandle<ValueType> DataSetHandle;
112 //! Constructs a handle from specified frame data.
113 AnalysisDataFrameLocalDataHandle(const std::vector<int> *dataSetIndices,
114 ValueArray *values)
115 : dataSetIndices_(dataSetIndices), values_(values)
119 //! Returns the number of data sets in the array.
120 int dataSetCount() const
122 return dataSetIndices_->size() - 1;
124 //! Clears all values in the frame.
125 void clear()
127 std::fill(values_->begin(), values_->end(), ValueType());
130 //! Returns a handle for a single data set.
131 DataSetHandle dataSet(int dataSet)
133 GMX_ASSERT(dataSet >= 0 && dataSet < dataSetCount(),
134 "Invalid data set index");
135 const int firstIndex = (*dataSetIndices_)[dataSet];
136 const int lastIndex = (*dataSetIndices_)[dataSet + 1];
137 return DataSetHandle(makeArrayRef(*values_).
138 subArray(firstIndex, lastIndex-firstIndex));
140 //! Accesses a single value in the frame.
141 ValueType &value(int dataSet, int column)
143 GMX_ASSERT(dataSet >= 0 && dataSet < dataSetCount(),
144 "Invalid data set index");
145 const int firstIndex = (*dataSetIndices_)[dataSet];
146 GMX_ASSERT(column >= 0
147 && column < (*dataSetIndices_)[dataSet+1] - firstIndex,
148 "Invalid column index");
149 return (*values_)[firstIndex + column];
152 private:
153 const std::vector<int> *dataSetIndices_;
154 ValueArray *values_;
157 /*! \internal \brief
158 * Container for an array of frame-local values that supports parallel data
159 * processing.
161 * \tparam ValueType Type of values to store.
163 * This class provides a convenient interface to create an array of frame-local
164 * data for use in analysis data modules that support parallel processing.
165 * The object is initialized by setting the desired dimensionality with
166 * setDataSetCount() and setColumnCount(), followed by a call to init(),
167 * typically in IAnalysisDataModule::parallelDataStarted(),
169 * After initialization, frameData() can be used to access the data for a given
170 * frame, independently from other frames. This works if the assumptions about
171 * parallelism hold: if `N` is the parallelization factor given for init() with
172 * AnalysisDataParallelOptions::parallelizationFactor(), then frame `i+N` must
173 * not be accessed before all processing for frame `i` is finished.
174 * Technically, the data for different frames is kept in a ring buffer of size
175 * `N`.
177 * The data for a frame is not cleared after it is reused for a new frame (but
178 * is initially cleared). This allows using the data for accumulating values
179 * over all frames in a lock-free manner.
181 * frameDataSet() is provided for convenience when only a single data set
182 * needs to be accessed (typically in IAnalysisDataModule::pointsAdded()).
184 * Methods in this class do not throw except where indicated.
186 * \see AnalysisDataFrameLocalData
188 template<typename ValueType>
189 class AnalysisDataFrameLocalData
191 public:
192 //! Shorthand for the internal array of values for a frame.
193 typedef std::vector<ValueType> ValueArray;
194 //! Shorthand for a handle to a single frame.
195 typedef AnalysisDataFrameLocalDataHandle<ValueType> FrameHandle;
196 //! Shorthand for a handle to a single data set.
197 typedef AnalysisDataFrameLocalDataSetHandle<ValueType> DataSetHandle;
199 //! Constructs an empty container with a single data set.
200 AnalysisDataFrameLocalData()
202 dataSetColumns_.resize(2);
205 //! Whether init() has been called.
206 bool isInitialized() const { return !values_.empty(); }
207 /*! \brief
208 * Returns number of independent data frames in this object.
210 * This supports looping over all the frame arrays to, e.g., sum them
211 * up at the end in accumulation scenarios.
213 int frameCount() const { return values_.size(); }
215 /*! \brief
216 * Sets the number of data sets stored for each frame.
218 * \throws std::bad_alloc if out of memory.
220 * If not called, there is a single data set in the object.
221 * Cannot be called after init().
223 void setDataSetCount(int dataSetCount)
225 GMX_RELEASE_ASSERT(!isInitialized(),
226 "Cannot change value count after init()");
227 GMX_RELEASE_ASSERT(dataSetCount >= 0,
228 "Invalid data set count");
229 dataSetColumns_.resize(dataSetCount + 1);
231 /*! \brief
232 * Sets the number of columns stored for a data set.
234 * Must be called for each data set that needs to have values,
235 * otherwise there will be zero columns for that data set.
236 * Cannot be called after init().
238 void setColumnCount(int dataSet, int columnCount)
240 GMX_RELEASE_ASSERT(!isInitialized(),
241 "Cannot change value count after init()");
242 GMX_RELEASE_ASSERT(dataSet >= 0 && dataSet < ssize(dataSetColumns_) - 1,
243 "Invalid data set index");
244 GMX_RELEASE_ASSERT(columnCount >= 0,
245 "Invalid column count");
246 dataSetColumns_[dataSet + 1] = columnCount;
249 /*! \brief
250 * Initializes the storage to support specified parallelism.
252 * \throws std::bad_alloc if out of memory.
254 void init(const AnalysisDataParallelOptions &opt)
256 GMX_RELEASE_ASSERT(!isInitialized(), "init() called multiple times");
257 std::partial_sum(dataSetColumns_.begin(), dataSetColumns_.end(),
258 dataSetColumns_.begin());
259 values_.resize(opt.parallelizationFactor());
260 typename std::vector<ValueArray>::iterator i;
261 for (i = values_.begin(); i != values_.end(); ++i)
263 i->resize(dataSetColumns_.back());
267 //! Returns a handle to access data for a frame.
268 FrameHandle frameData(int frameIndex)
270 GMX_ASSERT(frameIndex >= 0, "Invalid frame index");
271 GMX_ASSERT(isInitialized(), "Cannot access data before init()");
272 return FrameHandle(&dataSetColumns_,
273 &values_[frameIndex % values_.size()]);
275 //! Returns a handle to access a single data set within a frame.
276 DataSetHandle frameDataSet(int frameIndex, int dataSet)
278 return frameData(frameIndex).dataSet(dataSet);
281 private:
282 /*! \brief
283 * Index to find data sets within a per-frame array in `values_`.
285 * The first entry is always zero, followed by one entry for each data
286 * set. Before init(), the data set entries hold the numbers set with
287 * setColumnCount(). After init(), the data set entries hold the
288 * indices of the first column for that data set in the per-frame
289 * arrays in `values_`.
291 std::vector<int> dataSetColumns_;
292 /*! \brief
293 * Data array for each frame.
295 * This is a ring buffer whose size is specified by the desired
296 * parallelism level. For each frame, there is a single array of
297 * values, where the individual data sets are indexed with
298 * `dataSetColumns_`.
300 std::vector<ValueArray> values_;
303 //! \}
305 } // namespace gmx
307 #endif