Changeset 52 in PSPA for Interface_Web/trunk/pspaWT/include


Ignore:
Timestamp:
Nov 5, 2012, 5:01:33 PM (12 years ago)
Author:
lemeur
Message:

introduction workingarea

Location:
Interface_Web/trunk/pspaWT/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Interface_Web/trunk/pspaWT/include/dataManager.h

    r50 r52  
    1616
    1717  void createInputFileParmela( unsigned int indexDeb, unsigned int indexFin);
    18   void executeParmela( unsigned int indexDeb, unsigned int indexFin);
     18  string executeParmela( unsigned int indexDeb, unsigned int indexFin);
    1919
    2020 public:
     
    3131  abstractElement* addDrift();
    3232  abstractElement* addInitialBeam();
    33   void executeAll();
     33  string executeAll();
    3434  void saveAll();
    3535  void restoreAll();
  • Interface_Web/trunk/pspaWT/include/mathematicalTools.h

    r48 r52  
    248248  }
    249249
    250 bool input_flow( ifstream* const ifs)
     250bool input_flow( ifstream& ifs)
    251251 {
    252252    bool test;
    253     if ( *ifs >> vec_[0] >> vec_[1] >> vec_[2]) test= true;
     253    if ( ifs >> vec_[0] >> vec_[1] >> vec_[2]) test= true;
    254254    else test =  false;
    255255    return test;
Note: See TracChangeset for help on using the changeset viewer.