const std::string dirForTmpFiles = params[TMPDIR];
const string fileToExecute = params[EXECUTABLE];
const string home = params[HOMEDIR];
+ const std::string queue = params[QUEUE];
std::string rootNameToExecute;
std::string fileNameToExecute;
std::string filelogtemp;
tempOutputFile.open(TmpFileName.c_str(), ofstream::out );
tempOutputFile << "#! /bin/sh -f" << endl;
+ if (queue != "")
+ tempOutputFile << "#$ -q " << queue << endl;
tempOutputFile << "#$ -pe mpich " << nbproc << endl;
if( edt > 0 )
tempOutputFile << "#$ -l h_rt=" << getWallTime(edt) << endl ;