Changeset 1371 in Sophya for trunk/SophyaLib/SkyMap
- Timestamp:
- Jan 5, 2001, 6:07:12 PM (25 years ago)
- Location:
- trunk/SophyaLib/SkyMap
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyMap/Makefile
r1242 r1371 100 100 $(INC)piocmplx.h \ 101 101 $(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 103 104 $(OBJ)mapoperation.o: mapoperation.cc \ 104 105 $(INC)machdefs.h mapoperation.h \ … … 177 178 $(INC)fiondblock.h 178 179 $(OBJ)unitvector.o: unitvector.cc unitvector.h vector3d.h longlat.h \ 179 utilgeom.h180 $(INC)machdefs.h utilgeom.h 180 181 $(OBJ)utilgeom.o: utilgeom.cc utilgeom.h 181 182 $(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 1 5 #ifndef LONGLAT_H_SEEN 2 6 #define LONGLAT_H_SEEN 3 7 8 #include "machdefs.h" 4 9 #include <math.h> 5 10 #include <iostream.h> … … 13 18 latitude=Pi/2-theta 14 19 */ 20 21 namespace SOPHYA { 15 22 16 23 class LongLat … … 45 52 } 46 53 54 } // namespace SOPHYA 55 47 56 #endif -
trunk/SophyaLib/SkyMap/mapoperation.cc
r940 r1371 13 13 #include "mapoperation.h" 14 14 /*! 15 * \class MapOperations15 * \class SOPHYA::MapOperations 16 16 * This class is for simple operations on maps 17 17 */ -
trunk/SophyaLib/SkyMap/mapoperation.h
r932 r1371 40 40 { MapOperations<T> a; a.meanSig(dbl,gmoy,gsig); } 41 41 42 } 42 } // namespace SOPHYA 43 43 44 #endif -
trunk/SophyaLib/SkyMap/pixelmap.h
r1066 r1371 10 10 namespace SOPHYA { 11 11 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 : 14 18 \verbatim 15 19 PixelMap 16 20 SphericalMap 17 21 SphereThetaPhi 18 Sphere Gorski22 SphereHEALPix 19 23 SphereIco 20 24 LocalMap -
trunk/SophyaLib/SkyMap/skymapinit.cc
r853 r1371 10 10 #include "localmap.h" 11 11 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 12 23 int SkyMapInitiator::FgInit = 0; 13 24 -
trunk/SophyaLib/SkyMap/sphericalmap.h
r908 r1371 22 22 namespace SOPHYA { 23 23 24 24 /*! 25 \class SOPHYA::SphericalMap 26 \ingroup SkyMap 27 Base class (pure virtual) for 4Pi spherical maps 28 */ 25 29 26 30 template<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 1 5 #ifndef UNITVECTOR_H_SEEN 2 6 #define UNITVECTOR_H_SEEN … … 6 10 #include <string.h> 7 11 #include "vector3d.h" 12 13 namespace SOPHYA { 8 14 9 15 class UnitVector : public Vector3d … … 31 37 }; 32 38 39 } // namespace SOPHYA 40 33 41 #endif 34 42 -
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 1 5 #ifndef VECTOR3D_H_SEEN 2 6 #define VECTOR3D_H_SEEN … … 28 32 */ 29 33 34 namespace SOPHYA { 35 30 36 class Vector3d 31 37 { … … 142 148 } 143 149 150 } // namespace SOPHYA 151 144 152 #endif 145 153
Note:
See TracChangeset
for help on using the changeset viewer.