Skip to content

Commit c0931b9

Browse files
committed
[tutorials] rename CINT to CLING and MAKECINT to ROOTCLING
1 parent 6d8069c commit c0931b9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

tutorials/math/mathcoreVectorFloatIO.C

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
// No need to force dictionary generation
3737
// You need to run ACLIC with old ROOT version
3838
// and uncomment these lines below
39-
// #ifdef __MAKECINT__
39+
// #ifdef __ROOTCLING__
4040
// #pragma link C++ class ROOT::Math::PxPyPzE4D<float>+;
4141
// #pragma link C++ class ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> >+;
4242
// #pragma link C++ typedef ROOT::Math::XYZTVectorF;
@@ -102,7 +102,7 @@ void read() {
102102

103103
void runIt() {
104104

105-
#if defined(__CINT__) && !defined(__MAKECINT__)
105+
#if defined(__CLING__) && !defined(__ROOTCLING__)
106106
gSystem->Load("libMathCore");
107107
gSystem->Load("libPhysics");
108108
using namespace ROOT::Math ;
@@ -117,7 +117,7 @@ void runIt() {
117117
}
118118

119119
void mathcoreVectorFloatIO() {
120-
#if defined(__CINT__) && !defined(__MAKECINT__)
120+
#if defined(__CLING__) && !defined(__ROOTCLING__)
121121
gSystem->Load("libMathCore");
122122
gSystem->Load("libPhysics");
123123
using namespace ROOT::Math ;

tutorials/math/quadp/portfolio.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ TArrayF &StockReturn(TFile *f,const TString &name,Int_t sDay,Int_t eDay)
191191
return *r;
192192
}
193193

194-
#ifndef __MAKECINT__
194+
#ifndef __ROOTCLING__
195195
//---------------------------------------------------------------------------
196196
TVectorD OptimalInvest(Double_t riskFactor,TVectorD r,TMatrixDSym Covar)
197197
{

tutorials/visualisation/eve/SplitGLView.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1377,7 +1377,7 @@ void SplitGLView::UpdateSummary()
13771377
}
13781378
}
13791379

1380-
#ifdef __CINT__
1380+
#ifdef __CLING__
13811381
void SplitGLView()
13821382
{
13831383
printf("This script is used via ACLiC by the macro \"alice_esd_split.C\"\n");

tutorials/visualisation/gl/viewer3DLocal.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/// code, this script must also be compiled to work correctly.
1717
///
1818
/// ~~~{.cpp}
19-
/// #if defined(__CINT__) && !defined(__MAKECINT__)
19+
/// #if defined(__CLING__) && !defined(__ROOTCLING__)
2020
/// {
2121
/// gSystem->CompileMacro("viewer3DLocal.C");
2222
/// viewer3DLocal();

0 commit comments

Comments
 (0)