Changeset 1371 in Sophya for trunk/SophyaLib/SkyMap


Ignore:
Timestamp:
Jan 5, 2001, 6:07:12 PM (25 years ago)
Author:
ansari
Message:

MAJ documentation, Makefile, ... - Reza 5/1/2001

Location:
trunk/SophyaLib/SkyMap
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/SkyMap/Makefile

    r1242 r1371  
    100100 $(INC)piocmplx.h \
    101101 $(INC)fiondblock.h
    102 $(OBJ)longlat.o: longlat.cc longlat.h utilgeom.h
     102$(OBJ)longlat.o: longlat.cc longlat.h \
     103 $(INC)machdefs.h utilgeom.h
    103104$(OBJ)mapoperation.o: mapoperation.cc \
    104105 $(INC)machdefs.h mapoperation.h \
     
    177178 $(INC)fiondblock.h
    178179$(OBJ)unitvector.o: unitvector.cc unitvector.h vector3d.h longlat.h \
    179  utilgeom.h
     180 $(INC)machdefs.h utilgeom.h
    180181$(OBJ)utilgeom.o: utilgeom.cc utilgeom.h
    181182$(OBJ)vector3d.o: vector3d.cc $(INC)machdefs.h \
  • trunk/SophyaLib/SkyMap/longlat.h

    r764 r1371  
     1//   Geometry handling class
     2//       B. Revenu, R. Ansari , G. Le Meur   2000
     3// DAPNIA/SPP (Saclay) / CEA    LAL - IN2P3/CNRS  (Orsay)
     4
    15#ifndef LONGLAT_H_SEEN
    26#define LONGLAT_H_SEEN
    37
     8#include "machdefs.h"
    49#include <math.h>
    510#include <iostream.h>
     
    1318  latitude=Pi/2-theta
    1419*/
     20
     21namespace SOPHYA { 
    1522
    1623class LongLat
     
    4552}
    4653
     54} // namespace SOPHYA
     55
    4756#endif
  • trunk/SophyaLib/SkyMap/mapoperation.cc

    r940 r1371  
    1313#include "mapoperation.h"
    1414/*!
    15  * \class MapOperations
     15 * \class SOPHYA::MapOperations
    1616 * This class is for simple operations on maps
    1717 */
  • trunk/SophyaLib/SkyMap/mapoperation.h

    r932 r1371  
    4040  { MapOperations<T> a; a.meanSig(dbl,gmoy,gsig); }
    4141
    42 }
     42}  // namespace SOPHYA
     43
    4344#endif
  • trunk/SophyaLib/SkyMap/pixelmap.h

    r1066 r1371  
    1010namespace SOPHYA {
    1111
    12 //! General map of pixels on part of sphere or whole sphere
    13 /*! Class hierarchy :
     12/*!
     13 \class SOPHYA::PixelMap
     14 \ingroup SkyMap
     15 General map of pixels on part of sphere or whole sphere.
     16
     17 Class hierarchy :
    1418\verbatim
    1519   PixelMap
    1620     SphericalMap
    1721         SphereThetaPhi
    18          SphereGorski
     22         SphereHEALPix
    1923         SphereIco
    2024      LocalMap
  • trunk/SophyaLib/SkyMap/skymapinit.cc

    r853 r1371  
    1010#include "localmap.h"
    1111 
     12/*!
     13   \defgroup SkyMap SkyMap module
     14   This module contains classes for handling partial and full sky (spherical) maps
     15*/
     16
     17/*!
     18  \class SOPHYA::SkyMapInitiator
     19  \ingroup SkyMap
     20  Class handling initialization for module SkyMap
     21*/
     22
    1223int SkyMapInitiator::FgInit = 0;
    1324
  • trunk/SophyaLib/SkyMap/sphericalmap.h

    r908 r1371  
    2222namespace SOPHYA {
    2323
    24 
     24/*!
     25  \class SOPHYA::SphericalMap
     26  \ingroup SkyMap
     27  Base class (pure virtual) for 4Pi spherical maps
     28*/
    2529
    2630template<class T>
  • trunk/SophyaLib/SkyMap/unitvector.h

    r764 r1371  
     1//   3-D Geometry
     2//        B. Revenu, G. Le Meur   2000
     3// DAPNIA/SPP (Saclay) / CEA    LAL - IN2P3/CNRS  (Orsay)
     4
    15#ifndef UNITVECTOR_H_SEEN
    26#define UNITVECTOR_H_SEEN
     
    610#include <string.h>
    711#include "vector3d.h"
     12
     13namespace SOPHYA {
    814
    915class UnitVector : public Vector3d
     
    3137};
    3238
     39} // namespace SOPHYA
     40
    3341#endif
    3442
  • trunk/SophyaLib/SkyMap/vector3d.h

    r792 r1371  
     1//   3-D Geometry
     2//        B. Revenu, G. Le Meur   2000
     3// DAPNIA/SPP (Saclay) / CEA    LAL - IN2P3/CNRS  (Orsay)
     4
    15#ifndef VECTOR3D_H_SEEN
    26#define VECTOR3D_H_SEEN
     
    2832*/
    2933
     34namespace SOPHYA {
     35 
    3036class Vector3d
    3137{
     
    142148}
    143149
     150} // namespace SOPHYA
     151
    144152#endif
    145153
Note: See TracChangeset for help on using the changeset viewer.