>have I missed a part of the CINT description? I could not find any
>document containing e.g. `#pragma preprocess ...' (from Masaharu's recent
>posting), or warnings and error messages (famous `Note: operator new()
>masked 1c').
More detail documentation is found in cint source package. Download
cint5.13.tar.gz from http://hpsalo.cern.ch/root/Cint.html and unpack it
using gunzip and tar. You'll find doc/ref.txt describing all of #pragma
statements.
Unfortunately, operator new() mask message is not documented now. I'll have
to add information.
>class STLObjArray<MC_Track*> in ObjArray.hh line 57 original base of
>virtual func
>class STLObjArrayIterator<MC_Track*> in ObjArray.hh line 156 original base
>of virtual func
>class ConstSTLObjArrayIterator<MC_Track*> in ObjArray.hh line 252 original
>base of virtual func
>
>means? It seems not to harm, but I am simply curious.
This is no harm and this means those classes are roots of polymorphic
inheritance. This is just an information. I thought it would be sometimes
useful to knew which were the grand-base classes. So far, no one is using
this info.
Masaharu Goto