Jump to content

CINT

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 210.20.221.82 (talk) at 11:56, 19 May 2015. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

CINT is a command line C/C++ interpreter that is included in the object oriented data analysis package ROOT. Although intended for use with the other faculties of ROOT, CINT can also be used as a standalone addition to another program that requires such an interpreter.

CINT is an interpreted version of C/C++, much in the way BeanShell is an interpreted version of Java. In addition to being a language interpreter, it offers certain bash-like shell features such as history and tab-completion. To accomplish the latter, it relies heavily on the reflection support built into ROOT. User classes that follow these interfaces may also take advantage of these features.

The language interpreted by CINT is actually something of a hybrid between C and C++, covering about 95% of ANSI C and 85% of C++.[1] The syntax, however, is a bit more forgiving than either language. For example, the operator -> can be replaced by . with only an optional warning. In addition, statements on the command line do not need to end with a semi-colon, although this is necessary for statements in macros.

As CERN switched to Cling C++ interpreter, CINT is now distributed standalone by the author. (CINT latest home page)

See also

References