IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 13, 2005, 11:18:21 AM (21 years ago)
Author:
desonia
Message:

updated for release.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/mainpage.dox

    r3651 r5035  
    1111Modules in this release include:
    1212
     13 - Astrometry (pmAstrometry)
    1314 - Subtract bias (pmSubtractBias)
    1415 - Correct for non-linearity (pmNonLinear)
    1516 - Flat-field (pmFlatField)
    16  - Mask bad pixels (pmMaskBadPixels)
     17 - Mask bad pixels (pmMaskBadPixels and pmMaskBadPixelsErrors)
     18 - Image Combine (pmImageCombine)
     19 - Image Subtract (pmImageSubtract)
    1720 - Combine readouts (pmReadoutCombine)
    1821 - Subtract sky (pmSubtractSky)
     
    4750https://mhpcc.pan-starrs.org/code/releases
    4851
    49 Though MHPCC recommends using the released packaged tar files descibed above,
    50 both daily development snapshots and direct CVS access is available.  The daily
    51 snapshots are available at
    52 
    53 https://mhpcc.pan-starrs.org/code/snapshots
    54 
    55 These snapshots represents development code as found in CVS on the day
    56 specified in the filename.  This code set may not be functional, vary in
    57 testing, etc.  Reasonable efforts are made to ensure that the code does
    58 actually compile, but given the nature of code development, even that is not
    59 always the case.  Use snapshots with great caution.
    60 
    6152If one has a login account on mhpcc.pan-starrs.org, direct CVS access is
    6253possible.  Example of the commands required for direct CVS retrieval are
     
    6758where:
    6859  - USERNAME is your login name on the server
    69   - RELEASEBRANCH is the desired release branch, e.g. rel5.
     60  - RELEASEBRANCH is the desired release branch, e.g. rel7.
    7061
    7162
     
    8576<i>Unless otherwise specified, the library is installed with PREFIX of the current directory.</i>
    8677
     78If the code was retrieved from CVS, you will need to substitute 'autogen.sh' for 'configure' in
     79above example.
     80
    8781Other configuration options, such as location of external libraries, are also available.
    8882To get a list of options, type the following in the top psModule directory.
     
    9185</pre>
    9286A likely option needed is '--with-pslib-config', which specifies the location of
    93 the configuration script for psLib.  By default, iconfigure searches for it using PATH, but that
    94 is often not sufficient.
     87the configuration script for psLib.  By default, configure searches for it using PATH, but that
     88is not always sufficient.
     89
     90@section install How to Install
     91
     92To install the library using the prefix given in the configure step, execute in
     93the top build directory:
     94<pre>
     95$ make install
     96</pre>
     97
     98
     99@section usage Building and Linking your code to the psModule library
     100
     101To assist the use of the library with your own code, a configuration tool is part
     102of the psModule library package.  This tool, psmodule-config, is installed in the BIN
     103directory, according to the options given to the configure script.
     104
     105The required CFLAG options for the compiler stage of code that uses psModule can be
     106obtained via 'psmodule-config --cflags'.  This outputs the cc options that supplies
     107include path(s) required to find the psModule headers.
     108
     109The required linking options, can be obtained via 'psmodule-config --libs'.  This
     110outputs the ld options that supplies the library paths and files required to
     111link to the psModule library.
     112
     113Note: psmodule-config usage above refers to the install locations of the library. 
    95114
    96115@section doc How to Create Code Documentation
Note: See TracChangeset for help on using the changeset viewer.