JiscMail Logo
Email discussion lists for the UK Education and Research communities

Help for STARDEV Archives


STARDEV Archives

STARDEV Archives


STARDEV@JISCMAIL.AC.UK


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

STARDEV Home

STARDEV Home

STARDEV  May 2010

STARDEV May 2010

Options

Subscribe or Unsubscribe

Subscribe or Unsubscribe

Log In

Log In

Get Password

Get Password

Subject:

Recent repository commits

From:

Tim Jenness <[log in to unmask]>

Reply-To:

Starlink development <[log in to unmask]>

Date:

Sat, 29 May 2010 05:00:21 +0100

Content-Type:

text/plain

Parts/Attachments:

Parts/Attachments

text/plain (205 lines)

Commit summary from repository starlink
------------------------------------

  (Tim Jenness) smurf: Add SMO smoothing model to iterative map-maker
    99.9% applications/smurf/libsmf/
  
  (Tim Jenness) smurf: Check the bits in PLN and not multiply them
   100.0% applications/smurf/libsmf/
  
  (Tim Jenness) smurf: Assigning a negative number to a size_t does not work
   100.0% applications/smurf/libsmf/
  
  (Ed Chapin) smurf: some test code for alternative sample variance calc in maps
   100.0% applications/smurf/libsmf/
  
  (Ed Chapin) smurf: clean up needlessly complicated init in smf_model_create
   100.0% applications/smurf/libsmf/
  
  (Ed Chapin) smurf: replacing dead DKS with average now optional (dks.replacebad)
    99.0% applications/smurf/libsmf/
  
  (David Berry) smurf: heavier clipping when finding RMS gradient in dc step correction
   100.0% applications/smurf/libsmf/
  
  (David Berry) smurf: Fix bad quality indexing in step correction
   100.0% applications/smurf/libsmf/
  
  (David Berry) Revert "smurf: Correct indexing of quality array when DC steps found close to start or end"
   100.0% applications/smurf/libsmf/
  
  (David Berry) smurf: Correct indexing of quality array when DC steps found close to start or end
   100.0% applications/smurf/libsmf/
  
  (David Berry) smurf: Ignore previously flagged jumps when fitting data to a new jumps
   100.0% applications/smurf/libsmf/
 

Commits from repository starlink
-----------------------------

  commit 69c49eec09680db948b6599f8505c674c75e8a30
  Author: Tim Jenness <[log in to unmask]>
  Date:   Fri May 28 15:42:20 2010 -1000
  
      smurf: Add SMO smoothing model to iterative map-maker
      
      SMO == smoothing model
      
      Add boxcar smoothing via smf_boxcar1D.
      
      Not really tested and bound to have problems with quality flags.
  
   applications/smurf/defaults/smurf_makemap.def      |    5 +
   applications/smurf/libsmf/Makefile.am              |    1 +
   applications/smurf/libsmf/smf.h.source             |    4 +
   .../{smf_calcmodel_pln.c => smf_calcmodel_smo.c}   |   86 +++++++++++++-----
   applications/smurf/libsmf/smf_checkmem_dimm.c      |    6 ++
   applications/smurf/libsmf/smf_model_create.c       |   16 ++++
   applications/smurf/libsmf/smf_model_createHdr.c    |    6 ++
   applications/smurf/libsmf/smf_model_getname.c      |    6 ++
   applications/smurf/libsmf/smf_model_getptr.c       |    6 ++
   applications/smurf/libsmf/smf_model_gettype.c      |    4 +
   applications/smurf/libsmf/smf_typ.h                |    5 +-
   11 files changed, 123 insertions(+), 22 deletions(-)
  
  commit af6e143cd301fdd2206f14da7dc1cc7fc68c668d
  Author: Tim Jenness <[log in to unmask]>
  Date:   Fri May 28 15:41:11 2010 -1000
  
      smurf: Check the bits in PLN and not multiply them
      
      One of the if clauses checked the return result of multiplying
      a quality with a bit rather than checking the logical AND.
  
   applications/smurf/libsmf/smf_calcmodel_pln.c |    4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)
  
  commit 5cc9ace90da9ad5749c835366e29b4c92cbde67d
  Author: Tim Jenness <[log in to unmask]>
  Date:   Fri May 28 15:39:01 2010 -1000
  
      smurf: Assigning a negative number to a size_t does not work
      
      "off" was a size_t so in this code below:
      
             if( i < (window-1) ) off = -i/2;
             else off = -window/2;
      
      "off" was becoming very large and walking off the end of the array. I
      have no real idea how boxcar smoothing was even working. "off" is
      now a long and the above code changed to:
      
             if( i < (window-1) ) off = -1*(long)i/2;
             else off = -1*(long)window/2;
  
   applications/smurf/libsmf/smf_boxcar1.cgen |   16 ++++++++++------
   1 files changed, 10 insertions(+), 6 deletions(-)
  
  commit 3b3dcde9ea46377c863068f11e375525bb15a534
  Author: Ed Chapin <[log in to unmask]>
  Date:   Fri May 28 17:23:20 2010 -0700
  
      smurf: some test code for alternative sample variance calc in maps
      
      Per was looking into how the map sample variance is calculated. In
      order to do his version we need to keep track of an additional sum,
      the total of the mapweights^2 which requires an additional map-sized
      buffer in smf_iteratemap and an extra parameter to smf_rebinmap1. To
      turn this alternative method on, uncomment the line at the top of
      smf_rebinmap1 that defines __SMF_REBINMAP__SAMPLE_STANDARD_DEVIATION.
  
   applications/smurf/libsmf/smf.h.source        |    3 +-
   applications/smurf/libsmf/smf_calcmodel_ast.c |    3 ++
   applications/smurf/libsmf/smf_iteratemap.c    |   26 +++++++++++---
   applications/smurf/libsmf/smf_rebinmap1.c     |   42 +++++++++++++++++++---
   applications/smurf/libsmf/smf_typ.h           |    1 +
   5 files changed, 62 insertions(+), 13 deletions(-)
  
  commit 85e92e9077236ba65864c629d88c47d5dca6a20c
  Author: Ed Chapin <[log in to unmask]>
  Date:   Fri May 28 12:55:08 2010 -0700
  
      smurf: clean up needlessly complicated init in smf_model_create
      
      Tim pointed out that we don't need thr ROW/COL index macros here...
  
   applications/smurf/libsmf/smf_model_create.c |   24 ++++++++----------------
   1 files changed, 8 insertions(+), 16 deletions(-)
  
  commit 9adf5a838cfff7e595ac900ccea01887d37be1e6
  Author: Ed Chapin <[log in to unmask]>
  Date:   Fri May 28 11:31:39 2010 -0700
  
      smurf: replacing dead DKS with average now optional (dks.replacebad)
  
   applications/smurf/defaults/smurf_makemap.def |    1 +
   applications/smurf/examples/dimmconfig.lis    |    3 +++
   applications/smurf/libsmf/smf_clean_dksquid.c |   12 +++++++++++-
   applications/smurf/libsmf/smf_model_create.c  |   13 +++++++++++--
   4 files changed, 26 insertions(+), 3 deletions(-)
  
  commit 41718d3c2a2d4e2910399d3126598b3a16c824c2
  Author: David Berry <[log in to unmask]>
  Date:   Fri May 28 13:10:09 2010 +0100
  
      smurf: heavier clipping when finding RMS gradient in dc step correction
      
      Clip at 2 sigma (not 3) when finding the RMS gradient, and
      then correct for the heavy clipping using the factor appropriate
      for pure Gaussian noise. heavier clipping does better in the
      presence of lots of steps.
  
   applications/smurf/libsmf/smf_fix_steps.c |   13 ++++++++++---
   1 files changed, 10 insertions(+), 3 deletions(-)
  
  commit 0ff6ed13d3b6584f620bcdb95ffbe052302d7366
  Author: David Berry <[log in to unmask]>
  Date:   Fri May 28 12:52:29 2010 +0100
  
      smurf: Fix bad quality indexing in step correction
      
      This looks better... Fix a problem indexing the quality array when steps
      are found close to the start or end of the time series.
  
   applications/smurf/libsmf/smf_fix_steps.c |   18 ++++++++++--------
   1 files changed, 10 insertions(+), 8 deletions(-)
  
  commit 4c72d45f9a69e5fcf1f0508b6656cf1a569ff02c
  Author: David Berry <[log in to unmask]>
  Date:   Fri May 28 12:32:23 2010 +0100
  
      Revert "smurf: Correct indexing of quality array when DC steps found close
      to start or end"
      
      This reverts commit fca589ac61bcbe47872c07c529e9fc18b3e58871, which was
      done in a rush prior to going on holiday and seems to break things.
  
   applications/smurf/libsmf/smf_fix_steps.c |   47 ++++++++++++--------------
   1 files changed, 22 insertions(+), 25 deletions(-)
  
  commit fca589ac61bcbe47872c07c529e9fc18b3e58871
  Author: David Berry <[log in to unmask]>
  Date:   Fri May 28 12:17:54 2010 +0100
  
      smurf: Correct indexing of quality array when DC steps found close to start or end
  
   applications/smurf/libsmf/smf_fix_steps.c |   47 ++++++++++++++------------
   1 files changed, 25 insertions(+), 22 deletions(-)
  
  commit 01b6e502b5c1e1c38bb88f296986e484db7b9df9
  Author: David Berry <[log in to unmask]>
  Date:   Fri May 28 10:48:59 2010 +0100
  
      smurf: Ignore previously flagged jumps when fitting data to a new jumps
      
      Previously, the least squares fits that are used to determine the data
      levels before and after a correlated DC step were including data that had
      previously been flagged as a jump (i.e. the samples where the DC level is
      moving from the lower level to the higher level). This could cause some
      steps that have previously been fixed to be re-introduced (with a
      different step height).
  
   applications/smurf/libsmf/smf_fix_steps.c |    9 ++++++---
   1 files changed, 6 insertions(+), 3 deletions(-)

Top of Message | Previous Page | Permalink

JiscMail Tools


RSS Feeds and Sharing


Advanced Options


Archives

December 2023
January 2023
December 2022
July 2022
June 2022
April 2022
March 2022
December 2021
October 2021
July 2021
April 2021
January 2021
October 2020
September 2020
August 2020
May 2020
November 2019
October 2019
July 2019
June 2019
February 2019
January 2019
December 2018
November 2018
August 2018
July 2018
May 2018
April 2018
March 2018
February 2018
December 2017
October 2017
August 2017
July 2017
May 2017
April 2017
February 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
May 2016
April 2016
March 2016
February 2016
January 2016
December 2015
October 2015
September 2015
August 2015
April 2015
March 2015
February 2015
January 2015
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013
October 2013
September 2013
August 2013
July 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
May 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
July 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
September 2010
August 2010
July 2010
June 2010
May 2010
April 2010
March 2010
February 2010
January 2010
December 2009
November 2009
October 2009
September 2009
August 2009
July 2009
June 2009
May 2009
April 2009
March 2009
February 2009
January 2009
December 2008
November 2008
October 2008
September 2008
August 2008
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
January 2008
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
February 2007
January 2007
December 2006
November 2006
October 2006
September 2006
August 2006
July 2006
June 2006
May 2006
April 2006
March 2006
February 2006
January 2006
December 2005
November 2005
October 2005
September 2005
August 2005
July 2005
June 2005
May 2005
April 2005
March 2005
February 2005
January 2005
December 2004
November 2004
October 2004
September 2004
August 2004
July 2004
June 2004
May 2004
April 2004
March 2004
February 2004
January 2004
2004
April 2003
2003


JiscMail is a Jisc service.

View our service policies at https://www.jiscmail.ac.uk/policyandsecurity/ and Jisc's privacy policy at https://www.jisc.ac.uk/website/privacy-notice

For help and support help@jisc.ac.uk

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager