vote up 9 vote down star
2

I am curious if anyone have used UnderC, Cint, and Ch (or any other C++ interpreter) and could share their experience.

Thanks everyone for your valuable input.

/Allan

flag

5 Answers

vote up 4 vote down check

cint is the command processor for the particle physics analysis package ROOT. I use it regularly, and it works very well for me.

It is fairly complete and gets on well with compiled code (you can load compiled modules for use in the interperter...)

link|flag
I know several graduate students in physics that do the majority of their coding in cint/root, and while they don't always have nice things to say it meets their needs for performance and flexibility. – littlenag Oct 17 '08 at 15:46
Well, it is c++ with an add layer of complexity from needing to build the interperter<-->binary-code dictionaries. Plus the root class tree is a pain. But cint works. It works a lot better than COMIS did in the cernlib days. – dmckee Oct 17 '08 at 17:00
vote up 0 vote down

I looked at using ch a while back to see if I could use it for black box testing DLLs for which I am responsible. Unfortunately, I couldn't quite figure out how to get it to load and execute functions from DLLs. Then again, I wasn't that motivated and there may well be a way.

link|flag
vote up 3 vote down

I have (about a year ago) played around with Ch and found it to be pretty good.

link|flag
vote up 1 vote down

Also long ago I used a product call Instant C but I don't know that it ever developed further

link|flag
vote up 2 vote down

Long ago, I used a C++ interpreter called CodeCenter. It was pretty nice, although it couldn't handle things like bitfields or fancy pointer mangling. The two cool things about it were that you could watch when variables changed, and that you could evaluate C/C++ code on the fly while debugging. These days, I think a debugger like GDB is basically just as good.

link|flag
What would the interpreter do when it encountered a template instance? (or other preprocessing business). Was there some level of precompilation/preprocessing to handle templates or the preprocessor? – Doug T. Sep 16 '08 at 13:09
Yes, all the CPP stuff and templates were all part of the language being interpreted. Pretty nice. – jfm3 Sep 16 '08 at 19:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.