Changeset 1371 in Sophya for trunk/SophyaLib/Samba
- Timestamp:
- Jan 5, 2001, 6:07:12 PM (25 years ago)
- Location:
- trunk/SophyaLib/Samba
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/Samba/alm.h
r758 r1371 1 // Class for representing spherical harmonic coefficients 2 // G. Le Meur 2000 3 // DAPNIA/SPP (Saclay) / CEA LAL - IN2P3/CNRS (Orsay) 4 1 5 #ifndef ALM_SEEN 2 6 #define ALM_SEEN … … 7 11 #include "tvector.h" 8 12 13 namespace SOPHYA { 9 14 10 15 /*! class for the coefficients \f$a_{lm}\f$ of the development of a function defined on a sphere, in spherical harmonics */ … … 74 79 }; 75 80 81 } // namespace SOPHYA 76 82 77 83 #endif -
trunk/SophyaLib/Samba/bruit.h
r680 r1371 1 // Noise generators 2 // R. Ansari , F. Couchot 1998 3 // DAPNIA/SPP (Saclay) / CEA LAL - IN2P3/CNRS (Orsay) 4 1 5 #ifndef BRUIT_H_SEEN 2 6 #define BRUIT_H_SEEN 7 8 namespace SOPHYA { 3 9 4 10 class NoiseGenerator { … … 104 110 }; 105 111 112 } // namespace SOPHYA 106 113 107 114 #endif -
trunk/SophyaLib/Samba/circle.h
r568 r1371 1 // Geometry handling class 2 // R. Ansari , G. Le Meur 2000 3 // DAPNIA/SPP (Saclay) / CEA LAL - IN2P3/CNRS (Orsay) 4 1 5 #ifndef CIRCLE_H_SEEN 2 6 #define CIRCLE_H_SEEN … … 8 12 #include "utilgeom.h" 9 13 #include "geometry.h" 14 15 namespace SOPHYA { 10 16 11 17 class Circle : public Geometry … … 92 98 } 93 99 100 } // namespace SOPHYA 101 94 102 #endif -
trunk/SophyaLib/Samba/geometry.h
r473 r1371 1 // Geometry handling class 2 // R. Ansari , G. Le Meur 2000 3 // DAPNIA/SPP (Saclay) / CEA LAL - IN2P3/CNRS (Orsay) 4 1 5 #ifndef GEOMETRY_SEEN 2 6 #define GEOMETRY_SEEN … … 4 8 5 9 #include "unitvector.h" 10 11 namespace SOPHYA { 12 13 /*! 14 \class SOPHYA::Geometry 15 \ingroup Samba 16 Base class (pure virtual) for geometry handling and coordinate 17 system transforms 18 */ 6 19 7 20 class Geometry … … 13 26 }; 14 27 28 } // namespace SOPHYA 15 29 16 30 #endif -
trunk/SophyaLib/Samba/mlobe.cc
r568 r1371 3 3 4 4 #include "timing.h" 5 6 /*! 7 \class SOPHYA::MainLobe 8 \ingroup Samba 9 Class for computation of main lobe. 10 The lobe values are computed in pixels laying on nc slices 11 with hexagonal pavement around theta=0 , phi=0. The lobe is 12 gaussian with sigma=sig. The slices are built every 13 dels*sigma. 14 */ 15 5 16 // #include "nbrandom.h" 6 17 //++ -
trunk/SophyaLib/Samba/mlobe.h
r470 r1371 1 #ifndef SCSKYU_H_SEEN 2 #define SCSKYU_H_SEEN 1 // Class for representing the main antenna lobe 2 // R. Ansari 1998-2000 3 // DAPNIA/SPP (Saclay) / CEA LAL - IN2P3/CNRS (Orsay) 4 5 #ifndef MLOBE_H_SEEN 6 #define MLOBE_H_SEEN 3 7 4 8 #include <math.h> … … 8 12 9 13 14 namespace SOPHYA { 10 15 11 16 // Classe MainLobe … … 47 52 }; 48 53 54 } // namespace SOPHYA 49 55 50 56 #endif -
trunk/SophyaLib/Samba/sambainit.cc
r758 r1371 2 2 3 3 #include "sambainit.h" 4 5 /*! 6 \defgroup Samba Samba module 7 This module contains various classes for CMB analysis, such as 8 spherical harmonic decomposition and synthesis 9 */ 10 11 /*! 12 \class SOPHYA::SambaInitiator 13 \ingroup Samba 14 Array Matrices and Vector initiator 15 */ 4 16 5 17 int SambaInitiator::FgInit = 0; -
trunk/SophyaLib/Samba/sambainit.h
r758 r1371 9 9 #include "skymapinit.h" 10 10 #include "ntoolsinit.h" 11 12 namespace SOPHYA { 11 13 12 14 class SambaInitiator : public SkyMapInitiator { … … 22 24 #define SophyaInit() SambaInitiator sambainitiator 23 25 26 } // namespace SOPHYA 27 24 28 #endif 25 29 -
trunk/SophyaLib/Samba/scan.h
r701 r1371 1 // Class for managing sky scanning 2 // R. Ansari , G. Le Meur 1998-2000 3 // DAPNIA/SPP (Saclay) / CEA LAL - IN2P3/CNRS (Orsay) 4 1 5 #ifndef SCAN_H_SEEN 2 6 #define SCAN_H_SEEN 3 7 4 8 5 // includes PEIDA6 9 #include "ppersist.h" 7 10 #include <iostream.h> 8 11 #include "dvlist.h" 9 12 #include "ndatablock.h" 13 14 namespace SOPHYA { 10 15 11 16 class FIO_Scan; … … 188 193 }; 189 194 195 } // namespace SOPHYA 190 196 191 197 #endif /* SCAN_H_SEEN */
Note:
See TracChangeset
for help on using the changeset viewer.