#include <HistMan.h>
Public Member Functions | |
| HistInfo () | |
| ~HistInfo () | |
| const std::string & | GetName () const |
| const std::string & | GetTitle () const |
| const AxisInfo & | GetXaxis () const |
| const AxisInfo & | GetYaxis () const |
| const std::string & | GetKey () const |
| bool | operator< (const HistInfo &rhs) const |
| bool | operator== (const HistInfo &rhs) const |
| void | Print (std::ostream &o=std::cout) const |
Protected Attributes | |
| std::string | fKey |
| std::string | fName |
| std::string | fTitle |
| AxisInfo | fXaxis |
| AxisInfo | fYaxis |
Friends | |
| class | HistMan |
|
|
Definition at line 835 of file PhysicsNtuple/Hist/HistMan.cxx.
|
|
|
Definition at line 845 of file PhysicsNtuple/Hist/HistMan.cxx. 00846 {
00847 }
|
|
|
Definition at line 874 of file PhysicsNtuple/Hist/HistMan.cxx. Referenced by Anp::HistMan::CreateTH1(), Anp::HistMan::CreateTH2(), Anp::HistMan::GetTH2(), Print(), and Anp::HistMan::ReadHistogramBlock(). 00875 {
00876 return fKey;
00877 }
|
|
|
Definition at line 850 of file PhysicsNtuple/Hist/HistMan.cxx. Referenced by Anp::HistMan::CreateTH1(), Anp::HistMan::CreateTH2(), and Print(). 00851 {
00852 return fName;
00853 }
|
|
|
Definition at line 856 of file PhysicsNtuple/Hist/HistMan.cxx. Referenced by Anp::HistMan::CreateTH1(), Anp::HistMan::CreateTH2(), and Print(). 00857 {
00858 return fTitle;
00859 }
|
|
|
Definition at line 862 of file PhysicsNtuple/Hist/HistMan.cxx. Referenced by Anp::HistMan::CreateHist1d(), Anp::HistMan::CreateTH1(), Anp::HistMan::CreateTH2(), and Anp::HistMan::GetTH2(). 00863 {
00864 return fXaxis;
00865 }
|
|
|
Definition at line 868 of file PhysicsNtuple/Hist/HistMan.cxx. Referenced by Anp::HistMan::CreateTH1(), Anp::HistMan::CreateTH2(), and Anp::HistMan::GetTH2(). 00869 {
00870 return fYaxis;
00871 }
|
|
|
Definition at line 880 of file PhysicsNtuple/Hist/HistMan.cxx. References fKey. 00881 {
00882 if(fKey < rhs.fKey)
00883 {
00884 return true;
00885 }
00886
00887 return false;
00888 }
|
|
|
Definition at line 891 of file PhysicsNtuple/Hist/HistMan.cxx. References fKey. 00892 {
00893 if(fKey == rhs.fKey)
00894 {
00895 return true;
00896 }
00897
00898 return false;
00899 }
|
|
|
Definition at line 902 of file PhysicsNtuple/Hist/HistMan.cxx. References fXaxis, GetKey(), GetName(), and GetTitle(). 00903 {
00904 o << "Printing HistInfo: key = " << GetKey() << std::endl
00905 << " name = " << GetName()
00906 << ", title = " << GetTitle()
00907 << " " << fXaxis
00908 << " " << fYaxis;
00909 }
|
|
|
Definition at line 74 of file PhysicsNtuple/Hist/HistMan.h. |
|
|
Definition at line 78 of file PhysicsNtuple/Hist/HistMan.h. Referenced by Anp::HistMan::GetTH2(), operator<(), operator==(), Anp::HistMan::ReadHistogram(), and Anp::HistMan::ReadHistogramBlock(). |
|
|
Definition at line 80 of file PhysicsNtuple/Hist/HistMan.h. Referenced by Anp::HistMan::GetTH2(), and Anp::HistMan::ReadHistogram(). |
|
|
Definition at line 81 of file PhysicsNtuple/Hist/HistMan.h. Referenced by Anp::HistMan::GetTH2(), and Anp::HistMan::ReadHistogram(). |
|
|
Definition at line 83 of file PhysicsNtuple/Hist/HistMan.h. Referenced by Anp::HistMan::GetTH2(), Print(), and Anp::HistMan::ReadHistogram(). |
|
|
Definition at line 84 of file PhysicsNtuple/Hist/HistMan.h. Referenced by Anp::HistMan::GetTH2(), and Anp::HistMan::ReadHistogram(). |
1.3.9.1