I changed some colors on the Summary of Suspension Sensor using my italian creativity.
I wrote a script in Python to change the thresholds for the "alarm mode" of the screen.
The script takes a GPS-format start time as the 1st argument and a duration time as the second argument.
For every channel shown in the screen, it compute the mean value during this time.
The 3rd argument is the ratio between the mean and the LOW threshold. The 4th argument is the ratio between the mean and the LOLO threshold.
Then it sets the thresholds simmetrycally for HIGH and HIHI threshold.
It does that for all channels skipping the Gains and the Off Sets because this data are not stored.
For example is ratio are 0.9 and 0.7 and the mean is 10, thresholds will be LOLO=7, LOW=9, HIGH=11, HIHI=13.
You can run the script on pianosa writing on a terminal '/opt/rtcds/caltech/c1/scripts/SUS/set_thresholds.py' and the arguments.
I already run my program with those arguments: 1000123215 600 0.9 0.7
The time is of this morning at 5:00 for 10 minutes
This is the help I wrote
HELP: This program set the thresholds for the "alarm mode" of the C1SUS_SUMMARY.adl medm screen.
Written by Manuel Marchio`, visiting student from University of Pisa - INFN for the 2011 summer at Ligo-Caltech. Thrusday, 15th September 2011.
The 1st argument is the time in gps format when you want to START the mean
The 2nd argument is the DURATION
The 3rd argument is the ratio of the LOW and the HIGH thresholds. It must be in the range [0,1]
The 4th argument is the ratio of the LOLO and the HIHI thresholds. It must be in the range [0,1]
Example: path/set_thresholds.py 1000123215 600 0.9 0.7
and if the the mean is 10, thresholds will be set as LOLO=7, LOW=9, HIGH=11, HIHI=13
|