Skip to content
Closed
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
4 changes: 2 additions & 2 deletions core/foundation/inc/ROOT/RVersion.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
/* Update on release: */
#define ROOT_VERSION_MAJOR 6
#define ROOT_VERSION_MINOR 31
#define ROOT_VERSION_PATCH 01
#define ROOT_RELEASE_DATE "Oct 10 2023"
#define ROOT_VERSION_PATCH 99
#define ROOT_RELEASE_DATE "Apr 4 2024"

/* Don't change the lines below. */

Expand Down
2 changes: 1 addition & 1 deletion documentation/doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1594,7 +1594,7 @@ SITEMAP_URL =
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_QHP = YES
GENERATE_QHP = NO

# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
# the file name of the resulting .qch file. The path specified is relative to
Expand Down
10 changes: 10 additions & 0 deletions io/io/src/TFile.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
\file TFile.cxx
\class TFile
\ingroup IO
\brief A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-like logical structure, possibly including subdirectory hierarchies.
\sa \ref IO
\sa \ref rootio (or `io/doc/TFile` folder in your codebase)

<details>
<summary>ROOT file data format specification</summary>

A ROOT file is composed of a header, followed by consecutive data records
(`TKey` instances) with a well defined format.
Expand All @@ -21,6 +27,7 @@ The first data record starts at byte fBEGIN (currently set to kBEGIN).
Bytes 1->kBEGIN contain the file description, when fVersion >= 1000000
it is a large file (> 2 GB) and the offsets will be 8 bytes long and
fUnits will be set to 8:

Byte Range | Record Name | Description
----------------|-------------|------------
1->4 | "root" | Root file identifier
Expand Down Expand Up @@ -69,7 +76,10 @@ Byte Range | Member Name | Description
Begin_Macro
../../../tutorials/io/file.C
End_Macro

The structure of a directory is shown in TDirectoryFile::TDirectoryFile

</details>
*/

#include <ROOT/RConfig.hxx>
Expand Down