MadEvent Condor Req. Question

Asked by Richard Ruiz

Dear Experts,

When I attempt to run MadEvent on a condor-based grid, I notice that my "submit_condor" file have the following requirement:
Requirements = madgraph=?=True

What exactly does this specific requirement mean?

Best Wishes,
Richard

Question information

Language:
English Edit question
Status:
Solved
For:
MadGraph5_aMC@NLO Edit question
Assignee:
No assignee Edit question
Solved by:
Olivier Mattelaer
Solved:
Last query:
Last reply:
Revision history for this message
Best Olivier Mattelaer (olivier-mattelaer) said :
#1

Hi Richard,

This means that you can submit on the node were the variable madgraph
is set on True.
This is a common way to split the cluster in sub-cluster. (and this is
how some of our cluster are configured).

This is off course purely optional and follows the argument queues
defines in the configuration files
(input/mg5_configuration.txt or ./Cards/me5_configuration.txt)

# Cluster Type [pbs|sge|condor] Use for cluster run only
# And cluster queue
cluster_type = condor
cluster_queue = madgraph

If you don't need such type of requirements on your cluster you can use:
# Cluster Type [pbs|sge|condor] Use for cluster run only
# And cluster queue
cluster_type = condor
cluster_queue = None

Then you will not have such line in your submission file.

Cheers,

Olivier

On 28-mars-12, at 21:45, Richard Ruiz wrote:

> New question #191971 on MadGraph5:
> https://answers.launchpad.net/madgraph5/+question/191971
>
> Dear Experts,
>
> When I attempt to run MadEvent on a condor-based grid, I notice that
> my "submit_condor" file have the following requirement:
> Requirements = madgraph=?=True
>
> What exactly does this specific requirement mean?
>
>
> Best Wishes,
> Richard
>
> --
> You received this question notification because you are a member of
> MadTeam, which is an answer contact for MadGraph5.

Revision history for this message
Richard Ruiz (rruiz) said :
#2

Thanks Olivier Mattelaer, that solved my question.