Changeset 926 in Sophya for trunk/SophyaLib/HiStats


Ignore:
Timestamp:
Apr 13, 2000, 8:39:39 PM (25 years ago)
Author:
ansari
Message:

documentation cmv 13/4/00

Location:
trunk/SophyaLib/HiStats
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/HiStats/hisprof.cc

    r914 r926  
    66#include "perrors.h"
    77
     8/*!
     9  \class SOPHYA::HProf
     10  \ingroup HiStats
     11  Classe de profil d'histogrammes.
     12*/
    813
    914/********* Methode *********/
  • trunk/SophyaLib/HiStats/hisprof.h

    r920 r926  
    1010namespace SOPHYA {
    1111
    12 /*!
    13   \class SOPHYA::HProf
    14   \ingroup HiStats
    15   Classe de profil d'histogrammes.
    16 */
     12//! 1 dimension profile histograms
    1713class HProf : public Histo {
    1814  friend class ObjFileIO<HProf>;
  • trunk/SophyaLib/HiStats/histinit.h

    r763 r926  
    1111namespace SOPHYA {
    1212
     13//! Histograms initiator
    1314class HiStatsInitiator : public NToolsInitiator {
    1415private:
  • trunk/SophyaLib/HiStats/histos.cc

    r914 r926  
    11//
    2 // $Id: histos.cc,v 1.2 2000-04-13 16:04:11 ansari Exp $
     2// $Id: histos.cc,v 1.3 2000-04-13 18:38:32 ansari Exp $
    33//
    44
     
    1212#include "strutil.h"
    1313#include "generalfit.h"
     14
     15/*!
     16  \class SOPHYA::Histo
     17  \ingroup HiStats
     18  Classe d'histogrammes 1D
     19*/
    1420
    1521/********* Methode *********/
  • trunk/SophyaLib/HiStats/histos.h

    r920 r926  
    11// This may look like C code, but it is really -*- C++ -*-
    22//
    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 $
    44//
    55
     
    1919class GeneralFit;
    2020
    21 
    22 /*!
    23   \class SOPHYA::Histo
    24   \ingroup HiStats
    25   Classe d'histogrammes 1D
    26 */
     21//! 1 dimension histograms
    2722class Histo : public AnyDataObj {
    2823  friend class ObjFileIO<Histo>;
  • trunk/SophyaLib/HiStats/histos2.cc

    r914 r926  
    1515#include "histos2.h"
    1616#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*/
    1739
    1840///////////////////////////////////////////////////////////////////
  • trunk/SophyaLib/HiStats/histos2.h

    r920 r926  
    2222class GeneralFit;
    2323
    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
    4625class Histo2D : public AnyDataObj {
    4726  friend class ObjFileIO<Histo2D>;
Note: See TracChangeset for help on using the changeset viewer.