Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ConversionUtils.hxx
Go to the documentation of this file.
1/// \file
2/// \warning This is part of the %ROOT 7 prototype! It will change without notice. It might trigger earthquakes.
3/// Feedback is welcome!
4
5#ifndef ROOT_Hist_ConversionUtils
6#define ROOT_Hist_ConversionUtils
7
8class TAxis;
9
10namespace ROOT {
11namespace Experimental {
12
13class RAxisVariant;
14
15namespace Hist {
16namespace Internal {
17
18/// Convert a single axis object to TAxis.
19///
20/// \param[out] dst the target TAxis object
21/// \param[in] src the input axis to convert
22void ConvertAxis(TAxis &dst, const RAxisVariant &src);
23
24} // namespace Internal
25} // namespace Hist
26} // namespace Experimental
27} // namespace ROOT
28
29#endif
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t src
A variant of all supported axis types.
Class to manage histogram axis.
Definition TAxis.h:32
void ConvertAxis(TAxis &dst, const RAxisVariant &src)
Convert a single axis object to TAxis.