Changeset 3408 in Sophya


Ignore:
Timestamp:
Nov 23, 2007, 11:54:28 PM (18 years ago)
Author:
ansari
Message:

modifs commentaires pour doc par doxygen - Reza 23/11/2007

Location:
trunk/SophyaLib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/BaseTools/srandgen.c

    r3364 r3408  
    428428
    429429
    430 /*!
    431   \ingroup  BaseTools
    432   \class SOPHYA::RandomGenerator
    433   \brief Random number generator
    434  
    435   This is a class with static methods, providing an alternative interface
    436   to random number generations functions declared in srandgen.h.
    437 
    438   \sa frand01 drand01 frandpm1 drandpm1
    439   \sa GauRnd PoissRand
    440   \sa Ini_Ranf_Quick Ini_Ranf Get_Ranf Auto_Ini_Ranf
    441 */
    442430
    443431/*==========================================================================*/
  • trunk/SophyaLib/BaseTools/stsrand.cc

    r3403 r3408  
    1111   \class RandomGenerator
    1212   \ingroup BaseTools
     13   \brief Random number generator
     14
    1315   This class is a thread-safe random number generator.
    1416   Its PPF handler can be used to save the complete state of the class and the underlying
     
    1618
    1719   \sa SOPHYA::ObjFileIO<RandomGenerator>
     20
     21   \sa frand01 drand01 frandpm1 drandpm1
     22   \sa GauRnd PoissRand
     23   \sa Ini_Ranf_Quick Ini_Ranf Get_Ranf Auto_Ini_Ranf
     24
    1825
    1926*/
  • trunk/SophyaLib/TArray/arrctcast.h

    r3388 r3408  
    1818//******************************************
    1919// Classe NDCBridge : Bridge sur NDataBlock, utile pour cast - sans conversion - de type
    20 //! Special Bridge class to be used the ArrayCast class
     20/*!
     21  \class NDCBridge
     22  \brief Special Bridge class to be used the ArrayCast class
     23  \ingroup TArray
     24*/
    2125template <class T>
    2226class NDCBridge : public Bridge {
     
    3539// Fonction de cast de type de contenu - sans conversion - de tableaux
    3640// pour tableau packe en memoire
    37 //! Class to handle Array content cast without conversion (shared data)
     41/*!
     42  \ingroup TArray
     43  \brief Function to handle Array content cast without conversion (shared data)
     44*/
    3845template <class T1, class T2>                                                               
    3946TArray< T2 > ArrayCast( TArray< T1 > & a, T2 ct, sa_size_t doff=0, sa_size_t dstep=1)
     
    7279//******************************************
    7380// cast de contenu - sans conversion - tableau complex vers float
    74 //! Complex to real array cast - without conversion (shared data)
     81/*!
     82  \ingroup TArray
     83  \brief Complex to real array cast - without conversion (shared data)
     84*/
    7585template <class T>
    7686TArray<T> ArrCastC2R(TArray< complex<T> > & a) 
     
    8292//******************************************
    8393// cast de contenu - sans conversion - tableau float vers complex
    84 //! Real to complex array cast - without conversion (shared data)
     94/*!
     95  \ingroup TArray
     96  \brief Real to complex array cast - without conversion (shared data)
     97*/
    8598template <class T>
    8699TArray< complex<T> > ArrCastR2C(TArray< T > & a) 
     
    95108// Acces a la partie reelle d'un tableau complex - en shared data
    96109// To access real part of a complex array (shared data)
     110/*!
     111  \ingroup TArray
     112  \brief Return the real part of a complex array (shared data)
     113*/
    97114template <class T>
    98115TArray<T> SDRealPart(TArray< complex<T> > & a) 
     
    105122// Acces a la partie imaginaire d'un tableau complex - en shared data
    106123// To access imaginary part of a complex array (shared data)
     124/*!
     125  \ingroup TArray
     126  \brief Return the imaginary part of a complex array (shared data)
     127*/
    107128template <class T>
    108129TArray<T> SDImagPart(TArray< complex<T> > & a) 
Note: See TracChangeset for help on using the changeset viewer.