Skip to content
Snippets Groups Projects
Commit c9398f5a authored by Fons Rademakers's avatar Fons Rademakers
Browse files

From Gerri:

proofserv.in:
  - add support for valgrind in multi-master mode
etc/plugins/TProof:
  - add plugin for PROOF-Lite
  - remove obsolete PEAC plug-in


git-svn-id: http://root.cern.ch/svn/root/trunk@44667 27541ba8-7e3a-0410-8455-c3a389f83636
parent d51055de
No related branches found
No related tags found
No related merge requests found
...@@ -62,9 +62,15 @@ fi ...@@ -62,9 +62,15 @@ fi
if [ -n "$PROOF_WRAPPERCMD" ]; then if [ -n "$PROOF_WRAPPERCMD" ]; then
WRAPPER="$PROOF_WRAPPERCMD " WRAPPER="$PROOF_WRAPPERCMD "
else else
if [ -n "$PROOF_TOPMASTER_WRAPPERCMD" -a "$1" = "proofserv" -a "$5" = "2" ]; then
WRAPPER="$PROOF_TOPMASTER_WRAPPERCMD "
fi
if [ -n "$PROOF_MASTER_WRAPPERCMD" -a "$1" = "proofserv" ]; then if [ -n "$PROOF_MASTER_WRAPPERCMD" -a "$1" = "proofserv" ]; then
WRAPPER="$PROOF_MASTER_WRAPPERCMD " WRAPPER="$PROOF_MASTER_WRAPPERCMD "
fi fi
if [ -n "$PROOF_SUBMASTER_WRAPPERCMD" -a "$1" = "proofserv" -a "$5" = "1" ]; then
WRAPPER="$PROOF_SUBMASTER_WRAPPERCMD "
fi
if [ -n "$PROOF_SLAVE_WRAPPERCMD" -a "$1" = "proofslave" ]; then if [ -n "$PROOF_SLAVE_WRAPPERCMD" -a "$1" = "proofslave" ]; then
WRAPPER="$PROOF_SLAVE_WRAPPERCMD " WRAPPER="$PROOF_SLAVE_WRAPPERCMD "
fi fi
......
void P030_TProofLite()
{
gPluginMgr->AddHandler("TProof", "^lite:", "TProofLite",
"Proof", "TProofLite(const char*,const char*,const char*,Int_t,const char*,TProofMgr *)");
}
void P030_TProofPEAC()
{
gPluginMgr->AddHandler("TProof", "^peac:", "TProofPEAC",
"Peac", "TProofPEAC(const char*,const char*,const char*,Int_t,const char*)");
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment