Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README/ReleaseNotes/v642/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ The `TMVA_SOFIE_GNN` tutorials have been migrated to this workflow and produce i
* The header `Riostream.h` is deprecated and will be removed after ROOT 6.44, use `<iostream>` or `<fstream>` or `<iomanip>` instead.
* The header `Rstrstream.h` is deprecated and will be removed after ROOT 6.44, use instead `<sstream>`.
* The headers `ZipLZMA.h`, `ZipLZ4.h` and `ZipZSTD.h` are deprecated and will be removed in ROOT 6.46, use instead the public methods in the `RZip.h` interface.
* The headers `Hepevt.h` and `cfortran.h` are deprecated and will no longer be part of ROOT public installed headers in ROOT 6.44, use instead the `TGenerator.h` public interface or the `cfortran.h` header of the `cfitsio` library, respectively.

## Build System

Expand Down
4 changes: 4 additions & 0 deletions montecarlo/eg/inc/Hepevt.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@

#include "Rtypes.h"

#if !defined(ROOT_TGenerator_cxx) && !defined(G__DICTIONARY)
#warning "This header is an implementation detail, is deprecated and will be removed in ROOT 6.44. Use instead the `TGenerator.h` public interface"
#endif

#include "cfortran.h"

extern "C" {
Expand Down
4 changes: 4 additions & 0 deletions montecarlo/eg/inc/cfortran.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
#ifndef __CFORTRAN_LOADED
#define __CFORTRAN_LOADED

#if !defined(ROOT_TGenerator_cxx) && !defined(G__DICTIONARY)
#warning "This header is an implementation detail, is deprecated and will be removed in ROOT 6.44. Use instead the `cfortran.h` header from `cfitsio` library"
#endif

/*
THIS FILE IS PROPERTY OF BURKHARD BUROW. IF YOU ARE USING THIS FILE YOU
SHOULD ALSO HAVE ACCESS TO CFORTRAN.DOC WHICH PROVIDES TERMS FOR USING,
Expand Down
1 change: 1 addition & 0 deletions montecarlo/eg/src/TGenerator.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ This is especially useful for example with TVirtualMC or similar.
#include "TParticlePDG.h"
#include "TParticle.h"
#include "TObjArray.h"
#define ROOT_TGenerator_cxx
#include "Hepevt.h"
#include "TVirtualPad.h"
#include "TView.h"
Expand Down
Loading