#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 897 of file PhysicsNtuple/Hist/HistMan.cxx.
|
|
|
Definition at line 907 of file PhysicsNtuple/Hist/HistMan.cxx. 00908 {
00909 }
|
|
|
Definition at line 936 of file PhysicsNtuple/Hist/HistMan.cxx. Referenced by Anp::HistMan::CreateTH1(), Anp::HistMan::CreateTH2(), Anp::HistMan::GetTH2(), Print(), and Anp::HistMan::ReadHistogramBlock(). 00937 {
00938 return fKey;
00939 }
|
|
|
Definition at line 912 of file PhysicsNtuple/Hist/HistMan.cxx. Referenced by Anp::HistMan::CreateTH1(), Anp::HistMan::CreateTH2(), and Print(). 00913 {
00914 return fName;
00915 }
|
|
|
Definition at line 918 of file PhysicsNtuple/Hist/HistMan.cxx. Referenced by Anp::HistMan::CreateTH1(), Anp::HistMan::CreateTH2(), Print(), and Anp::HistMan::ReadHistogramBlock(). 00919 {
00920 return fTitle;
00921 }
|
|
|
Definition at line 924 of file PhysicsNtuple/Hist/HistMan.cxx. Referenced by Anp::HistMan::CreateHist1d(), Anp::HistMan::CreateTH1(), Anp::HistMan::CreateTH2(), and Anp::HistMan::GetTH2(). 00925 {
00926 return fXaxis;
00927 }
|
|
|
Definition at line 930 of file PhysicsNtuple/Hist/HistMan.cxx. Referenced by Anp::HistMan::CreateTH1(), Anp::HistMan::CreateTH2(), and Anp::HistMan::GetTH2(). 00931 {
00932 return fYaxis;
00933 }
|
|
|
Definition at line 942 of file PhysicsNtuple/Hist/HistMan.cxx. References fKey. 00943 {
00944 if(fKey < rhs.fKey)
00945 {
00946 return true;
00947 }
00948
00949 return false;
00950 }
|
|
|
Definition at line 953 of file PhysicsNtuple/Hist/HistMan.cxx. References fKey. 00954 {
00955 if(fKey == rhs.fKey)
00956 {
00957 return true;
00958 }
00959
00960 return false;
00961 }
|
|
|
Definition at line 964 of file PhysicsNtuple/Hist/HistMan.cxx. References fXaxis, GetKey(), GetName(), and GetTitle(). 00965 {
00966 o << "Printing HistInfo: key = " << GetKey() << std::endl
00967 << " name = " << GetName()
00968 << ", title = " << GetTitle()
00969 << " " << fXaxis
00970 << " " << fYaxis;
00971 }
|
|
|
Definition at line 75 of file PhysicsNtuple/Hist/HistMan.h. |
|
|
Definition at line 79 of file PhysicsNtuple/Hist/HistMan.h. Referenced by Anp::HistMan::GetTH2(), operator<(), operator==(), Anp::HistMan::ReadHistogram(), and Anp::HistMan::ReadHistogramBlock(). |
|
|
Definition at line 81 of file PhysicsNtuple/Hist/HistMan.h. Referenced by Anp::HistMan::GetTH2(), and Anp::HistMan::ReadHistogram(). |
|
|
Definition at line 82 of file PhysicsNtuple/Hist/HistMan.h. Referenced by Anp::HistMan::GetTH2(), and Anp::HistMan::ReadHistogram(). |
|
|
Definition at line 84 of file PhysicsNtuple/Hist/HistMan.h. Referenced by Anp::HistMan::GetTH2(), Print(), and Anp::HistMan::ReadHistogram(). |
|
|
Definition at line 85 of file PhysicsNtuple/Hist/HistMan.h. Referenced by Anp::HistMan::GetTH2(), and Anp::HistMan::ReadHistogram(). |
1.3.9.1