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
Copy file name to clipboardExpand all lines: io/io/src/TFile.cxx
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -596,8 +596,8 @@ TFile::~TFile()
596
596
}
597
597
598
598
if (IsOnHeap()) {
599
-
// Delete object from CINT symbol table so it can not be used anymore.
600
-
//CINT object are always on the heap.
599
+
// Delete object from Cling symbol table so it can not be used anymore.
600
+
//Cling objects are always on the heap.
601
601
gInterpreter->ResetGlobalVar(this);
602
602
}
603
603
@@ -2716,14 +2716,14 @@ void TFile::WriteHeader()
2716
2716
/// new (default) | A new directory dirname is created. If dirname already exist, an error message is printed and the function returns.
2717
2717
/// recreate | If dirname does not exist, it is created (like in "new"). If dirname already exist, all existing files in dirname are deleted before creating the new files.
2718
2718
/// update | New classes are added to the existing directory. Existing classes with the same name are replaced by the new definition. If the directory dirname doest not exist, same effect as "new".
2719
-
/// genreflex | Use genreflex rather than rootcint to generate the dictionary.
2719
+
/// genreflex | Use genreflex rather than rootcling to generate the dictionary.
2720
2720
/// par | Create a PAR file with the minimal set of code needed to read the content of the ROOT file. The name of the PAR file is basename(dirname), with extension '.par' enforced; the PAR file will be created at dirname(dirname).
2721
2721
///
2722
2722
/// If, in addition to one of the 3 above options, the option "+" is specified,
2723
2723
/// the function will generate:
2724
2724
/// - a script called MAKEP to build the shared lib
2725
2725
/// - a dirnameLinkDef.h file
2726
-
/// - rootcint will be run to generate a dirnameProjectDict.cxx file
2726
+
/// - rootcling will be run to generate a dirnameProjectDict.cxx file
2727
2727
/// - dirnameProjectDict.cxx will be compiled with the current options in compiledata.h
2728
2728
/// - a shared lib dirname.so will be created.
2729
2729
/// If the option "++" is specified, the generated shared lib is dynamically
@@ -2735,10 +2735,10 @@ void TFile::WriteHeader()
2735
2735
/// - creates a new directory demo unless it already exist
2736
2736
/// - clear the previous directory content
2737
2737
/// - generate the xxx.h files for all classes xxx found in this file
0 commit comments