@@ -320,7 +320,7 @@ RooAbsArg* RooFactoryWSTool::createArg(const char* className, const char* objNam
320320 }
321321 _args.push_back (tmp.substr (start_tok, end_tok));
322322
323- // Try CINT interface
323+ // Try Cling interface
324324 pair<list<string>,unsigned int > ca = ctorArgs (className,_args.size ()+2 ) ;
325325 if (ca.first .empty ()) {
326326 coutE (ObjectHandling) << " RooFactoryWSTool::createArg() ERROR no suitable constructor found for class " << className << std::endl ;
@@ -343,10 +343,10 @@ RooAbsArg* RooFactoryWSTool::createArg(const char* className, const char* objNam
343343 return nullptr ;
344344 }
345345
346- // Now construct CINT constructor spec, start with mandatory name and title args
346+ // Now construct Cling constructor spec, start with mandatory name and title args
347347 string cintExpr (Form (" new %s(\" %s\" ,\" %s\" " ,className,objName,objName)) ;
348348
349- // Install argument in static data member to be accessed below through static CINT interface functions
349+ // Install argument in static data member to be accessed below through static Cling interface functions
350350 _of = this ;
351351
352352
@@ -452,7 +452,7 @@ RooAbsArg* RooFactoryWSTool::createArg(const char* className, const char* objNam
452452
453453 cxcoutD (ObjectHandling) << " RooFactoryWSTool::createArg() Construct expression is " << cintExpr << std::endl ;
454454
455- // Call CINT to perform constructor call. Catch any error thrown by argument conversion method
455+ // Call Cling to perform constructor call. Catch any error thrown by argument conversion method
456456 if (std::unique_ptr<RooAbsArg> arg{reinterpret_cast <RooAbsArg*>(gROOT ->ProcessLineFast (cintExpr.c_str ()))}) {
457457 if (string (className)==" RooGenericPdf" ) {
458458 arg->setStringAttribute (" factory_tag" ,Form (" EXPR::%s(%s)" ,objName,varList)) ;
@@ -465,7 +465,7 @@ RooAbsArg* RooFactoryWSTool::createArg(const char* className, const char* objNam
465465 RooAbsArg* ret = _ws->arg (objName) ;
466466 return ret ;
467467 } else {
468- coutE (ObjectHandling) << " RooFactoryWSTool::createArg() ERROR in CINT constructor call to create object" << std::endl ;
468+ coutE (ObjectHandling) << " RooFactoryWSTool::createArg() ERROR in Cling constructor call to create object" << std::endl ;
469469 logError () ;
470470 return nullptr ;
471471 }
@@ -1508,7 +1508,7 @@ void RooFactoryWSTool::checkIndex(UInt_t idx)
15081508
15091509
15101510// //////////////////////////////////////////////////////////////////////////////
1511- // / CINT constructor interface, return constructor string argument `#idx` as RooAbsArg reference found in workspace
1511+ // / Cling constructor interface, return constructor string argument `#idx` as RooAbsArg reference found in workspace
15121512
15131513RooAbsArg& RooFactoryWSTool::asARG (const char * arg)
15141514 {
@@ -1528,7 +1528,7 @@ RooAbsArg& RooFactoryWSTool::asARG(const char* arg)
15281528
15291529
15301530// //////////////////////////////////////////////////////////////////////////////
1531- // / CINT constructor interface, return constructor string argument `#idx` as RooAbsReal reference found in workspace
1531+ // / Cling constructor interface, return constructor string argument `#idx` as RooAbsReal reference found in workspace
15321532
15331533RooAbsReal& RooFactoryWSTool::asFUNC (const char * arg)
15341534{
@@ -1551,7 +1551,7 @@ RooAbsReal& RooFactoryWSTool::asFUNC(const char* arg)
15511551
15521552
15531553// //////////////////////////////////////////////////////////////////////////////
1554- // / CINT constructor interface, return constructor string argument `#idx` as RooAbsRealLValue reference found in workspace
1554+ // / Cling constructor interface, return constructor string argument `#idx` as RooAbsRealLValue reference found in workspace
15551555
15561556RooAbsRealLValue& RooFactoryWSTool::asVARLV (const char * arg)
15571557{
@@ -1574,7 +1574,7 @@ RooAbsRealLValue& RooFactoryWSTool::asVARLV(const char* arg)
15741574
15751575
15761576// //////////////////////////////////////////////////////////////////////////////
1577- // / CINT constructor interface, return constructor string argument `#idx` as RooRealVar reference found in workspace
1577+ // / Cling constructor interface, return constructor string argument `#idx` as RooRealVar reference found in workspace
15781578
15791579RooRealVar& RooFactoryWSTool::asVAR (const char * arg)
15801580{
@@ -1589,7 +1589,7 @@ RooRealVar& RooFactoryWSTool::asVAR(const char* arg)
15891589
15901590
15911591// //////////////////////////////////////////////////////////////////////////////
1592- // / CINT constructor interface, return constructor string argument `#idx` as RooAbsPdf reference found in workspace
1592+ // / Cling constructor interface, return constructor string argument `#idx` as RooAbsPdf reference found in workspace
15931593
15941594RooAbsPdf& RooFactoryWSTool::asPDF (const char * arg)
15951595{
@@ -1604,7 +1604,7 @@ RooAbsPdf& RooFactoryWSTool::asPDF(const char* arg)
16041604
16051605
16061606// //////////////////////////////////////////////////////////////////////////////
1607- // / CINT constructor interface, return constructor string argument `#idx` as RooResolutionModel reference found in workspace
1607+ // / Cling constructor interface, return constructor string argument `#idx` as RooResolutionModel reference found in workspace
16081608
16091609RooResolutionModel& RooFactoryWSTool::asRMODEL (const char * arg)
16101610{
@@ -1623,7 +1623,7 @@ RooResolutionModel& RooFactoryWSTool::asRMODEL(const char* arg)
16231623
16241624
16251625// //////////////////////////////////////////////////////////////////////////////
1626- // / CINT constructor interface, return constructor string argument `#idx` as RooAbsCategory reference found in workspace
1626+ // / Cling constructor interface, return constructor string argument `#idx` as RooAbsCategory reference found in workspace
16271627
16281628RooAbsCategory& RooFactoryWSTool::asCATFUNC (const char * arg)
16291629{
@@ -1641,7 +1641,7 @@ RooAbsCategory& RooFactoryWSTool::asCATFUNC(const char* arg)
16411641
16421642
16431643// //////////////////////////////////////////////////////////////////////////////
1644- // / CINT constructor interface, return constructor string argument `#idx` as RooAbsCategoryLValue reference found in workspace
1644+ // / Cling constructor interface, return constructor string argument `#idx` as RooAbsCategoryLValue reference found in workspace
16451645
16461646RooAbsCategoryLValue& RooFactoryWSTool::asCATLV (const char * arg)
16471647{
@@ -1660,7 +1660,7 @@ RooAbsCategoryLValue& RooFactoryWSTool::asCATLV(const char* arg)
16601660
16611661
16621662// //////////////////////////////////////////////////////////////////////////////
1663- // / CINT constructor interface, return constructor string argument `#idx` as RooCategory reference found in workspace
1663+ // / Cling constructor interface, return constructor string argument `#idx` as RooCategory reference found in workspace
16641664
16651665RooCategory& RooFactoryWSTool::asCAT (const char * arg)
16661666{
@@ -1676,7 +1676,7 @@ RooCategory& RooFactoryWSTool::asCAT(const char* arg)
16761676
16771677
16781678// //////////////////////////////////////////////////////////////////////////////
1679- // / CINT constructor interface, return constructor string argument `#idx` as RooArgSet of objects found in workspace
1679+ // / Cling constructor interface, return constructor string argument `#idx` as RooArgSet of objects found in workspace
16801680
16811681RooArgSet RooFactoryWSTool::asSET (const char * arg)
16821682{
@@ -1725,7 +1725,7 @@ RooArgSet RooFactoryWSTool::asSET(const char* arg)
17251725
17261726
17271727// //////////////////////////////////////////////////////////////////////////////
1728- // / CINT constructor interface, return constructor string argument `#idx` as RooArgList of objects found in workspace
1728+ // / Cling constructor interface, return constructor string argument `#idx` as RooArgList of objects found in workspace
17291729
17301730RooArgList RooFactoryWSTool::asLIST (const char * arg)
17311731{
@@ -1761,7 +1761,7 @@ RooArgList RooFactoryWSTool::asLIST(const char* arg)
17611761
17621762
17631763// //////////////////////////////////////////////////////////////////////////////
1764- // / CINT constructor interface, return constructor string argument `#idx` as RooAbsData object found in workspace
1764+ // / Cling constructor interface, return constructor string argument `#idx` as RooAbsData object found in workspace
17651765
17661766RooAbsData& RooFactoryWSTool::asDATA (const char * arg)
17671767{
@@ -1775,7 +1775,7 @@ RooAbsData& RooFactoryWSTool::asDATA(const char* arg)
17751775
17761776
17771777// //////////////////////////////////////////////////////////////////////////////
1778- // / CINT constructor interface, return constructor string argument `#idx` as RooDataHist object found in workspace
1778+ // / Cling constructor interface, return constructor string argument `#idx` as RooDataHist object found in workspace
17791779
17801780RooDataHist& RooFactoryWSTool::asDHIST (const char * arg)
17811781{
@@ -1792,7 +1792,7 @@ RooDataHist& RooFactoryWSTool::asDHIST(const char* arg)
17921792
17931793
17941794// //////////////////////////////////////////////////////////////////////////////
1795- // / CINT constructor interface, return constructor string argument `#idx` as RooDataSet object found in workspace
1795+ // / Cling constructor interface, return constructor string argument `#idx` as RooDataSet object found in workspace
17961796
17971797RooDataSet& RooFactoryWSTool::asDSET (const char * arg)
17981798{
@@ -1823,7 +1823,7 @@ TObject& RooFactoryWSTool::asOBJ(const char* arg)
18231823
18241824
18251825// //////////////////////////////////////////////////////////////////////////////
1826- // / CINT constructor interface, return constructor string argument `#idx` as const char*
1826+ // / Cling constructor interface, return constructor string argument `#idx` as const char*
18271827
18281828const char * RooFactoryWSTool::asSTRING (const char * arg)
18291829{
@@ -1853,7 +1853,7 @@ const char* RooFactoryWSTool::asSTRING(const char* arg)
18531853
18541854
18551855// //////////////////////////////////////////////////////////////////////////////
1856- // / CINT constructor interface, return constructor string argument `#idx` as Int_t
1856+ // / Cling constructor interface, return constructor string argument `#idx` as Int_t
18571857
18581858Int_t RooFactoryWSTool::asINT (const char * arg)
18591859{
@@ -1862,7 +1862,7 @@ Int_t RooFactoryWSTool::asINT(const char* arg)
18621862
18631863
18641864// //////////////////////////////////////////////////////////////////////////////
1865- // / CINT constructor interface, return constructor string argument `#idx` as double
1865+ // / Cling constructor interface, return constructor string argument `#idx` as double
18661866
18671867double RooFactoryWSTool::asDOUBLE (const char * arg)
18681868{
0 commit comments