Source code for pyrootplots.Histogram2D

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from matplotlib import pyplot as plt

[docs]class Histogram2D: def __init__(self): """2D histogram.""" def __str__(self): """Concise string representation of an instance.""" return "" def __repr__(self): """Complete string representation of an instance.""" return ""
[docs] def fromTH2F(self): """Constructs a 2D histogram from a TH2F ROOT object.""" return self
[docs] def fromTH2D(self): """Constructs a 2D histogram from a TH2D ROOT object.""" return self
[docs] def plot(self): """ """ return self