The tst model wasn't compiling this morning due to some incorrect lines in the RfmIOfloat.pm file located in /home/controls/cds/advLIgo/src/epics/util/lib file on megatron.
The error was "Undefined subroutine &CDS::RfmIOfloat::partType called at lib/Parser2.pm line 354, <IN> line 3363."
I changed RfmIO to RfmIOfloat on lines 1 and 6.
Basically the first 6 lines are now
package CDS::RfmIOfloat;
use Exporter;
@ISA = ('Exporter');
sub partType {
return RfmIOfloat;
}
The tst now compiles. At the moment, I believe we should be able to switch megatron in for ETMY and attempt to lock the arm. The whitening/dewhitening filters are still not automatically synced in software and hardware, but I don't think that should prevent locking. |