To execute root command with CONDOR

Hi, all

I am trying to execute ROOT command with CONDOR.
I have made do well ROOT executed file and then the file execute though the shell script.

For example,

#!/bin/bash
echo -ne $(root -l ‘exec.cc(’‘“filename.txt”’‘)’)

without CONDOR, just executing shell script is well.
But it is not worked in condor.

universe = vanilla
executable = shellscript.sh
log = log/cut.log
output = log/cut.out
error = log/cut.err

when_to_transfer_output = ON_EXIT

queue

What is it needed?
Could you tell me about that?

This is the error code

/home/condor/dir_4352/condor_exec.exe: line 4: root: command not found

Condor doesn’t know where to find ROOT. You should talk to your supervisor / cluster admin / colleagues to find out which ROOT to use / where to find it on your condor cluster.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.