Logo ROOT   6.10/09
Reference Guide
Classes | Namespaces | Functions
TAxis.hxx File Reference
#include <algorithm>
#include <cmath>
#include <initializer_list>
#include <string>
#include <unordered_map>
#include <vector>
#include "RStringView.h"
#include "ROOT/TLogger.hxx"
Include dependency graph for TAxis.hxx:
This graph shows which files directly or indirectly include this file:

Classes

struct  ROOT::Experimental::Internal::AxisConfigToType< EKind >
 Converts a TAxisConfig of whatever kind to the corresponding TAxisBase-derived object. More...
 
struct  ROOT::Experimental::Internal::AxisConfigToType< TAxisConfig::kEquidistant >
 
struct  ROOT::Experimental::Internal::AxisConfigToType< TAxisConfig::kGrow >
 
struct  ROOT::Experimental::Internal::AxisConfigToType< TAxisConfig::kIrregular >
 
struct  ROOT::Experimental::Internal::AxisConfigToType< TAxisConfig::kLabels >
 
class  ROOT::Experimental::TAxisBase::const_iterator
 Random const_iterator through bins. More...
 
struct  ROOT::Experimental::TAxisConfig::Grow_t
 Tag type signalling that an axis should be able to grow; used for calling the appropriate constructor. More...
 
class  ROOT::Experimental::TAxisBase
 Histogram axis base class. More...
 
class  ROOT::Experimental::TAxisConfig
 Objects used to configure the different axis types. More...
 
class  ROOT::Experimental::TAxisEquidistant
 Axis with equidistant bin borders. More...
 
class  ROOT::Experimental::TAxisGrow
 An axis that can extend its range, keeping the number of its bins unchanged. More...
 
class  ROOT::Experimental::TAxisIrregular
 An axis with non-equidistant bins (also known as "variable binning"). More...
 
class  ROOT::Experimental::TAxisLabels
 A TAxisGrow that has a label assigned to each bin and a bin width of 1. More...
 
class  ROOT::Experimental::TAxisView
 Common view on a TAxis, no matter what its kind. More...
 

Namespaces

 ROOT
 Namespace for new ROOT classes and functions.
 
 ROOT::Experimental
 
 ROOT::Experimental::Internal
 

Functions

bool ROOT::Experimental::operator== (const TAxisEquidistant &lhs, const TAxisEquidistant &rhs) noexcept
 Equality-compare two TAxisEquidistant. More...
 
TAxisBase::const_iterator comparison operators
bool ROOT::Experimental::operator< (TAxisBase::const_iterator lhs, TAxisBase::const_iterator rhs) noexcept
 i < j More...
 
bool ROOT::Experimental::operator> (TAxisBase::const_iterator lhs, TAxisBase::const_iterator rhs) noexcept
 i > j More...
 
bool ROOT::Experimental::operator<= (TAxisBase::const_iterator lhs, TAxisBase::const_iterator rhs) noexcept
 i <= j More...
 
bool ROOT::Experimental::operator>= (TAxisBase::const_iterator lhs, TAxisBase::const_iterator rhs) noexcept
 i >= j More...
 
bool ROOT::Experimental::operator== (TAxisBase::const_iterator lhs, TAxisBase::const_iterator rhs) noexcept
 i == j More...
 
bool ROOT::Experimental::operator!= (TAxisBase::const_iterator lhs, TAxisBase::const_iterator rhs) noexcept
 i != j More...
 

Axis Compatibility

enum  ROOT::Experimental::EAxisCompatibility { ROOT::Experimental::EAxisCompatibility::kIdentical, ROOT::Experimental::EAxisCompatibility::kContains, ROOT::Experimental::EAxisCompatibility::kSampling, ROOT::Experimental::EAxisCompatibility::kIncompatible }
 
EAxisCompatibility ROOT::Experimental::CanMap (TAxisEquidistant &target, TAxisEquidistant &source) noexcept
 Whether (and how) the source axis can be merged into the target axis. More...