Changeset 890 in Sophya for trunk/SophyaLib/TArray/basarr.cc


Ignore:
Timestamp:
Apr 11, 2000, 7:59:04 PM (25 years ago)
Author:
ansari
Message:

debut de doc pour verif par rz (cmv 11/4/00

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/basarr.cc

    r850 r890  
    88#include "basarr.h"
    99
    10 
    11 
    1210// Variables statiques globales
    1311char * BaseArray::ck_op_msg_[6] = {"???", "Size(int )", "IsPacked(int )",
    14                                 "Stride(int )", "ElemCheckBound()", "operator()" };
     12                      "Stride(int )", "ElemCheckBound()", "operator()" };
    1513uint_4 BaseArray::max_nprt_ = 50;
    1614uint_4 BaseArray::prt_lev_ = 0;
     
    2220
    2321//  1/ Gestion des impressions
     22//! Set maximum number of printed elements and print level
     23/*!
     24  \param nprt : maximum number of print
     25  \param lev  : print level
     26*/
    2427void BaseArray::SetMaxPrint(uint_4 nprt, uint_4 lev)
    2528{
     
    2831}
    2932
     33//! Set Size threshold for parallel routine call
     34/*!
     35  \param thr : thresold value
     36*/
    3037void BaseArray::SetOpenMPSizeThreshold(uint_8 thr)
    3138{
     
    150157// -------------------------------------------------------
    151158
    152 // Les constructeurs
     159//! Default constructor
    153160BaseArray::BaseArray()
    154161  : mInfo(NULL)
    155 // Default constructor
    156162{
    157163  ndim_ = 0;
     
    172178}
    173179
    174 // Destructeur
     180//! Destructor
    175181BaseArray::~BaseArray()
    176182{
     
    178184
    179185
     186//! Returns true if \b ndim and \b sizes are equal
     187/*!
     188  \param a : array to be compared
     189  \return true if ndim and sizes are equal, false if not
     190*/
    180191bool BaseArray::CompareSizes(const BaseArray& a)
    181192{
Note: See TracChangeset for help on using the changeset viewer.