- Fixed SICS up to run with up to three TRICS detectors.

- added 150 detectors the default for FOCUS middle bank.
- added documentation for el734_test
This commit is contained in:
cvs
2001-02-09 16:04:46 +00:00
parent 96e2fc44c0
commit 5be8359212
24 changed files with 1842 additions and 224 deletions

View File

@@ -62,7 +62,7 @@
**
** If <arg0> = "focus"
** <arg1> = name of hostM (Mittel-bank) (dflt=localhost).
** <arg2> = #-counters in Mittel-bank (dflt=151).
** <arg2> = #-counters in Mittel-bank (dflt=150).
** <arg3> = name of hostO (Ober-bank) (dflt=lnse05.vme).
** <arg4> = #-counters in Ober-bank (dflt=117).
** <arg5> = name of hostU (Unter-bank) (dflt=lnse06.vme).
@@ -926,9 +926,9 @@
if (hostM[0] == NIL) hostM = "localhost";
if (p_arg2 == NULL) {
ndetM = 151;
ndetM = 150;
}else if (p_arg2[0] == NIL) {
ndetM = 151;
ndetM = 150;
}else {
if ((sscanf (p_arg2, "%i", &ndetM) != 1) ||
(ndetM <= 0) ||