diff --git a/src/dv/Display/Makefile.linux b/src/dv/Display/Makefile.linux index b9d31fef327e5fce105e2e46d07786af82aad6aa..721226c99d2e3aed3be4ecc4cab20cc4f289db6e 100644 --- a/src/dv/Display/Makefile.linux +++ b/src/dv/Display/Makefile.linux @@ -3,31 +3,32 @@ LIBS = -I../../daqd -I../Th -L../Lib/UTC_GPS -ltai -lm -lnsl -lpthread all: framer4 frameMemRead +GRACELIBS = -L/ligo/apps/linux-x86_64/grace/lib -lgrace_np OBJS = ../Th/datasrv.o ../Th/daqc_access.o # Explicit setting of SHELL - beware since this gets inherited # online data display framer4: framer4.c ${OBJS} - gcc -g -o framer4 framer4.c ${OBJS} ${LIBS} -lgrace_np + gcc -g -o framer4 framer4.c ${OBJS} ${LIBS} ${GRACELIBS} framer3: framer3.c ${OBJS} - gcc -g -o framer3 framer3.c ${OBJS} ${LIBS} -lacegr_np_my + gcc -g -o framer3 framer3.c ${OBJS} ${LIBS} ${GRACELIBS} # playback frameMemRead: frameMemRead.c ${OBJS} - gcc -g -o frameMemRead frameMemRead.c ${OBJS} ${LIBS} -lgrace_np + gcc -g -o frameMemRead frameMemRead.c ${OBJS} ${LIBS} ${GRACELIBS} frameMemReadXMGR: frameMemReadXMGR.c ${OBJS} - gcc -g -o frameMemReadXMGR frameMemReadXMGR.c ${OBJS} ${LIBS} -lacegr_np_my + gcc -g -o frameMemReadXMGR frameMemReadXMGR.c ${OBJS} ${LIBS} ${GRACELIBS} # playback w/trigger frameMemTrig: frameMemTrig.c ${OBJS} - gcc -g -o frameMemTrig frameMemTrig.c ${OBJS} ${LIBS} -lgrace_np + gcc -g -o frameMemTrig frameMemTrig.c ${OBJS} ${LIBS} ${GRACELIBS} # frame file playback tocLongRead: tocLongRead.c ${OBJS} - gcc -g -o tocLongRead tocLongRead.c ${OBJS} ${LIBS} -lgrace_np + gcc -g -o tocLongRead tocLongRead.c ${OBJS} ${LIBS} ${GRACELIBS} clean: diff --git a/src/epics/seq/main.c b/src/epics/seq/main.c index efa6ad063efc77869afd6ab78ac6f639f15a205f..d9da5b8d731a5ed4bc64730cfa42fb0d13b214a9 100644 --- a/src/epics/seq/main.c +++ b/src/epics/seq/main.c @@ -10,6 +10,20 @@ described on the COPYRIGHT_UniversityOfChicago file included as part of this distribution. ****************************************************************************/ +// TODO: +// Need to check RESET and READ file yet. +// Still need to add save/save as features +// Fix display: +// - Based on new python script +// - channel counts and file names: baseline + changes? +// - Get rid of 2nd LOAD button. +// Check top with full model loads for memory and cpu usage. +// Add command error checking, command out of range, etc. +// Verify changing of alarm settings will trigger errors +// Add more filter modules to tim16 to boost number of settings for test. +// Check autoBurt, particularly for SDF stuff +// ADD ability to add channels from larger files. + /* * Main program for demo sequencer */ @@ -34,10 +48,12 @@ of this distribution. #include "asCa.h" #include "asDbLib.h" -#define BURT_LOAD_FULL 1 +#define BURT_LOAD_FULL 5 #define BURT_READ_ONLY 2 #define BURT_RESET 3 -#define BURT_LOAD_PARTIAL 4 +#define BURT_LOAD_PARTIAL 1 + +#define MAX_BURT_CHANS 300000 /// Pointers to status record DBENTRY *pdbentry_status[2][10]; @@ -84,8 +100,8 @@ char reloadtimechannel[256]; char fullchancnt[256]; char subchancnt[256]; -CDS_CD_TABLE cdTable[20000]; -CDS_CD_TABLE cdTableP[1000]; +CDS_CD_TABLE cdTable[MAX_BURT_CHANS]; +CDS_CD_TABLE cdTableP[MAX_BURT_CHANS]; FILTER_TABLE filterTable[1000]; @@ -420,6 +436,7 @@ int readConfig(char *pref,char *sdfile, char *ssdfile,int command) double tmpreq = 0; char tempstr[128]; int localCtr = 0; + int fmatch = 0; // FILTER_TABLE fTable[1000]; clock_gettime(CLOCK_REALTIME,&t); @@ -429,7 +446,6 @@ int readConfig(char *pref,char *sdfile, char *ssdfile,int command) switch(command) { - case BURT_READ_ONLY: case BURT_LOAD_FULL: cdf = fopen(sdfile,"r"); if(cdf == NULL) { @@ -470,7 +486,6 @@ int readConfig(char *pref,char *sdfile, char *ssdfile,int command) if(isdigit(s4[0])) { // printf("%s %s %s %s\n",s1,s2,s3,s4); cdTable[chNum].mask = atoi(s4); - chMon ++; } else { // printf("%s %s %s \n",s1,s2,s3); cdTable[chNum].mask = 0; @@ -503,8 +518,9 @@ int readConfig(char *pref,char *sdfile, char *ssdfile,int command) lderror = newvalue(chNum,cdTable,command); flderror = newfilterstats(fmNum,command); break; + case BURT_READ_ONLY: case BURT_LOAD_PARTIAL: - cdf = fopen(ssdfile,"r"); + cdf = fopen(sdfile,"r"); if(cdf == NULL) { logFileError(sdfile); lderror = 2; @@ -536,11 +552,43 @@ int readConfig(char *pref,char *sdfile, char *ssdfile,int command) cdTableP[chNumP].datatype = 0; // printf("%s %f\n",cdTable[chNum].chname,cdTable[chNum].chval); } + // Check if s4 (monitor or not) is set (0/1). If doesn/'t exist in file, set to zero in local table. + if(isdigit(s4[0])) { + // printf("%s %s %s %s\n",s1,s2,s3,s4); + cdTableP[chNumP].mask = atoi(s4); + if((cdTableP[chNumP].mask < 0) || (cdTableP[chNumP].mask > 1)) + cdTableP[chNumP].mask = -1; + } else { + // printf("%s %s %s \n",s1,s2,s3); + cdTableP[chNumP].mask = -1; + } + // Find channel in full list and replace setting info + fmatch = 0; + for(ii=0;ii<chNum;ii++) + { + if(strcmp(cdTable[ii].chname,cdTableP[chNumP].chname) == 0) + { + // printf("NEW channel compare %s\n",cdTable[chNumP].chname); + fmatch = 1; + if(cdTableP[chNumP].datatype == 1) + { + strcpy(cdTable[ii].strval,cdTableP[chNumP].strval); + } else { + cdTable[ii].chval = cdTableP[chNumP].chval; + } + if(cdTableP[chNumP].mask != -1) + cdTable[ii].mask = cdTableP[chNumP].mask; + } + } + if(!fmatch) printf("NEW channel not found %s\n",cdTable[chNumP].chname); localCtr ++; chNumP ++; } } fclose(cdf); + chMon = 0; + for(ii=0;ii<chNum;ii++) + if(cdTable[ii].mask) chMon ++; lderror = newvalue(chNumP,cdTableP,command); break; case BURT_RESET: @@ -575,6 +623,7 @@ int readConfig(char *pref,char *sdfile, char *ssdfile,int command) // Calc time to load settings and make log entry clock_gettime(CLOCK_REALTIME,&t); totaltime = t.tv_nsec - starttime; + if(totaltime < 0) totaltime += 1000000000; log = fopen("./ioc.log","a"); if(command == BURT_LOAD_PARTIAL) { fprintf(log,"New SDF request (SUBSET): %s\nFile = %s\nTotal Chans = %d with load time = %d usec\n",timestring,sdfile,chNumP,(totaltime/1000)); @@ -813,11 +862,11 @@ int main(int argc,char *argv[]) dbAddr naddr; dbAddr ssnaddr; dbAddr speaddr; - dbAddr ssaddr; + // dbAddr ssaddr; dbAddr sccaddr; dbAddr fccaddr; dbAddr mccaddr; - int cdfReq = 1; + int cdfReq = BURT_LOAD_FULL; long status; int request; int ropts = 0; @@ -829,6 +878,8 @@ int main(int argc,char *argv[]) int sperror = 0; char *ssdf; int noMon; + FILE *csFile; + int ii; if(argc>=2) { iocsh(argv[1]); @@ -841,19 +892,22 @@ int main(int argc,char *argv[]) char *sdf = getenv("SDF_FILE"); char ssdf[256];; strcpy(ssdf,sdf); - strcat(sdf,"_safe"); + // strcat(sdf,"_safe"); char sdfile[256]; char ssdfile[256]; + char bufile[256]; // sprintf(sdfile, "%s%s%s", sdfDir, sdf,".sdf"); sprintf(sdfile, "%s%s%s", sdfDir, sdf,".snap"); // Initialize with BURT_safe.snap + sprintf(bufile, "%s%s", sdfDir, "fec.snap"); // Initialize table dump file printf("SDF FILE = %s\n",sdfile); + printf("CURRENt FILE = %s\n",bufile); // Create BURT/SDF EPICS channel names char reloadChan[256]; sprintf(reloadChan, "%s_%s", pref, "SDF_RELOAD"); // Request to load new BURT char reloadStat[256]; sprintf(reloadStat, "%s_%s", pref, "SDF_RELOAD_STATUS"); // Status of last reload char sdfFileName[256]; sprintf(sdfFileName, "%s_%s", pref, "SDF_NAME"); // Name of file to load next request - char ssdfFileName[256]; sprintf(ssdfFileName, "%s_%s", pref, "SDF_NAME_SUBSET"); // Name of file to load next subset request + // char ssdfFileName[256]; sprintf(ssdfFileName, "%s_%s", pref, "SDF_NAME_SUBSET"); // Name of file to load next subset request char loadedFile[256]; sprintf(loadedFile, "%s_%s", pref, "SDF_LOADED"); // Name of file presently loaded - char ssloadedFile[256]; sprintf(ssloadedFile, "%s_%s", pref, "SDF_LOADED_SUBSET"); // Name of subset file presently loaded + char ssloadedFile[256]; sprintf(ssloadedFile, "%s_%s", pref, "SDF_LOADED_INIT"); // Name of subset file presently loaded char speStat[256]; sprintf(speStat, "%s_%s", pref, "GRD_SP_ERR_CNT"); // Setpoint error counter char fcc[256]; sprintf(fcc, "%s_%s", pref, "SDF_FULL_CH_COUNT"); // Channels in Full BURT file char scc[256]; sprintf(scc, "%s_%s", pref, "SDF_SUBSET_CH_COUNT"); // Channels in Partial BURT file @@ -871,7 +925,7 @@ int main(int argc,char *argv[]) status = dbNameToAddr(sdfFileName,&saddr); status = dbPutField(&saddr,DBR_STRING,sdf,1); - status = dbNameToAddr(ssdfFileName,&ssaddr); + // status = dbNameToAddr(ssdfFileName,&ssaddr); status = dbNameToAddr(fcc,&fccaddr); status = dbNameToAddr(scc,&sccaddr); status = dbNameToAddr(mcc,&mccaddr); @@ -900,8 +954,8 @@ char subchancnt[256]; // Get File Name status = dbNameToAddr(sdfFileName,&saddr); status = dbGetField(&saddr,DBR_STRING,sdf,&ropts,&nvals,NULL); - status = dbNameToAddr(ssdfFileName,&ssaddr); - status = dbGetField(&ssaddr,DBR_STRING,ssdf,&ropts,&nvals,NULL); + // status = dbNameToAddr(ssdfFileName,&ssaddr); + // status = dbGetField(&ssaddr,DBR_STRING,ssdf,&ropts,&nvals,NULL); // sprintf(sdfile, "%s%s%s", sdfDir, sdf,".sdf"); sprintf(sdfile, "%s%s%s", sdfDir, sdf,".snap"); sprintf(ssdfile, "%s%s%s", sdfDir, ssdf,".snap"); @@ -913,24 +967,22 @@ char subchancnt[256]; // Clear Request status = dbPutField(&taddr,DBR_LONG,&ropts,1); switch (request){ - case BURT_LOAD_PARTIAL: - strcpy(loadedSsdf,ssdf); - status = dbPutField(&ssnaddr,DBR_STRING,loadedSsdf,1); - printf("NEW PARTIAL SDF REQ = %s \n%s %s\n%s\nReqest = %d\n",sdfile,sdf,loadedSdf,ssdfile,request); - break; case BURT_LOAD_FULL: + strcpy(loadedSdf,sdf); + status = dbPutField(&naddr,DBR_STRING,loadedSdf,1); + status = dbPutField(&ssnaddr,DBR_STRING,loadedSdf,1); + chNumP = 0; + case BURT_LOAD_PARTIAL: case BURT_RESET: strcpy(loadedSdf,sdf); status = dbPutField(&naddr,DBR_STRING,loadedSdf,1); - strcpy(loadedSsdf,""); - status = dbPutField(&ssnaddr,DBR_STRING,loadedSsdf,1); chNumP = 0; printf("NEW FULL SDF REQ = %s \n%s %s\n%s\nReqest = %d\n",sdfile,sdf,loadedSdf,ssdfile,request); break; case BURT_READ_ONLY: strcpy(loadedSdf,sdf); status = dbPutField(&naddr,DBR_STRING,loadedSdf,1); - printf("NEW FULL SDF REQ = %s \n%s %s\n%s\nReqest = %d\n",sdfile,sdf,loadedSdf,ssdfile,request); + printf("NEW READ SDF REQ = %s \n%s %s\n%s\nReqest = %d\n",sdfile,sdf,loadedSdf,ssdfile,request); break; default: break; @@ -939,10 +991,26 @@ char subchancnt[256]; if (rdstatus) burtstatus |= rdstatus; else burtstatus &= ~(6); status = dbPutField(&raddr,DBR_LONG,&rdstatus,1); - status = dbPutField(&fccaddr,DBR_LONG,&chNum,1); status = dbPutField(&sccaddr,DBR_LONG,&chNumP,1); + if(request == BURT_LOAD_FULL) + status = dbPutField(&sccaddr,DBR_LONG,&chNum,1); + status = dbPutField(&fccaddr,DBR_LONG,&chNum,1); noMon = chNum - chMon; status = dbPutField(&mccaddr,DBR_LONG,&noMon,1); + csFile = fopen(bufile,"w"); + for(ii=0;ii<chNum;ii++) + { + // printf("%s datatype is %d\n",cdTable[ii].chname,cdTable[ii].datatype); + char tabs[8]; + if(strlen(cdTable[ii].chname) > 39) sprintf(tabs,"%s","\t"); + else sprintf(tabs,"%s","\t\t"); + + if(cdTable[ii].datatype == 0) + fprintf(csFile,"%s%s%d\t%e\t\%d\n",cdTable[ii].chname,tabs,1,cdTable[ii].chval,cdTable[ii].mask); + else + fprintf(csFile,"%s%s%d\t%s\t\%d\n",cdTable[ii].chname,tabs,1,cdTable[ii].strval,cdTable[ii].mask); + } + fclose(csFile); } status = dbPutField(&raddr,DBR_LONG,&burtstatus,1); sleep(1); diff --git a/src/epics/util/BURT_RESTORE.adl b/src/epics/util/BURT_RESTORE.adl index d8ad3b9287607b6c00db84b8eee7fc55589e1d1b..a7b51e0a98702f1d6c5bd866655e6e5c48a4a2fd 100644 --- a/src/epics/util/BURT_RESTORE.adl +++ b/src/epics/util/BURT_RESTORE.adl @@ -1,14 +1,14 @@ file { name="/opt/rtcds/rtscore/branches/branch-2.9/src/epics/util/BURT_RESTORE.adl" - version=030107 + version=030105 } display { object { - x=1204 - y=215 + x=1191 + y=89 width=610 - height=856 + height=900 } clr=14 bclr=3 @@ -90,12 +90,40 @@ display { rectangle { object { x=0 - y=105 + y=0 width=610 - height=60 + height=22 } "basic attribute" { - clr=55 + clr=14 + } +} +text { + object { + x=10 + y=4 + width=200 + height=18 + } + "basic attribute" { + clr=2 + } + textix="FBID_BURT_RESTORE" + align="horiz. centered" +} +"text update" { + object { + x=390 + y=4 + width=200 + height=15 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_TIME_STRING" + clr=2 + bclr=14 + } + limits { } } rectangle { @@ -103,55 +131,182 @@ rectangle { x=0 y=24 width=610 - height=60 + height=70 } "basic attribute" { clr=55 } } -rectangle { +text { object { - x=0 - y=0 - width=610 - height=22 + x=27 + y=68 + width=100 + height=18 } "basic attribute" { clr=14 } + textix="INITIALIZATION" + align="horiz. centered" +} +"text update" { + object { + x=388 + y=69 + width=50 + height=16 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_FULL_CH_COUNT" + clr=0 + bclr=14 + } + align="horiz. centered" + limits { + } } text { object { - x=10 - y=4 + x=26 + y=46 + width=100 + height=18 + } + "basic attribute" { + clr=14 + } + textix="BURT" + align="horiz. centered" +} +"text update" { + object { + x=182 + y=69 width=200 + height=16 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED_INIT" + clr=50 + bclr=42 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=388 + y=48 + width=50 height=18 } "basic attribute" { - clr=2 + clr=14 } - textix="FBID_BURT_RESTORE" + textix="TOTAL" + align="horiz. centered" +} +text { + object { + x=445 + y=48 + width=90 + height=16 + } + "basic attribute" { + clr=14 + } + textix="!MONITORED" align="horiz. centered" } "text update" { + object { + x=461 + y=69 + width=50 + height=16 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_MON_COUNT" + clr=0 + bclr=14 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=230 + y=47 + width=100 + height=18 + } + "basic attribute" { + clr=14 + } + textix="BURT FILE" + align="horiz. centered" +} +text { object { x=390 - y=4 + y=28 width=200 - height=15 + height=16 + } + "basic attribute" { + clr=14 + } + textix="-------- CHANNELS ---------" + align="horiz. centered" +} +text { + object { + x=539 + y=48 + width=50 + height=16 + } + "basic attribute" { + clr=14 + } + textix="DIFFS" + align="horiz. centered" +} +"text update" { + object { + x=538 + y=69 + width=50 + height=16 } monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_TIME_STRING" - clr=2 + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_ERR_CNT" + clr=0 bclr=14 } + align="horiz. centered" limits { } } +rectangle { + object { + x=0 + y=101 + width=610 + height=86 + } + "basic attribute" { + clr=55 + } +} "message button" { object { x=533 - y=31 + y=137 width=70 height=19 } @@ -166,7 +321,7 @@ text { "message button" { object { x=454 - y=31 + y=137 width=70 height=19 } @@ -181,7 +336,7 @@ text { "message button" { object { x=493 - y=62 + y=161 width=70 height=19 } @@ -196,7 +351,7 @@ text { text { object { x=5 - y=31 + y=108 width=100 height=18 } @@ -209,20 +364,20 @@ text { text { object { x=5 - y=53 + y=130 width=100 height=18 } "basic attribute" { clr=14 } - textix="FULL DATA SET" + textix="RESTORE" align="horiz. centered" } "text update" { object { x=180 - y=31 + y=108 width=200 height=19 } @@ -238,7 +393,7 @@ text { "text update" { object { x=180 - y=62 + y=139 width=200 height=19 } @@ -254,7 +409,7 @@ text { text { object { x=121 - y=64 + y=141 width=50 height=16 } @@ -264,31 +419,15 @@ text { textix="LOADED" align="horiz. centered" } -"shell command" { - object { - x=115 - y=31 - width=60 - height=18 - } - command[0] { - label="BURT Restore" - name="/opt/rtcds/LOCATION_NAME/IFO_LC/scripts/burt.py" - args="-s LOCATION_NAME -i IFO_LC -m MODEL_LC -d DCU_NODE_ID -t 0 &" - } - clr=0 - bclr=14 - label="REQUEST" -} "text update" { object { x=388 - y=62 + y=139 width=50 height=19 } monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_FULL_CH_COUNT" + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_SUBSET_CH_COUNT" clr=50 bclr=42 } @@ -299,7 +438,7 @@ text { text { object { x=388 - y=31 + y=108 width=50 height=18 } @@ -309,45 +448,46 @@ text { textix="CHANS" align="horiz. centered" } -"message button" { +byte { object { - x=493 - y=124 - width=70 - height=19 + x=180 + y=128 + width=200 + height=10 } - control { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_RELOAD" - clr=50 - bclr=54 + monitor { + chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RELOAD_STATUS" + clr=20 + bclr=55 } - label="LOAD" - release_msg="4" + sbit=0 } -text { +byte { object { - x=5 - y=136 - width=100 - height=18 + x=388 + y=164 + width=50 + height=15 } - "basic attribute" { - clr=14 + monitor { + chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RELOAD_STATUS" + clr=20 + bclr=60 } - textix="PARTIAL DATA SET" - align="horiz. centered" + sbit=1 + ebit=2 } "text update" { object { - x=388 - y=137 - width=50 - height=16 + x=180 + y=164 + width=200 + height=15 } monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_SUBSET_CH_COUNT" - clr=50 - bclr=42 + chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RELOAD_TIME" + clr=0 + bclr=54 } align="horiz. centered" limits { @@ -355,2733 +495,2572 @@ text { } text { object { - x=5 - y=114 + x=43 + y=165 width=100 - height=18 + height=14 } "basic attribute" { clr=14 } - textix="BURT" + textix="TIME OF LAST RESTORE" align="horiz. centered" } -"text update" { +"shell command" { object { - x=182 - y=137 - width=200 + x=454 + y=107 + width=150 + height=20 + } + command[0] { + label="BURT Restore" + name="/opt/rtcds/LOCATION_NAME/IFO_LC/scripts/fe_load_burt" + args="-s LOCATION_NAME -i IFO_LC -d DCU_NODE_ID MODEL_LC &" + } + clr=0 + bclr=14 + label="REQUEST FILE" +} +text { + object { + x=121 + y=110 + width=50 height=16 } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED_SUBSET" - clr=50 - bclr=42 + "basic attribute" { + clr=14 } + textix="REQUEST" align="horiz. centered" - limits { - } } -"text update" { - object { - x=182 - y=114 - width=200 - height=19 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_NAME_SUBSET" - clr=50 - bclr=42 - } - align="horiz. centered" - limits { - } -} -text { - object { - x=120 - y=139 - width=50 - height=16 - } - "basic attribute" { - clr=14 - } - textix="LOADED" - align="horiz. centered" -} -"shell command" { - object { - x=115 - y=114 - width=60 - height=18 - } - command[0] { - label="BURT Restore" - name="/opt/rtcds/LOCATION_NAME/IFO_LC/scripts/burt.py" - args="-s LOCATION_NAME -i IFO_LC -m MODEL_LC -d DCU_NODE_ID -t 1 &" - } - clr=0 - bclr=14 - label="REQUEST" -} -text { - object { - x=388 - y=116 - width=50 - height=18 - } - "basic attribute" { - clr=14 - } - textix="CHANS" - align="horiz. centered" -} -rectangle { +composite { object { x=0 - y=170 + y=200 width=610 - height=22 - } - "basic attribute" { - clr=14 - } -} -"text update" { - object { - x=388 - y=173 - width=50 - height=16 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_MON_COUNT" - clr=0 - bclr=14 - } - align="horiz. centered" - limits { - } -} -text { - object { - x=289 - y=173 - width=90 - height=16 - } - "basic attribute" { - clr=0 - } - textix="NOT MONITORED:" - align="horiz. centered" -} -text { - object { - x=4 - y=173 - width=100 - height=16 - } - "basic attribute" { - clr=0 - } - textix="SETPOINT ALARMS" - align="horiz. centered" -} -"text update" { - object { - x=212 - y=173 - width=50 - height=16 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_ERR_CNT" - clr=0 - bclr=14 - } - align="horiz. centered" - limits { - } -} -text { - object { - x=128 - y=173 - width=80 - height=16 - } - "basic attribute" { - clr=0 - } - textix="TOTAL DIFFS:" - align="horiz. centered" -} -rectangle { - object { - x=48 - y=195 - width=545 - height=22 - } - "basic attribute" { - clr=14 - } -} -text { - object { - x=70 - y=198 - width=200 - height=18 - } - "basic attribute" { - clr=2 - } - textix="CHANNEL NAME" - align="horiz. centered" -} -text { - object { - x=294 - y=199 - width=60 - height=18 - } - "basic attribute" { - clr=2 - } - textix="BURT" - align="horiz. centered" -} -text { - object { - x=358 - y=199 - width=60 - height=18 - } - "basic attribute" { - clr=2 - } - textix="PRESENT" - align="horiz. centered" -} -text { - object { - x=423 - y=199 - width=170 - height=18 - } - "basic attribute" { - clr=2 - } - textix="TIME OF LAST CHANGE" - align="horiz. centered" -} -"text update" { - object { - x=48 - y=219 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT0" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=239 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT1" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=219 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT0_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=358 - y=219 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT0_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=293 - y=239 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT1_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=358 - y=239 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT1_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=48 - y=259 - width=240 - height=20 + height=689 } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT2" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=279 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT3" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=259 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT2_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=358 - y=259 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT2_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=293 - y=279 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT3_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=358 - y=279 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT3_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=48 - y=299 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT4" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=319 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT5" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=299 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT4_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=358 - y=299 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT4_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=293 - y=319 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT5_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=358 - y=319 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT5_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=48 - y=339 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT6" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=359 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT7" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=339 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT6_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=358 - y=339 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT6_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=293 - y=359 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT7_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=358 - y=359 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT7_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=48 - y=379 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT8" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=399 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT9" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=379 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT8_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=358 - y=379 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT8_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=293 - y=399 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT9_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=358 - y=399 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT9_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - format="string" - limits { - } -} -"text update" { - object { - x=423 - y=219 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT0_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=239 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT1_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=259 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT2_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=279 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT3_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=299 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT4_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=319 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT5_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=339 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT6_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=359 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT7_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=379 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT8_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=399 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT9_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"shell command" { - object { - x=13 - y=220 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT0 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" - } - clr=0 - bclr=54 - label="01" -} -"shell command" { - object { - x=13 - y=240 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT1 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="02" -} -"shell command" { - object { - x=13 - y=260 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT2 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="03" -} -"shell command" { - object { - x=13 - y=280 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT3 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" - } - clr=0 - bclr=54 - label="04" -} -"shell command" { - object { - x=13 - y=300 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT4 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="05" -} -"shell command" { - object { - x=13 - y=320 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT5 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="06" -} -"shell command" { - object { - x=13 - y=340 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT6 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="07" -} -"shell command" { - object { - x=13 - y=360 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT7 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="08" -} -"shell command" { - object { - x=13 - y=380 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT8 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="09" -} -"shell command" { - object { - x=13 - y=400 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT9 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="10" -} -composite { - object { - x=13 - y=439 - width=580 - height=200 - } - "composite name"="" - children { - composite { - object { - x=48 - y=439 - width=545 - height=200 - } - "composite name"="" - children { - "text update" { - object { - x=48 - y=439 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT10" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=48 - y=459 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT11" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=293 - y=439 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT10_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=358 - y=439 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT10_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=293 - y=459 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT11_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=358 - y=459 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT11_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=48 - y=479 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT12" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=48 - y=499 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT13" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=293 - y=479 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT12_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=358 - y=479 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT12_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=293 - y=499 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT13_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=358 - y=499 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT13_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=48 - y=519 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT14" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=48 - y=539 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT15" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=293 - y=519 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT14_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=358 - y=519 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT14_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=293 - y=539 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT15_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=358 - y=539 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT15_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=423 - y=439 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT10_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=423 - y=459 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT11_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=423 - y=479 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT12_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=423 - y=499 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT13_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=423 - y=519 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT14_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=423 - y=539 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT15_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=48 - y=559 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT16" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=48 - y=579 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT17" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=293 - y=559 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT16_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=358 - y=559 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT16_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=293 - y=579 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT17_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=358 - y=579 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT17_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=48 - y=599 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT18" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=48 - y=619 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT19" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=293 - y=599 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT18_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=358 - y=599 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT18_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=293 - y=619 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT19_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=358 - y=619 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT19_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=423 - y=559 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT16_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=423 - y=579 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT17_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=423 - y=599 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT18_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=423 - y=619 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT19_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } - } - } - } - "shell command" { - object { - x=13 - y=440 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT10 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="11" - } - "shell command" { - object { - x=13 - y=460 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT11 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="12" - } - "shell command" { - object { - x=13 - y=480 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT12 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="13" - } - "shell command" { - object { - x=13 - y=500 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT13 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="14" - } - "shell command" { - object { - x=13 - y=520 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT14 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="15" - } - "shell command" { - object { - x=13 - y=540 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT15 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="16" - } - "shell command" { - object { - x=13 - y=560 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT16 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="17" - } - "shell command" { - object { - x=13 - y=580 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT17 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="18" - } - "shell command" { - object { - x=13 - y=600 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT18 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="19" - } - "shell command" { - object { - x=13 - y=620 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT19 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="20" - } - } -} -"text update" { - object { - x=48 - y=659 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT20" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=679 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT21" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=659 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT20_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=358 - y=659 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT20_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=679 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT21_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=358 - y=679 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT21_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=699 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT22" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=719 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT23" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=699 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT22_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=358 - y=699 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT22_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=719 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT23_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=358 - y=719 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT23_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=739 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT24" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=759 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT25" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=739 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT24_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=358 - y=739 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT24_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=759 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT25_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=358 - y=759 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT25_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=659 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT20_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=679 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT21_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=699 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT22_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=719 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT23_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=739 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT24_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=759 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT25_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=779 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT26" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=799 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT27" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=779 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT26_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=358 - y=779 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT26_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=799 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT27_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=358 - y=799 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT27_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=819 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT28" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=48 - y=839 - width=240 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT29" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=819 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT28_BURT" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=358 - y=819 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT28_LIVE" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=293 - y=839 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT29_BURT" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=358 - y=839 - width=60 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT29_LIVE" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=779 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT26_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=799 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT27_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=819 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT28_TIME" - clr=14 - bclr=50 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=423 - y=839 - width=170 - height=20 - } - monitor { - chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT29_TIME" - clr=14 - bclr=1 - } - align="horiz. centered" - limits { - } -} -"shell command" { - object { - x=13 - y=660 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT20 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="21" -} -"shell command" { - object { - x=13 - y=680 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT21 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="22" -} -"shell command" { - object { - x=13 - y=700 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT22 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="23" -} -"shell command" { - object { - x=13 - y=720 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT23 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="24" -} -"shell command" { - object { - x=13 - y=740 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT24 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="25" -} -"shell command" { - object { - x=13 - y=760 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT25 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="26" -} -"shell command" { - object { - x=13 - y=780 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT26 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="27" -} -"shell command" { - object { - x=13 - y=800 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT27 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="28" -} -"shell command" { - object { - x=13 - y=820 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT28 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="29" -} -"shell command" { - object { - x=13 - y=840 - width=30 - height=18 - } - command[0] { - label="GUARD CH1" - name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" - args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT29 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED" - } - clr=0 - bclr=54 - label="30" -} -byte { - object { - x=180 - y=51 - width=200 - height=10 - } - monitor { - chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RELOAD_STATUS" - clr=20 - bclr=55 - } - sbit=0 -} -byte { - object { - x=388 - y=87 - width=50 - height=15 - } - monitor { - chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RELOAD_STATUS" - clr=20 - bclr=60 - } - sbit=1 - ebit=2 -} -"text update" { - object { - x=180 - y=87 - width=200 - height=15 - } - monitor { - chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RELOAD_TIME" - clr=0 - bclr=54 - } - align="horiz. centered" - limits { - } -} -text { - object { - x=43 - y=88 - width=100 - height=18 - } - "basic attribute" { - clr=14 + "composite name"="" + children { + rectangle { + object { + x=0 + y=200 + width=610 + height=22 + } + "basic attribute" { + clr=14 + } + } + text { + object { + x=231 + y=203 + width=100 + height=16 + } + "basic attribute" { + clr=0 + } + textix="SETPOINT CHANGES" + align="horiz. centered" + } + rectangle { + object { + x=48 + y=225 + width=545 + height=22 + } + "basic attribute" { + clr=14 + } + } + text { + object { + x=70 + y=228 + width=200 + height=18 + } + "basic attribute" { + clr=2 + } + textix="CHANNEL NAME" + align="horiz. centered" + } + text { + object { + x=294 + y=229 + width=60 + height=18 + } + "basic attribute" { + clr=2 + } + textix="BURT" + align="horiz. centered" + } + text { + object { + x=358 + y=229 + width=60 + height=18 + } + "basic attribute" { + clr=2 + } + textix="PRESENT" + align="horiz. centered" + } + text { + object { + x=423 + y=229 + width=170 + height=18 + } + "basic attribute" { + clr=2 + } + textix="TIME OF LAST CHANGE" + align="horiz. centered" + } + "text update" { + object { + x=48 + y=249 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT0" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=269 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT1" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=249 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT0_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=358 + y=249 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT0_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=293 + y=269 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT1_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=358 + y=269 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT1_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=48 + y=289 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT2" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=309 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT3" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=289 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT2_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=358 + y=289 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT2_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=293 + y=309 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT3_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=358 + y=309 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT3_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=48 + y=329 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT4" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=349 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT5" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=329 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT4_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=358 + y=329 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT4_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=293 + y=349 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT5_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=358 + y=349 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT5_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=48 + y=369 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT6" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=389 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT7" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=369 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT6_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=358 + y=369 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT6_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=293 + y=389 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT7_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=358 + y=389 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT7_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=48 + y=409 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT8" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=429 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT9" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=409 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT8_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=358 + y=409 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT8_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=293 + y=429 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT9_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=358 + y=429 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT9_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + format="string" + limits { + } + } + "text update" { + object { + x=423 + y=249 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT0_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=269 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT1_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=289 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT2_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=309 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT3_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=329 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT4_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=349 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT5_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=369 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT6_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=389 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT7_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=409 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT8_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=429 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT9_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "shell command" { + object { + x=13 + y=250 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT0 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="01" + } + "shell command" { + object { + x=13 + y=270 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT1 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="02" + } + "shell command" { + object { + x=13 + y=290 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT2 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="03" + } + "shell command" { + object { + x=13 + y=310 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT3 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="04" + } + "shell command" { + object { + x=13 + y=330 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT4 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="05" + } + "shell command" { + object { + x=13 + y=350 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT5 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="06" + } + "shell command" { + object { + x=13 + y=370 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT6 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="07" + } + "shell command" { + object { + x=13 + y=390 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT7 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="08" + } + "shell command" { + object { + x=13 + y=410 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT8 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="09" + } + "shell command" { + object { + x=13 + y=430 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT9 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="10" + } + composite { + object { + x=48 + y=469 + width=545 + height=200 + } + "composite name"="" + children { + "text update" { + object { + x=48 + y=469 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT10" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=489 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT11" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=469 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT10_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=469 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT10_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=489 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT11_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=489 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT11_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=509 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT12" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=529 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT13" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=509 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT12_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=509 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT12_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=529 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT13_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=529 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT13_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=549 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT14" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=569 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT15" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=549 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT14_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=549 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT14_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=569 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT15_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=569 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT15_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=469 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT10_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=489 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT11_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=509 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT12_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=529 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT13_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=549 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT14_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=569 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT15_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=589 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT16" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=609 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT17" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=589 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT16_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=589 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT16_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=609 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT17_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=609 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT17_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=629 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT18" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=649 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT19" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=629 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT18_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=629 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT18_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=649 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT19_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=649 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT19_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=589 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT16_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=609 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT17_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=629 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT18_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=649 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT19_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + } + } + "shell command" { + object { + x=13 + y=470 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT10 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="11" + } + "shell command" { + object { + x=13 + y=490 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT11 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="12" + } + "shell command" { + object { + x=13 + y=510 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT12 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="13" + } + "shell command" { + object { + x=13 + y=530 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT13 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="14" + } + "shell command" { + object { + x=13 + y=550 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT14 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="15" + } + "shell command" { + object { + x=13 + y=570 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT15 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="16" + } + "shell command" { + object { + x=13 + y=590 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT16 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="17" + } + "shell command" { + object { + x=13 + y=610 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT17 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="18" + } + "shell command" { + object { + x=13 + y=630 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT18 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="19" + } + "shell command" { + object { + x=13 + y=650 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT19 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="20" + } + "text update" { + object { + x=48 + y=689 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT20" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=709 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT21" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=689 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT20_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=689 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT20_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=709 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT21_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=709 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT21_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=729 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT22" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=749 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT23" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=729 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT22_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=729 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT22_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=749 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT23_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=749 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT23_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=769 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT24" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=789 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT25" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=769 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT24_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=769 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT24_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=789 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT25_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=789 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT25_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=689 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT20_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=709 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT21_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=729 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT22_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=749 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT23_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=769 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT24_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=789 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT25_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=809 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT26" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=829 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT27" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=809 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT26_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=809 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT26_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=829 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT27_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=829 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT27_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=849 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT28" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=48 + y=869 + width=240 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT29" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=849 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT28_BURT" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=849 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT28_LIVE" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=293 + y=869 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT29_BURT" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=358 + y=869 + width=60 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT29_LIVE" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=809 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT26_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=829 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT27_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=849 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT28_TIME" + clr=14 + bclr=50 + } + align="horiz. centered" + limits { + } + } + "text update" { + object { + x=423 + y=869 + width=170 + height=20 + } + monitor { + chan="SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT29_TIME" + clr=14 + bclr=1 + } + align="horiz. centered" + limits { + } + } + "shell command" { + object { + x=13 + y=690 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT20 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="21" + } + "shell command" { + object { + x=13 + y=710 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT21 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="22" + } + "shell command" { + object { + x=13 + y=730 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT22 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="23" + } + "shell command" { + object { + x=13 + y=750 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT23 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="24" + } + "shell command" { + object { + x=13 + y=770 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT24 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="25" + } + "shell command" { + object { + x=13 + y=790 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT25 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="26" + } + "shell command" { + object { + x=13 + y=810 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT26 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="27" + } + "shell command" { + object { + x=13 + y=830 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT27 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="28" + } + "shell command" { + object { + x=13 + y=850 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT28 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="29" + } + "shell command" { + object { + x=13 + y=870 + width=30 + height=18 + } + command[0] { + label="GUARD CH1" + name="/opt/rtcds/lho/h1/scripts/grdfiltdecode.py" + args="-i SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_GRD_SP_STAT29 -m SITE_NAME:SYSTEM_NAME-DCU_NODE_ID_SDF_LOADED -d TARGET_MEDM" + } + clr=0 + bclr=54 + label="30" + } } - textix="TIME OF LAST BURT RESTORE" - align="horiz. centered" } diff --git a/src/epics/util/feCodeGen.pl b/src/epics/util/feCodeGen.pl index 8b8f4a25f8f489dbe761a66dd4e4c245102f5816..6a363ee5ee16c9e3abd3f53e16e248ff75e33362 100755 --- a/src/epics/util/feCodeGen.pl +++ b/src/epics/util/feCodeGen.pl @@ -1389,10 +1389,10 @@ print EPICS "DUMMY FEC\_$dcuId\_SDF_FULL_CH_COUNT int ao 0\n"; print EPICS "DUMMY FEC\_$dcuId\_SDF_SUBSET_CH_COUNT int ao 0\n"; print EPICS "DUMMY FEC\_$dcuId\_SDF_MON_COUNT int ao 0\n"; print EPICS "DUMMY FEC\_$dcuId\_SDF_NAME int stringin 0\n"; -print EPICS "DUMMY FEC\_$dcuId\_SDF_NAME_SUBSET int stringin 0\n"; +# print EPICS "DUMMY FEC\_$dcuId\_SDF_NAME_SUBSET int stringin 0\n"; print EPICS "DUMMY FEC\_$dcuId\_SDF_RELOAD_TIME int stringout 0\n"; print EPICS "DUMMY FEC\_$dcuId\_SDF_LOADED int stringout 0\n"; -print EPICS "DUMMY FEC\_$dcuId\_SDF_LOADED_SUBSET int stringout 0\n"; +print EPICS "DUMMY FEC\_$dcuId\_SDF_LOADED_INIT int stringout 0\n"; # The following code is in solely for automated testing. if($diagTest > -1) @@ -2081,6 +2081,7 @@ mkpath $epicsScreensDir, 0, 0755; my $usite = uc $site; my $lsite = lc $site; my $sysname = "FEC"; +my $medmDir = "\\/opt\\/rtcds\\/" . $location . "\\/" . $lsite . "\\/medm\\/" . $skeleton . "\\/"; $sed_arg = "s/SITE_NAME/$site/g;s/CONTROL_SYSTEM_SYSTEM_NAME/" . uc($skeleton) . "/g;s/SYSTEM_NAME/" . uc($sysname) . "/g;s/GDS_NODE_ID/" . $gdsNodeId . "/g;"; $sed_arg .= "s/LOCATION_NAME/$location/g;"; $sed_arg .= "s/DCU_NODE_ID/$dcuId/g;"; @@ -2089,6 +2090,7 @@ $sed_arg .= "s/FBID/$sysname/g;"; $sed_arg .= "s/MEDMDIR/$skeleton/g;"; $sed_arg .= "s/IFO_LC/$lsite/g;"; $sed_arg .= "s/MODEL_LC/$skeleton/g;"; +$sed_arg .= "s/TARGET_MEDM/$medmDir/g;"; $sitelc = lc($site); $mxpt = 215; $mypt = 172; diff --git a/src/epics/util/lib/medmGenGdsTp.pm b/src/epics/util/lib/medmGenGdsTp.pm index d36d5d3ebcb14cb8b2c0dfb958954f165bddf12a..4db811cf48cc0e0cbf169c774a0d03f88700f8f1 100644 --- a/src/epics/util/lib/medmGenGdsTp.pm +++ b/src/epics/util/lib/medmGenGdsTp.pm @@ -139,10 +139,10 @@ sub createGdsMedm $medmdata .= ("CDS::medmGen::medmGenText") -> ($xpos,$ypos,$width,$height,"PART",$ecolors{black}); # BURT FULL File Loaded $xpos = 602; $ypos = 128; $width = 160; $height = 15; - $medmdata .= ("CDS::medmGen::medmGenTextMon") -> ($xpos,$ypos,$width,$height,"$site\:FEC-$dcuid\_SDF_LOADED",$ecolors{white},$ecolors{blue},"static"); + $medmdata .= ("CDS::medmGen::medmGenTextMon") -> ($xpos,$ypos,$width,$height,"$site\:FEC-$dcuid\_SDF_LOADED_INIT",$ecolors{white},$ecolors{blue},"static"); # BURT Partial File Loaded $xpos = 602; $ypos = 148; $width = 160; $height = 15; - $medmdata .= ("CDS::medmGen::medmGenTextMon") -> ($xpos,$ypos,$width,$height,"$site\:FEC-$dcuid\_SDF_LOADED_SUBSET",$ecolors{white},$ecolors{blue},"static"); + $medmdata .= ("CDS::medmGen::medmGenTextMon") -> ($xpos,$ypos,$width,$height,"$site\:FEC-$dcuid\_SDF_LOADED",$ecolors{white},$ecolors{blue},"static"); # BURT Reload Status bit 0 $xpos = 562; $ypos = 166; $width = 65; $height = 10; $medmdata .= ("CDS::medmGen::medmGenByte") -> ($xpos,$ypos,$width,$height,"$site\:FEC-$dcuid\_SDF_RELOAD_STATUS","0","0",$ecolors{yellow},$ecolors{green});