Hi,
I have some problem I didn’t expect at all. I remeber before 3 months
this was working and I can’t figure out what’s happening.
So with the following code I’m expecting to have an open canvas until the end of time:
#cvas.cc:
#include "TCanvas.h"
int
main ()
{
TCanvas* c = new TCanvas ("c", "", 4);
while (1)
{
}
}
but it’s not tha case…
I’m working on lxplus machine and I’m setting:
export ROOTSYS=/afs/cern.ch/sw/root/v5.02.00/slc3_gcc3.2.3/root
export PATH=/usr/bin:$ROOTSYS/bin
export LD_LIBRARY_PATH=$ROOTSYS/lib
and compiling:
g++ -o cvas cvas.cc $(root-config --cflags) $(root-config --libs)
so it compiles but ./cvas produces nothing (ofcourse the thing is working
interactively)
I know this looks silly but I’m silly. Very probably it’s not ROOT problem at all but I realy can’t figure out what to do so any ideas are welcomed