> Hi Jarek,
>
> formally what you do is not correct C++. f is first defined as
> a pointer to a TFile and then in the same scope it is redefined
sure but Cint doesn't obey C++ standards as well. Name scope in Cint
is not quite clear for me, i.e I can do in C++
{
TFile *f=...
delete f;
}
TFile f;
but Cint crashes when I try to do the same thing. That was my point,
may be my previous example wasn't exactly correct.
Jarek