Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RWeight.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_RWeight
6#define ROOT_RWeight
7
8namespace ROOT {
9namespace Experimental {
10
11/**
12A weight for filling histograms.
13
14\warning This is part of the %ROOT 7 prototype! It will change without notice. It might trigger earthquakes.
15Feedback is welcome!
16*/
17struct RWeight final {
18 double fValue;
19
20 explicit RWeight(double value) : fValue(value) {}
21};
22
23} // namespace Experimental
24} // namespace ROOT
25
26#endif
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
A weight for filling histograms.
Definition RWeight.hxx:17