Skip to content

Commit c7b3720

Browse files
ferdymercuryguitargeek
authored andcommitted
[graf3d/eve*] rename CINT to Cling
1 parent e421de6 commit c7b3720

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

graf3d/eve/src/TEveElement.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ void TEveElement::SaveVizParams(std::ostream& out, const TString& tag, const TSt
512512
/// Write-out visual parameters for this object.
513513
/// This is a virtual function and all sub-classes are required to
514514
/// first call the base-element version.
515-
/// The name of the element pointer is 'x%03d', due to cint limitations.
515+
/// The name of the element pointer is 'x%03d', due to historical CINT limitations.
516516
/// Three spaces should be used for indentation, same as in
517517
/// SavePrimitive() methods.
518518

@@ -950,7 +950,7 @@ void TEveElement::SpawnEditor()
950950
}
951951

952952
////////////////////////////////////////////////////////////////////////////////
953-
/// Export render-element to CINT with variable name var_name.
953+
/// Export render-element to Cling with variable name var_name.
954954

955955
void TEveElement::ExportToCINT(char* var_name)
956956
{
@@ -989,7 +989,7 @@ void TEveElement::PrintSourceObject() const
989989
}
990990

991991
////////////////////////////////////////////////////////////////////////////////
992-
/// Export source object to CINT with given name for the variable.
992+
/// Export source object to Cling with given name for the variable.
993993
/// Throws an exception if it is not set.
994994

995995
void TEveElement::ExportSourceObjectToCINT(char* var_name) const

graf3d/eve/src/TEveGeoNode.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ TEveGeoNode::TEveGeoNode(TGeoNode* node) :
7070
TObject(),
7171
fNode(node)
7272
{
73-
// Hack!! Should use cint to retrieve TAttLine::fLineColor offset.
73+
// Hack!! Should use Cling to retrieve TAttLine::fLineColor offset.
7474
char* l = (char*) dynamic_cast<TAttLine*>(node->GetVolume());
7575
SetMainColorPtr((Color_t*)(l + sizeof(void*)));
7676
SetMainTransparency(fNode->GetVolume()->GetTransparency());

graf3d/eve/src/TEveMacro.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Longptr_t TEveMacro::Exec(const char* params, Int_t* error)
7575
TString fname = "/tmp/";
7676
{
7777
//the current implementation uses a file in the current directory.
78-
//should be replaced by a direct execution from memory by CINT
78+
//should be replaced by a direct execution from memory by Cling
7979
fname += GetName();
8080
fname += ".C";
8181
SaveSource(fname);

graf3d/eve7/src/REveElement.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ void REveElement::SaveVizParams(std::ostream& out, const TString& tag, const TSt
454454
/// Write-out visual parameters for this object.
455455
/// This is a virtual function and all sub-classes are required to
456456
/// first call the base-element version.
457-
/// The name of the element pointer is 'x%03d', due to cint limitations.
457+
/// The name of the element pointer is 'x%03d', due to historical CINT limitations.
458458
/// Three spaces should be used for indentation, same as in
459459
/// SavePrimitive() methods.
460460

@@ -601,7 +601,7 @@ TClass *REveElement::IsA() const
601601
}
602602

603603
////////////////////////////////////////////////////////////////////////////////
604-
/// Export render-element to CINT with variable name var_name.
604+
/// Export render-element to Cling with variable name var_name.
605605

606606
void REveElement::ExportToInterpreter(const char *var_name)
607607
{

0 commit comments

Comments
 (0)