You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `TH1K` class is deprecated and will be removed in 6.40. It did not
implement the `TH1` interface consistently, and limited the usability of
the k-neighbors method it implemented by closely coupling the algorithm
with the histogram class. Instead, one should use the new
`TMath::KNNDensity` function that implements the same mathematical
logic.
Copy file name to clipboardExpand all lines: README/ReleaseNotes/v638/index.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@
10
10
* The `rpath` build option is deprecated. It is now without effect.
11
11
Relative RPATHs to the main ROOT libraries are unconditionally appended to all ROOT executables and libraries if the operating system supports it.
12
12
If you want a ROOT build without RPATHs, use the canonical CMake variable `CMAKE_SKIP_INSTALL_RPATH=TRUE`.
13
+
* The `TH1K` class is deprecated and will be removed in 6.40. It did not implement the `TH1` interface consistently, and limited the usability of the k-neighbors method it implemented by closely coupling the algorithm with the histogram class. Please use the new `TMath::KNNDensity` function that implements the same mathematical logic.
13
14
14
15
## Core Libraries
15
16
* Behavior change: when selecting a template instantiation for a dictionary, all the template arguments have to be fully defined - the forward declarations are not enough any more. The error prompted by the dictionary generator will be `Warning: Unused class rule: MyTemplate<MyFwdDeclaredClass>`.
Copy file name to clipboardExpand all lines: tutorials/hist/index.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,6 @@ The examples below showcase the same functionalities through 3 different impleme
80
80
| hist009_TH1_normalize.C ||| Normalizing a Histogram. |
81
81
| hist010_TH1_two_scales.C | hist010_TH1_two_scales.py | hist010_TH1_two_scales_uhi.py|Draw two histograms on one canvas using different y-axis scales. |
82
82
| hist011_TH1_legend_autoplaced.C ||| Automatic placing of the legend. |
83
-
| hist012_TH1_hksimple.C ||| Dynamic filling of TH1K histograms. |
84
83
| hist013_TH1_rebin.C ||| Create a variable bin-width histogram and change bin sizes. |
85
84
| hist014_TH1_cumulative.C ||| Illustrate use of the TH1::GetCumulative method. |
86
85
| hist015_TH1_read_and_draw.C | hist015_TH1_read_and_draw.py | hist015_TH1_read_and_draw_uhi.py|Read a 1D histogram from a ROOT File and draw it. |
0 commit comments