2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2012,2013,2014,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.
37 * Implements classes in dataframe.h.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_analysisdata
44 #include "dataframe.h"
46 #include "gromacs/utility/gmxassert.h"
51 /********************************************************************
52 * AnalysisDataFrameHeader
55 AnalysisDataFrameHeader::AnalysisDataFrameHeader()
56 : index_(-1), x_(0.0), dx_(0.0)
61 AnalysisDataFrameHeader::AnalysisDataFrameHeader(int index
, real x
, real dx
)
62 : index_(index
), x_(x
), dx_(dx
)
64 GMX_ASSERT(index
>= 0, "Invalid frame index");
68 /********************************************************************
69 * AnalysisDataPointSetRef
72 AnalysisDataPointSetRef::AnalysisDataPointSetRef(
73 const AnalysisDataFrameHeader
&header
,
74 const AnalysisDataPointSetInfo
&pointSetInfo
,
75 const AnalysisDataValuesRef
&values
)
77 dataSetIndex_(pointSetInfo
.dataSetIndex()),
78 firstColumn_(pointSetInfo
.firstColumn()),
79 values_(constArrayRefFromArray(&*values
.begin() + pointSetInfo
.valueOffset(),
80 pointSetInfo
.valueCount()))
82 GMX_ASSERT(header_
.isValid(),
83 "Invalid point set reference should not be constructed");
87 AnalysisDataPointSetRef::AnalysisDataPointSetRef(
88 const AnalysisDataFrameHeader
&header
,
89 const std::vector
<AnalysisDataValue
> &values
)
90 : header_(header
), dataSetIndex_(0), firstColumn_(0),
93 GMX_ASSERT(header_
.isValid(),
94 "Invalid point set reference should not be constructed");
98 AnalysisDataPointSetRef::AnalysisDataPointSetRef(
99 const AnalysisDataPointSetRef
&points
, int firstColumn
, int columnCount
)
100 : header_(points
.header()), dataSetIndex_(points
.dataSetIndex()),
103 GMX_ASSERT(firstColumn
>= 0, "Invalid first column");
104 GMX_ASSERT(columnCount
>= 0, "Invalid column count");
105 if (points
.lastColumn() < firstColumn
106 || points
.firstColumn() >= firstColumn
+ columnCount
111 AnalysisDataValuesRef::const_iterator begin
= points
.values().begin();
112 int pointsOffset
= firstColumn
- points
.firstColumn();
113 if (pointsOffset
> 0)
115 // Offset pointer if the first column is not the first in points.
116 begin
+= pointsOffset
;
120 // Take into account if first column is before the first in points.
121 firstColumn_
= -pointsOffset
;
122 columnCount
-= -pointsOffset
;
124 // Decrease column count if there are not enough columns in points.
125 AnalysisDataValuesRef::const_iterator end
= begin
+ columnCount
;
126 if (pointsOffset
+ columnCount
> points
.columnCount())
128 end
= points
.values().end();
130 values_
= AnalysisDataValuesRef(begin
, end
);
134 bool AnalysisDataPointSetRef::allPresent() const
136 AnalysisDataValuesRef::const_iterator i
;
137 for (i
= values_
.begin(); i
!= values_
.end(); ++i
)
148 /********************************************************************
149 * AnalysisDataFrameRef
152 AnalysisDataFrameRef::AnalysisDataFrameRef()
157 AnalysisDataFrameRef::AnalysisDataFrameRef(
158 const AnalysisDataFrameHeader
&header
,
159 const AnalysisDataValuesRef
&values
,
160 const AnalysisDataPointSetInfosRef
&pointSets
)
161 : header_(header
), values_(values
), pointSets_(pointSets
)
163 GMX_ASSERT(!pointSets_
.empty(), "There must always be a point set");
167 AnalysisDataFrameRef::AnalysisDataFrameRef(
168 const AnalysisDataFrameHeader
&header
,
169 const std::vector
<AnalysisDataValue
> &values
,
170 const std::vector
<AnalysisDataPointSetInfo
> &pointSets
)
171 : header_(header
), values_(values
),
172 pointSets_(pointSets
)
174 GMX_ASSERT(!pointSets_
.empty(), "There must always be a point set");
178 AnalysisDataFrameRef::AnalysisDataFrameRef(
179 const AnalysisDataFrameRef
&frame
, int firstColumn
, int columnCount
)
180 : header_(frame
.header()),
181 values_(constArrayRefFromArray(&frame
.values_
[firstColumn
], columnCount
)),
182 pointSets_(frame
.pointSets_
)
184 // FIXME: This doesn't produce a valid internal state, although it does
185 // work in some cases. The point sets cannot be correctly managed here, but
186 // need to be handles by the data proxy class.
187 GMX_ASSERT(firstColumn
>= 0, "Invalid first column");
188 GMX_ASSERT(columnCount
>= 0, "Invalid column count");
189 GMX_ASSERT(pointSets_
.size() == 1U,
190 "Subsets of frames only supported with simple data");
191 GMX_ASSERT(firstColumn
+ columnCount
<= ssize(values_
),
192 "Invalid last column");
196 bool AnalysisDataFrameRef::allPresent() const
198 GMX_ASSERT(isValid(), "Invalid data frame accessed");
199 AnalysisDataValuesRef::const_iterator i
;
200 for (i
= values_
.begin(); i
!= values_
.end(); ++i
)