fastjet 2.4.3
|
class for holding a "Voronoi area" specification; an area will be assigned to each particle, which is the area of the intersection of the particle's Voronoi cell with a circle of radius R*effective_Rfact. More...
#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 |
class for holding a "Voronoi area" specification; an area will be assigned to each particle, which is the area of the intersection of the particle's Voronoi cell with a circle of radius R*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.
: _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.
: _effective_Rfact(effective_Rfact) {};
string fastjet::VoronoiAreaSpec::description | ( | ) | const |
return a textual description of the area definition.
Definition at line 39 of file AreaDefinition.cc.
{ ostringstream ostr; ostr << "Voronoi area with effective_Rfact = " << effective_Rfact() ; return ostr.str(); }
double fastjet::VoronoiAreaSpec::effective_Rfact | ( | ) | const [inline] |
return the value of effective_Rfact
Definition at line 57 of file AreaDefinition.hh.
{return _effective_Rfact;}
double fastjet::VoronoiAreaSpec::_effective_Rfact [private] |
Definition at line 63 of file AreaDefinition.hh.