|
inlib
1.2.0
|


Public Member Functions | |
| profile_data () | |
| profile_data (const histo_data< TC, TN, TW > &a_from) | |
| profile_data (const profile_data &a_from) | |
| profile_data & | operator= (const profile_data &a_from) |
| virtual | ~profile_data () |
| profile_data & | operator= (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 |
Definition at line 13 of file profile_data.
| 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) {}
| 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) {}
| 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) {}
| virtual inlib::histo::profile_data< TC, TN, TW, TV >::~profile_data | ( | ) | [inline, virtual] |
Definition at line 53 of file profile_data.
{}
| 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;
}
| 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;
}
| std::vector<TV> inlib::histo::profile_data< TC, TN, TW, TV >::m_bin_Sv2w |
Definition at line 71 of file profile_data.
| std::vector<TV> inlib::histo::profile_data< TC, TN, TW, TV >::m_bin_Svw |
Definition at line 70 of file profile_data.
| bool inlib::histo::profile_data< TC, TN, TW, TV >::m_cut_v |
Definition at line 72 of file profile_data.
| bool inlib::histo::profile_data< TC, TN, TW, TV >::m_is_profile |
Definition at line 69 of file profile_data.
| TV inlib::histo::profile_data< TC, TN, TW, TV >::m_max_v |
Definition at line 74 of file profile_data.
| TV inlib::histo::profile_data< TC, TN, TW, TV >::m_min_v |
Definition at line 73 of file profile_data.
1.7.5.1