Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions graf3d/eve/src/TEveElement.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ void TEveElement::SaveVizParams(std::ostream& out, const TString& tag, const TSt
/// Write-out visual parameters for this object.
/// This is a virtual function and all sub-classes are required to
/// first call the base-element version.
/// The name of the element pointer is 'x%03d', due to cint limitations.
/// The name of the element pointer is 'x%03d', due to historical CINT limitations.
/// Three spaces should be used for indentation, same as in
/// SavePrimitive() methods.

Expand Down Expand Up @@ -950,7 +950,7 @@ void TEveElement::SpawnEditor()
}

////////////////////////////////////////////////////////////////////////////////
/// Export render-element to CINT with variable name var_name.
/// Export render-element to Cling with variable name var_name.

void TEveElement::ExportToCINT(char* var_name)
{
Expand Down Expand Up @@ -989,7 +989,7 @@ void TEveElement::PrintSourceObject() const
}

////////////////////////////////////////////////////////////////////////////////
/// Export source object to CINT with given name for the variable.
/// Export source object to Cling with given name for the variable.
/// Throws an exception if it is not set.

void TEveElement::ExportSourceObjectToCINT(char* var_name) const
Expand Down
2 changes: 1 addition & 1 deletion graf3d/eve/src/TEveGeoNode.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ TEveGeoNode::TEveGeoNode(TGeoNode* node) :
TObject(),
fNode(node)
{
// Hack!! Should use cint to retrieve TAttLine::fLineColor offset.
// Hack!! Should use Cling to retrieve TAttLine::fLineColor offset.
char* l = (char*) dynamic_cast<TAttLine*>(node->GetVolume());
SetMainColorPtr((Color_t*)(l + sizeof(void*)));
SetMainTransparency(fNode->GetVolume()->GetTransparency());
Expand Down
2 changes: 1 addition & 1 deletion graf3d/eve/src/TEveMacro.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Longptr_t TEveMacro::Exec(const char* params, Int_t* error)
TString fname = "/tmp/";
{
//the current implementation uses a file in the current directory.
//should be replaced by a direct execution from memory by CINT
//should be replaced by a direct execution from memory by Cling
fname += GetName();
fname += ".C";
SaveSource(fname);
Expand Down
4 changes: 2 additions & 2 deletions graf3d/eve7/src/REveElement.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ void REveElement::SaveVizParams(std::ostream& out, const TString& tag, const TSt
/// Write-out visual parameters for this object.
/// This is a virtual function and all sub-classes are required to
/// first call the base-element version.
/// The name of the element pointer is 'x%03d', due to cint limitations.
/// The name of the element pointer is 'x%03d', due to historical CINT limitations.
/// Three spaces should be used for indentation, same as in
/// SavePrimitive() methods.

Expand Down Expand Up @@ -601,7 +601,7 @@ TClass *REveElement::IsA() const
}

////////////////////////////////////////////////////////////////////////////////
/// Export render-element to CINT with variable name var_name.
/// Export render-element to Cling with variable name var_name.

void REveElement::ExportToInterpreter(const char *var_name)
{
Expand Down