diff --git a/core/base/inc/RtypesImp.h b/core/base/inc/RtypesImp.h index 58f536f4f0049..23c483d007cb4 100644 --- a/core/base/inc/RtypesImp.h +++ b/core/base/inc/RtypesImp.h @@ -44,7 +44,7 @@ inline void operator delete(void*, ROOT::Internal::TOperatorNewHelper*) { } // The STL GenerateInitInstance are not unique and hence are declared static // (not accessible outside the dictionary and not linker error for duplicate) -#if defined(__CINT__) +#if defined(__CINT__) || defined(__CLING__) #define RootStlStreamer(name,STREAMER) #else #define RootStlStreamer(name,STREAMER) \ diff --git a/core/base/src/TApplication.cxx b/core/base/src/TApplication.cxx index b52b8af8b9881..e517c32a476da 100644 --- a/core/base/src/TApplication.cxx +++ b/core/base/src/TApplication.cxx @@ -1724,7 +1724,7 @@ Longptr_t TApplication::ProcessLine(const char *line, Bool_t sync, Int_t *err) return 0; #if 0 - // delete the ROOT dictionary since CINT will destroy all objects + // delete the ROOT dictionary since CLING will destroy all objects // referenced by the dictionary classes (TClass et. al.) gROOT->GetListOfClasses()->Delete(); // fall through @@ -1814,8 +1814,8 @@ Longptr_t TApplication::ExecuteFile(const char *file, Int_t *error, Bool_t keep) // "#else" or "#endif" will be skipped. if (*s == '#') { char *cs = Compress(currentline); - if (strstr(cs, "#ifndef__CINT__") || - strstr(cs, "#if!defined(__CINT__)")) + if (strstr(cs, "#ifndef__CINT__") || strstr(cs, "#ifndef__CLING__") || + strstr(cs, "#if!defined(__CINT__)") || strstr(cs, "#if!defined(__CLING__)")) ifndefc = 1; else if (ifndefc && (strstr(cs, "#ifdef") || strstr(cs, "#ifndef") || strstr(cs, "#ifdefined") || strstr(cs, "#if!defined"))) diff --git a/core/base/src/TSystem.cxx b/core/base/src/TSystem.cxx index 7b169455ccab3..04b504f08605d 100644 --- a/core/base/src/TSystem.cxx +++ b/core/base/src/TSystem.cxx @@ -2160,7 +2160,7 @@ const char *TSystem::GetLibraries(const char *regexp, const char *options, if (opt.IsNull() || opt.First('D') != kNPOS) libs += gInterpreter->GetSharedLibs(); - // Cint currently register all libraries that + // CLING currently register all libraries that // are loaded and have a dictionary in them, this // includes all the libraries that are included // in the list of (hard) linked libraries. @@ -3457,7 +3457,7 @@ int TSystem::CompileMacro(const char *filename, Option_t *opt, linkdefFile << "// File Automatically generated by the ROOT Script Compiler " << std::endl; linkdefFile << std::endl; - linkdefFile << "#ifdef __CINT__" << std::endl; + linkdefFile << "#ifdef __CLING__" << std::endl; linkdefFile << std::endl; linkdefFile << "#pragma link C++ nestedclasses;" << std::endl; linkdefFile << "#pragma link C++ nestedtypedefs;" << std::endl; diff --git a/core/dictgen/src/rootcling_impl.cxx b/core/dictgen/src/rootcling_impl.cxx index fb5961732e7a1..e036ac86e355e 100644 --- a/core/dictgen/src/rootcling_impl.cxx +++ b/core/dictgen/src/rootcling_impl.cxx @@ -1840,7 +1840,7 @@ void CallWriteStreamer(const ROOT::TMetaUtils::AnnotatedRecordDecl &cl, void GenerateLinkdef(llvm::cl::list &InputFiles, std::string &code_for_parser) { - code_for_parser += "#ifdef __CINT__\n\n"; + code_for_parser += "#if defined(__CINT__) or defined(__CLING__)\n\n"; code_for_parser += "#pragma link off all globals;\n"; code_for_parser += "#pragma link off all classes;\n"; code_for_parser += "#pragma link off all functions;\n\n"; @@ -4274,8 +4274,8 @@ int RootClingMain(int argc, // Data is in 'outputFile', therefore in the same scope. llvm::StringRef moduleName; std::string vfsArg; - // Adding -fmodules to the args will break lexing with __CINT__ defined, - // and we actually do lex with __CINT__ and reuse this variable later, + // Adding -fmodules to the args will break lexing with __CLING__(__CINT__) defined, + // and we actually do lex with __CLING__(__CINT__) and reuse this variable later, // we have to copy it now. auto clingArgsInterpreter = clingArgs; @@ -4485,9 +4485,11 @@ int RootClingMain(int argc, ROOT::TMetaUtils::TClingLookupHelper helper(interp, normCtxt, nullptr, nullptr, nullptr, nullptr); TClassEdit::Init(&helper); - // flags used only for the pragma parser: + // flags used only for the pragma parser, for compatibility: clingArgs.push_back("-D__CINT__"); clingArgs.push_back("-D__MAKECINT__"); + clingArgs.push_back("-D__CLING__"); + clingArgs.push_back("-D__MAKECLING__"); AddPlatformDefines(clingArgs); diff --git a/roottest/cling/const/constissue.C b/roottest/cling/const/constissue.C index 55fadf0209225..a15aae43d0bf2 100644 --- a/roottest/cling/const/constissue.C +++ b/roottest/cling/const/constissue.C @@ -1,6 +1,6 @@ int get_histogram(char const* , char const* ){return 0; } template void get_histogram(T const & t, char const * name); -#ifdef __CINT__ +#ifdef __CLING__ // Can't remember what this is actually testing but it should not do // any harm anyway! #pragma link C++ function get_histogram; @@ -16,7 +16,7 @@ class TriggerCharacterizer { trigger_counting_map m_map; }; -#ifdef __CINT__ +#ifdef __CLING__ //#pragma link C++ class TriggerCharacterizer::trigger_counting_map; #endif diff --git a/roottest/cling/dict/algebra3 b/roottest/cling/dict/algebra3 index 3c571cc64843a..fa45c37dca0cd 100644 --- a/roottest/cling/dict/algebra3 +++ b/roottest/cling/dict/algebra3 @@ -18,7 +18,7 @@ namespace aux { -#ifndef __CINT__ +#ifndef __CLING__ using std::size_t; using std::complex; using std::istream; @@ -32,7 +32,7 @@ namespace aux { using std::sin; // using std::conj; using std::norm; -#endif /* __CINT__ */ +#endif /* __CLING__ */ /* ****************** algebra3.h begins here ****************** */ @@ -710,7 +710,7 @@ namespace aux { // Implementation // -#ifndef __CINT__ +#ifndef __CLING__ /**************************************************************** * * @@ -1999,7 +1999,7 @@ namespace aux { ((_Tp)0), ((_Tp)0), ((_Tp)1), ((_Tp)0), ((_Tp)0), ((_Tp)0), ((_Tp)1) / d, ((_Tp)0)); } -#endif /* __CINT__ */ +#endif /* __CLING__ */ /* ******************* algebra3.h ends here ******************* */ @@ -2041,7 +2041,7 @@ namespace aux { template mat3<_Tp> ExtractRotation(const mat4<_Tp>& pose); // extract rotation matrix from transformation matrix template typename rtti<_Tp>::value_type PointToPlane(const vec3<_Tp>& point, const vec4<_Tp>& plane); // unsigned distance from a point to a plane (3D) -#ifndef __CINT__ +#ifndef __CLING__ // // rotation2D -- convert 2x2 rotation matrix to 3x3 @@ -2176,7 +2176,7 @@ namespace aux { return dist; } -#endif /* __CINT__ */ +#endif /* __CLING__ */ #ifdef fmin #undef fmin // allow as function names diff --git a/roottest/cling/dict/operators_dict.h b/roottest/cling/dict/operators_dict.h index 2b003f8c48625..587f457ad7893 100644 --- a/roottest/cling/dict/operators_dict.h +++ b/roottest/cling/dict/operators_dict.h @@ -1,6 +1,6 @@ #include "operators.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class myiterator; #pragma link C++ operators myiterator; #endif @@ -12,14 +12,14 @@ namespace enclosing { #include "operators.h" } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class enclosing::myiterator; #pragma link C++ operators enclosing::myiterator; #endif #endif #include -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vector; #pragma link C++ class vector::const_iterator; #pragma link C++ class vector::iterator; diff --git a/roottest/cling/dict/runalgebra.C b/roottest/cling/dict/runalgebra.C index 511917504a3d2..1fc321bbb0620 100644 --- a/roottest/cling/dict/runalgebra.C +++ b/roottest/cling/dict/runalgebra.C @@ -19,7 +19,7 @@ void runalgebra (void) { /* Dummy ROOT initialization routine */ } #include "RConfigure.h" -#if defined(__MAKECINT__) || defined(__ALGEBRA3_CXX_DEBUG__) +#if defined(__MAKECLING__) || defined(__ALGEBRA3_CXX_DEBUG__) #ifdef __FIX_MAKROSCHROTT__ #undef __FIX_MAKROSCHROTT__ @@ -37,11 +37,11 @@ void runalgebra (void) { /* Dummy ROOT initialization routine */ } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ namespace aux; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -49,7 +49,7 @@ void runalgebra (void) { /* Dummy ROOT initialization routine */ } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ enum aux::EAxisXYZW; #pragma link C++ enum aux::EAxis1234; @@ -57,7 +57,7 @@ void runalgebra (void) { /* Dummy ROOT initialization routine */ } #pragma link C++ enum aux::EColorRGB; #pragma link C++ enum aux::EPhongADSS; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -71,11 +71,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< long double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -89,11 +89,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec2< long double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -107,11 +107,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec2< long double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -152,11 +152,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec3< long double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -170,11 +170,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec3< long double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -215,11 +215,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec4< long double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -233,11 +233,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec4< long double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -276,11 +276,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat2< long double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -294,11 +294,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat2< long double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -335,11 +335,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat3< long double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -353,11 +353,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat3< long double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -394,11 +394,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat4< long double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -412,11 +412,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat4< long double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -521,11 +521,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< float >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -539,11 +539,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec2< float > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -557,11 +557,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec2< float >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -602,11 +602,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec3< float > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -620,11 +620,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec3< float >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -665,11 +665,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec4< float > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -683,11 +683,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec4< float >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -726,11 +726,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat2< float > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -744,11 +744,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat2< float >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -785,11 +785,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat3< float > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -803,11 +803,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat3< float >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -844,11 +844,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat4< float > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -862,11 +862,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat4< float >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -971,11 +971,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -989,11 +989,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec2< double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1007,11 +1007,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec2< double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1052,11 +1052,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec3< double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1070,11 +1070,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec3< double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1115,11 +1115,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec4< double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1133,11 +1133,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec4< double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1176,11 +1176,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat2< double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1194,11 +1194,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat2< double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1235,11 +1235,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat3< double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1253,11 +1253,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat3< double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1294,11 +1294,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat4< double > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1312,11 +1312,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat4< double >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1421,11 +1421,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1439,11 +1439,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec2< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1457,11 +1457,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec2< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1502,11 +1502,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec3< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1520,11 +1520,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec3< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1565,11 +1565,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec4< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1583,11 +1583,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec4< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1626,11 +1626,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat2< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1644,11 +1644,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat2< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1685,11 +1685,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat3< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1703,11 +1703,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat3< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1744,11 +1744,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat4< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1762,11 +1762,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat4< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1871,11 +1871,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1889,11 +1889,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec2< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1907,11 +1907,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec2< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -1952,11 +1952,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec3< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -1970,11 +1970,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec3< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -2015,11 +2015,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec4< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -2033,11 +2033,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec4< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -2076,11 +2076,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat2< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -2094,11 +2094,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat2< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -2135,11 +2135,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat3< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -2153,11 +2153,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat3< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -2194,11 +2194,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat4< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -2212,11 +2212,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat4< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -2321,11 +2321,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -2339,11 +2339,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec2< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -2357,11 +2357,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec2< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -2402,11 +2402,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec3< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -2420,11 +2420,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec3< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -2465,11 +2465,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::vec4< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -2483,11 +2483,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::vec4< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -2526,11 +2526,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat2< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -2544,11 +2544,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat2< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -2585,11 +2585,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat3< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -2603,11 +2603,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat3< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -2644,11 +2644,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::rtti< aux::mat4< complex > >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ @@ -2662,11 +2662,11 @@ namespace aux { } /* namespace aux */ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class aux::mat4< complex >+; -#endif /* __MAKECINT__ */ +#endif /* __MAKECLING__ */ namespace aux { @@ -2761,7 +2761,7 @@ namespace aux { -#endif /* __MAKECINT__ || __ALGEBRA3_CXX_DEBUG__ */ +#endif /* __MAKECLING__ || __ALGEBRA3_CXX_DEBUG__ */ #endif /* __ALGEBRA3_CXX__ */ diff --git a/roottest/cling/dict/runoperators.C b/roottest/cling/dict/runoperators.C index 2c304a22fa7b3..ecd5fa637f503 100644 --- a/roottest/cling/dict/runoperators.C +++ b/roottest/cling/dict/runoperators.C @@ -1,4 +1,4 @@ -#if defined(__CINT__) && !defined(__MAKECINT__) +#if defined(__CLING__) && !defined(__MAKECLING__) #include "operators_dict.h+" #else #include "operators.h" diff --git a/roottest/cling/function/refFunction.C b/roottest/cling/function/refFunction.C index 3f69388b31883..ff2c946dd935a 100644 --- a/roottest/cling/function/refFunction.C +++ b/roottest/cling/function/refFunction.C @@ -1,4 +1,4 @@ -#if defined(__MAKECINT__) || !defined(__CINT__) +#if defined(__MAKECLING__) || !defined(__CLING__) #include "refClasses.cxx" #endif diff --git a/roottest/cling/function/staticfunc.C b/roottest/cling/function/staticfunc.C index 2c361b0f416c1..ab9d1b6660377 100644 --- a/roottest/cling/function/staticfunc.C +++ b/roottest/cling/function/staticfunc.C @@ -1,4 +1,4 @@ -#ifndef __CINT__ +#ifndef __CLING__ #include "TString.h" #include "Riostream.h" #include diff --git a/roottest/cling/function/testDefaultParams.C b/roottest/cling/function/testDefaultParams.C index cc2769447d7ae..e958488608579 100644 --- a/roottest/cling/function/testDefaultParams.C +++ b/roottest/cling/function/testDefaultParams.C @@ -1,4 +1,4 @@ -#ifndef __CINT__ +#ifndef __CLING__ #include "Params.h" #endif diff --git a/roottest/cling/functionTemplate/MyClassReferenceUse_linkdef.h b/roottest/cling/functionTemplate/MyClassReferenceUse_linkdef.h index 32db18ab244e1..6237547727c6e 100644 --- a/roottest/cling/functionTemplate/MyClassReferenceUse_linkdef.h +++ b/roottest/cling/functionTemplate/MyClassReferenceUse_linkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all functions; diff --git a/roottest/cling/functionTemplate/t_rflx_wrap.cxx b/roottest/cling/functionTemplate/t_rflx_wrap.cxx index 1c445b83a5cd1..09858caa71d1f 100644 --- a/roottest/cling/functionTemplate/t_rflx_wrap.cxx +++ b/roottest/cling/functionTemplate/t_rflx_wrap.cxx @@ -1,4 +1,4 @@ -#ifndef __CINT__ +#ifndef __CLING__ #include "t_rflx.cpp" #endif diff --git a/roottest/cling/longtemplate/CrashLinkDef.hh b/roottest/cling/longtemplate/CrashLinkDef.hh index a1162b8f54526..443c24a91654a 100644 --- a/roottest/cling/longtemplate/CrashLinkDef.hh +++ b/roottest/cling/longtemplate/CrashLinkDef.hh @@ -1,7 +1,7 @@ //std::vector > ss; //Name::Sk sk; //std::vector vssb; -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/cling/operator/ConversionOp.h b/roottest/cling/operator/ConversionOp.h index b63244edb2198..2ffd6cc0f9047 100644 --- a/roottest/cling/operator/ConversionOp.h +++ b/roottest/cling/operator/ConversionOp.h @@ -69,7 +69,7 @@ class D { A& operator/(A &a) {printf("D::op /(A)\n"); return a;} }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class A+; #pragma link C++ class A+; #pragma link C++ class A+; diff --git a/roottest/cling/operator/equal.C b/roottest/cling/operator/equal.C index bcf01122328f4..e83a7f41718e7 100644 --- a/roottest/cling/operator/equal.C +++ b/roottest/cling/operator/equal.C @@ -56,7 +56,7 @@ public: class withHiddenRef : public top { withHiddenRef &operator=(const withHiddenRef&); // intentionally NOT implemented int a; -#ifndef __CINT__ +#ifndef __CLING__ const int &ref; int &ref2; #endif @@ -64,7 +64,7 @@ public: withHiddenRef(int &p) : ref(p),ref2(p) {}; }; -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class withHiddenRef-; #endif diff --git a/roottest/cling/other/assertBaseMembers.C b/roottest/cling/other/assertBaseMembers.C index d9f5530633d4a..79555dd345494 100644 --- a/roottest/cling/other/assertBaseMembers.C +++ b/roottest/cling/other/assertBaseMembers.C @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ // GCC and clang disagree with CINT, i.e. CINT fails for those. # define HIDEKNOWNFAILURES #endif diff --git a/roottest/cling/other/fileClose.C b/roottest/cling/other/fileClose.C index 63ceeaa9d6e0c..6331b9b1f4414 100644 --- a/roottest/cling/other/fileClose.C +++ b/roottest/cling/other/fileClose.C @@ -1,4 +1,4 @@ #include "TROOT.h" -#ifndef __CINT__ +#ifndef __CLING__ static int x = (gROOT->ProcessLine("#define XYZ 21",&x),0); #endif diff --git a/roottest/cling/other/runStaticDataMember.C b/roottest/cling/other/runStaticDataMember.C index a99b101b3a2c0..54b5b1128fb83 100644 --- a/roottest/cling/other/runStaticDataMember.C +++ b/roottest/cling/other/runStaticDataMember.C @@ -32,10 +32,10 @@ void runStaticDataMember() B b; } -#ifndef __MAKECINT__ +#ifndef __MAKECLING__ int main() { runStaticDataMember(); return 0; } -#endif // __MAKECINT__ +#endif // __MAKECLING__ diff --git a/roottest/cling/parsing/multiScope.C b/roottest/cling/parsing/multiScope.C index 4c197ab6fc244..ba2a5ad85e85e 100644 --- a/roottest/cling/parsing/multiScope.C +++ b/roottest/cling/parsing/multiScope.C @@ -15,6 +15,6 @@ namespace ns1 { } } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class ns1::ns2::ns3::SomeClass+; #endif diff --git a/roottest/cling/parsing/operatorLessThanTemplate.C b/roottest/cling/parsing/operatorLessThanTemplate.C index bb37e48d628e9..f31bbfdd68045 100644 --- a/roottest/cling/parsing/operatorLessThanTemplate.C +++ b/roottest/cling/parsing/operatorLessThanTemplate.C @@ -195,7 +195,7 @@ namespace genie { -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ namespace genie; #pragma link C++ class genie::ConfigPool; @@ -209,4 +209,4 @@ namespace genie { #pragma link C++ class genie::RegistryItem >+; // wont work because the friend parsing does not handle scope in template param #pragma link C++ class genie::RegistryItemI; -#endif // __MAKECINT__ +#endif // __MAKECLING__ diff --git a/roottest/cling/parsing/ptrconst.C b/roottest/cling/parsing/ptrconst.C index f96ee923edc86..cef409bc72e82 100644 --- a/roottest/cling/parsing/ptrconst.C +++ b/roottest/cling/parsing/ptrconst.C @@ -6,7 +6,7 @@ public: Object * const &front() const {return mTo;} Object *mTo; }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class myClass; #endif diff --git a/roottest/cling/parsing/semicolon.C b/roottest/cling/parsing/semicolon.C index 65ce8c609ffdf..73c8b9e4c281b 100644 --- a/roottest/cling/parsing/semicolon.C +++ b/roottest/cling/parsing/semicolon.C @@ -3,7 +3,7 @@ void semicolon(const char *string = "/star/simu/simu/jwebb/11-12-2010-pp500-pile cout << string << endl; } -#if !defined(__CINT__) && !defined(__CLING__) +#ifndef __CLING__ int main(int /* argc */, char **argv) { semicolon(argv[1]); return 0; diff --git a/roottest/cling/reflex/runTools.C b/roottest/cling/reflex/runTools.C index 9d37821576a15..d9de45a28e8ae 100644 --- a/roottest/cling/reflex/runTools.C +++ b/roottest/cling/reflex/runTools.C @@ -1,4 +1,4 @@ -#ifndef __CINT__ +#ifndef __CLING__ #include "Reflex/Tools.h" #endif diff --git a/roottest/cling/specialobj/calib.h b/roottest/cling/specialobj/calib.h index 1325cf8f1e1af..d1e4286bec40c 100644 --- a/roottest/cling/specialobj/calib.h +++ b/roottest/cling/specialobj/calib.h @@ -20,7 +20,7 @@ class RTCalib : public TNamed { ClassDef(RTCalib,1) // container and calculator of the RT calibrations }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class pair+; #pragma link C++ class map+; #endif diff --git a/roottest/cling/stl/default/VectorSort.C b/roottest/cling/stl/default/VectorSort.C index 517d84e860cbb..d220f36fe47c1 100644 --- a/roottest/cling/stl/default/VectorSort.C +++ b/roottest/cling/stl/default/VectorSort.C @@ -1,5 +1,5 @@ // autoloading fails! so we need to include : -#if !defined(__CINT__) || 1 +#if !defined(__CLING__) || 1 #include // loads the cintdlls #include #include "TROOT.h" diff --git a/roottest/cling/stl/default/mylist.C b/roottest/cling/stl/default/mylist.C index 9efa106a2366c..80a3845729356 100644 --- a/roottest/cling/stl/default/mylist.C +++ b/roottest/cling/stl/default/mylist.C @@ -10,7 +10,7 @@ template class StarList : public list { typedef list blist; -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ nestedclass; #pragma link C++ nestedtypedef; #pragma link C++ class BaseStar; diff --git a/roottest/cling/stl/map/LinkDef.h b/roottest/cling/stl/map/LinkDef.h index ff348c98799db..0c948c6f96753 100644 --- a/roottest/cling/stl/map/LinkDef.h +++ b/roottest/cling/stl/map/LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class test+; #endif diff --git a/roottest/cling/stl/map/MyClass.h b/roottest/cling/stl/map/MyClass.h index 1795c0405443d..4b3b1a696dc69 100644 --- a/roottest/cling/stl/map/MyClass.h +++ b/roottest/cling/stl/map/MyClass.h @@ -16,7 +16,7 @@ class MyClass{ }; -#if defined(__MAKECINT__) +#if defined(__MAKECLING__) #pragma link C++ class MyClass; #endif diff --git a/roottest/cling/stl/map/stringMapLoad.cxx b/roottest/cling/stl/map/stringMapLoad.cxx index 54d171f120624..8720787e6e4ee 100644 --- a/roottest/cling/stl/map/stringMapLoad.cxx +++ b/roottest/cling/stl/map/stringMapLoad.cxx @@ -2,6 +2,6 @@ #include namespace std {} using namespace std; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class map; #endif diff --git a/roottest/cling/template/Singleton.h b/roottest/cling/template/Singleton.h index e419a0a7d9ef4..97fdc31ca5046 100644 --- a/roottest/cling/template/Singleton.h +++ b/roottest/cling/template/Singleton.h @@ -28,7 +28,7 @@ class Singleton // If this isn't hidden from rootcint, the build fails template Singleton* Singleton::instance = 0; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class Singleton; #pragma link C++ class Singleton; #endif diff --git a/roottest/cling/template/constructor.hh b/roottest/cling/template/constructor.hh index 1bfb571b85a59..8312c2627af9f 100644 --- a/roottest/cling/template/constructor.hh +++ b/roottest/cling/template/constructor.hh @@ -12,7 +12,7 @@ private: T mData; }; -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/cling/template/forward.C b/roottest/cling/template/forward.C index d39ff22fc0e95..72a8822d30631 100644 --- a/roottest/cling/template/forward.C +++ b/roottest/cling/template/forward.C @@ -14,7 +14,7 @@ private: TYPE val; */ typedef TYPE value_type ; -#ifndef __CINT__ +#ifndef __CLING__ typedef ::ValueVector self_type ; typedef typename std::vector collection_type ; #else diff --git a/roottest/cling/template/longlong.C b/roottest/cling/template/longlong.C index 7288d58b97867..a230c13d73cf6 100644 --- a/roottest/cling/template/longlong.C +++ b/roottest/cling/template/longlong.C @@ -7,7 +7,7 @@ private: ClassDef(Parameter,1); }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class Parameter+; #pragma link C++ class Parameter+; #pragma link C++ class Parameter+; diff --git a/roottest/cling/template/masterLinkDef.h b/roottest/cling/template/masterLinkDef.h index 1512a8a435ee2..35f856e881790 100644 --- a/roottest/cling/template/masterLinkDef.h +++ b/roottest/cling/template/masterLinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/cling/template/nesting.C b/roottest/cling/template/nesting.C index f492e3d4e3420..4463ce7b2b467 100644 --- a/roottest/cling/template/nesting.C +++ b/roottest/cling/template/nesting.C @@ -3,7 +3,7 @@ class A {}; template class B{}; template class C {}; -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class A+; #pragma link C++ class B+; #pragma link C++ class C*>+; diff --git a/roottest/cling/template/separateDict/MasterLinkDef.hh b/roottest/cling/template/separateDict/MasterLinkDef.hh index 7f2d530a72220..613f17efb0d96 100644 --- a/roottest/cling/template/separateDict/MasterLinkDef.hh +++ b/roottest/cling/template/separateDict/MasterLinkDef.hh @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/cling/template/separateDict/Slave1LinkDef.hh b/roottest/cling/template/separateDict/Slave1LinkDef.hh index 33d0b1e676ed8..0ec8d253d3742 100644 --- a/roottest/cling/template/separateDict/Slave1LinkDef.hh +++ b/roottest/cling/template/separateDict/Slave1LinkDef.hh @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/cling/template/separateDict/Slave2LinkDef.hh b/roottest/cling/template/separateDict/Slave2LinkDef.hh index e683e7de55f05..a39d36b57a3d4 100644 --- a/roottest/cling/template/separateDict/Slave2LinkDef.hh +++ b/roottest/cling/template/separateDict/Slave2LinkDef.hh @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/cling/template/separateDictNamespace/MasterLinkDef.hh b/roottest/cling/template/separateDictNamespace/MasterLinkDef.hh index 8b2e360d7ffad..cd6cc8752ca1b 100644 --- a/roottest/cling/template/separateDictNamespace/MasterLinkDef.hh +++ b/roottest/cling/template/separateDictNamespace/MasterLinkDef.hh @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/cling/template/separateDictNamespace/Slave1LinkDef.hh b/roottest/cling/template/separateDictNamespace/Slave1LinkDef.hh index 90eb1c8b349de..34937f34f181f 100644 --- a/roottest/cling/template/separateDictNamespace/Slave1LinkDef.hh +++ b/roottest/cling/template/separateDictNamespace/Slave1LinkDef.hh @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/cling/template/separateDictNamespace/Slave2LinkDef.hh b/roottest/cling/template/separateDictNamespace/Slave2LinkDef.hh index 6b41850d99132..382d9dfa9f04b 100644 --- a/roottest/cling/template/separateDictNamespace/Slave2LinkDef.hh +++ b/roottest/cling/template/separateDictNamespace/Slave2LinkDef.hh @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/cling/template/slaveLinkDef.h b/roottest/cling/template/slaveLinkDef.h index a40e4ae656cd1..d6719af3bb719 100644 --- a/roottest/cling/template/slaveLinkDef.h +++ b/roottest/cling/template/slaveLinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/cling/template/smalltest.C b/roottest/cling/template/smalltest.C index 76da95a88aca9..62910f33c5a9d 100644 --- a/roottest/cling/template/smalltest.C +++ b/roottest/cling/template/smalltest.C @@ -13,7 +13,7 @@ template Buffer& operator>>(Buffer &buf, Array *&obj) { fprintf(stderr,"Array operator>>\n"); return buf; } -#elif defined(__CINT__) +#elif defined(__CLING__) template Buffer &operator>>(Buffer &buf, Tmpl *&obj) { fprintf(stderr,"Generic operator>>\n"); return buf; diff --git a/roottest/cling/template/templatefriend.cxx b/roottest/cling/template/templatefriend.cxx index 35cabdf781e50..72ef23f796933 100755 --- a/roottest/cling/template/templatefriend.cxx +++ b/roottest/cling/template/templatefriend.cxx @@ -24,7 +24,7 @@ class my_shared_ptr // reference counting mechanism void PF(const char* func) { std::string clname; -#if defined(__CINT__) || defined(_MSC_VER) +#if defined(__CLING__) || defined(_MSC_VER) clname = T::ClassName(); #else clname = __PRETTY_FUNCTION__; @@ -54,7 +54,7 @@ class my_shared_ptr }; }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class my_shared_ptr+; #pragma link C++ class my_shared_ptr+; #endif @@ -69,7 +69,7 @@ int templatefriend() return 0; } -#ifndef __MAKECINT__ +#ifndef __MAKECLING__ int main() { return templatefriend(); } #endif diff --git a/roottest/cling/template/typedef/cmspb_orig.C b/roottest/cling/template/typedef/cmspb_orig.C index ed180812b6d4a..6281d0a0692bf 100644 --- a/roottest/cling/template/typedef/cmspb_orig.C +++ b/roottest/cling/template/typedef/cmspb_orig.C @@ -472,7 +472,7 @@ typedef string cstring; # 13 "/home/wmtan/root/cint/stl/_string" 2 -// __MAKECINT__// __MAKECINT__ +// __MAKECLING__// __MAKECLING__ # 63 "/home/wmtan/root/cint/stl/_string" @@ -3269,7 +3269,7 @@ void G__list_memfunc(char *classname) { /* of G__TYPEINFO_H */ -/* __CINT__ */ +/* __CLING__ */ # 2 "/home/wmtan/root/cint/include/typeinfo" 2 } diff --git a/roottest/cling/template/typenameTest.C b/roottest/cling/template/typenameTest.C index 997fa85eee3d4..28773fab87852 100644 --- a/roottest/cling/template/typenameTest.C +++ b/roottest/cling/template/typenameTest.C @@ -23,7 +23,7 @@ template class DecayDataT { }; -#ifdef __CINT__ +#ifdef __CLING__ // This was necessary to work around a bug in // the lookup code that prevented the class to use itself // to instantiate templates. @@ -52,7 +52,7 @@ class DefaultConfig { }; ////// File alinkdef.h -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ nestedclasses; #pragma link C++ nestedtypedefs; diff --git a/roottest/cling/templateMembers/constructor.C b/roottest/cling/templateMembers/constructor.C index 0d7d065577b06..e78662fd99e48 100644 --- a/roottest/cling/templateMembers/constructor.C +++ b/roottest/cling/templateMembers/constructor.C @@ -19,7 +19,7 @@ struct A { template A(const U&) { cout << "c'tor taking " << -#if defined(__CINT__) || defined(_MSC_VER) +#if defined(__CLING__) || defined(_MSC_VER) nameof((U*)0) #else PF2cl(__PRETTY_FUNCTION__) @@ -30,7 +30,7 @@ struct A { template void doit(const U&) { cout << "doit taking " << -#if defined(__CINT__) || defined(_MSC_VER) +#if defined(__CLING__) || defined(_MSC_VER) nameof((U*)0) #else PF2cl(__PRETTY_FUNCTION__) @@ -40,7 +40,7 @@ struct A { }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class A+; #pragma link C++ class TemplateArgument+; #pragma link C++ function A::A(const TemplateArgument&); diff --git a/roottest/cling/templateMembers/duplicate.C b/roottest/cling/templateMembers/duplicate.C index 1898de3a6b8b7..4269154931d02 100644 --- a/roottest/cling/templateMembers/duplicate.C +++ b/roottest/cling/templateMembers/duplicate.C @@ -38,7 +38,7 @@ public: template THType *grab2(const char*) { return 0; }; }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class HistMan; #pragma link C++ function HistMan::Book(const char*, const char*, int, Axis_t, Axis_t, const char*); diff --git a/roottest/cling/templateMembers/operator.C b/roottest/cling/templateMembers/operator.C index 5e56677d05bd6..b644e03f759c4 100644 --- a/roottest/cling/templateMembers/operator.C +++ b/roottest/cling/templateMembers/operator.C @@ -1,4 +1,4 @@ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #endif @@ -31,7 +31,7 @@ namespace edm { } // namespace edm -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ namespace edm; #endif diff --git a/roottest/cling/templateMembers/operatorEqual.C b/roottest/cling/templateMembers/operatorEqual.C index 1b509b1ff9f28..aa08aa74ef9cb 100644 --- a/roottest/cling/templateMembers/operatorEqual.C +++ b/roottest/cling/templateMembers/operatorEqual.C @@ -6,7 +6,7 @@ public: template StThreeVector& operator+= (const StThreeVector&) { return *this; }; }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class StThreeVector+; #pragma link C++ function StThreeVector::func(float); #pragma link C++ function StThreeVector::operator+=(const StThreeVector&); diff --git a/roottest/cling/templateMembers/runoperatorEqual.C b/roottest/cling/templateMembers/runoperatorEqual.C index ec6bccdb60080..c8b610999e7b4 100644 --- a/roottest/cling/templateMembers/runoperatorEqual.C +++ b/roottest/cling/templateMembers/runoperatorEqual.C @@ -1,7 +1,7 @@ { gSystem->Setenv("LINES","-1"); gROOT->ProcessLine(".L operatorEqual.C+"); -#ifdef __CINT__ +#ifdef __CLING__ gROOT->ProcessLine(".class StThreeVector"); #else gROOT->ProcessLine(".Class StThreeVector<>"); diff --git a/roottest/cling/templateMembers/templateMembers.C b/roottest/cling/templateMembers/templateMembers.C index ffb7dc620b903..b03e124dcdf3f 100644 --- a/roottest/cling/templateMembers/templateMembers.C +++ b/roottest/cling/templateMembers/templateMembers.C @@ -1,4 +1,4 @@ #include "templateMembersClasses.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #include "templateMembersLinkdef.h" #endif diff --git a/roottest/cling/templateMembers/templateMembersClasses.h b/roottest/cling/templateMembers/templateMembersClasses.h index 720d76ef6c069..b2c3d154de336 100644 --- a/roottest/cling/templateMembers/templateMembersClasses.h +++ b/roottest/cling/templateMembers/templateMembersClasses.h @@ -5,7 +5,7 @@ using namespace std; -#if defined(_MSC_VER) && !defined(__CINT__) +#if defined(_MSC_VER) && !defined(__CLING__) #define SHOW std::cout << __FUNCSIG__ << std::endl; #define SHOWMEM std::cout << "Mem: "; SHOW #else diff --git a/roottest/cling/typedef/func.C b/roottest/cling/typedef/func.C index 8b2924e8fae76..d6a7704ac369a 100644 --- a/roottest/cling/typedef/func.C +++ b/roottest/cling/typedef/func.C @@ -12,7 +12,7 @@ typedef void (funcval)(int); // wrinting the prototype 'void val(int)'. extern funcval val; -#ifdef __CINT__ +#ifdef __CLING__ funcptr ptr = func; #else funcptr ptr(func); diff --git a/roottest/cling/typedef_global/LinkDef.h b/roottest/cling/typedef_global/LinkDef.h index 8b7f2a6811db3..f1719c49507b5 100644 --- a/roottest/cling/typedef_global/LinkDef.h +++ b/roottest/cling/typedef_global/LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; #pragma link off all functions; diff --git a/roottest/python/cpp/Template.C b/roottest/python/cpp/Template.C index a661a65afc3f1..c01c467939548 100644 --- a/roottest/python/cpp/Template.C +++ b/roottest/python/cpp/Template.C @@ -29,7 +29,7 @@ namespace MyNamespace { T MyTemplatedFunctionNamespace(T t) { return t; } }; -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class MyTemplatedClass< vector< float > >; #pragma link C++ function MyTemplatedFunction< int >( int ); #pragma link C++ function MyTemplatedFunction< double >( double ); @@ -103,6 +103,6 @@ template long MyTemplatedMethodClass::GetSizeOL< float >( const float& ); typedef std::vector< double > MyDoubleVector_t; template long MyTemplatedMethodClass::GetSize< MyDoubleVector_t >(); -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class MyTemplatedMethodClass; #endif diff --git a/roottest/python/pickle/PickleTypes.C b/roottest/python/pickle/PickleTypes.C index ad76f5e0c3c07..8ac643a9f32cd 100644 --- a/roottest/python/pickle/PickleTypes.C +++ b/roottest/python/pickle/PickleTypes.C @@ -10,7 +10,7 @@ #include -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ using namespace std; #pragma link C++ class vector< vector< float > >; #pragma link C++ class vector< vector< float > >::iterator; diff --git a/roottest/python/regression/LoKiNamespace.C b/roottest/python/regression/LoKiNamespace.C index 621bcc28132e7..4efaf57a7cee3 100644 --- a/roottest/python/regression/LoKiNamespace.C +++ b/roottest/python/regression/LoKiNamespace.C @@ -11,7 +11,7 @@ namespace LoKi { } // namespace Loki -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class LoKi::Constant< const LHCb::Particle* >; #pragma link C++ class LoKi::BooleanConstant< const LHCb::Particle* >; #endif diff --git a/roottest/python/stl/StlTypes.C b/roottest/python/stl/StlTypes.C index efa32b791dc4c..255b09cb38db9 100644 --- a/roottest/python/stl/StlTypes.C +++ b/roottest/python/stl/StlTypes.C @@ -91,7 +91,7 @@ namespace { std::list< JustAClass > jl1; } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ using namespace std; // instead of std:: to make cint7 happy #pragma link C++ class vector< JustAClass >-; #pragma link C++ class vector< JustAClass >::iterator-; diff --git a/roottest/python/ttree/TTreeTypes.C b/roottest/python/ttree/TTreeTypes.C index c1ee7d3417bf6..d448aa546062e 100644 --- a/roottest/python/ttree/TTreeTypes.C +++ b/roottest/python/ttree/TTreeTypes.C @@ -11,7 +11,7 @@ #include "TH1D.h" #include "TTree.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class std::vector< vector< float > >; #pragma link C++ class std::vector< vector< float > >::iterator; #pragma link C++ class std::vector< vector< float > >::const_iterator; diff --git a/roottest/root/aclic/misc/assertmyfun.cxx b/roottest/root/aclic/misc/assertmyfun.cxx index 67107726fe26e..cbc3a2c323cbc 100644 --- a/roottest/root/aclic/misc/assertmyfun.cxx +++ b/roottest/root/aclic/misc/assertmyfun.cxx @@ -9,7 +9,7 @@ class MyFCN: public ROOT::Fit::Chi2Function{ ~MyFCN(){} }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class MyFCN-; #endif diff --git a/roottest/root/aclic/offset/TOffset.cxx b/roottest/root/aclic/offset/TOffset.cxx index 45e9429e7da94..c176d441bc7c5 100644 --- a/roottest/root/aclic/offset/TOffset.cxx +++ b/roottest/root/aclic/offset/TOffset.cxx @@ -33,7 +33,7 @@ using std::multiset; // static members init -#ifndef __CINT__ +#ifndef __CLING__ Int_t TOffset::fgAlign[16] = {0}; diff --git a/roottest/root/aclic/offset/TOffset.h b/roottest/root/aclic/offset/TOffset.h index 3578bc0f3d073..9f6cbe1677409 100644 --- a/roottest/root/aclic/offset/TOffset.h +++ b/roottest/root/aclic/offset/TOffset.h @@ -1,7 +1,7 @@ // @(#)root/base:$Id$ // Author: Victor Perev 08/05/02 -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; #pragma link off all functions; @@ -106,7 +106,7 @@ static Int_t Aligne(Int_t off,Int_t mult) Int_t fNBase; TList *fOffsetList; }; -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class TOffset+; #endif #endif diff --git a/roottest/root/collection/runTExMap.C b/roottest/root/collection/runTExMap.C index 1c41a1c4d6017..416c4487e1bc0 100644 --- a/roottest/root/collection/runTExMap.C +++ b/roottest/root/collection/runTExMap.C @@ -1,4 +1,4 @@ -#ifndef __CINT__ +#ifndef __CLING__ #include "TExMap.h" #include "Riostream.h" diff --git a/roottest/root/collection/runTMap.C b/roottest/root/collection/runTMap.C index 47166789bd779..7142071e2e7d6 100644 --- a/roottest/root/collection/runTMap.C +++ b/roottest/root/collection/runTMap.C @@ -1,6 +1,6 @@ // Test object (key,value) ownership behaviour of TMap. -#if !defined(__CINT__) || defined(__MAKECINT__) +#if !defined(__CLING__) || defined(__MAKECLING__) #include "TObjString.h" #include "TMap.h" #include "TObjectSpy.h" diff --git a/roottest/root/collection/runtbits.C b/roottest/root/collection/runtbits.C index 0eee3410532cb..e0d3ce5518d21 100644 --- a/roottest/root/collection/runtbits.C +++ b/roottest/root/collection/runtbits.C @@ -2,7 +2,7 @@ #include "Riostream.h" #include "TRandom.h" -#ifndef __CINT__ +#ifndef __CLING__ #include using namespace std; #endif diff --git a/roottest/root/fit/linear/runstoring.C b/roottest/root/fit/linear/runstoring.C index 12c790524af66..aa449d2e51678 100644 --- a/roottest/root/fit/linear/runstoring.C +++ b/roottest/root/fit/linear/runstoring.C @@ -6,7 +6,7 @@ void writefitter() { -#ifdef __CINT__ +#ifdef __CLING__ G__SetCatchException(0); #endif Int_t npoints = 100; @@ -43,7 +43,7 @@ void writefitter() void readfitter() { -#ifdef __CINT__ +#ifdef __CLING__ // G__SetCatchException(0); #endif TVectorD vect; @@ -102,7 +102,7 @@ void readfitter() void writeformula() { -#ifdef __CINT__ +#ifdef __CLING__ G__SetCatchException(0); #endif TFormula *f = new TFormula("ffffff", "x[0]++x[1]++x[2]"); diff --git a/roottest/root/io/ForeignCArray/LinkDef.h b/roottest/root/io/ForeignCArray/LinkDef.h index 0ce87d4386cae..7dae9d12b56e3 100644 --- a/roottest/root/io/ForeignCArray/LinkDef.h +++ b/roottest/root/io/ForeignCArray/LinkDef.h @@ -1,5 +1,5 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/abstractclass/LinkDef.h b/roottest/root/io/abstractclass/LinkDef.h index 12682c3c6ffc0..e5d628d82af7f 100644 --- a/roottest/root/io/abstractclass/LinkDef.h +++ b/roottest/root/io/abstractclass/LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/abstractclass/abstractInVector.C b/roottest/root/io/abstractclass/abstractInVector.C index ebbeb5e4fd8a0..1963ee2e45b76 100644 --- a/roottest/root/io/abstractclass/abstractInVector.C +++ b/roottest/root/io/abstractclass/abstractInVector.C @@ -80,7 +80,7 @@ bool abstractInVector() { return false; } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class SimuModule+; #pragma link C++ class Module+; #pragma link C++ class SimuModuleFactory+; diff --git a/roottest/root/io/alloc/customLoader.C b/roottest/root/io/alloc/customLoader.C index 0b210b45938be..fa99aa764ec72 100644 --- a/roottest/root/io/alloc/customLoader.C +++ b/roottest/root/io/alloc/customLoader.C @@ -1,4 +1,4 @@ #include "customConstructor.C" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #include "linkdef.h" #endif diff --git a/roottest/root/io/arrayobject/barLinkdef.h b/roottest/root/io/arrayobject/barLinkdef.h index 2806bd066f07e..bfa75a8bed40a 100644 --- a/roottest/root/io/arrayobject/barLinkdef.h +++ b/roottest/root/io/arrayobject/barLinkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/arrayobject/fooLinkdef.h b/roottest/root/io/arrayobject/fooLinkdef.h index b1147a750cccd..d3afcc91345e7 100644 --- a/roottest/root/io/arrayobject/fooLinkdef.h +++ b/roottest/root/io/arrayobject/fooLinkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/arrayobject/main.C b/roottest/root/io/arrayobject/main.C index ecb4743d48fd7..04df6e2e2a39b 100644 --- a/roottest/root/io/arrayobject/main.C +++ b/roottest/root/io/arrayobject/main.C @@ -129,7 +129,7 @@ int run() { } -#ifndef __CINT__ +#ifndef __CLING__ int main() { diff --git a/roottest/root/io/bigevent/EventLinkDef.h b/roottest/root/io/bigevent/EventLinkDef.h index e71db4fc6795d..eaa9ea3ce0175 100644 --- a/roottest/root/io/bigevent/EventLinkDef.h +++ b/roottest/root/io/bigevent/EventLinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ //#ppragma link off all globals; //#ppragma link off all classes; diff --git a/roottest/root/io/bill01/Dict.h b/roottest/root/io/bill01/Dict.h index 1e0c3a496b5ad..7b66bb86eb0ce 100644 --- a/roottest/root/io/bill01/Dict.h +++ b/roottest/root/io/bill01/Dict.h @@ -1,7 +1,7 @@ /******************************************************************** * Dict.h ********************************************************************/ -#ifdef __CINT__ +#ifdef __CLING__ #error Dict.h/C is only for compilation. Abort cint. #endif #include diff --git a/roottest/root/io/bill01/LinkDef.h b/roottest/root/io/bill01/LinkDef.h index e51e03b23d8b8..1fbe8e75fc0c5 100644 --- a/roottest/root/io/bill01/LinkDef.h +++ b/roottest/root/io/bill01/LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/bill02/Dict.h b/roottest/root/io/bill02/Dict.h index 8d3346b7db891..01b09caba46e6 100644 --- a/roottest/root/io/bill02/Dict.h +++ b/roottest/root/io/bill02/Dict.h @@ -1,7 +1,7 @@ /******************************************************************** * Dict.h ********************************************************************/ -#ifdef __CINT__ +#ifdef __CLING__ #error Dict.h/C is only for compilation. Abort cint. #endif #include diff --git a/roottest/root/io/bill02/LinkDef.h b/roottest/root/io/bill02/LinkDef.h index 8c59bac56e210..f16d26882125d 100644 --- a/roottest/root/io/bill02/LinkDef.h +++ b/roottest/root/io/bill02/LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/buffer/runownership.C b/roottest/root/io/buffer/runownership.C index 3ab002375caad..41f13fffbcaa7 100644 --- a/roottest/root/io/buffer/runownership.C +++ b/roottest/root/io/buffer/runownership.C @@ -3,7 +3,7 @@ #include "TString.h" #include -#ifndef __CINT__ +#ifndef __CLING__ class myexception { public: diff --git a/roottest/root/io/clones/RtObjLinkDef.h b/roottest/root/io/clones/RtObjLinkDef.h index d9abedbba248e..e6c26bd0fee88 100644 --- a/roottest/root/io/clones/RtObjLinkDef.h +++ b/roottest/root/io/clones/RtObjLinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/constmembers/LinkDef.h b/roottest/root/io/constmembers/LinkDef.h index 401a8ed7f2e74..e7f67dd1f836c 100644 --- a/roottest/root/io/constmembers/LinkDef.h +++ b/roottest/root/io/constmembers/LinkDef.h @@ -1,5 +1,5 @@ //LinkDef.h -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/constmembers/oldLinkDef.h b/roottest/root/io/constmembers/oldLinkDef.h index 3263b2b772650..e71bbb77baa3d 100644 --- a/roottest/root/io/constmembers/oldLinkDef.h +++ b/roottest/root/io/constmembers/oldLinkDef.h @@ -1,5 +1,5 @@ //LinkDef.h -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/customCollection/execWriteCustomCollection.cxx b/roottest/root/io/customCollection/execWriteCustomCollection.cxx index a3e9003614c70..cae36255e229f 100644 --- a/roottest/root/io/customCollection/execWriteCustomCollection.cxx +++ b/roottest/root/io/customCollection/execWriteCustomCollection.cxx @@ -61,7 +61,7 @@ class DataVectorConcrete { typedef DataVectorTmplt DataVector; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class DataVectorTmplt+; #pragma link C++ class vector+; #pragma link C++ class DataVector+; diff --git a/roottest/root/io/customStreamer/header.C b/roottest/root/io/customStreamer/header.C index bbafbebee7b4c..3fb713dda8e10 100644 --- a/roottest/root/io/customStreamer/header.C +++ b/roottest/root/io/customStreamer/header.C @@ -1,11 +1,11 @@ #include "header.h" #include "Rtypes.h" -#ifndef __CINT__ +#ifndef __CLING__ RootClassVersion(Hard2Stream,2); #endif -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class Hard2Stream-; #endif diff --git a/roottest/root/io/customStreamer/header.h b/roottest/root/io/customStreamer/header.h index 7ead7012b8841..6772f3ea72011 100644 --- a/roottest/root/io/customStreamer/header.h +++ b/roottest/root/io/customStreamer/header.h @@ -2,7 +2,7 @@ #include "TClass.h" class Hard2Stream { private: -#ifndef __CINT__ +#ifndef __CLING__ double val; #endif public: diff --git a/roottest/root/io/datamodelevolution/00/DataModelV1.h b/roottest/root/io/datamodelevolution/00/DataModelV1.h index abffbef2dbd04..72c46bcbd7e00 100644 --- a/roottest/root/io/datamodelevolution/00/DataModelV1.h +++ b/roottest/root/io/datamodelevolution/00/DataModelV1.h @@ -95,7 +95,7 @@ class Container { }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ options=version(8) class ACache+; #pragma link C++ options=version(2) class Container+; #pragma link C++ class Unversioned+; diff --git a/roottest/root/io/datamodelevolution/00/DataModelV2.h b/roottest/root/io/datamodelevolution/00/DataModelV2.h index b5d978a5280a0..a1dee82c75e16 100644 --- a/roottest/root/io/datamodelevolution/00/DataModelV2.h +++ b/roottest/root/io/datamodelevolution/00/DataModelV2.h @@ -49,7 +49,7 @@ class Container { ACache a; }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ options=version(9) class ACache+; #pragma read sourceClass="ACache" targetClass="ACache" source="int x; int y; char c" version="[8]" target="z" include="TMath.h,math.h" \ code="{ z = onfile.x*1000 + onfile.y*10; }" diff --git a/roottest/root/io/datamodelevolution/00/DataModelV3.h b/roottest/root/io/datamodelevolution/00/DataModelV3.h index b164e8a99c1d3..120a3a9661a78 100755 --- a/roottest/root/io/datamodelevolution/00/DataModelV3.h +++ b/roottest/root/io/datamodelevolution/00/DataModelV3.h @@ -46,7 +46,7 @@ class Container { }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ options=version(2) class Axis+; #pragma read sourceClass="ACache" targetClass="Axis" source="int x; int y;" version="[8]" target="z" \ code="{ z = onfile.x*1000 + onfile.y*10; }" diff --git a/roottest/root/io/datamodelevolution/01/DataModelV1LinkDef.h b/roottest/root/io/datamodelevolution/01/DataModelV1LinkDef.h index 5ba3e38a0fc91..11420331b57a8 100644 --- a/roottest/root/io/datamodelevolution/01/DataModelV1LinkDef.h +++ b/roottest/root/io/datamodelevolution/01/DataModelV1LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/datamodelevolution/01/DataModelV2LinkDef.h b/roottest/root/io/datamodelevolution/01/DataModelV2LinkDef.h index 6d7b54a0d44ed..d37fb6ccb1bb6 100644 --- a/roottest/root/io/datamodelevolution/01/DataModelV2LinkDef.h +++ b/roottest/root/io/datamodelevolution/01/DataModelV2LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/datamodelevolution/cms-00/DataModelV1LinkDef.h b/roottest/root/io/datamodelevolution/cms-00/DataModelV1LinkDef.h index 00ea20588b8ef..22540cddd71d8 100644 --- a/roottest/root/io/datamodelevolution/cms-00/DataModelV1LinkDef.h +++ b/roottest/root/io/datamodelevolution/cms-00/DataModelV1LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/datamodelevolution/cms-00/DataModelV2LinkDef.h b/roottest/root/io/datamodelevolution/cms-00/DataModelV2LinkDef.h index cfe6feb33cbdf..252f20308dc4a 100644 --- a/roottest/root/io/datamodelevolution/cms-00/DataModelV2LinkDef.h +++ b/roottest/root/io/datamodelevolution/cms-00/DataModelV2LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/datamodelevolution/cms-00/classloader.cxx b/roottest/root/io/datamodelevolution/cms-00/classloader.cxx index af36fd5f44e19..b0085180ae270 100644 --- a/roottest/root/io/datamodelevolution/cms-00/classloader.cxx +++ b/roottest/root/io/datamodelevolution/cms-00/classloader.cxx @@ -7,7 +7,7 @@ // Author : M.Frank //==================================================================== -#ifndef __CINT__ +#ifndef __CLING__ #include "Cintex/Cintex.h" #endif #include "Reflex/Reflex.h" @@ -21,7 +21,7 @@ #include "TDataMember.h" #include "TCollectionProxyFactory.h" -#ifndef __CINT__ +#ifndef __CLING__ #include "Api.h" #endif @@ -45,7 +45,7 @@ void patchClass(TClass* cl, TypeH& ) { #include #include -#ifndef __CINT__ +#ifndef __CLING__ namespace ROOT { namespace Cintex { bool IsSTLinternal(const std::string& nam); bool IsSTL(const std::string& nam); diff --git a/roottest/root/io/datamodelevolution/cms-00/execReadRename1.cxx b/roottest/root/io/datamodelevolution/cms-00/execReadRename1.cxx index d89535fc59080..e0d454302d129 100644 --- a/roottest/root/io/datamodelevolution/cms-00/execReadRename1.cxx +++ b/roottest/root/io/datamodelevolution/cms-00/execReadRename1.cxx @@ -16,7 +16,7 @@ class Flow { ClassDefNV(Flow,4); }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma read sourceClass="Flow" targetClass="Flow" version="[2]" source="float charged" target="sumCharged" code="{ sumCharged = onfile.charged; }" #pragma read sourceClass="Flow" targetClass="Flow" version="[2]" source="float neutral" target="sumNeutral" code="{ sumNeutral = onfile.neutral; }" #endif diff --git a/roottest/root/io/datamodelevolution/cms-00/execReadRename2.cxx b/roottest/root/io/datamodelevolution/cms-00/execReadRename2.cxx index 57464f944a0c5..9e31132c5a19f 100644 --- a/roottest/root/io/datamodelevolution/cms-00/execReadRename2.cxx +++ b/roottest/root/io/datamodelevolution/cms-00/execReadRename2.cxx @@ -18,7 +18,7 @@ class Flow { ClassDefNV(Flow,3); }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma read sourceClass="Flow" targetClass="Flow" version="[2]" source="float charged" target="sumCharged" code="{ sumCharged = onfile.charged; }" #endif diff --git a/roottest/root/io/datamodelevolution/common/Demangler.h b/roottest/root/io/datamodelevolution/common/Demangler.h index fc00108aee284..07e87885a5eeb 100644 --- a/roottest/root/io/datamodelevolution/common/Demangler.h +++ b/roottest/root/io/datamodelevolution/common/Demangler.h @@ -11,7 +11,7 @@ #include #include -#if !defined(_WIN32) && !defined(__CINT__) +#if !defined(_WIN32) && !defined(__CLING__) #include #endif diff --git a/roottest/root/io/datamodelevolution/misc/MyClass_linkdef.h b/roottest/root/io/datamodelevolution/misc/MyClass_linkdef.h index 1b25fbe030b0c..837882399e553 100644 --- a/roottest/root/io/datamodelevolution/misc/MyClass_linkdef.h +++ b/roottest/root/io/datamodelevolution/misc/MyClass_linkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; #pragma link off all functions; diff --git a/roottest/root/io/datamodelevolution/misc/OrderClass_v1.h b/roottest/root/io/datamodelevolution/misc/OrderClass_v1.h index 253ca289da444..5a029e5407600 100644 --- a/roottest/root/io/datamodelevolution/misc/OrderClass_v1.h +++ b/roottest/root/io/datamodelevolution/misc/OrderClass_v1.h @@ -23,7 +23,7 @@ class MyClass : public TObject ClassDefOverride(MyClass, 1) }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class MyClass+; #endif diff --git a/roottest/root/io/datamodelevolution/misc/OrderClass_v2.h b/roottest/root/io/datamodelevolution/misc/OrderClass_v2.h index 9e6d5a8f8fb97..3560bd68c305f 100644 --- a/roottest/root/io/datamodelevolution/misc/OrderClass_v2.h +++ b/roottest/root/io/datamodelevolution/misc/OrderClass_v2.h @@ -21,7 +21,7 @@ class MyClass : public TObject ClassDefOverride(MyClass, 2) }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class MyClass+; #pragma read sourceClass="MyClass" version="[1]" source="int ver" \ diff --git a/roottest/root/io/datamodelevolution/misc/arrayRulesLinkDef.h b/roottest/root/io/datamodelevolution/misc/arrayRulesLinkDef.h index 8f37ffe48abcf..1abd0203aef45 100644 --- a/roottest/root/io/datamodelevolution/misc/arrayRulesLinkDef.h +++ b/roottest/root/io/datamodelevolution/misc/arrayRulesLinkDef.h @@ -1,4 +1,4 @@ -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class MyClass+; #pragma read sourceClass="MyClass" targetClass="MyClass" source="" target="fCaches" code="{ newObj->fCaches[0] = 1; }" #pragma read sourceClass="MyClass" targetClass="MyClass" source="float fOldCaches[3]" target="fCaches" code="{ newObj->fCaches[0] = onfile.fOldCaches[0]; }" diff --git a/roottest/root/io/datamodelevolution/stl/libcond.patch b/roottest/root/io/datamodelevolution/stl/libcond.patch index 9cea66f1298b5..19a80158db089 100644 --- a/roottest/root/io/datamodelevolution/stl/libcond.patch +++ b/roottest/root/io/datamodelevolution/stl/libcond.patch @@ -11,7 +11,7 @@ #include "Riostream.h" #include #include "HepGeom__Transform3D.h" - #ifdef __MAKECINT__ + #ifdef __MAKECLING__ #pragma link C++ class pair+; + #pragma link C++ class Eigen+; + #pragma link C++ class pair+; diff --git a/roottest/root/io/datamodelevolution/stl/libcond/DetCondKeyTrans.h b/roottest/root/io/datamodelevolution/stl/libcond/DetCondKeyTrans.h index d60a050dbd238..929b9b373e653 100644 --- a/roottest/root/io/datamodelevolution/stl/libcond/DetCondKeyTrans.h +++ b/roottest/root/io/datamodelevolution/stl/libcond/DetCondKeyTrans.h @@ -13,7 +13,7 @@ class Eigen {}; #include "Riostream.h" #include #include "HepGeom__Transform3D.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class pair+; #pragma link C++ class Eigen+; #pragma link C++ class pair+; diff --git a/roottest/root/io/datamodelevolution/stl/libcond/libcondLinkDef.h b/roottest/root/io/datamodelevolution/stl/libcond/libcondLinkDef.h index ce80d0f4a3adc..069aa34b25945 100644 --- a/roottest/root/io/datamodelevolution/stl/libcond/libcondLinkDef.h +++ b/roottest/root/io/datamodelevolution/stl/libcond/libcondLinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class DetCondKeyTrans+; #pragma link C++ class HepGeom::Transform3D+; diff --git a/roottest/root/io/datamodelevolution/stl/readFile.C b/roottest/root/io/datamodelevolution/stl/readFile.C index a8ed4d374fbf6..a7e4163025618 100644 --- a/roottest/root/io/datamodelevolution/stl/readFile.C +++ b/roottest/root/io/datamodelevolution/stl/readFile.C @@ -37,7 +37,7 @@ public: typedef Track Values; #endif -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma read sourceClass="Values" targetClass="Track"; #pragma link C++ class vector+; #pragma read sourceClass="Holder" targetClass="listHolder"; diff --git a/roottest/root/io/datamodelevolution/stl/writeFile.C b/roottest/root/io/datamodelevolution/stl/writeFile.C index 2ba907260f8d3..0949fb4b0057b 100644 --- a/roottest/root/io/datamodelevolution/stl/writeFile.C +++ b/roottest/root/io/datamodelevolution/stl/writeFile.C @@ -71,7 +71,7 @@ void Print(const std::map &fMap) { } } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma read sourceClass="Holder" targetClass="listHolder"; #endif diff --git a/roottest/root/io/double32/other.C b/roottest/root/io/double32/other.C index 0a5f0dd1ede2c..a8e6e3130da22 100644 --- a/roottest/root/io/double32/other.C +++ b/roottest/root/io/double32/other.C @@ -1,6 +1,6 @@ #include "runtemplate32.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class MyVector+; #endif diff --git a/roottest/root/io/double32/runtemplate32.C b/roottest/root/io/double32/runtemplate32.C index 457834c8cf1c4..c9fba666db9ec 100644 --- a/roottest/root/io/double32/runtemplate32.C +++ b/roottest/root/io/double32/runtemplate32.C @@ -1,7 +1,7 @@ #include "runtemplate32.h" #include "longExample.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class WithDouble+; #pragma link C++ class MyVector+; #pragma link C++ class MyVector+; diff --git a/roottest/root/io/emulated/abstract.h b/roottest/root/io/emulated/abstract.h index cdabbad5d30aa..8b4168775c651 100644 --- a/roottest/root/io/emulated/abstract.h +++ b/roottest/root/io/emulated/abstract.h @@ -13,7 +13,7 @@ class Abstract { virtual void Action() = 0; }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class Abstract+; #endif diff --git a/roottest/root/io/emulated/classes.h b/roottest/root/io/emulated/classes.h index 87fca8559acdc..f22f4d8487500 100644 --- a/roottest/root/io/emulated/classes.h +++ b/roottest/root/io/emulated/classes.h @@ -143,7 +143,7 @@ class Holder { ClassDef(Holder,2); }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vector; #endif diff --git a/roottest/root/io/emulated/marker.h b/roottest/root/io/emulated/marker.h index cb33da54edf3d..609fe4016c909 100644 --- a/roottest/root/io/emulated/marker.h +++ b/roottest/root/io/emulated/marker.h @@ -25,7 +25,7 @@ class Marker ClassDef(Marker,2); }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class Marker+; #endif diff --git a/roottest/root/io/emulated/write.C b/roottest/root/io/emulated/write.C index 752aa085e5bec..12c8f959b86d3 100644 --- a/roottest/root/io/emulated/write.C +++ b/roottest/root/io/emulated/write.C @@ -1,4 +1,4 @@ -#if defined(__CLING__) && !defined(__MAKECINT__) && !defined(ClingWorkAroundMissingSmartInclude) +#if defined(__CLING__) && !defined(__MAKECLING__) && !defined(ClingWorkAroundMissingSmartInclude) #include "classes.h+" #else #include "classes.h" diff --git a/roottest/root/io/evolution/ClassConvNew.cxx b/roottest/root/io/evolution/ClassConvNew.cxx index e26dd8f2a909b..c5f77d8a0d467 100644 --- a/roottest/root/io/evolution/ClassConvNew.cxx +++ b/roottest/root/io/evolution/ClassConvNew.cxx @@ -1,6 +1,6 @@ #define VERSION 2 #include "ClassConv.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ namespace MyLib; #pragma link C++ class MyLib::Inside+; #pragma link C++ class TopLevel+; diff --git a/roottest/root/io/evolution/ClassConvOld.cxx b/roottest/root/io/evolution/ClassConvOld.cxx index d12298c346d18..b84e8981cfc73 100644 --- a/roottest/root/io/evolution/ClassConvOld.cxx +++ b/roottest/root/io/evolution/ClassConvOld.cxx @@ -1,6 +1,6 @@ #define VERSION 1 #include "ClassConv.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class Inside+; #pragma link C++ class TopLevel+; #pragma link C++ class Typedefed+; diff --git a/roottest/root/io/evolution/ClassConvOther.cxx b/roottest/root/io/evolution/ClassConvOther.cxx index b4678af293175..a8713113fa321 100644 --- a/roottest/root/io/evolution/ClassConvOther.cxx +++ b/roottest/root/io/evolution/ClassConvOther.cxx @@ -1,6 +1,6 @@ #define VERSION 3 #include "ClassConv.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ namespace OtherLib; #pragma link C++ class OtherLib::Inside+; #pragma link C++ class TopLevel+; diff --git a/roottest/root/io/evolution/MyClass.C b/roottest/root/io/evolution/MyClass.C index e49b36e62b631..33792981faf08 100644 --- a/roottest/root/io/evolution/MyClass.C +++ b/roottest/root/io/evolution/MyClass.C @@ -1,5 +1,5 @@ #define VERSION 2 #include "MyClass.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class MyClass+; #endif diff --git a/roottest/root/io/evolution/array/MyClass.cxx b/roottest/root/io/evolution/array/MyClass.cxx index 5d0491c5707e2..8f004ea4c5163 100644 --- a/roottest/root/io/evolution/array/MyClass.cxx +++ b/roottest/root/io/evolution/array/MyClass.cxx @@ -85,6 +85,6 @@ void MyClass::SetArray(Int_t* array){ } #endif -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class MyClass+; #endif diff --git a/roottest/root/io/evolution/array/MyClassOld.cxx b/roottest/root/io/evolution/array/MyClassOld.cxx index 5c94c01a68f71..44edf71202da0 100644 --- a/roottest/root/io/evolution/array/MyClassOld.cxx +++ b/roottest/root/io/evolution/array/MyClassOld.cxx @@ -1,7 +1,7 @@ #define MYCLASS 2 #include "MyClass.cxx" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ // to be included only if compiling the new version of the class #pragma read sourceClass="MyClass" targetClass="MyClass" \ source="Int_t farray[5]" version="[1]" target="fentries, farrayPointer" targetType="Int_t*, Int_t" \ diff --git a/roottest/root/io/evolution/numerical_conversions/float16.h b/roottest/root/io/evolution/numerical_conversions/float16.h index 1e70efd49f930..216919d6ccfab 100644 --- a/roottest/root/io/evolution/numerical_conversions/float16.h +++ b/roottest/root/io/evolution/numerical_conversions/float16.h @@ -230,7 +230,7 @@ bool readfile(const char *filename, Bool_t checkValue = kTRUE) } } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class myclass+; #pragma link C++ function readfile; #pragma link C++ function write; diff --git a/roottest/root/io/evolution/pragma_read/v1/AliAODForwardMultLinkDef.h b/roottest/root/io/evolution/pragma_read/v1/AliAODForwardMultLinkDef.h index bd28a132ca173..c85038558dcd0 100644 --- a/roottest/root/io/evolution/pragma_read/v1/AliAODForwardMultLinkDef.h +++ b/roottest/root/io/evolution/pragma_read/v1/AliAODForwardMultLinkDef.h @@ -1,4 +1,4 @@ -#if !defined( __MAKECINT__ ) && !defined(__CLING__) +#if !defined( __MAKECLING__ ) && !defined(__CLING__) # error Not for compilation #else diff --git a/roottest/root/io/evolution/pragma_read/v2/AliAODForwardMultLinkDef.h b/roottest/root/io/evolution/pragma_read/v2/AliAODForwardMultLinkDef.h index e3595d5640fba..51df5c4548d0a 100644 --- a/roottest/root/io/evolution/pragma_read/v2/AliAODForwardMultLinkDef.h +++ b/roottest/root/io/evolution/pragma_read/v2/AliAODForwardMultLinkDef.h @@ -1,4 +1,4 @@ -#if !defined( __MAKECINT__ ) && !defined(__CLING__) +#if !defined( __MAKECLING__ ) && !defined(__CLING__) # error Not for compilation #else diff --git a/roottest/root/io/evolution/stl_conversions/maptovector.h b/roottest/root/io/evolution/stl_conversions/maptovector.h index ad41bffa0fa6a..42ff47c609fac 100644 --- a/roottest/root/io/evolution/stl_conversions/maptovector.h +++ b/roottest/root/io/evolution/stl_conversions/maptovector.h @@ -120,7 +120,7 @@ bool readfile(const char *filename, Bool_t checkValue = kTRUE) } } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class myclass+; // #pragma link C++ class pair+; #pragma link C++ function readfile; diff --git a/roottest/root/io/evolution/typedefWrite.C b/roottest/root/io/evolution/typedefWrite.C index 66e4b7059ffb1..4b470b1c379b5 100644 --- a/roottest/root/io/evolution/typedefWrite.C +++ b/roottest/root/io/evolution/typedefWrite.C @@ -9,7 +9,7 @@ typedef list DecayListType; class UHTTimeFitter : public TObject{ public: -#if defined(__CINT__) && 0 +#if defined(__CLING__) && 0 list decayList; #else DecayListType decayList; diff --git a/roottest/root/io/evolution/versions/myclass.h b/roottest/root/io/evolution/versions/myclass.h index 341a04bccaf57..5a8dbced4ddd2 100644 --- a/roottest/root/io/evolution/versions/myclass.h +++ b/roottest/root/io/evolution/versions/myclass.h @@ -23,7 +23,7 @@ class MyClass { #include "TFile.h" -#ifndef __CINT__ +#ifndef __CLING__ #if VERSION==3 RootClassVersion(MyClass,3) #endif diff --git a/roottest/root/io/evolution/versions/veclong64.h b/roottest/root/io/evolution/versions/veclong64.h index 4ea99e118b096..b6c090adba780 100644 --- a/roottest/root/io/evolution/versions/veclong64.h +++ b/roottest/root/io/evolution/versions/veclong64.h @@ -58,7 +58,7 @@ int write_what(const char * /* version */) { return writefile(); } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class MyClass+; #pragma link C++ function writefile; #pragma link C++ function readfile; diff --git a/roottest/root/io/heritstl/classes.C b/roottest/root/io/heritstl/classes.C index c6dc9616712fb..3d9c01015335c 100644 --- a/roottest/root/io/heritstl/classes.C +++ b/roottest/root/io/heritstl/classes.C @@ -64,7 +64,7 @@ void testing() { f->Close(); } -#ifndef __CINT__ +#ifndef __CLING__ ClassImp(PlexSTL) ClassImp(PlexItem) ClassImp(Object) diff --git a/roottest/root/io/heritstl/minostest_linkdef.h b/roottest/root/io/heritstl/minostest_linkdef.h index 5807374a3eb6b..8b098bb33303b 100644 --- a/roottest/root/io/heritstl/minostest_linkdef.h +++ b/roottest/root/io/heritstl/minostest_linkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class vector+; #pragma link C++ class SEIdAltL+; diff --git a/roottest/root/io/namespacedict/Header.h b/roottest/root/io/namespacedict/Header.h index ad9bde5a307ad..391dc517cd048 100644 --- a/roottest/root/io/namespacedict/Header.h +++ b/roottest/root/io/namespacedict/Header.h @@ -19,7 +19,7 @@ namespace A { #endif }; -#ifndef __MAKECINT__ +#ifndef __MAKECLING__ ClassDefT2(Class2,T) #endif } diff --git a/roottest/root/io/namespacedict/Linkdef.h b/roottest/root/io/namespacedict/Linkdef.h index 230ac92a3ac9f..429deee87735c 100644 --- a/roottest/root/io/namespacedict/Linkdef.h +++ b/roottest/root/io/namespacedict/Linkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/namespacedict/TeleLinkdef.h b/roottest/root/io/namespacedict/TeleLinkdef.h index cc9d5b77f2150..e4ec7cd2521d4 100644 --- a/roottest/root/io/namespacedict/TeleLinkdef.h +++ b/roottest/root/io/namespacedict/TeleLinkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newClassDef/current/InheritMultilinkdef.h b/roottest/root/io/newClassDef/current/InheritMultilinkdef.h index 58fd1baf0ccb7..ce6f24b2ebd68 100644 --- a/roottest/root/io/newClassDef/current/InheritMultilinkdef.h +++ b/roottest/root/io/newClassDef/current/InheritMultilinkdef.h @@ -1,6 +1,6 @@ // File Automatically generated by the ROOT Script Compiler -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newClassDef/current/namespace.C b/roottest/root/io/newClassDef/current/namespace.C index 29b3bbc4e6c2d..1e3cd2531a4d6 100644 --- a/roottest/root/io/newClassDef/current/namespace.C +++ b/roottest/root/io/newClassDef/current/namespace.C @@ -1,7 +1,7 @@ #include "namespace.h" #include "TBufferFile.h" -#ifndef __CINT__ +#ifndef __CLING__ //namespace MySpace { ClassImp(MySpace::A) ClassImp(MySpace::MyClass) diff --git a/roottest/root/io/newClassDef/current/namespacelinkdef.h b/roottest/root/io/newClassDef/current/namespacelinkdef.h index 78a59b3ba9b1d..1b8463c554aa2 100644 --- a/roottest/root/io/newClassDef/current/namespacelinkdef.h +++ b/roottest/root/io/newClassDef/current/namespacelinkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newClassDef/current/templatelinkdef.h b/roottest/root/io/newClassDef/current/templatelinkdef.h index 694569b84192a..aae4c3208db87 100644 --- a/roottest/root/io/newClassDef/current/templatelinkdef.h +++ b/roottest/root/io/newClassDef/current/templatelinkdef.h @@ -1,6 +1,6 @@ // File Automatically generated by the ROOT Script Compiler -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newClassDef/new.noclassdef/namespace.C b/roottest/root/io/newClassDef/new.noclassdef/namespace.C index 3f0c520dd8a77..56af5b55461e7 100644 --- a/roottest/root/io/newClassDef/new.noclassdef/namespace.C +++ b/roottest/root/io/newClassDef/new.noclassdef/namespace.C @@ -2,7 +2,7 @@ #include "TBufferFile.h" -#ifndef __CINT__ +#ifndef __CLING__ namespace MySpace { ClassImp(MySpace::A) ClassImp(MyClass) diff --git a/roottest/root/io/newClassDef/new.noclassdef/namespacelinkdef.h b/roottest/root/io/newClassDef/new.noclassdef/namespacelinkdef.h index 78a59b3ba9b1d..1b8463c554aa2 100644 --- a/roottest/root/io/newClassDef/new.noclassdef/namespacelinkdef.h +++ b/roottest/root/io/newClassDef/new.noclassdef/namespacelinkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newClassDef/new.noclassdef/nstemplatelinkdef.h b/roottest/root/io/newClassDef/new.noclassdef/nstemplatelinkdef.h index eb7c31463503f..91a59da597b7d 100644 --- a/roottest/root/io/newClassDef/new.noclassdef/nstemplatelinkdef.h +++ b/roottest/root/io/newClassDef/new.noclassdef/nstemplatelinkdef.h @@ -1,6 +1,6 @@ // File Automatically generated by the ROOT Script Compiler -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newClassDef/new.noclassdef/templatelinkdef.h b/roottest/root/io/newClassDef/new.noclassdef/templatelinkdef.h index 00ccba207f187..c676497718844 100644 --- a/roottest/root/io/newClassDef/new.noclassdef/templatelinkdef.h +++ b/roottest/root/io/newClassDef/new.noclassdef/templatelinkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newClassDef/new/InheritMultilinkdef.h b/roottest/root/io/newClassDef/new/InheritMultilinkdef.h index 5fa827c7fa06b..094ff066f7d1e 100644 --- a/roottest/root/io/newClassDef/new/InheritMultilinkdef.h +++ b/roottest/root/io/newClassDef/new/InheritMultilinkdef.h @@ -1,6 +1,6 @@ // File Automatically generated by the ROOT Script Compiler -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newClassDef/new/namespace.C b/roottest/root/io/newClassDef/new/namespace.C index 72519733e6b42..d819edbc7e9e6 100644 --- a/roottest/root/io/newClassDef/new/namespace.C +++ b/roottest/root/io/newClassDef/new/namespace.C @@ -1,7 +1,7 @@ #include "namespace.h" #include "TBufferFile.h" -#ifndef __CINT__ +#ifndef __CLING__ //namespace MySpace { ClassImp(MySpace::A) ClassImp(MySpace::MyClass) diff --git a/roottest/root/io/newClassDef/new/namespacelinkdef.h b/roottest/root/io/newClassDef/new/namespacelinkdef.h index 78a59b3ba9b1d..1b8463c554aa2 100644 --- a/roottest/root/io/newClassDef/new/namespacelinkdef.h +++ b/roottest/root/io/newClassDef/new/namespacelinkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newClassDef/new/nstemplatelinkdef.h b/roottest/root/io/newClassDef/new/nstemplatelinkdef.h index eb7c31463503f..91a59da597b7d 100644 --- a/roottest/root/io/newClassDef/new/nstemplatelinkdef.h +++ b/roottest/root/io/newClassDef/new/nstemplatelinkdef.h @@ -1,6 +1,6 @@ // File Automatically generated by the ROOT Script Compiler -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newClassDef/new/templatelinkdef.h b/roottest/root/io/newClassDef/new/templatelinkdef.h index 72ca2bfcc0c4d..bd2d4bdf7e651 100644 --- a/roottest/root/io/newClassDef/new/templatelinkdef.h +++ b/roottest/root/io/newClassDef/new/templatelinkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newClassDef/noclassdef/LinkDef.h b/roottest/root/io/newClassDef/noclassdef/LinkDef.h index c647c94dfdc05..331658c9eba79 100644 --- a/roottest/root/io/newClassDef/noclassdef/LinkDef.h +++ b/roottest/root/io/newClassDef/noclassdef/LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/newstl/MemberWise.h b/roottest/root/io/newstl/MemberWise.h index 813dcc594a0d6..527a21b6b709f 100644 --- a/roottest/root/io/newstl/MemberWise.h +++ b/roottest/root/io/newstl/MemberWise.h @@ -150,7 +150,7 @@ class Holder { std::vector fAlwaysEmpty; }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class Member-; #pragma link C++ class Content+; #pragma link C++ class Holder+; diff --git a/roottest/root/io/newstl/TestHelpers.C b/roottest/root/io/newstl/TestHelpers.C index 398b7a6b7d37e..1aeadedbe2c26 100644 --- a/roottest/root/io/newstl/TestHelpers.C +++ b/roottest/root/io/newstl/TestHelpers.C @@ -68,7 +68,7 @@ void fillListOfDir(TList &l) { } } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ function DebugTest; //#pragma link C++ class pair+; //#pragma link C++ class pair+;' diff --git a/roottest/root/io/newstl/contHolder.h b/roottest/root/io/newstl/contHolder.h index 9a92785f59e78..c5abbb8ce1026 100644 --- a/roottest/root/io/newstl/contHolder.h +++ b/roottest/root/io/newstl/contHolder.h @@ -1,4 +1,4 @@ -#if !defined(__CINT__) || defined(__MAKECINT__) +#if !defined(__CLING__) || defined(__MAKECLING__) #include "TClass.h" #include "TError.h" #include "TObject.h" diff --git a/roottest/root/io/newstl/dequeHolder.C b/roottest/root/io/newstl/dequeHolder.C index 33071826a9458..00014a51e79cf 100644 --- a/roottest/root/io/newstl/dequeHolder.C +++ b/roottest/root/io/newstl/dequeHolder.C @@ -1,5 +1,5 @@ #include "dequeHolder.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class dequeHolder+; #endif diff --git a/roottest/root/io/newstl/execStlPtrLeak.cxx b/roottest/root/io/newstl/execStlPtrLeak.cxx index 8a723cc6a5ed8..2ea282e5ea7a5 100644 --- a/roottest/root/io/newstl/execStlPtrLeak.cxx +++ b/roottest/root/io/newstl/execStlPtrLeak.cxx @@ -21,7 +21,7 @@ class MyClass { Int_t MyClass::fCounter = 0; Int_t MyClass::fTotal = 0; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vector; #pragma link C++ class vector > ; #pragma link C++ class vector *> ; diff --git a/roottest/root/io/newstl/gmapHolder.h b/roottest/root/io/newstl/gmapHolder.h index 1f22454b43758..d343cfa7a0a93 100644 --- a/roottest/root/io/newstl/gmapHolder.h +++ b/roottest/root/io/newstl/gmapHolder.h @@ -1,4 +1,4 @@ -#if !defined(__CINT__) || defined(__MAKECINT__) +#if !defined(__CLING__) || defined(__MAKECLING__) #include "TClass.h" #include "TError.h" #include "TObject.h" diff --git a/roottest/root/io/newstl/gsetHolder.h b/roottest/root/io/newstl/gsetHolder.h index 5b1cff806dd84..3a25c65e7ec75 100644 --- a/roottest/root/io/newstl/gsetHolder.h +++ b/roottest/root/io/newstl/gsetHolder.h @@ -1,4 +1,4 @@ -#if !defined(__CINT__) || defined(__MAKECINT__) +#if !defined(__CLING__) || defined(__MAKECLING__) #include "TClass.h" #include "TError.h" #include "TObject.h" diff --git a/roottest/root/io/newstl/listHolder.C b/roottest/root/io/newstl/listHolder.C index 149a16e72c712..4d98627c09b02 100644 --- a/roottest/root/io/newstl/listHolder.C +++ b/roottest/root/io/newstl/listHolder.C @@ -1,5 +1,5 @@ #include "listHolder.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class listHolder+; #endif diff --git a/roottest/root/io/newstl/mapHolder.C b/roottest/root/io/newstl/mapHolder.C index 6b07c7b1a86f9..e5194d31dfbb9 100644 --- a/roottest/root/io/newstl/mapHolder.C +++ b/roottest/root/io/newstl/mapHolder.C @@ -1,5 +1,5 @@ #include "mapHolder.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class mapHolder+; #endif diff --git a/roottest/root/io/newstl/multimapHolder.C b/roottest/root/io/newstl/multimapHolder.C index c2241b503daea..4a0956230fbeb 100644 --- a/roottest/root/io/newstl/multimapHolder.C +++ b/roottest/root/io/newstl/multimapHolder.C @@ -1,5 +1,5 @@ #include "multimapHolder.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class multimapHolder+; #endif diff --git a/roottest/root/io/newstl/multisetHolder.C b/roottest/root/io/newstl/multisetHolder.C index 5591a07c76456..be9f5d62b546c 100644 --- a/roottest/root/io/newstl/multisetHolder.C +++ b/roottest/root/io/newstl/multisetHolder.C @@ -1,5 +1,5 @@ #include "multisetHolder.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class multisetHolder+; #endif diff --git a/roottest/root/io/newstl/runbase.C b/roottest/root/io/newstl/runbase.C index d136c5b579357..3239588079514 100755 --- a/roottest/root/io/newstl/runbase.C +++ b/roottest/root/io/newstl/runbase.C @@ -60,7 +60,7 @@ private: ClassImp(foo); -#ifdef __CINT__ +#ifdef __CLING__ // pragma link C++ class std::map; #endif diff --git a/roottest/root/io/newstl/rvecHolder.C b/roottest/root/io/newstl/rvecHolder.C index abbe3e104060d..f8d12c4aa5bff 100644 --- a/roottest/root/io/newstl/rvecHolder.C +++ b/roottest/root/io/newstl/rvecHolder.C @@ -1,6 +1,6 @@ #include "rvecHolder.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class rvecHolder+; #endif diff --git a/roottest/root/io/newstl/sample_bx_classes.C b/roottest/root/io/newstl/sample_bx_classes.C index 848adbfd00f3c..898e9c2a87f3e 100755 --- a/roottest/root/io/newstl/sample_bx_classes.C +++ b/roottest/root/io/newstl/sample_bx_classes.C @@ -21,7 +21,7 @@ class BxLabenCluster: public TObject { }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class std::vector+; #pragma link C++ class std::vector; #endif diff --git a/roottest/root/io/newstl/setHolder.C b/roottest/root/io/newstl/setHolder.C index 792b993f569c5..6101bbe6e2b0f 100644 --- a/roottest/root/io/newstl/setHolder.C +++ b/roottest/root/io/newstl/setHolder.C @@ -1,5 +1,5 @@ #include "setHolder.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class setHolder+; #endif diff --git a/roottest/root/io/newstl/vectorHolder.C b/roottest/root/io/newstl/vectorHolder.C index 1914e84d8cc4d..e217aa0afc4d8 100644 --- a/roottest/root/io/newstl/vectorHolder.C +++ b/roottest/root/io/newstl/vectorHolder.C @@ -1,6 +1,6 @@ #include "vectorHolder.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vectorHolder+; #endif diff --git a/roottest/root/io/newstl/withstd.cxx b/roottest/root/io/newstl/withstd.cxx index 765e9e506a118..99fa057f3370d 100644 --- a/roottest/root/io/newstl/withstd.cxx +++ b/roottest/root/io/newstl/withstd.cxx @@ -5,7 +5,7 @@ template class something {}; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class something; #endif diff --git a/roottest/root/io/perf/simple/listMWclass.C b/roottest/root/io/perf/simple/listMWclass.C index 7fbe489cf3df6..14feae4a45378 100644 --- a/roottest/root/io/perf/simple/listMWclass.C +++ b/roottest/root/io/perf/simple/listMWclass.C @@ -43,7 +43,7 @@ public: #include "TBufferFile.h" #include "TClass.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class list+; #endif diff --git a/roottest/root/io/perf/simple/listMWtclass.C b/roottest/root/io/perf/simple/listMWtclass.C index 80ed4cc8e5c4b..2c7d539062e3d 100644 --- a/roottest/root/io/perf/simple/listMWtclass.C +++ b/roottest/root/io/perf/simple/listMWtclass.C @@ -43,7 +43,7 @@ public: #include "TBufferFile.h" #include "TClass.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class list+; #endif diff --git a/roottest/root/io/perf/simple/listOWclass.C b/roottest/root/io/perf/simple/listOWclass.C index dbca416f60771..9a1324f4061ea 100644 --- a/roottest/root/io/perf/simple/listOWclass.C +++ b/roottest/root/io/perf/simple/listOWclass.C @@ -43,7 +43,7 @@ public: #include "TBufferFile.h" #include "TClass.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class list+; #endif diff --git a/roottest/root/io/perf/simple/listOWtclass.C b/roottest/root/io/perf/simple/listOWtclass.C index 956a4780c0d52..fdaa0453384d0 100644 --- a/roottest/root/io/perf/simple/listOWtclass.C +++ b/roottest/root/io/perf/simple/listOWtclass.C @@ -43,7 +43,7 @@ public: #include "TBufferFile.h" #include "TClass.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class list+; #endif diff --git a/roottest/root/io/perf/simple/setMWclass.C b/roottest/root/io/perf/simple/setMWclass.C index 8e6bdf1ac3e86..f062d4eb78373 100644 --- a/roottest/root/io/perf/simple/setMWclass.C +++ b/roottest/root/io/perf/simple/setMWclass.C @@ -43,7 +43,7 @@ public: #include "TBufferFile.h" #include "TClass.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class set+; #endif diff --git a/roottest/root/io/perf/simple/vectorMWclass.C b/roottest/root/io/perf/simple/vectorMWclass.C index a9976e923158c..b6ae2d55e37e4 100644 --- a/roottest/root/io/perf/simple/vectorMWclass.C +++ b/roottest/root/io/perf/simple/vectorMWclass.C @@ -40,7 +40,7 @@ public: #include "TBufferFile.h" #include "TClass.h" #include -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vector+; #endif diff --git a/roottest/root/io/perf/simple/vectorMWtclass.C b/roottest/root/io/perf/simple/vectorMWtclass.C index 5283b9827e819..c3b37c7fbff27 100644 --- a/roottest/root/io/perf/simple/vectorMWtclass.C +++ b/roottest/root/io/perf/simple/vectorMWtclass.C @@ -40,7 +40,7 @@ public: #include "TBufferFile.h" #include "TClass.h" #include -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vector+; #endif diff --git a/roottest/root/io/perf/simple/vectorMWthit.C b/roottest/root/io/perf/simple/vectorMWthit.C index e2bde9264ecf2..b650068a9f61c 100644 --- a/roottest/root/io/perf/simple/vectorMWthit.C +++ b/roottest/root/io/perf/simple/vectorMWthit.C @@ -98,7 +98,7 @@ public: #include "TBufferFile.h" #include "TClass.h" #include -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vector+; #endif diff --git a/roottest/root/io/perf/simple/vectorOWclass.C b/roottest/root/io/perf/simple/vectorOWclass.C index ff7ff3cd452fb..d30c6f38a89f3 100644 --- a/roottest/root/io/perf/simple/vectorOWclass.C +++ b/roottest/root/io/perf/simple/vectorOWclass.C @@ -40,7 +40,7 @@ public: #include "TBufferFile.h" #include "TClass.h" #include -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vector+; #endif diff --git a/roottest/root/io/perf/simple/vectorOWtclass.C b/roottest/root/io/perf/simple/vectorOWtclass.C index 12324d27feed0..3d99e0a4cb2fe 100644 --- a/roottest/root/io/perf/simple/vectorOWtclass.C +++ b/roottest/root/io/perf/simple/vectorOWtclass.C @@ -40,7 +40,7 @@ public: #include "TBufferFile.h" #include "TClass.h" #include -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vector+; #endif diff --git a/roottest/root/io/perf/simple/vectorint.C b/roottest/root/io/perf/simple/vectorint.C index d7c20d9e670e8..b57b6fb8b4a8a 100644 --- a/roottest/root/io/perf/simple/vectorint.C +++ b/roottest/root/io/perf/simple/vectorint.C @@ -8,7 +8,7 @@ #include "TBufferFile.h" #include "TClass.h" #include -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ // #pragma link C++ class vector+; #endif diff --git a/roottest/root/io/perf/simple/vectorintInside.C b/roottest/root/io/perf/simple/vectorintInside.C index 0218ed91ecda8..95a50d82dea61 100644 --- a/roottest/root/io/perf/simple/vectorintInside.C +++ b/roottest/root/io/perf/simple/vectorintInside.C @@ -15,7 +15,7 @@ public: #include "TBufferFile.h" #include "TClass.h" #include -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ // #pragma link C++ class vector+; #endif diff --git a/roottest/root/io/perf/simple/vectorptrtclass.C b/roottest/root/io/perf/simple/vectorptrtclass.C index 2c10fa8f4079b..87de2d3b472ca 100644 --- a/roottest/root/io/perf/simple/vectorptrtclass.C +++ b/roottest/root/io/perf/simple/vectorptrtclass.C @@ -35,7 +35,7 @@ public: #include #include "TVirtualCollectionProxy.h" #include "TStreamerInfo.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vector+; #endif diff --git a/roottest/root/io/perf/simple/vectorsptrtclass.C b/roottest/root/io/perf/simple/vectorsptrtclass.C index 0d0d6445b721a..81eb9be34310a 100644 --- a/roottest/root/io/perf/simple/vectorsptrtclass.C +++ b/roottest/root/io/perf/simple/vectorsptrtclass.C @@ -38,7 +38,7 @@ public: #include "TStreamerInfoActions.h" #include "TVirtualCollectionIterators.h" #include "Riostream.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vector+; #endif diff --git a/roottest/root/io/perf/simple/vectortclass.C b/roottest/root/io/perf/simple/vectortclass.C index 15b36d4d8aa8a..973462860afc2 100644 --- a/roottest/root/io/perf/simple/vectortclass.C +++ b/roottest/root/io/perf/simple/vectortclass.C @@ -34,7 +34,7 @@ public: #include "TBufferFile.h" #include "TClass.h" #include -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class vector+; #endif diff --git a/roottest/root/io/prefetching/atlasFlushed/INav4MomAssocs_p2.h b/roottest/root/io/prefetching/atlasFlushed/INav4MomAssocs_p2.h index e10fca77e756c..dcbf0ee0963f4 100644 --- a/roottest/root/io/prefetching/atlasFlushed/INav4MomAssocs_p2.h +++ b/roottest/root/io/prefetching/atlasFlushed/INav4MomAssocs_p2.h @@ -33,7 +33,7 @@ class INav4MomAssocs_p2 { virtual ~INav4MomAssocs_p2(); }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class pair,vector > >+; #endif #endif diff --git a/roottest/root/io/prefetching/atlasFlushed/TrigInDetTrackTruth_p1.h b/roottest/root/io/prefetching/atlasFlushed/TrigInDetTrackTruth_p1.h index 14670d72a3c82..747586fceeb01 100644 --- a/roottest/root/io/prefetching/atlasFlushed/TrigInDetTrackTruth_p1.h +++ b/roottest/root/io/prefetching/atlasFlushed/TrigInDetTrackTruth_p1.h @@ -33,7 +33,7 @@ class TrigInDetTrackTruth_p1 { virtual ~TrigInDetTrackTruth_p1(); }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class pair+; #endif #endif diff --git a/roottest/root/io/prefetching/atlasFlushed/atlasFlushedLinkDef.h b/roottest/root/io/prefetching/atlasFlushed/atlasFlushedLinkDef.h index 2fccc70b3d08c..3774e14fb8d4f 100644 --- a/roottest/root/io/prefetching/atlasFlushed/atlasFlushedLinkDef.h +++ b/roottest/root/io/prefetching/atlasFlushed/atlasFlushedLinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class TPCnvTokenList_p1+; #pragma link C++ class Trk::TrackCollection_p1+; diff --git a/roottest/root/io/references/MasterLinkDef.hh b/roottest/root/io/references/MasterLinkDef.hh index 39a88523e8448..6e1feb20b85f5 100644 --- a/roottest/root/io/references/MasterLinkDef.hh +++ b/roottest/root/io/references/MasterLinkDef.hh @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/rootcint/cltestLinkdef.h b/roottest/root/io/rootcint/cltestLinkdef.h index 944f880af60dd..76b22b64a66ca 100644 --- a/roottest/root/io/rootcint/cltestLinkdef.h +++ b/roottest/root/io/rootcint/cltestLinkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/rootcint/constMember.h b/roottest/root/io/rootcint/constMember.h index d5e63a58fe2c3..98e12413fd866 100644 --- a/roottest/root/io/rootcint/constMember.h +++ b/roottest/root/io/rootcint/constMember.h @@ -36,7 +36,7 @@ ClassDef(A,1) // and b.h:- -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class A+; #pragma link C++ class B+; #endif diff --git a/roottest/root/io/rootcint/doubleconst/LinkDef.h b/roottest/root/io/rootcint/doubleconst/LinkDef.h index 08a0aea5818ac..9cdeed79c383e 100644 --- a/roottest/root/io/rootcint/doubleconst/LinkDef.h +++ b/roottest/root/io/rootcint/doubleconst/LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/rootcint/sigbug/LinkDef.h b/roottest/root/io/rootcint/sigbug/LinkDef.h index 84d87166db9b7..2ac40c0e1ad71 100644 --- a/roottest/root/io/rootcint/sigbug/LinkDef.h +++ b/roottest/root/io/rootcint/sigbug/LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/rootcint/stl/map1.C b/roottest/root/io/rootcint/stl/map1.C index a61bf27a69e08..b42b1bbac2d22 100644 --- a/roottest/root/io/rootcint/stl/map1.C +++ b/roottest/root/io/rootcint/stl/map1.C @@ -10,7 +10,7 @@ public: map_type map_; }; -#ifdef __CINT__ +#ifdef __CLING__ //#pragma link C++ class StoragePolicy+; #pragma link C++ class StoragePolicy+; diff --git a/roottest/root/io/rootcint/stl/map2.C b/roottest/root/io/rootcint/stl/map2.C index 30c1fccd4d90e..c8e535c7860f2 100644 --- a/roottest/root/io/rootcint/stl/map2.C +++ b/roottest/root/io/rootcint/stl/map2.C @@ -27,7 +27,7 @@ class Track : public STLMapStoragePolicy ClassDef(Track,1); }; -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class Track+; #pragma link C++ class STLMapStoragePolicy+; diff --git a/roottest/root/io/rootcint/stl/test0LinkDef.h b/roottest/root/io/rootcint/stl/test0LinkDef.h index 6b1848e1d2808..1cd007c5d8b8b 100644 --- a/roottest/root/io/rootcint/stl/test0LinkDef.h +++ b/roottest/root/io/rootcint/stl/test0LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/rootcint/stl/test1LinkDef.h b/roottest/root/io/rootcint/stl/test1LinkDef.h index cd1a2bbee1ad1..72418131d0687 100644 --- a/roottest/root/io/rootcint/stl/test1LinkDef.h +++ b/roottest/root/io/rootcint/stl/test1LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/rootcint/stl/test2LinkDef.h b/roottest/root/io/rootcint/stl/test2LinkDef.h index a27bfa34f6636..9f3ea72a592fb 100644 --- a/roottest/root/io/rootcint/stl/test2LinkDef.h +++ b/roottest/root/io/rootcint/stl/test2LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/rootcint/templateKeyword.C b/roottest/root/io/rootcint/templateKeyword.C index 0f6dd508debcf..a68cb548024aa 100644 --- a/roottest/root/io/rootcint/templateKeyword.C +++ b/roottest/root/io/rootcint/templateKeyword.C @@ -65,7 +65,7 @@ public: -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/rootcint/testLinkDef.h b/roottest/root/io/rootcint/testLinkDef.h index 6c7171f38b389..c386fbf742669 100644 --- a/roottest/root/io/rootcint/testLinkDef.h +++ b/roottest/root/io/rootcint/testLinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/rootcint/weirdpair_LinkDef.h b/roottest/root/io/rootcint/weirdpair_LinkDef.h index ae759dbc3877e..02cd3fa266e6c 100644 --- a/roottest/root/io/rootcint/weirdpair_LinkDef.h +++ b/roottest/root/io/rootcint/weirdpair_LinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/io/set/set_problem.cxx b/roottest/root/io/set/set_problem.cxx index 342195e7f0fa5..80db678593d3b 100644 --- a/roottest/root/io/set/set_problem.cxx +++ b/roottest/root/io/set/set_problem.cxx @@ -25,7 +25,7 @@ int run() { return 0; } -#ifndef __CINT__ +#ifndef __CLING__ int main() { return run(); diff --git a/roottest/root/io/set/set_problem.h b/roottest/root/io/set/set_problem.h index 344ef292ae289..79c2f7e13bca7 100644 --- a/roottest/root/io/set/set_problem.h +++ b/roottest/root/io/set/set_problem.h @@ -32,7 +32,7 @@ class SetProblem : public TNamed }; -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ typedef set_t; #pragma link C++ class SetProblem+; #endif diff --git a/roottest/root/io/tmpifile/JetEventLinkDef.h b/roottest/root/io/tmpifile/JetEventLinkDef.h index 8ed260106f8ef..ee3e27c28db83 100644 --- a/roottest/root/io/tmpifile/JetEventLinkDef.h +++ b/roottest/root/io/tmpifile/JetEventLinkDef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; #pragma link off all functions; diff --git a/roottest/root/io/transient/execNew.cxx b/roottest/root/io/transient/execNew.cxx index 3f3e27037c48d..537694ba71cc4 100644 --- a/roottest/root/io/transient/execNew.cxx +++ b/roottest/root/io/transient/execNew.cxx @@ -36,7 +36,7 @@ void execNew() { read(); } -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma read sourceClass="MyClass" targetClass="MyClass" source="int fOld" \ version="[1-]" target="fOld" \ code="{ fOld = onfile.fOld; }" diff --git a/roottest/root/io/vararyobj/runvaryingArrayNoClassDefRead_linkdef.h b/roottest/root/io/vararyobj/runvaryingArrayNoClassDefRead_linkdef.h index 1fedf549fae42..9c6dbcbd2d6d2 100644 --- a/roottest/root/io/vararyobj/runvaryingArrayNoClassDefRead_linkdef.h +++ b/roottest/root/io/vararyobj/runvaryingArrayNoClassDefRead_linkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class B+; #pragma link C++ class A+; diff --git a/roottest/root/io/vararyobj/runvaryingArrayNoClassDefWrite_linkdef.h b/roottest/root/io/vararyobj/runvaryingArrayNoClassDefWrite_linkdef.h index 1fedf549fae42..9c6dbcbd2d6d2 100644 --- a/roottest/root/io/vararyobj/runvaryingArrayNoClassDefWrite_linkdef.h +++ b/roottest/root/io/vararyobj/runvaryingArrayNoClassDefWrite_linkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class B+; #pragma link C++ class A+; diff --git a/roottest/root/io/vararyobj/runvaryingArrayRead_51508_linkdef.h b/roottest/root/io/vararyobj/runvaryingArrayRead_51508_linkdef.h index 1fedf549fae42..9c6dbcbd2d6d2 100644 --- a/roottest/root/io/vararyobj/runvaryingArrayRead_51508_linkdef.h +++ b/roottest/root/io/vararyobj/runvaryingArrayRead_51508_linkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class B+; #pragma link C++ class A+; diff --git a/roottest/root/io/vararyobj/runvaryingArrayRead_linkdef.h b/roottest/root/io/vararyobj/runvaryingArrayRead_linkdef.h index 1fedf549fae42..9c6dbcbd2d6d2 100644 --- a/roottest/root/io/vararyobj/runvaryingArrayRead_linkdef.h +++ b/roottest/root/io/vararyobj/runvaryingArrayRead_linkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class B+; #pragma link C++ class A+; diff --git a/roottest/root/io/vararyobj/runvaryingArrayWrite_linkdef.h b/roottest/root/io/vararyobj/runvaryingArrayWrite_linkdef.h index 1fedf549fae42..9c6dbcbd2d6d2 100644 --- a/roottest/root/io/vararyobj/runvaryingArrayWrite_linkdef.h +++ b/roottest/root/io/vararyobj/runvaryingArrayWrite_linkdef.h @@ -1,4 +1,4 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link C++ class B+; #pragma link C++ class A+; diff --git a/roottest/root/meta/MakeProject/stl_makeproject_test_linkdef.h b/roottest/root/meta/MakeProject/stl_makeproject_test_linkdef.h index a93ba72a2fadf..11dc94fc98fb2 100644 --- a/roottest/root/meta/MakeProject/stl_makeproject_test_linkdef.h +++ b/roottest/root/meta/MakeProject/stl_makeproject_test_linkdef.h @@ -1,5 +1,5 @@ -#ifdef __CINT__ +#ifdef __CLING__ #pragma link off all globals; #pragma link off all classes; diff --git a/roottest/root/meta/WrapSimple.h b/roottest/root/meta/WrapSimple.h index 4921818691b71..a63f0da8d5261 100644 --- a/roottest/root/meta/WrapSimple.h +++ b/roottest/root/meta/WrapSimple.h @@ -1,5 +1,5 @@ #include "Simple.h" -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ //#pragma link C++ namespace AddSpace; #pragma link C++ class AddSpace::Simple+; #endif diff --git a/roottest/root/meta/evolution/data.h b/roottest/root/meta/evolution/data.h index 3899e84985ff9..dedf037285f31 100644 --- a/roottest/root/meta/evolution/data.h +++ b/roottest/root/meta/evolution/data.h @@ -78,7 +78,7 @@ class data { #error missing case #endif -#ifdef __MAKECINT__ +#ifdef __MAKECLING__ #pragma link C++ class data+; #pragma link C++ class Tdata+; #endif diff --git a/roottest/root/meta/evolution/version5/execNestedColl.cxx b/roottest/root/meta/evolution/version5/execNestedColl.cxx index 2fb423921f28d..f909ab10d42a6 100644 --- a/roottest/root/meta/evolution/version5/execNestedColl.cxx +++ b/roottest/root/meta/evolution/version5/execNestedColl.cxx @@ -47,7 +47,7 @@ namespace HepExp { //typedef HepExp::Inner Alias; -//#ifdef __MAKECINT__ +//#ifdef __MAKECLING__ // #pragma read sourceClass="Alias" targetClass="HepExp::Inner"; //#endif diff --git a/roottest/root/meta/execnamespaceconflict.C b/roottest/root/meta/execnamespaceconflict.C index b45a78ca35bed..3f9fb4a5092f3 100644 --- a/roottest/root/meta/execnamespaceconflict.C +++ b/roottest/root/meta/execnamespaceconflict.C @@ -7,7 +7,7 @@ namespace Test { }; } -#if defined(__MAKECINT__) +#if defined(__MAKECLING__) #pragma link off all globals; #pragma link off all classes; #pragma link off all functions; diff --git a/roottest/root/meta/genreflex/MyClass_v2_selection.xml b/roottest/root/meta/genreflex/MyClass_v2_selection.xml index 74b25e8858c93..af70ff8bbbc18 100644 --- a/roottest/root/meta/genreflex/MyClass_v2_selection.xml +++ b/roottest/root/meta/genreflex/MyClass_v2_selection.xml @@ -27,7 +27,7 @@