Changeset 926 in Sophya for trunk/SophyaLib/HiStats
- Timestamp:
- Apr 13, 2000, 8:39:39 PM (25 years ago)
- Location:
- trunk/SophyaLib/HiStats
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/hisprof.cc
r914 r926 6 6 #include "perrors.h" 7 7 8 /*! 9 \class SOPHYA::HProf 10 \ingroup HiStats 11 Classe de profil d'histogrammes. 12 */ 8 13 9 14 /********* Methode *********/ -
trunk/SophyaLib/HiStats/hisprof.h
r920 r926 10 10 namespace SOPHYA { 11 11 12 /*! 13 \class SOPHYA::HProf 14 \ingroup HiStats 15 Classe de profil d'histogrammes. 16 */ 12 //! 1 dimension profile histograms 17 13 class HProf : public Histo { 18 14 friend class ObjFileIO<HProf>; -
trunk/SophyaLib/HiStats/histinit.h
r763 r926 11 11 namespace SOPHYA { 12 12 13 //! Histograms initiator 13 14 class HiStatsInitiator : public NToolsInitiator { 14 15 private: -
trunk/SophyaLib/HiStats/histos.cc
r914 r926 1 1 // 2 // $Id: histos.cc,v 1. 2 2000-04-13 16:04:11ansari Exp $2 // $Id: histos.cc,v 1.3 2000-04-13 18:38:32 ansari Exp $ 3 3 // 4 4 … … 12 12 #include "strutil.h" 13 13 #include "generalfit.h" 14 15 /*! 16 \class SOPHYA::Histo 17 \ingroup HiStats 18 Classe d'histogrammes 1D 19 */ 14 20 15 21 /********* Methode *********/ -
trunk/SophyaLib/HiStats/histos.h
r920 r926 1 1 // This may look like C code, but it is really -*- C++ -*- 2 2 // 3 // $Id: histos.h,v 1. 3 2000-04-13 16:41:43 ansari Exp $3 // $Id: histos.h,v 1.4 2000-04-13 18:38:33 ansari Exp $ 4 4 // 5 5 … … 19 19 class GeneralFit; 20 20 21 22 /*! 23 \class SOPHYA::Histo 24 \ingroup HiStats 25 Classe d'histogrammes 1D 26 */ 21 //! 1 dimension histograms 27 22 class Histo : public AnyDataObj { 28 23 friend class ObjFileIO<Histo>; -
trunk/SophyaLib/HiStats/histos2.cc
r914 r926 15 15 #include "histos2.h" 16 16 #include "generalfit.h" 17 18 /*! 19 \class SOPHYA::Histo2D 20 \ingroup HiStats 21 Classe d'histogrammes 2D 22 \verbatim 23 Remarque sur les indices: 24 H(i,j) -> i = coord x (0<i<nx), j = coord y (0<j<ny) 25 v(ii,jj) -> ii = ligne (0<i<NRows()), jj = colonne (0<i<NCol()) 26 On fait une correspondance directe i<->ii et j<->jj 27 ce qui, en representation classique des histos2D et des matrices 28 entraine une inversion x<->y cad une symetrie / diagonale principale 29 H(0,...) represente ^ mais v(0,...) represente 30 |x....... |xxxxxxxx| 31 |x....... |........| 32 |x....... |........| 33 |x....... |........| 34 |x....... |........| 35 ---------> 36 colonne no 1 ligne no 1 37 \endverbatim 38 */ 17 39 18 40 /////////////////////////////////////////////////////////////////// -
trunk/SophyaLib/HiStats/histos2.h
r920 r926 22 22 class GeneralFit; 23 23 24 25 /*! 26 \class SOPHYA::Histo2D 27 \ingroup HiStats 28 Classe d'histogrammes 2D 29 \verbatim 30 Remarque sur les indices: 31 H(i,j) -> i = coord x (0<i<nx), j = coord y (0<j<ny) 32 v(ii,jj) -> ii = ligne (0<i<NRows()), jj = colonne (0<i<NCol()) 33 On fait une correspondance directe i<->ii et j<->jj 34 ce qui, en representation classique des histos2D et des matrices 35 entraine une inversion x<->y cad une symetrie / diagonale principale 36 H(0,...) represente ^ mais v(0,...) represente 37 |x....... |xxxxxxxx| 38 |x....... |........| 39 |x....... |........| 40 |x....... |........| 41 |x....... |........| 42 ---------> 43 colonne no 1 ligne no 1 44 \endverbatim 45 */ 24 //! 2 dimensions histograms 46 25 class Histo2D : public AnyDataObj { 47 26 friend class ObjFileIO<Histo2D>;
Note:
See TracChangeset
for help on using the changeset viewer.