Gromacs  5.1.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
List of all members | Public Types | Public Member Functions
gmx::DoubleOption Class Reference

#include <gromacs/options/basicoptions.h>

+ Inheritance diagram for gmx::DoubleOption:
+ Collaboration diagram for gmx::DoubleOption:

Description

Specifies an option that provides floating-point (double) values.

Public methods in this class do not throw.

Examples:
template.cpp.

Public Types

typedef DoubleOptionInfo InfoType
 OptionInfo subclass corresponding to this option type.
 
typedef double ValueType
 Type that stores a single option value.
 
typedef DoubleOption MyClass
 Alias for the derived class type.
 

Public Member Functions

 DoubleOption (const char *name)
 Initializes an option with the given name.
 
MyClassvector ()
 Sets the option to return a vector value. More...
 
MyClasstimeValue ()
 Marks this option as providing a time value whose unit can be changed. More...
 
MyClassdescription (const char *descr)
 Sets a description for the option. More...
 
MyClasshidden (bool bHidden=true)
 Hides the option from normal help output.
 
MyClassrequired (bool bRequired=true)
 Requires the option to be specified explicitly. More...
 
MyClassallowMultiple (bool bMulti=true)
 Allows the option to be specified multiple times.
 
MyClassvalueCount (int count)
 Requires exactly count values for the option.
 
MyClassmultiValue (bool bMulti=true)
 Allows any number of values for the option.
 
MyClassdefaultValue (const double &defaultValue)
 Sets a default value for the option. More...
 
MyClassdefaultValueIfSet (const double &defaultValue)
 Sets a default value for the option when it is set. More...
 
MyClassstore (double *store)
 Stores value(s) in memory pointed by store. More...
 
MyClassstoreCount (int *countptr)
 Stores number of values in the value pointed by countptr. More...
 
MyClassstoreVector (std::vector< double > *store)
 Stores option values in the provided vector. More...
 

Member Function Documentation

MyClass& gmx::OptionTemplate< double , DoubleOption >::defaultValue ( const double &  defaultValue)
inlineinherited

Sets a default value for the option.

Parameters
[in]defaultValueDefault value.

If the option is never set, the default value is copied to the assigned storage. Note that if the option is not set and there is no default value, the storage is not altered, which can also be used to provide a default value. The latter method has to be used if the option can take multiple values.

defaultValue is copied when the option is created.

MyClass& gmx::OptionTemplate< double , DoubleOption >::defaultValueIfSet ( const double &  defaultValue)
inlineinherited

Sets a default value for the option when it is set.

Parameters
[in]defaultValueDefault value.

This value is used if the option is set, but no value is provided. If the option is never set, the value set with defaultValue() is used. Can only be used for options that accept a single value.

defaultValue is copied when the option is created.

MyClass& gmx::OptionTemplate< double , DoubleOption >::description ( const char *  descr)
inlineinherited

Sets a description for the option.

Parameters
[in]descrDescription to set.

String in descr is copied when the option is created.

MyClass& gmx::OptionTemplate< double , DoubleOption >::required ( bool  bRequired = true)
inlineinherited

Requires the option to be specified explicitly.

Note that if you specify defaultValue() together with required(), the user is not required to explicitly provide the option. In this case, required() only affects possible help output.

MyClass& gmx::OptionTemplate< double , DoubleOption >::store ( double *  store)
inlineinherited

Stores value(s) in memory pointed by store.

Parameters
[in]storeStorage for option value(s).

The caller is responsible for allocating enough memory such that the any allowed number of values fits into the array pointed by store. If there is no maximum allowed number or if the maximum is inconveniently large, storeVector() should be used.

For information on when values are available in the storage, see storeVector().

The pointer provided should remain valid as long as the associated Options object exists.

MyClass& gmx::OptionTemplate< double , DoubleOption >::storeCount ( int *  countptr)
inlineinherited

Stores number of values in the value pointed by countptr.

Parameters
[in]countptrStorage for the number of values.

For information on when values are available in the storage, see storeVector().

The pointers provided should remain valid as long as the associated Options object exists.

MyClass& gmx::OptionTemplate< double , DoubleOption >::storeVector ( std::vector< double > *  store)
inlineinherited

Stores option values in the provided vector.

Parameters
[in]storeVector to store option values in.

Values are added to the vector after each successful set of values is parsed. Note that for some options, the value may be changed later, and is only guaranteed to be correct after Options::finish() has been called.

The pointer provided should remain valid as long as the associated Options object exists.

MyClass& gmx::DoubleOption::timeValue ( )
inline

Marks this option as providing a time value whose unit can be changed.

By itself, this option does nothing. It marks the option as a time value such that TimeUnitManager::scaleTimeOptions() can process it. In typical cases, GROMACS scales the time options just before Options::finish() has been called, so the option value is only available after all option values have been processed. All values in the program are in ps (including any default value); user-provided values are scaled according to the time unit set in TimeUnitManager.

MyClass& gmx::DoubleOption::vector ( )
inline

Sets the option to return a vector value.

A vector value returns a fixed number of values, the default being three (can be changed with valueCount()). However, it also accepts a single value, in which case the value is used to fill the whole vector.


The documentation for this class was generated from the following files: