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

List of all members.

Public Member Functions

 p1d (const std::string &a_title, int aXnumber, double aXmin, double aXmax)
 p1d (const std::string &a_title, int aXnumber, double aXmin, double aXmax, double aVmin, double aVmax)
 p1d (const std::string &a_title, const std::vector< double > &aEdges)
 p1d (const std::string &a_title, const std::vector< double > &aEdges, double aVmin, double aVmax)
virtual ~p1d ()
 p1d (const p1d &a_from)
p1doperator= (const p1d &a_from)

Static Public Member Functions

static const std::string & s_class ()

Detailed Description

Definition at line 12 of file p1d.


Constructor & Destructor Documentation

inlib::histo::p1d::p1d ( const std::string &  a_title,
int  aXnumber,
double  aXmin,
double  aXmax 
) [inline]

Definition at line 20 of file p1d.

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

Definition at line 25 of file p1d.

  : parent(a_title,aXnumber,aXmin,aXmax,aVmin,aVmax)
  {}
inlib::histo::p1d::p1d ( const std::string &  a_title,
const std::vector< double > &  aEdges 
) [inline]

Definition at line 31 of file p1d.

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

Definition at line 36 of file p1d.

  : parent(a_title,aEdges,aVmin,aVmax) 
  {}
virtual inlib::histo::p1d::~p1d ( ) [inline, virtual]

Definition at line 42 of file p1d.

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

Definition at line 44 of file p1d.

: parent(a_from){}

Member Function Documentation

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

Definition at line 45 of file p1d.

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

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

Definition at line 15 of file p1d.

                                    {
    static const std::string s_v("inlib::histo::p1d");
    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