#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.
fastjet::VoronoiAreaSpec::VoronoiAreaSpec | ( | ) | [inline] |
default constructor (effective_Rfact = 1);
Definition at line 50 of file AreaDefinition.hh.
00050 : _effective_Rfact(1.0) {};
fastjet::VoronoiAreaSpec::VoronoiAreaSpec | ( | double | effective_Rfact | ) | [inline] |
constructor that allows you to set effective_Rfact.
Definition at line 53 of file AreaDefinition.hh.
00053 : 00054 _effective_Rfact(effective_Rfact) {};
double fastjet::VoronoiAreaSpec::effective_Rfact | ( | ) | const [inline] |
return the value of effective_Rfact
Definition at line 57 of file AreaDefinition.hh.
Referenced by description().
00057 {return _effective_Rfact;}
string fastjet::VoronoiAreaSpec::description | ( | ) | const |
return a textual description of the area definition.
Definition at line 39 of file AreaDefinition.cc.
References effective_Rfact().
Referenced by fastjet::AreaDefinition::description().
00039 { 00040 ostringstream ostr; 00041 ostr << "Voronoi area with effective_Rfact = " << effective_Rfact() ; 00042 return ostr.str(); 00043 }
double fastjet::VoronoiAreaSpec::_effective_Rfact [private] |
Definition at line 63 of file AreaDefinition.hh.