Namespaces | |
| namespace | Internal |
Functions | |
| std::unique_ptr< TH1C > | ConvertToTH1C (const RHist< char > &hist) |
| Convert a one-dimensional histogram to TH1C. | |
| std::unique_ptr< TH1C > | ConvertToTH1C (const RHistEngine< char > &engine) |
| Convert a one-dimensional histogram to TH1C. | |
| std::unique_ptr< TH1D > | ConvertToTH1D (const RHist< double > &hist) |
| Convert a one-dimensional histogram to TH1D. | |
| std::unique_ptr< TH1D > | ConvertToTH1D (const RHist< RBinWithError > &hist) |
| Convert a one-dimensional histogram to TH1D. | |
| std::unique_ptr< TH1D > | ConvertToTH1D (const RHistEngine< double > &engine) |
| Convert a one-dimensional histogram to TH1D. | |
| std::unique_ptr< TH1D > | ConvertToTH1D (const RHistEngine< RBinWithError > &engine) |
| Convert a one-dimensional histogram to TH1D. | |
| std::unique_ptr< TH1F > | ConvertToTH1F (const RHist< float > &hist) |
| Convert a one-dimensional histogram to TH1F. | |
| std::unique_ptr< TH1F > | ConvertToTH1F (const RHistEngine< float > &engine) |
| Convert a one-dimensional histogram to TH1F. | |
| std::unique_ptr< TH1I > | ConvertToTH1I (const RHist< int > &hist) |
| Convert a one-dimensional histogram to TH1I. | |
| std::unique_ptr< TH1I > | ConvertToTH1I (const RHistEngine< int > &engine) |
| Convert a one-dimensional histogram to TH1I. | |
| std::unique_ptr< TH1L > | ConvertToTH1L (const RHist< long > &hist) |
| Convert a one-dimensional histogram to TH1L. | |
| std::unique_ptr< TH1L > | ConvertToTH1L (const RHist< long long > &hist) |
| Convert a one-dimensional histogram to TH1L. | |
| std::unique_ptr< TH1L > | ConvertToTH1L (const RHistEngine< long > &engine) |
| Convert a one-dimensional histogram to TH1L. | |
| std::unique_ptr< TH1L > | ConvertToTH1L (const RHistEngine< long long > &engine) |
| Convert a one-dimensional histogram to TH1L. | |
| std::unique_ptr< TH1S > | ConvertToTH1S (const RHist< short > &hist) |
| Convert a one-dimensional histogram to TH1S. | |
| std::unique_ptr< TH1S > | ConvertToTH1S (const RHistEngine< short > &engine) |
| Convert a one-dimensional histogram to TH1S. | |
Convert a one-dimensional histogram to TH1C.
If the RHistStats are tainted, for example after setting bin contents, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | hist | the RHist to convert |
Definition at line 132 of file ConvertToTH1.cxx.
| std::unique_ptr< TH1C > ROOT::Experimental::Hist::ConvertToTH1C | ( | const RHistEngine< char > & | engine | ) |
Convert a one-dimensional histogram to TH1C.
As RHistEngine does not have global statistics, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | engine | the RHistEngine to convert |
Definition at line 92 of file ConvertToTH1.cxx.
Convert a one-dimensional histogram to TH1D.
If the RHistStats are tainted, for example after setting bin contents, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | hist | the RHist to convert |
Definition at line 174 of file ConvertToTH1.cxx.
| std::unique_ptr< TH1D > ROOT::Experimental::Hist::ConvertToTH1D | ( | const RHist< RBinWithError > & | hist | ) |
Convert a one-dimensional histogram to TH1D.
If the RHistStats are tainted, for example after setting bin contents, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | hist | the RHist to convert |
Definition at line 181 of file ConvertToTH1.cxx.
| std::unique_ptr< TH1D > ROOT::Experimental::Hist::ConvertToTH1D | ( | const RHistEngine< double > & | engine | ) |
Convert a one-dimensional histogram to TH1D.
As RHistEngine does not have global statistics, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | engine | the RHistEngine to convert |
Definition at line 122 of file ConvertToTH1.cxx.
| std::unique_ptr< TH1D > ROOT::Experimental::Hist::ConvertToTH1D | ( | const RHistEngine< RBinWithError > & | engine | ) |
Convert a one-dimensional histogram to TH1D.
As RHistEngine does not have global statistics, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | engine | the RHistEngine to convert |
Definition at line 127 of file ConvertToTH1.cxx.
Convert a one-dimensional histogram to TH1F.
If the RHistStats are tainted, for example after setting bin contents, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | hist | the RHist to convert |
Definition at line 167 of file ConvertToTH1.cxx.
| std::unique_ptr< TH1F > ROOT::Experimental::Hist::ConvertToTH1F | ( | const RHistEngine< float > & | engine | ) |
Convert a one-dimensional histogram to TH1F.
As RHistEngine does not have global statistics, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | engine | the RHistEngine to convert |
Definition at line 117 of file ConvertToTH1.cxx.
Convert a one-dimensional histogram to TH1I.
If the RHistStats are tainted, for example after setting bin contents, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | hist | the RHist to convert |
Definition at line 146 of file ConvertToTH1.cxx.
| std::unique_ptr< TH1I > ROOT::Experimental::Hist::ConvertToTH1I | ( | const RHistEngine< int > & | engine | ) |
Convert a one-dimensional histogram to TH1I.
As RHistEngine does not have global statistics, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | engine | the RHistEngine to convert |
Definition at line 102 of file ConvertToTH1.cxx.
Convert a one-dimensional histogram to TH1L.
If the RHistStats are tainted, for example after setting bin contents, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | hist | the RHist to convert |
Definition at line 153 of file ConvertToTH1.cxx.
Convert a one-dimensional histogram to TH1L.
If the RHistStats are tainted, for example after setting bin contents, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | hist | the RHist to convert |
Definition at line 160 of file ConvertToTH1.cxx.
| std::unique_ptr< TH1L > ROOT::Experimental::Hist::ConvertToTH1L | ( | const RHistEngine< long > & | engine | ) |
Convert a one-dimensional histogram to TH1L.
As RHistEngine does not have global statistics, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | engine | the RHistEngine to convert |
Definition at line 107 of file ConvertToTH1.cxx.
| std::unique_ptr< TH1L > ROOT::Experimental::Hist::ConvertToTH1L | ( | const RHistEngine< long long > & | engine | ) |
Convert a one-dimensional histogram to TH1L.
As RHistEngine does not have global statistics, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | engine | the RHistEngine to convert |
Definition at line 112 of file ConvertToTH1.cxx.
Convert a one-dimensional histogram to TH1S.
If the RHistStats are tainted, for example after setting bin contents, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | hist | the RHist to convert |
Definition at line 139 of file ConvertToTH1.cxx.
| std::unique_ptr< TH1S > ROOT::Experimental::Hist::ConvertToTH1S | ( | const RHistEngine< short > & | engine | ) |
Convert a one-dimensional histogram to TH1S.
As RHistEngine does not have global statistics, the number of entries and the total sum of weights will be unset.
Throws an exception if the histogram has more than one dimension.
| [in] | engine | the RHistEngine to convert |
Definition at line 97 of file ConvertToTH1.cxx.