inlib  1.2.0
Public Member Functions | Static Public Member Functions
inlib::histo::p2d Class Reference
Inheritance diagram for inlib::histo::p2d:
Inheritance graph
[legend]
Collaboration diagram for inlib::histo::p2d:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 p2d (const std::string &a_title, int aXnumber, double aXmin, double aXmax, int aYnumber, double aYmin, double aYmax)
 p2d (const std::string &a_title, int aXnumber, double aXmin, double aXmax, int aYnumber, double aYmin, double aYmax, double aVmin, double aVmax)
 p2d (const std::string &a_title, const std::vector< double > &aEdgesX, const std::vector< double > &aEdgesY)
 p2d (const std::string &a_title, const std::vector< double > &aEdgesX, const std::vector< double > &aEdgesY, double aVmin, double aVmax)
virtual ~p2d ()
 p2d (const p2d &a_from)
p2doperator= (const p2d &a_from)

Static Public Member Functions

static const std::string & s_class ()

Detailed Description

Definition at line 12 of file p2d.


Constructor & Destructor Documentation

inlib::histo::p2d::p2d ( const std::string &  a_title,
int  aXnumber,
double  aXmin,
double  aXmax,
int  aYnumber,
double  aYmin,
double  aYmax 
) [inline]

Definition at line 20 of file p2d.

  : parent(a_title,aXnumber,aXmin,aXmax,
                   aYnumber,aYmin,aYmax)
  {}
inlib::histo::p2d::p2d ( const std::string &  a_title,
int  aXnumber,
double  aXmin,
double  aXmax,
int  aYnumber,
double  aYmin,
double  aYmax,
double  aVmin,
double  aVmax 
) [inline]

Definition at line 27 of file p2d.

  : parent(a_title,aXnumber,aXmin,aXmax,aYnumber,aYmin,aYmax,aVmin,aVmax)
  {}
inlib::histo::p2d::p2d ( const std::string &  a_title,
const std::vector< double > &  aEdgesX,
const std::vector< double > &  aEdgesY 
) [inline]

Definition at line 34 of file p2d.

  : parent(a_title,aEdgesX,aEdgesY)
  {}
inlib::histo::p2d::p2d ( const std::string &  a_title,
const std::vector< double > &  aEdgesX,
const std::vector< double > &  aEdgesY,
double  aVmin,
double  aVmax 
) [inline]

Definition at line 40 of file p2d.

  : parent(a_title,aEdgesX,aEdgesY,aVmin,aVmax)
  {}
virtual inlib::histo::p2d::~p2d ( ) [inline, virtual]

Definition at line 47 of file p2d.

{}
inlib::histo::p2d::p2d ( const p2d a_from) [inline]

Definition at line 49 of file p2d.

: parent(a_from){}

Member Function Documentation

p2d& inlib::histo::p2d::operator= ( const p2d a_from) [inline]

Definition at line 50 of file p2d.

                                   {
    parent::operator=(a_from);
    return *this;
  }
static const std::string& inlib::histo::p2d::s_class ( ) [inline, static]

Reimplemented from inlib::histo::base_histo< TC, TN, TW, TH >.

Definition at line 15 of file p2d.

                                    {
    static const std::string s_v("inlib::histo::p2d");
    return s_v;
  }

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