Changeset 344


Ignore:
Timestamp:
03/10/2011 03:03:40 PM (12 years ago)
Author:
marcus
Message:

r183 | walther | 2011-03-10 15:03:12 +0100 (Do, 10 Mär 2011) | 1 line

Added configuration parameter show_evt_info

Location:
SH_SHM/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • SH_SHM/trunk/inputs/shm-config-default.txt

    r338 r344  
    344344top_down_order               false 
    345345 
    346 !                            scale traces separately (true) or with the same 
    347 !                            magnification (false) (Obsolete since SHM 2.4c) 
    348 !                            type: boolean 
    349 auto_scaling                 false 
    350  
    351346!                            normalisation of traces on display; 
    352347!                            0 = use old style (auto_scaling value), 1 = use 
     
    403398!                            the distance between the epicentre and the 
    404399!                            reference station? 
    405 autofilter_by_distance       true 
     400autofilter_by_distance       false 
    406401!                            if yes, what is the separation distance in degrees 
    407402autofilter_sepdist           5.0 
     
    434429reads_invhdr                 false 
    435430 
     431!                            Show EVT details in SHM waveform window. Used only 
     432!                            for lists of detections (eventlist). 
     433show_evt_info                false 
     434 
    436435!                            debug level; 0 = no debug output, 1 = little 
    437436!                            debug output, 2 = more debug output, ... 
  • SH_SHM/trunk/source/globalparams.c

    r68 r344  
    33 *      ============== 
    44 * 
    5  * $Revision: 53 $, $Date: 2008-10-21 09:13:49 +0200 (Di, 21 Okt 2008) $ 
     5 * $Revision: 183 $, $Date: 2011-03-10 15:03:12 +0100 (Do, 10 MÀr 2011) $ 
    66 * 
    77 * Management of global parameters 
     
    403403        "autosort_by_distance", 
    404404        "autofilter_by_distance", 
     405        "show_evt_info", 
    405406        "b_last_parameter" 
    406407}; 
  • SH_SHM/trunk/source/globalparams.h

    r68 r344  
    33 *      ============== 
    44 * 
    5  * $Revision: 53 $, $Date: 2008-10-21 09:13:49 +0200 (Di, 21 Okt 2008) $ 
     5 * $Revision: 183 $, $Date: 2011-03-10 15:03:12 +0100 (Do, 10 MÀr 2011) $ 
    66 * 
    77 * Management of global parameters 
     
    240240        cGpB_autosort_by_distance, 
    241241        cGpB_autofilter_by_distance, 
     242        cGpB_show_evt_info, 
    242243        cGpB_last 
    243244} TGpBooleanIndex; 
  • SH_SHM/trunk/source/motif/motifgraph.c

    r66 r344  
    34983498        /* executable code */ 
    34993499 
     3500        /* check configuration parameter */ 
     3501        if  (!GpGetBoolean(cGpB_show_evt_info)) 
     3502            return; 
     3503 
    35003504        if  (ypos < 0)  { 
    35013505                Window   root_ret;   /* root window */ 
Note: See TracChangeset for help on using the changeset viewer.