Add support for cumulative histograms
[alexxy/gromacs.git] / src / gromacs / analysisdata / modules / histogram.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2010,2011,2012,2013,2014, 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.
8  *
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.
13  *
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.
18  *
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.
23  *
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.
31  *
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.
34  */
35 /*! \file
36  * \brief
37  * Declares analysis data modules for calculating histograms.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \inpublicapi
41  * \ingroup module_analysisdata
42  */
43 #ifndef GMX_ANALYSISDATA_MODULES_HISTOGRAM_H
44 #define GMX_ANALYSISDATA_MODULES_HISTOGRAM_H
45
46 #include <boost/shared_ptr.hpp>
47
48 #include "gromacs/analysisdata/abstractdata.h"
49 #include "gromacs/analysisdata/arraydata.h"
50 #include "gromacs/analysisdata/datamodule.h"
51
52 namespace gmx
53 {
54
55 class AnalysisHistogramSettings;
56
57 /*! \brief
58  * Provides "named parameter" idiom for constructing histograms.
59  *
60  * \see histogramFromBins()
61  * \see histogramFromRange()
62  *
63  * Methods in this class do not throw.
64  *
65  * \inpublicapi
66  * \ingroup module_analysisdata
67  */
68 class AnalysisHistogramSettingsInitializer
69 {
70     public:
71         /*! \brief
72          * Creates an empty initializer.
73          *
74          * Should not be called directly, but histogramFromRange() or
75          * histogramFromBins() should be used instead.
76          */
77         AnalysisHistogramSettingsInitializer();
78
79         /*! \brief
80          * Sets the first bin location.
81          *
82          * Typically should not be called directly, but through
83          * histogramFromBins().
84          */
85         AnalysisHistogramSettingsInitializer &start(real min)
86         { min_ = min; return *this; }
87         /*! \brief
88          * Sets the number of bins in the histogram.
89          *
90          * If only the first bin location is specified, this value is required
91          * (and automatically provided if histogramFromBins() is used).
92          * If both the first and last bins are specified, either this value or
93          * binWidth() is required.
94          */
95         AnalysisHistogramSettingsInitializer &binCount(int binCount)
96         { binCount_ = binCount; return *this; }
97         /*! \brief
98          * Sets the first and last bin locations.
99          *
100          * Typically should not be called directly, but through
101          * histogramFromRange().
102          */
103         AnalysisHistogramSettingsInitializer &range(real min, real max)
104         { min_ = min; max_ = max; return *this; }
105         /*! \brief
106          * Sets the bin width of the histogram.
107          *
108          * If only the first bin location is specified, this value is required
109          * (and automatically provided if histogramFromBins() is used).
110          * If both the first and last bins are specified, either this value or
111          * binCount() is required.
112          * If a bin width is provided with both first and last bin locations,
113          * and the given bin width does not divide the range exactly, the last
114          * bin location is adjusted to match.
115          */
116         AnalysisHistogramSettingsInitializer &binWidth(real binWidth)
117         { binWidth_ = binWidth; return *this; }
118         /*! \brief
119          * Indicate that first and last bin locations to specify bin centers.
120          *
121          * If set, the first and last bin locations are interpreted as bin
122          * centers.
123          * If not set (the default), the first and last bin locations are
124          * interpreted as the edges of the whole histogram.
125          *
126          * Cannot be specified together with roundRange().
127          */
128         AnalysisHistogramSettingsInitializer &integerBins(bool enabled = true)
129         { bIntegerBins_ = enabled; return *this; }
130         /*! \brief
131          * Round first and last bin locations.
132          *
133          * If set, the resulting histogram will cover the range specified, but
134          * the actual bin locations will be rounded such that the edges fall
135          * on multiples of the bin width.
136          * Only implemented when both first and last bin location and bin width
137          * are defined.
138          * Cannot be specified together with integerBins() or with binCount().
139          */
140         AnalysisHistogramSettingsInitializer &roundRange(bool enabled = true)
141         { bRoundRange_ = enabled; return *this; }
142         /*! \brief
143          * Sets the histogram to match all values.
144          *
145          * If set, the histogram behaves as if the bins at the ends extended to
146          * +-infinity.
147          */
148         AnalysisHistogramSettingsInitializer &includeAll(bool enabled = true)
149         { bIncludeAll_ = enabled; return *this; }
150
151     private:
152         real                    min_;
153         real                    max_;
154         real                    binWidth_;
155         int                     binCount_;
156         bool                    bIntegerBins_;
157         bool                    bRoundRange_;
158         bool                    bIncludeAll_;
159
160         friend class AnalysisHistogramSettings;
161 };
162
163 /*! \brief
164  * Initializes a histogram using a range and a bin width.
165  *
166  * Does not throw.
167  *
168  * \inpublicapi
169  */
170 inline AnalysisHistogramSettingsInitializer
171 histogramFromRange(real min, real max)
172 {
173     return AnalysisHistogramSettingsInitializer().range(min, max);
174 }
175
176 /*! \brief
177  * Initializes a histogram using bin width and the number of bins.
178  *
179  * Does not throw.
180  *
181  * \inpublicapi
182  */
183 inline AnalysisHistogramSettingsInitializer
184 histogramFromBins(real start, int nbins, real binwidth)
185 {
186     return AnalysisHistogramSettingsInitializer()
187                .start(start).binCount(nbins).binWidth(binwidth);
188 }
189
190
191 /*! \brief
192  * Contains parameters that specify histogram bin locations.
193  *
194  * Methods in this class do not throw.
195  *
196  * \inpublicapi
197  * \ingroup module_analysisdata
198  */
199 class AnalysisHistogramSettings
200 {
201     public:
202         //! Initializes undefined parameters.
203         AnalysisHistogramSettings();
204         /*! \brief
205          * Initializes parameters based on a named parameter object.
206          *
207          * This constructor is not explicit to allow initialization of
208          * histograms directly from AnalysisHistogramSettingsInitializer:
209          * \code
210            gmx::AnalysisDataSimpleHistogramModule *hist =
211                    new gmx::AnalysisDataSimpleHistogramModule(
212                            histogramFromRange(0.0, 5.0).binWidth(0.5));
213          * \endcode
214          */
215         AnalysisHistogramSettings(const AnalysisHistogramSettingsInitializer &settings);
216
217         //! Returns the left edge of the first bin.
218         real firstEdge() const { return firstEdge_; }
219         //! Returns the right edge of the first bin.
220         real lastEdge() const { return lastEdge_; }
221         //! Returns the number of bins in the histogram.
222         int binCount() const { return binCount_; }
223         //! Returns the width of a bin in the histogram.
224         real binWidth() const { return binWidth_; }
225         //! Whether values beyond the edges are mapped to the edge bins.
226         bool includeAll() const { return bAll_; }
227         //! Returns a zero-based bin index for a value, or -1 if not in range.
228         int findBin(real y) const;
229
230     private:
231         real                    firstEdge_;
232         real                    lastEdge_;
233         real                    binWidth_;
234         real                    inverseBinWidth_;
235         int                     binCount_;
236         bool                    bAll_;
237 };
238
239
240 class AbstractAverageHistogram;
241
242 //! Smart pointer to manage an AbstractAverageHistogram object.
243 typedef boost::shared_ptr<AbstractAverageHistogram>
244     AverageHistogramPointer;
245
246 /*! \brief
247  * Base class for representing histograms averaged over frames.
248  *
249  * The averaging module for a per-frame histogram is always created by the
250  * histogram module class (e.g., AnalysisDataSimpleHistogramModule), and can be
251  * accessed using, e.g., AnalysisDataSimpleHistogramModule::averager().
252  * The user can alter some properties of the average histogram directly, but
253  * the main use of the object is to postprocess the histogram once the
254  * calculation is finished.
255  *
256  * This class can represent multiple histograms in one object: each column in
257  * the data is an independent histogram.
258  * The X values correspond to center of the bins, except for a cumulative
259  * histogram made with makeCumulative().
260  *
261  * \inpublicapi
262  * \ingroup module_analysisdata
263  */
264 class AbstractAverageHistogram : public AbstractAnalysisArrayData
265 {
266     public:
267         virtual ~AbstractAverageHistogram();
268
269         //! Returns bin properties for the histogram.
270         const AnalysisHistogramSettings &settings() const { return settings_; }
271
272         /*! \brief
273          * Creates a copy of the histogram with double the bin width.
274          *
275          * \throws std::bad_alloc if out of memory.
276          *
277          * The caller is responsible of deleting the returned object.
278          */
279         AverageHistogramPointer resampleDoubleBinWidth(bool bIntegerBins) const;
280         /*! \brief
281          * Creates a deep copy of the histogram.
282          *
283          * \throws std::bad_alloc if out of memory.
284          *
285          * The returned histogram is not necessarily of the same dynamic type
286          * as the original object, but contains the same data from the point of
287          * view of the AbstractAverageHistogram interface.
288          *
289          * The caller is responsible of deleting the returned object.
290          */
291         AverageHistogramPointer clone() const;
292         //! Normalizes the histogram such that the integral over it is one.
293         void normalizeProbability();
294         /*! \brief
295          * Makes the histograms cumulative by summing up each bin to all bins
296          * after it.
297          *
298          * The X values in the data are adjusted such that they match the right
299          * edges of bins instead of bin centers.
300          */
301         void makeCumulative();
302         //! Scales a single histogram by a uniform scaling factor.
303         void scaleSingle(int index, real factor);
304         //! Scales all histograms by a uniform scaling factor.
305         void scaleAll(real factor);
306         //! Scales the value of each bin by a different scaling factor.
307         void scaleAllByVector(real factor[]);
308         /*! \brief
309          * Notifies attached modules of the histogram data.
310          *
311          * After this function has been called, it is no longer possible to
312          * alter the histogram.
313          */
314         void done() { AbstractAnalysisArrayData::valuesReady(); }
315
316     protected:
317         /*! \brief
318          * Creates a histogram module with undefined bins.
319          *
320          * Bin parameters must be defined with init() before data input is
321          * started.
322          */
323         AbstractAverageHistogram();
324         //! Creates a histogram module with defined bin parameters.
325         explicit AbstractAverageHistogram(const AnalysisHistogramSettings &settings);
326
327         /*! \brief
328          * (Re)initializes the histogram from settings.
329          */
330         void init(const AnalysisHistogramSettings &settings);
331
332     private:
333         AnalysisHistogramSettings  settings_;
334
335         // Copy and assign disallowed by base.
336 };
337
338
339 /*! \brief
340  * Data module for per-frame histograms.
341  *
342  * Output data contains the same number of frames and data sets as the input
343  * data.  Each frame contains the histogram(s) for the points in that frame.
344  * Each input data set is processed independently into the corresponding output
345  * data set.  Missing values are ignored.
346  * All input columns for a data set are averaged into the same histogram.
347  * The number of columns for all data sets equals the number of bins in the
348  * histogram.
349  *
350  * The histograms are accumulated as 64-bit integers within a frame and summed
351  * in double precision across frames, even if the output data is in single
352  * precision.
353  *
354  * \inpublicapi
355  * \ingroup module_analysisdata
356  */
357 class AnalysisDataSimpleHistogramModule : public AbstractAnalysisData,
358                                           public AnalysisDataModuleParallel
359 {
360     public:
361         /*! \brief
362          * Creates a histogram module with undefined bins.
363          *
364          * Bin parameters must be defined with init() before data input is
365          * started.
366          */
367         AnalysisDataSimpleHistogramModule();
368         //! Creates a histogram module with defined bin parameters.
369         explicit AnalysisDataSimpleHistogramModule(const AnalysisHistogramSettings &settings);
370         virtual ~AnalysisDataSimpleHistogramModule();
371
372         /*! \brief
373          * (Re)initializes the histogram from settings.
374          */
375         void init(const AnalysisHistogramSettings &settings);
376
377         /*! \brief
378          * Returns the average histogram over all frames.
379          *
380          * Can be called already before the histogram is calculated to
381          * customize the way the average histogram is calculated.
382          *
383          * \see AbstractAverageHistogram
384          */
385         AbstractAverageHistogram &averager();
386
387         //! Returns bin properties for the histogram.
388         const AnalysisHistogramSettings &settings() const;
389
390         virtual int frameCount() const;
391
392         virtual int flags() const;
393
394         virtual bool parallelDataStarted(
395             AbstractAnalysisData              *data,
396             const AnalysisDataParallelOptions &options);
397         virtual void frameStarted(const AnalysisDataFrameHeader &header);
398         virtual void pointsAdded(const AnalysisDataPointSetRef &points);
399         virtual void frameFinished(const AnalysisDataFrameHeader &header);
400         virtual void dataFinished();
401
402     private:
403         virtual AnalysisDataFrameRef tryGetDataFrameInternal(int index) const;
404         virtual bool requestStorageInternal(int nframes);
405
406         class Impl;
407
408         PrivateImplPointer<Impl> impl_;
409
410         // Copy and assign disallowed by base.
411 };
412
413
414 /*! \brief
415  * Data module for per-frame weighted histograms.
416  *
417  * Output data contains the same number of frames and data sets as the input
418  * data.  Each frame contains the histogram(s) for the points in that frame,
419  * interpreted such that the first column passed to pointsAdded() determines
420  * the bin and the rest give weights to be added to that bin (input data should
421  * have at least two colums, and at least two columns should be added at the
422  * same time).
423  * Each input data set is processed independently into the corresponding output
424  * data set.
425  * All input columns for a data set are averaged into the same histogram.
426  * The number of columns for all data sets equals the number of bins in the
427  * histogram.
428  *
429  * The histograms are accumulated in double precision, even if the output data
430  * is in single precision.
431  *
432  * \inpublicapi
433  * \ingroup module_analysisdata
434  */
435 class AnalysisDataWeightedHistogramModule : public AbstractAnalysisData,
436                                             public AnalysisDataModuleParallel
437 {
438     public:
439         //! \copydoc AnalysisDataSimpleHistogramModule::AnalysisDataSimpleHistogramModule()
440         AnalysisDataWeightedHistogramModule();
441         //! \copydoc AnalysisDataSimpleHistogramModule::AnalysisDataSimpleHistogramModule(const AnalysisHistogramSettings &)
442         explicit AnalysisDataWeightedHistogramModule(const AnalysisHistogramSettings &settings);
443         virtual ~AnalysisDataWeightedHistogramModule();
444
445         //! \copydoc AnalysisDataSimpleHistogramModule::init()
446         void init(const AnalysisHistogramSettings &settings);
447
448         //! \copydoc AnalysisDataSimpleHistogramModule::averager()
449         AbstractAverageHistogram &averager();
450
451         //! \copydoc AnalysisDataSimpleHistogramModule::settings()
452         const AnalysisHistogramSettings &settings() const;
453
454         virtual int frameCount() const;
455
456         virtual int flags() const;
457
458         virtual bool parallelDataStarted(
459             AbstractAnalysisData              *data,
460             const AnalysisDataParallelOptions &options);
461         virtual void frameStarted(const AnalysisDataFrameHeader &header);
462         virtual void pointsAdded(const AnalysisDataPointSetRef &points);
463         virtual void frameFinished(const AnalysisDataFrameHeader &header);
464         virtual void dataFinished();
465
466     private:
467         virtual AnalysisDataFrameRef tryGetDataFrameInternal(int index) const;
468         virtual bool requestStorageInternal(int nframes);
469
470         class Impl;
471
472         PrivateImplPointer<Impl> impl_;
473
474         // Copy and assign disallowed by base.
475 };
476
477
478 /*! \brief
479  * Data module for bin averages.
480  *
481  * Output data contains one row for each bin; see AbstractAverageHistogram.
482  * Output data contains one column for each input data set.
483  * The value in a column is the average over all frames of that data set for
484  * that bin.
485  * The input data is interpreted such that the first column passed to
486  * pointsAdded() determines the bin and the rest give values to be added to
487  * that bin (input data should have at least two colums, and at least two
488  * columns should be added at the same time).
489  * All input columns for a data set are averaged into the same histogram.
490  *
491  * \inpublicapi
492  * \ingroup module_analysisdata
493  */
494 class AnalysisDataBinAverageModule : public AbstractAnalysisArrayData,
495                                      public AnalysisDataModuleSerial
496 {
497     public:
498         //! \copydoc AnalysisDataSimpleHistogramModule::AnalysisDataSimpleHistogramModule()
499         AnalysisDataBinAverageModule();
500         //! \copydoc AnalysisDataSimpleHistogramModule::AnalysisDataSimpleHistogramModule(const AnalysisHistogramSettings &)
501         explicit AnalysisDataBinAverageModule(const AnalysisHistogramSettings &settings);
502         virtual ~AnalysisDataBinAverageModule();
503
504         //! \copydoc AnalysisDataSimpleHistogramModule::init()
505         void init(const AnalysisHistogramSettings &settings);
506
507         //! \copydoc AnalysisDataSimpleHistogramModule::settings()
508         const AnalysisHistogramSettings &settings() const;
509
510         virtual int flags() const;
511
512         virtual void dataStarted(AbstractAnalysisData *data);
513         virtual void frameStarted(const AnalysisDataFrameHeader &header);
514         virtual void pointsAdded(const AnalysisDataPointSetRef &points);
515         virtual void frameFinished(const AnalysisDataFrameHeader &header);
516         virtual void dataFinished();
517
518     private:
519         class Impl;
520
521         PrivateImplPointer<Impl>   impl_;
522
523         // Copy and assign disallowed by base.
524 };
525
526 //! Smart pointer to manage an AnalysisDataSimpleHistogramModule object.
527 typedef boost::shared_ptr<AnalysisDataSimpleHistogramModule>
528     AnalysisDataSimpleHistogramModulePointer;
529 //! Smart pointer to manage an AnalysisDataWeightedHistogramModule object.
530 typedef boost::shared_ptr<AnalysisDataWeightedHistogramModule>
531     AnalysisDataWeightedHistogramModulePointer;
532 //! Smart pointer to manage an AnalysisDataBinAverageModule object.
533 typedef boost::shared_ptr<AnalysisDataBinAverageModule>
534     AnalysisDataBinAverageModulePointer;
535
536 } // namespace gmx
537
538 #endif