#include <AreaDefinition.hh>
Public Member Functions | |
| VoronoiAreaSpec () | |
| default constructor (effective_Rfact = 1); | |
| VoronoiAreaSpec (double effective_Rfact) | |
| constructor that allows you to set effective_Rfact. | |
| double | effective_Rfact () const |
| return the value of effective_Rfact | |
| std::string | description () const |
| return a textual description of the area definition. | |
Private Attributes | |
| double | _effective_Rfact |
Definition at line 46 of file AreaDefinition.hh.
|
|
default constructor (effective_Rfact = 1);
Definition at line 50 of file AreaDefinition.hh. 00050 : _effective_Rfact(1.0) {};
|
|
|
constructor that allows you to set effective_Rfact.
Definition at line 53 of file AreaDefinition.hh. 00053 : 00054 _effective_Rfact(effective_Rfact) {};
|
|
|
return a textual description of the area definition.
Definition at line 39 of file AreaDefinition.cc. References effective_Rfact(). 00039 {
00040 ostringstream ostr;
00041 ostr << "Voronoi area with effective_Rfact = " << effective_Rfact() ;
00042 return ostr.str();
00043 }
|
|
|
return the value of effective_Rfact
Definition at line 57 of file AreaDefinition.hh. Referenced by description(). 00057 {return _effective_Rfact;}
|
|
|
Definition at line 63 of file AreaDefinition.hh. |
1.4.2