Changeset 552 in Sophya for trunk/SophyaLib
- Timestamp:
- Nov 5, 1999, 2:11:33 PM (26 years ago)
- Location:
- trunk/SophyaLib
- Files:
-
- 29 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/BaseTools/anydataobj.h
r268 r552 8 8 #include "machdefs.h" 9 9 10 namespace PlanckDPC{10 namespace SOPHYA { 11 11 12 12 class AnyDataObj { -
trunk/SophyaLib/BaseTools/hashtable.h
r242 r552 10 10 #include "pexceptions.h" 11 11 12 namespace PlanckDPC{12 namespace SOPHYA { 13 13 14 14 template <class T, class K> -
trunk/SophyaLib/BaseTools/machdefs.h
r480 r552 346 346 347 347 #ifdef __cplusplus 348 namespace PlanckDPC{}349 using namespace PlanckDPC;348 namespace SOPHYA {} 349 using namespace SOPHYA; 350 350 #define EXPLICIT explicit 351 351 #include "pclassids.h" -
trunk/SophyaLib/BaseTools/ndatablock.h
r502 r552 11 11 #include <iostream.h> 12 12 13 namespace PlanckDPC{13 namespace SOPHYA { 14 14 15 15 // Classe pour permettre de partager des donnees avec -
trunk/SophyaLib/BaseTools/objfio.h
r277 r552 11 11 #include "ppersist.h" 12 12 13 namespace PlanckDPC{13 namespace SOPHYA { 14 14 15 15 -
trunk/SophyaLib/BaseTools/pexceptions.h
r256 r552 8 8 using namespace std; 9 9 10 namespace PlanckDPC{10 namespace SOPHYA { 11 11 12 12 // Ancestor for PError and PException -
trunk/SophyaLib/BaseTools/ppersist.h
r481 r552 23 23 // Classe de base pour les objets qui peuvent devenir PPersist 24 24 25 namespace PlanckDPC{25 namespace SOPHYA { 26 26 27 27 class AnyDataObj; -
trunk/SophyaLib/NTools/cvector.h
r508 r552 5 5 #include "matrix.h" 6 6 7 namespace PlanckDPC{7 namespace SOPHYA { 8 8 class GeneralFit; 9 9 template <class T> class TVector; -
trunk/SophyaLib/NTools/difeq.h
r514 r552 7 7 #include "tvector.h" 8 8 9 namespace PlanckDPC{9 namespace SOPHYA { 10 10 11 11 class GeneralFunction; -
trunk/SophyaLib/NTools/dvlist.h
r515 r552 17 17 #include <string> 18 18 19 namespace PlanckDPC{19 namespace SOPHYA { 20 20 21 21 // Classe utilitaire pour manipuler des variables typees … … 122 122 // ObjFileIO<DVList> 123 123 124 } // namespace PlanckDPC124 } // namespace SOPHYA 125 125 126 126 #endif /* DVLIST_H__SEEN */ -
trunk/SophyaLib/NTools/fct1dfit.h
r307 r552 4 4 #include "generalfit.h" 5 5 6 namespace PlanckDPC{6 namespace SOPHYA { 7 7 8 8 //================================================================ -
trunk/SophyaLib/NTools/fct2dfit.h
r307 r552 4 4 #include "generalfit.h" 5 5 6 namespace PlanckDPC{6 namespace SOPHYA { 7 7 8 8 //================================================================ -
trunk/SophyaLib/NTools/generaldata.h
r490 r552 11 11 #include "poly.h" 12 12 13 namespace PlanckDPC{13 namespace SOPHYA { 14 14 15 15 class GeneralFit; -
trunk/SophyaLib/NTools/generalfit.h
r514 r552 7 7 #include "generaldata.h" 8 8 9 namespace PlanckDPC{9 namespace SOPHYA { 10 10 11 11 //================================================================ -
trunk/SophyaLib/NTools/hisprof.h
r514 r552 8 8 #include "histos.h" 9 9 10 namespace PlanckDPC{10 namespace SOPHYA { 11 11 12 12 class HProf : public Histo { -
trunk/SophyaLib/NTools/histos.h
r514 r552 1 1 // This may look like C code, but it is really -*- C++ -*- 2 2 // 3 // $Id: histos.h,v 1. 5 1999-10-25 16:39:57ansari Exp $3 // $Id: histos.h,v 1.6 1999-11-05 13:08:29 ansari Exp $ 4 4 // 5 5 … … 15 15 #include "anydataobj.h" 16 16 17 namespace PlanckDPC{17 namespace SOPHYA { 18 18 19 19 class GeneralFit; -
trunk/SophyaLib/NTools/histos2.h
r514 r552 18 18 #include "histos.h" 19 19 20 namespace PlanckDPC{20 namespace SOPHYA { 21 21 22 22 class GeneralFit; -
trunk/SophyaLib/NTools/integ.h
r514 r552 3 3 // integ.h 4 4 // 5 // $Id: integ.h,v 1. 5 1999-10-25 16:39:59 ansari Exp $5 // $Id: integ.h,v 1.6 1999-11-05 13:08:29 ansari Exp $ 6 6 // 7 7 … … 13 13 #include <set> 14 14 15 namespace PlanckDPC{15 namespace SOPHYA { 16 16 17 17 class GeneralFunction; -
trunk/SophyaLib/NTools/linfit.h
r540 r552 1 1 // This may look like C code, but it is really -*- C++ -*- 2 2 // 3 // $Id: linfit.h,v 1. 5 1999-11-03 14:38:48ansari Exp $3 // $Id: linfit.h,v 1.6 1999-11-05 13:08:30 ansari Exp $ 4 4 // 5 5 … … 12 12 #include "tvector.h" 13 13 14 namespace PlanckDPC{14 namespace SOPHYA { 15 15 16 16 class LinFitter { -
trunk/SophyaLib/NTools/matrix.h
r508 r552 12 12 #include "ppersist.h" 13 13 14 namespace PlanckDPC{14 namespace SOPHYA { 15 15 class GeneralFit; 16 16 template <class T> class TMatrix; -
trunk/SophyaLib/NTools/ntuple.h
r490 r552 17 17 #include "dvlist.h" 18 18 19 namespace PlanckDPC{19 namespace SOPHYA { 20 20 21 21 class NTuple : public AnyDataObj , public NTupleInterface { … … 104 104 #endif 105 105 106 } // namespace PlanckDPC106 } // namespace SOPHYA 107 107 108 108 #endif -
trunk/SophyaLib/NTools/poly.h
r514 r552 1 1 // This may look like C code, but it is really -*- C++ -*- 2 2 // 3 // $Id: poly.h,v 1. 3 1999-10-25 16:40:01 ansari Exp $3 // $Id: poly.h,v 1.4 1999-11-05 13:08:31 ansari Exp $ 4 4 // 5 5 … … 16 16 #include "anydataobj.h" 17 17 18 namespace PlanckDPC{18 namespace SOPHYA { 19 19 20 20 class Poly2; -
trunk/SophyaLib/NTools/rk4cdifeq.h
r514 r552 5 5 #include "difeq.h" 6 6 7 namespace PlanckDPC{7 namespace SOPHYA { 8 8 9 9 // <summary> Runge-Kutta ordre 4 adaptatif </summary> -
trunk/SophyaLib/NTools/rzimage.h
r494 r552 15 15 #include "dvlist.h" 16 16 17 namespace PlanckDPC{class GeneralFit;}17 namespace SOPHYA {class GeneralFit;} 18 18 19 19 // Flags de verifications sur les indices -
trunk/SophyaLib/NTools/tmatrix.h
r514 r552 12 12 #include "ndatablock.h" 13 13 14 namespace PlanckDPC{14 namespace SOPHYA { 15 15 16 16 class GeneralFit; -
trunk/SophyaLib/NTools/tvector.h
r514 r552 6 6 #include "tmatrix.h" 7 7 8 namespace PlanckDPC{8 namespace SOPHYA { 9 9 10 10 class GeneralFit; -
trunk/SophyaLib/Samba/misstime.h
r528 r552 5 5 #include "machdefs.h" 6 6 7 namespace PlanckDPC{7 namespace SOPHYA { 8 8 // Just a double for the moment, would be converted to a class later 9 9 typedef r_8 MissionTime; -
trunk/SophyaLib/Samba/spherepos.h
r529 r552 8 8 #include "unitvector.h" 9 9 10 static char *head_spherepos_h_ = "$Header: /Users/garnier/temp/CVSSophya/SophyaLib/Samba/spherepos.h,v 1. 2 1999-10-27 14:25:24ansari Exp $";10 static char *head_spherepos_h_ = "$Header: /Users/garnier/temp/CVSSophya/SophyaLib/Samba/spherepos.h,v 1.3 1999-11-05 13:10:10 ansari Exp $"; 11 11 12 namespace PlanckDPC{12 namespace SOPHYA { 13 13 14 14 enum SphereCoordSysIds { SphereCoordSys_NEUTRAL =0, -
trunk/SophyaLib/Samba/tod.h
r541 r552 7 7 #include "misstime.h" 8 8 9 namespace PlanckDPC{9 namespace SOPHYA { 10 10 template<class T> 11 11 class TOD
Note:
See TracChangeset
for help on using the changeset viewer.