Add include path on each worker

Dear all,
I’m trying to add an include path to proof.
I’m using proof->AddIncludePath(“fastjet/”)
and also launching from SETUP.C a gSytem->SetIncludePath(“fastjet/”)

the compilation on the master works well but at the end the output is empty.
And looking at log on each node I found:

/home/proof/mcasolino/session-pf010-1386167888-26825/worker-0.3-pf012-1386167890-18702/./MvaTree.h:26:32: error: fastjet/PseudoJet.hh: No such file or directory
/home/proof/mcasolino/session-pf010-1386167888-26825/worker-0.3-pf012-1386167890-18702/./MvaTree.h:27:36: error: fastjet/JetDefinition.hh: No such file or directory
/home/proof/mcasolino/session-pf010-1386167888-26825/worker-0.3-pf012-1386167890-18702/./MvaTree.h:28:42: error: fastjet/ClusterSequenceArea.hh: No such file or directory
/home/proof/mcasolino/session-pf010-1386167888-26825/worker-0.3-pf012-1386167890-18702/./MvaTree.h:29:37: error: fastjet/AreaDefinition.hh: No such file or directory
/home/proof/mcasolino/session-pf010-1386167888-26825/worker-0.3-pf012-1386167890-18702/./MvaTree.h:30:31: error: fastjet/Selector.hh: No such file or directory

So it seems that the path was not added to each node.
Can you help me?

Thank you in advance,Mirko.

Hi,
Sorry for the late reply.
Not sure if this problem still applies.
Anyhow, I believe the problem was that, if you add the path

gSytem->SetIncludePath("fastjet/")

you should include files in your code removing ‘fastjet’; for example,

AreaDefinition.hh

instead of

fastjet/AreaDefinition.hh

G. Ganis