Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-14 10:31:23

0001 /// \file
0002 /// \warning This is part of the %ROOT 7 prototype! It will change without notice. It might trigger earthquakes.
0003 /// Feedback is welcome!
0004 
0005 #ifndef ROOT_RWeight
0006 #define ROOT_RWeight
0007 
0008 namespace ROOT {
0009 namespace Experimental {
0010 
0011 /**
0012 A weight for filling histograms.
0013 
0014 \warning This is part of the %ROOT 7 prototype! It will change without notice. It might trigger earthquakes.
0015 Feedback is welcome!
0016 */
0017 struct RWeight final {
0018    double fValue;
0019 
0020    explicit RWeight(double value) : fValue(value) {}
0021 };
0022 
0023 } // namespace Experimental
0024 } // namespace ROOT
0025 
0026 #endif