IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 8, 2005, 1:40:46 PM (21 years ago)
Author:
desonia
Message:

added comments on the end of #endif and #else

Location:
trunk/psLib/src/astronomy
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psAstrometry.h

    r4143 r4162  
    88*  @author GLG, MHPCC
    99*
    10 *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2005-06-08 00:26:01 $
     10*  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2005-06-08 23:40:45 $
    1212*
    1313*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    532532
    533533
    534 #endif
     534#endif // #ifndef PS_ASTROMETRY_H
  • trunk/psLib/src/astronomy/psAstronomyErrors.h

    r3955 r4162  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-05-17 21:12:42 $
     9 *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-06-08 23:40:45 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8787//~End
    8888
    89 #endif
     89#endif // #ifndef PS_ASTRONOMY_ERRORS_H
  • trunk/psLib/src/astronomy/psCoord.h

    r4127 r4162  
    1010*  @author GLG, MHPCC
    1111*
    12 *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-06-07 02:08:26 $
     12*  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-06-08 23:40:45 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    357357/** Takes a given transform and inverts it linearly if possible.
    358358 *
    359  *  @return psPlaneTransform           
     359 *  @return psPlaneTransform
    360360 *  the linearly inverted transform
    361361*/
     
    367367/** Takes a transform and tests whether or not it is a linear projection.
    368368 *
    369  *  @return psS32                     
     369 *  @return psS32
    370370 *  the order of the projection
    371371*/
     
    446446/// @}
    447447
    448 #endif
     448#endif // #ifndef PS_COORD_H
  • trunk/psLib/src/astronomy/psPhotometry.h

    r4134 r4162  
    1212*  incorporate it into psAstrometry.h
    1313*
    14 *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-06-07 22:27:28 $
     14*  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-06-08 23:40:45 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2929/** The photometric system description
    3030 *
    31  *  The photometric system is defined by the psPhotSystem structure. A 
    32  *  photometric system is identified by a human-readable name (ie, SDSS.g, 
    33  *  Landolt92.B, GPC1.OTA32.r). Each photometric system is given a unique 
    34  *  identifier ID. Observations taken with a specific camera, detector, and 
    35  *  filter represent their own photometric system, and it may be necessary to 
    36  *  perform transformations between these systems. Photometric systems 
    37  *  associated with observations from a specific camera/ detector/filter 
     31 *  The photometric system is defined by the psPhotSystem structure. A
     32 *  photometric system is identified by a human-readable name (ie, SDSS.g,
     33 *  Landolt92.B, GPC1.OTA32.r). Each photometric system is given a unique
     34 *  identifier ID. Observations taken with a specific camera, detector, and
     35 *  filter represent their own photometric system, and it may be necessary to
     36 *  perform transformations between these systems. Photometric systems
     37 *  associated with observations from a specific camera/ detector/filter
    3838 *  combination can be associated with those components.
    3939 *
     
    7272/// @}
    7373
    74 #endif
     74#endif // #ifndef PS_PHOTOMETRIC_H
  • trunk/psLib/src/astronomy/psTime.h

    r4051 r4162  
    11/** @file  psTime.h
    22 *
    3  *  @brief Definitions for time, time utilities, and conversion functions for use 
     3 *  @brief Definitions for time, time utilities, and conversion functions for use
    44 *  with psLib astronomy functions.
    55 *
    6  *  A collection of functions are required by psLib to manipulate time data. These 
    7  *  functions primarily consist of conversions between specific time formats.  They 
    8  *  use the UNIX timeval time system as the base upon which International Atomic 
     6 *  A collection of functions are required by psLib to manipulate time data. These
     7 *  functions primarily consist of conversions between specific time formats.  They
     8 *  use the UNIX timeval time system as the base upon which International Atomic
    99 *  Time (TAI) and Universal Time Coordinated (UTC) are calculated.
    1010 *
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-05-31 21:47:46 $
     13 *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-06-08 23:40:45 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8888/** Allocate time struct.
    8989 *
    90  * Allocates an empty time struct. User must specify the psTimeType 
    91  * (PS_TIME_TAI or PS_TIME_UTC) in the argument. The seconds and microseconds members 
     90 * Allocates an empty time struct. User must specify the psTimeType
     91 * (PS_TIME_TAI or PS_TIME_UTC) in the argument. The seconds and microseconds members
    9292 * of the struct are set to zero.
    9393 *
     
    100100/** Get current time.
    101101 *
    102  * Gets current time from the system clock. User must specify the psTimeType 
     102 * Gets current time from the system clock. User must specify the psTimeType
    103103 * (PS_TIME_TAI or PS_TIME_UTC) in the argument.
    104104 *
     
    122122/** Convert psTime to Local Mean Sidereal Time (LMST).
    123123 *
    124  *  Converts psTime at the given longitude to LMST time. If the input time is not 
     124 *  Converts psTime at the given longitude to LMST time. If the input time is not
    125125 *  in UTC format, then it is converted.
    126126 *
     
    186186/** Convert psTime to Julian date time.
    187187 *
    188  *  Converts psTime to Julian date (JD) time. This function does not add or 
     188 *  Converts psTime to Julian date (JD) time. This function does not add or
    189189 *  subtract leapseconds.
    190190 *
     
    196196/** Convert psTime to modified Julian date time.
    197197 *
    198  *  Converts psTime to modified Julian date (MJD) time. This function does not 
     198 *  Converts psTime to modified Julian date (MJD) time. This function does not
    199199 *  add or subtract leapseconds.
    200200 *
     
    207207/** Convert psTime to ISO8601 formatted string.
    208208 *
    209  *  Converts psTime to a null terminated string in the form of YYYY-MM-DDThh:mm:ss.sss. 
     209 *  Converts psTime to a null terminated string in the form of YYYY-MM-DDThh:mm:ss.sss.
    210210 *  This function does not add or subtract leapseconds.
    211211 *
     
    229229 * Convert psTime to tm time.
    230230 *
    231  * Converts psTime to tm time. This function is based on a Perl algorithm availble 
    232  * in the Pan-STARRS Image processing Algorithm Design Description (ADD). This function 
     231 * Converts psTime to tm time. This function is based on a Perl algorithm availble
     232 * in the Pan-STARRS Image processing Algorithm Design Description (ADD). This function
    233233 * does not add or subtract leapseconds.
    234234 *
     
    304304/** Convert tm time to psTime.
    305305 *
    306  *  Converts tm time to psTime. This function is based on a Perl algorithm availble 
    307  *  in the Pan-STARRS Image processing Algorithm Design Description (ADD). This function 
     306 *  Converts tm time to psTime. This function is based on a Perl algorithm availble
     307 *  in the Pan-STARRS Image processing Algorithm Design Description (ADD). This function
    308308 *  does not add or subtract leapseconds.
    309309 *
     
    346346/// @}
    347347
    348 #endif
     348#endif // #ifndef PSTIME_H
Note: See TracChangeset for help on using the changeset viewer.