Proof compilation failing

Hello,
We are struggling to make proof/root work at our site. This is what we have done:

We take the sources from:
wget ftp://root.cern.ch/root/root_v5.30.04.source.tar.gz

We create the directory in which root will be included:
export ROOTSYS=/software/at3/root/root-5.30.04_slc57_gcc4.1.2-51_x86-64
mkdir $ROOTSYS

We unpack everything there and we compile with:
./configure --prefix=$ROOTSYS
make
make install

This works fine but when I try to compile a code we have written I get the following error:

echo $ROOTSYS
/software/at3/root/root-5.30.04_slc57_gcc4.1.2-51_x86-64
make



Making .d/src/DatasetInfo.d
In file included from ./Histogrammer/OverlapRemoval.h:13,
from src/OverlapRemoval.cxx:11:
./Histogrammer/EventVariables.h:13:19: error: TROOT.h: No such file or directory

But the file is there:

[jnadal@at301-test HistrogrammerCarlos]$ ls $ROOTSYS/include/TROOT.h
/software/at3/root/root-5.30.04_slc57_gcc4.1.2-51_x86-64/include/TROOT.h

Any help will be really appreciated!
Thanks so much!

Hi,

This is probably due to a missing ‘-I’ line in the relevant compilation line.
But, could you explain a bit more what you are doing and why you think that this is a PROOF problem?
In particular, you get this

[quote=“Jordi”]echo $ROOTSYS
/software/at3/root/root-5.30.04_slc57_gcc4.1.2-51_x86-64
make



Making .d/src/DatasetInfo.d
In file included from ./Histogrammer/OverlapRemoval.h:13,
from src/OverlapRemoval.cxx:11:
./Histogrammer/EventVariables.h:13:19: error: TROOT.h: No such file or directory
[/quote]
by doing what?

G. Ganis