Merge release-4-6 into master
[alexxy/gromacs.git] / src / gromacs / options / optionflags.h
1 /*
2  *
3  *                This source code is part of
4  *
5  *                 G   R   O   M   A   C   S
6  *
7  *          GROningen MAchine for Chemical Simulations
8  *
9  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
10  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
11  * Copyright (c) 2001-2009, The GROMACS development team,
12  * check out http://www.gromacs.org for more information.
13
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  *
19  * If you want to redistribute modifications, please consider that
20  * scientific software is very special. Version control is crucial -
21  * bugs must be traceable. We will be happy to consider code for
22  * inclusion in the official distribution, but derived work must not
23  * be called official GROMACS. Details are found in the README & COPYING
24  * files - if they are missing, get the official version at www.gromacs.org.
25  *
26  * To help us fund GROMACS development, we humbly ask that you cite
27  * the papers on the package - you can find them in the top README file.
28  *
29  * For more info, check our website at http://www.gromacs.org
30  */
31 /*! \file
32  * \brief
33  * Defines flags used in option implementation.
34  *
35  * Symbols in this header are considered an implementation detail, and should
36  * not be accessed outside the module.
37  * Because of details in the implementation, it is still installed.
38  *
39  * \author Teemu Murtola <teemu.murtola@cbr.su.se>
40  * \ingroup module_options
41  */
42 #ifndef GMX_OPTIONS_OPTIONFLAGS_H
43 #define GMX_OPTIONS_OPTIONFLAGS_H
44
45 #include "../utility/flags.h"
46
47 namespace gmx
48 {
49
50 /*! \internal \brief
51  * Flags for options.
52  *
53  * These flags are not part of the public interface, even though they are in an
54  * installed header.  They are needed in a few template class implementations.
55  */
56 enum OptionFlag
57 {
58     //! %Option has been set.
59     efSet                 = 1<<0,
60     //! The current value of the option is a programmatic default value.
61     efHasDefaultValue     = 1<<1,
62     /*! \brief
63      * Next assignment to the option clears old values.
64      *
65      * This flag is set when a new option source starts, such that values
66      * from the new source will overwrite old ones.
67      */
68     efClearOnNextSet      = 1<<5,
69     //! %Option is required to be set.
70     efRequired            = 1<<2,
71     //! %Option can be specified multiple times.
72     efMulti               = 1<<3,
73     //! %Option is hidden from standard help.
74     efHidden              = 1<<4,
75     /*! \brief
76      * %Option value is a vector, but a single value is also accepted.
77      *
78      * If only a single value is provided, the storage object should fill the
79      * whole vector with that value.  The length of the vector must be fixed.
80      * The default length is 3 elements.
81      */
82     efVector              = 1<<6,
83     efExternalStore       = 1<<8,
84     efExternalValueVector = 1<<10,
85     //! %Option does not support default values.
86     efNoDefaultValue      = 1<<7,
87     /*! \brief
88      * Storage object does its custom checking for minimum value count.
89      *
90      * If this flag is set, the class derived from OptionStorageTemplate should
91      * implement processSetValues(), processAll(), and possible other functions
92      * it provides such that it always fails if not enough values are provided.
93      * This is useful to override the default check, which is done in
94      * OptionStorageTemplate::processSet().
95      */
96     efDontCheckMinimumCount     = 1<<16,
97     //efDynamic             = 1<<16,
98     //efRanges              = 1<<17,
99     //efEnum                = 1<<18,
100     //efStaticEnum          = 1<<19,
101     //efVarNum              = 1<<20,
102     //efAtomVal             = 1<<21,
103 };
104
105 //! Holds a combination of ::OptionFlag values.
106 typedef FlagsTemplate<OptionFlag> OptionFlags;
107
108 } // namespace gmx
109
110 #endif