Changeset 2810 in Sophya for trunk


Ignore:
Timestamp:
Jun 20, 2005, 1:57:53 PM (20 years ago)
Author:
ansari
Message:

correction petite erreur sans importance (m4<>m1) , Reza 20/06/2005

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/ProgPI/piapp.cc

    r2615 r2810  
    3838  \ingroup ProgPI
    3939  \file piapp.cc
    40   \brief \b (s)piapp: Starts the piapp interactive data analysis program.
    41 
    42   The current version of the program has a single execution thread. This
    43   creates few limitations (GUI can not be used when computing is being
    44   done, ...). Also the command file executed during start-up (-exec)
    45   cannot contain display (graphic) commands.
     40  \brief \b piapp: Starts the piapp interactive data analysis program.
     41
     42  This interactive analysis program uses the SOPHYA libray, the PI GUI
     43  library. It has multiple execution threads and a  c-shell inspired
     44  command execution interpreter. See the piapp user manual for more
     45  information.
     46  The SOPHYA piapp executable is called \b spiapp.
    4647
    4748  \verbatim
    4849  csh> spiapp -h
    49   SOPHYA Version  1.3 Revision 70 (V_Jun2002) -- Jul 16 2002 15:45:53 cxx
    50 
    51    piapp: Interactive data analysis and visualisation program
    52    Usage: piapp [-nored] [-nosig] [-nosigfpe] [-nosigsegv] [-hidezswin]
    53                 [-tmpdir TmpDirectory] [-help2tex] [-exec file [args]]
    54     -nored : NoRedirect StdOut/StdErr
    55     -nosig : Don't catch SigFPE, SigSEGV
    56     -nosigfpe -nosigsegv: Don t catch SigFPE / SigSEGV
    57     -hidezswin : Hide Zoom/Stat/ColMap window
    58     -tmpdir TmpDirectory: defines TMDIR for temporary files
    59     -help2tex: Create a LaTeX help file (piahelp.tex)
    60     -exec file [args] : Execute command file
     50 SophyaInitiator::SophyaInitiator() BaseTools Init
     51 PIOPersist::Initialize() Starting Sophya Persistence management service
     52SOPHYA Version  1.9 Revision 0 (V_Mai2005) -- Jun  9 2005 22:01:01
     53gcc 3.3-fast 20030304 (Apple Computer, Inc. build 1614)
     54
     55 piapp: Interactive data analysis and visualisation program
     56 Usage: piapp [-nored] [-nosig] [-nosigfpe] [-nosigsegv] [-hidezswin]
     57              [-tmpdir TmpDirectory] [-help2tex] [-exec file [args]]
     58  -nored : NoRedirect StdOut/StdErr
     59  -nosig : Don't catch SigFPE, SigSEGV
     60  -nosigfpe -nosigsegv: Don t catch SigFPE / SigSEGV
     61  -hidezswin : Hide Zoom/Stat/ColMap window
     62  -tmpdir TmpDirectory: defines TMDIR for temporary files
     63  -help2tex: Create a LaTeX help file (piahelp.tex)
     64  -exec file [args] : Execute command file
    6165 
    6266  \endverbatim
  • trunk/SophyaProg/Tests/ovharr.cc

    r2615 r2810  
    503503          }
    504504        for(i=0; i<l; i++) m3[i] = m1[i] + m2[i];
    505         for(i=0; i<l; i++) m3[i] = m4[i] * m2[i];
     505        for(i=0; i<l; i++) m4[i] = m1[i] * m2[i];
    506506        delete[] m1;
    507507        delete[] m2;
Note: See TracChangeset for help on using the changeset viewer.