Changeset 65
- Timestamp:
- 10/30/2008 11:08:08 PM (14 years ago)
- Location:
- SH_SHM/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
SH_SHM/trunk/inputs/filter_lookup.txt
r51 r65 353 353 NKC-BH-N GRSN 354 354 NKC-BH-E GRSN 355 NKC-HH-Z GRSN 356 NKC-HH-N GRSN 357 NKC-HH-E GRSN 355 358 OKC-BH-Z GRSN 356 359 OKC-BH-N GRSN -
SH_SHM/trunk/inputs/sensitivities.txt
r56 r65 2 2 ! ================= 3 3 ! 4 ! $Revision: 41 $, $Date: 2008-10-13 10:41:39 +0200 (Mo, 13Okt 2008) $4 ! $Revision: 50 $, $Date: 2008-10-16 15:31:16 +0200 (Do, 16 Okt 2008) $ 5 5 ! 6 6 ! Sensitivity file for data streams … … 541 541 nkc-bh-? 16-may-1997 9-sep-2003 0.749 542 542 nkc-bh-? 10-sep-2003 ... 1.67 543 nkc-hh-? 16-may-1997 9-sep-2003 0.749 544 nkc-hh-? 10-sep-2003 ... 1.67 543 545 544 546 ojc-bh-? 1-jan-1991 ... 0.198 -
SH_SHM/trunk/source/motif/mfexec.c
r64 r65 3 3 * ======== 4 4 * 5 * $Revision: 49 $, $Date: 2008-10-14 22:36:40 +0200 (Di, 14Okt 2008) $5 * $Revision: 50 $, $Date: 2008-10-16 15:31:16 +0200 (Do, 16 Okt 2008) $ 6 6 * 7 7 * execution of SH commands … … 1190 1190 XtSetValues( w[k_widget_filter_autocut_option], al, 1 ); 1191 1191 1192 for (i=k_widget_filter_none; i<=k_widget_filter_ sro_lp; i++)1192 for (i=k_widget_filter_none; i<=k_widget_filter_displace; i++) 1193 1193 if (i != k_widget_filter_lrsm_lp) 1194 1194 XmToggleButtonSetState( w[i], FALSE, FALSE ); … … 1209 1209 else if (strcmp(fil->name,"SRO_LP") == 0) 1210 1210 XmToggleButtonSetState( w[k_widget_filter_sro_lp], TRUE, FALSE ); 1211 else if (strcmp(fil->name,"BUT_BP") == 0) 1212 XmToggleButtonSetState( w[k_widget_filter_but_bp], TRUE, FALSE ); 1213 else if (strcmp(fil->name,"BUT_HP") == 0) 1214 XmToggleButtonSetState( w[k_widget_filter_but_hp], TRUE, FALSE ); 1215 else if (strcmp(fil->name,"BUT_LP") == 0) 1216 XmToggleButtonSetState( w[k_widget_filter_but_lp], TRUE, FALSE ); 1217 else if (strcmp(fil->name,"DISPLACEMENT") == 0) 1218 XmToggleButtonSetState( w[k_widget_filter_displace], TRUE, FALSE ); 1211 1219 1212 1220 cu_set_string( w[k_widget_filter_edit_text], fil->name ); -
SH_SHM/trunk/source/motif/shm.c
r64 r65 3 3 * ===== 4 4 * 5 * $Revision: 49 $, $Date: 2008-10-14 22:36:40 +0200 (Di, 14Okt 2008) $5 * $Revision: 50 $, $Date: 2008-10-16 15:31:16 +0200 (Do, 16 Okt 2008) $ 6 6 * 7 7 * main module of shm … … 1501 1501 } /*endif*/ 1502 1502 if (strcmp(GpGetString(cGpS_default_filter),"BUT_BP") == 0) { 1503 strcpy( xmv_cmd_filter.name, cu_get_string( 1504 xmv_w[k_widget_filter_edit_text]) ); 1503 1505 cl_create_filter( xmv_w, CLC_CREFIL_BUT_BP, &status ); 1506 cu_set_string( xmv_w[k_widget_filter_edit_text], xmv_cmd_filter.name ); 1504 1507 if (Severe(&status)) { 1505 1508 cl2_display_busy( xmv_w, FALSE ); 1506 1509 break; 1507 1510 } /*endif*/ 1508 strcpy( xmv_cmd_filter.name, cu_get_string(1509 xmv_w[k_widget_filter_edit_text]) );1510 1511 } /*endif*/ 1511 1512 if (xmv_cmd_filter.name[0] != '\0') {
Note: See TracChangeset
for help on using the changeset viewer.