inlib  1.2.0
Public Member Functions | Public Attributes
inlib::histo::profile_data< TC, TN, TW, TV > Class Template Reference
Inheritance diagram for inlib::histo::profile_data< TC, TN, TW, TV >:
Inheritance graph
[legend]
Collaboration diagram for inlib::histo::profile_data< TC, TN, TW, TV >:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 profile_data ()
 profile_data (const histo_data< TC, TN, TW > &a_from)
 profile_data (const profile_data &a_from)
profile_dataoperator= (const profile_data &a_from)
virtual ~profile_data ()
profile_dataoperator= (const histo_data< TC, TN, TW > &a_from)

Public Attributes

bool m_is_profile
std::vector< TV > m_bin_Svw
std::vector< TV > m_bin_Sv2w
bool m_cut_v
TV m_min_v
TV m_max_v

Detailed Description

template<class TC, class TN, class TW, class TV>
class inlib::histo::profile_data< TC, TN, TW, TV >

Definition at line 13 of file profile_data.


Constructor & Destructor Documentation

template<class TC, class TN, class TW, class TV>
inlib::histo::profile_data< TC, TN, TW, TV >::profile_data ( ) [inline]

Definition at line 15 of file profile_data.

  : histo_data<TC,TN,TW>()
  ,m_is_profile(true)
  ,m_cut_v(false)
  ,m_min_v(0)
  ,m_max_v(0)
  {}
template<class TC, class TN, class TW, class TV>
inlib::histo::profile_data< TC, TN, TW, TV >::profile_data ( const histo_data< TC, TN, TW > &  a_from) [inline]

Definition at line 23 of file profile_data.

  : histo_data<TC,TN,TW>(a_from)
  ,m_is_profile(false)
  ,m_cut_v(false)
  ,m_min_v(0)
  ,m_max_v(0)
  {}
template<class TC, class TN, class TW, class TV>
inlib::histo::profile_data< TC, TN, TW, TV >::profile_data ( const profile_data< TC, TN, TW, TV > &  a_from) [inline]

Definition at line 32 of file profile_data.

  : histo_data<TC,TN,TW>(a_from)
  ,m_is_profile(a_from.m_is_profile)
  ,m_bin_Svw(a_from.m_bin_Svw)
  ,m_bin_Sv2w(a_from.m_bin_Sv2w)
  ,m_cut_v(a_from.m_cut_v)
  ,m_min_v(a_from.m_min_v)
  ,m_max_v(a_from.m_max_v)
  {}
template<class TC, class TN, class TW, class TV>
virtual inlib::histo::profile_data< TC, TN, TW, TV >::~profile_data ( ) [inline, virtual]

Definition at line 53 of file profile_data.

{}

Member Function Documentation

template<class TC, class TN, class TW, class TV>
profile_data& inlib::histo::profile_data< TC, TN, TW, TV >::operator= ( const profile_data< TC, TN, TW, TV > &  a_from) [inline]

Definition at line 42 of file profile_data.

                                                      {
    histo_data<TC,TN,TW>::operator=(a_from);
    m_is_profile = a_from.m_is_profile;
    m_bin_Svw = a_from.m_bin_Svw;
    m_bin_Sv2w = a_from.m_bin_Sv2w;
    m_cut_v = a_from.m_cut_v;
    m_min_v = a_from.m_min_v;
    m_max_v = a_from.m_max_v;
    return *this;
  }
template<class TC, class TN, class TW, class TV>
profile_data& inlib::histo::profile_data< TC, TN, TW, TV >::operator= ( const histo_data< TC, TN, TW > &  a_from) [inline]

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

Definition at line 56 of file profile_data.

                                                              {
    //for Rio_THisogram.
    histo_data<TC,TN,TW>::operator=(a_from);
    m_is_profile = false;
    m_bin_Svw.clear();
    m_bin_Sv2w.clear();
    m_cut_v = false;
    m_min_v = 0;
    m_max_v = 0;
    return *this;
  }

Member Data Documentation

template<class TC, class TN, class TW, class TV>
std::vector<TV> inlib::histo::profile_data< TC, TN, TW, TV >::m_bin_Sv2w

Definition at line 71 of file profile_data.

template<class TC, class TN, class TW, class TV>
std::vector<TV> inlib::histo::profile_data< TC, TN, TW, TV >::m_bin_Svw

Definition at line 70 of file profile_data.

template<class TC, class TN, class TW, class TV>
bool inlib::histo::profile_data< TC, TN, TW, TV >::m_cut_v

Definition at line 72 of file profile_data.

template<class TC, class TN, class TW, class TV>
bool inlib::histo::profile_data< TC, TN, TW, TV >::m_is_profile

Definition at line 69 of file profile_data.

template<class TC, class TN, class TW, class TV>
TV inlib::histo::profile_data< TC, TN, TW, TV >::m_max_v

Definition at line 74 of file profile_data.

template<class TC, class TN, class TW, class TV>
TV inlib::histo::profile_data< TC, TN, TW, TV >::m_min_v

Definition at line 73 of file profile_data.


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