Remove superfluous trailing white space from TCL files
This commit is contained in:
@@ -25,7 +25,7 @@ proc ::histogram_memory::select_read_type {type} {
|
||||
# Instrument specific X and Y dimension names
|
||||
variable INST_NXC
|
||||
variable INST_NYC
|
||||
|
||||
|
||||
if [catch {
|
||||
$HMOBJ configure read_data_period_number 0
|
||||
|
||||
@@ -49,67 +49,67 @@ proc ::histogram_memory::select_read_type {type} {
|
||||
$HMOBJ configure rank 2
|
||||
$HMOBJ configure dim0 [SplitReply [$HMOBJ configure $INST_NXC]]
|
||||
$HMOBJ configure dim1 [SplitReply [$HMOBJ configure oat_ntc_eff]]
|
||||
$HMOBJ configure READ_DATA_TYPE "HISTOPERIOD_XT"
|
||||
$HMOBJ configure READ_DATA_TYPE "HISTOPERIOD_XT"
|
||||
set hmm_ext "_xt"
|
||||
}
|
||||
"HISTOGRAM_YT" - "HISTOPERIOD_YT" {
|
||||
$HMOBJ configure rank 2
|
||||
$HMOBJ configure dim0 [SplitReply [$HMOBJ configure oat_ntc_eff]]
|
||||
$HMOBJ configure dim1 [SplitReply [$HMOBJ configure $INST_NYC]]
|
||||
$HMOBJ configure READ_DATA_TYPE "HISTOPERIOD_YT"
|
||||
$HMOBJ configure READ_DATA_TYPE "HISTOPERIOD_YT"
|
||||
set hmm_ext "_ty"
|
||||
}
|
||||
"HISTOGRAM_X" - "HISTOPERIOD_X" {
|
||||
$HMOBJ configure rank 1
|
||||
$HMOBJ configure dim0 [SplitReply [$HMOBJ configure $INST_NXC]]
|
||||
$HMOBJ configure READ_DATA_TYPE "HISTOPERIOD_X"
|
||||
$HMOBJ configure READ_DATA_TYPE "HISTOPERIOD_X"
|
||||
set hmm_ext "_x"
|
||||
}
|
||||
"HISTOGRAM_Y" - "HISTOPERIOD_Y" {
|
||||
$HMOBJ configure rank 1
|
||||
$HMOBJ configure dim0 [SplitReply [$HMOBJ configure $INST_NYC]]
|
||||
$HMOBJ configure READ_DATA_TYPE "HISTOPERIOD_Y"
|
||||
$HMOBJ configure READ_DATA_TYPE "HISTOPERIOD_Y"
|
||||
set hmm_ext "_y"
|
||||
}
|
||||
"HISTOGRAM_T" - "HISTOPERIOD_T" {
|
||||
$HMOBJ configure rank 1
|
||||
$HMOBJ configure dim0 [SplitReply [$HMOBJ configure oat_ntc_eff]]
|
||||
$HMOBJ configure READ_DATA_TYPE "HISTOPERIOD_T"
|
||||
$HMOBJ configure READ_DATA_TYPE "HISTOPERIOD_T"
|
||||
set hmm_ext "_t"
|
||||
}
|
||||
"TOTAL_HISTOGRAM_XY" {
|
||||
$HMOBJ configure rank 2
|
||||
$HMOBJ configure dim0 [SplitReply [$HMOBJ configure $INST_NXC]]
|
||||
$HMOBJ configure dim1 [SplitReply [$HMOBJ configure $INST_NYC]]
|
||||
$HMOBJ configure READ_DATA_TYPE $type
|
||||
$HMOBJ configure READ_DATA_TYPE $type
|
||||
set hmm_ext "_total_xy"
|
||||
}
|
||||
"TOTAL_HISTOGRAM_XT" {
|
||||
$HMOBJ configure rank 2
|
||||
$HMOBJ configure dim0 [SplitReply [$HMOBJ configure $INST_NXC]]
|
||||
$HMOBJ configure dim1 [SplitReply [$HMOBJ configure oat_ntc_eff]]
|
||||
$HMOBJ configure READ_DATA_TYPE $type
|
||||
$HMOBJ configure READ_DATA_TYPE $type
|
||||
set hmm_ext "_total_xt"
|
||||
}
|
||||
"TOTAL_HISTOGRAM_YT" {
|
||||
$HMOBJ configure rank 2
|
||||
$HMOBJ configure dim0 [SplitReply [$HMOBJ configure oat_ntc_eff]]
|
||||
$HMOBJ configure dim1 [SplitReply [$HMOBJ configure $INST_NYC]]
|
||||
$HMOBJ configure READ_DATA_TYPE $type
|
||||
$HMOBJ configure READ_DATA_TYPE $type
|
||||
set hmm_ext "_total_ty"
|
||||
}
|
||||
"TOTAL_HISTOGRAM_XP" {
|
||||
$HMOBJ configure rank 2
|
||||
$HMOBJ configure dim0 [SplitReply [$HMOBJ configure $INST_NXC]]
|
||||
$HMOBJ configure dim1 [expr 1 + [SplitReply [$HMOBJ configure maximum_period]]]
|
||||
$HMOBJ configure READ_DATA_TYPE $type
|
||||
$HMOBJ configure READ_DATA_TYPE $type
|
||||
set hmm_ext "_total_xp"
|
||||
}
|
||||
"TOTAL_HISTOGRAM_YP" {
|
||||
$HMOBJ configure rank 2
|
||||
$HMOBJ configure dim0 [expr 1 + [SplitReply [$HMOBJ configure maximum_period]]]
|
||||
$HMOBJ configure dim1 [SplitReply [$HMOBJ configure $INST_NYC]]
|
||||
$HMOBJ configure READ_DATA_TYPE $type
|
||||
$HMOBJ configure READ_DATA_TYPE $type
|
||||
set hmm_ext "_total_py"
|
||||
}
|
||||
"TOTAL_HISTOGRAM_X" {
|
||||
@@ -149,14 +149,14 @@ publish ::histogram_memory::select_read_type user
|
||||
|
||||
##
|
||||
# @brief Instrument specific configurations can redefine this
|
||||
# to select extra read data types or override one of the
|
||||
# to select extra read data types or override one of the
|
||||
# common data types for the histogram memory.
|
||||
proc ::histogram_memory::is_select_read_type {type} {
|
||||
variable HMOBJ
|
||||
# Instrument specific X and Y dimension names
|
||||
variable INST_NXC
|
||||
variable INST_NYC
|
||||
|
||||
|
||||
return "notfound"
|
||||
}
|
||||
publish ::histogram_memory::is_select_read_type user
|
||||
@@ -166,7 +166,7 @@ publish ::histogram_memory::is_select_read_type user
|
||||
# specific type then set a common type.
|
||||
proc ::histogram_memory::hmm_set_read_type {type} {
|
||||
variable HMOBJ
|
||||
|
||||
|
||||
if [ catch {
|
||||
set hmm_ext [is_select_read_type $type]
|
||||
if {$hmm_ext == "notfound"} {
|
||||
@@ -205,7 +205,7 @@ proc ::histogram_memory::set_axes {typelist} {
|
||||
# Instrument specific X and Y dimension names
|
||||
variable INST_NXC
|
||||
variable INST_NYC
|
||||
|
||||
|
||||
if [catch {
|
||||
set signal 1
|
||||
foreach type $typelist {
|
||||
@@ -555,7 +555,7 @@ hsetprop $HP_HMM data true
|
||||
hsetprop $HP_HMM klass parameter
|
||||
hsetprop $HP_HMM nxalias hmscobj_hmm
|
||||
hsetprop $HP_HMM sicsdev none
|
||||
#hsetprop /sics/hmscobj/data
|
||||
#hsetprop /sics/hmscobj/data
|
||||
#sicspoll add /sics/hmscobj/data hdb
|
||||
|
||||
sicslist setatt $HMSCOBJ kind scobj
|
||||
|
||||
Reference in New Issue
Block a user