From: muench Date: Fri, 18 Feb 2000 13:35:34 +0000 (+0000) Subject: BUGBUG still special case for one installation X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=1faa5d331d38d26f4ab828412962cd4a2be42745;p=daqdata.git BUGBUG still special case for one installation --- diff --git a/hadaq/ctrlctu.c b/hadaq/ctrlctu.c index cbb5bca..00fc24a 100644 --- a/hadaq/ctrlctu.c +++ b/hadaq/ctrlctu.c @@ -71,14 +71,15 @@ int main(int argc, char *argv[]) Worker_initEnd(worker); sleep(1); - system("/home/hades/bin/dtuctrl -t ctu reset"); - system("/home/hades/bin/dtuctrl -t ctu rate 1"); - system("/home/hades/bin/dtuctrl -t ctu start"); + system("/usr/local/bin/dtuctrl -t ctu reset"); + system("/usr/local/bin/dtuctrl -t ctu rate 1"); + system("/usr/local/bin/dtuctrl -t ctu start"); (*ctuEnabled) = 1; if (0 == setjmp(terminateJmp)) { sleep(32767); } - system("/home/hades/bin/dtuctrl -t ctu stop"); + sleep(3); + system("/usr/local/bin/dtuctrl -t ctu stop"); (*ctuEnabled) = 0; Worker_fini(worker);