fastjet 2.4.5
Public Member Functions | Private Attributes
fastjet::VoronoiAreaSpec Class Reference

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>

List of all members.

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

Detailed Description

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.


Constructor & Destructor Documentation

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.


Member Function Documentation

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;}

Member Data Documentation

Definition at line 63 of file AreaDefinition.hh.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines