Ignore:
Timestamp:
Dec 19, 2013, 6:22:39 PM (11 years ago)
Author:
garnier
Message:

Modification pour remettre en marche le Run. Desormais Transport passe, mais aucun test ne permet de dire si c est bon

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Interface_Web/trunk/pspaWT/sources/controler/src/abstractSoftware.cc

    r455 r472  
    33#include <algorithm>
    44#include <iostream>
    5 
    65
    76abstractSoftware::abstractSoftware()
     
    1110}
    1211
    13 abstractSoftware::abstractSoftware(string inputFileName, sectionToExecute* sect)
     12abstractSoftware::abstractSoftware(string inputFileName, sectionToExecute* sect, dataManager* data)
    1413{
    1514  inputFileName_ = inputFileName;
     
    1716  numeroDeb_deprecated_ = 0;
    1817  numeroFin_deprecated_ = 0;
     18  dataManager_ = data;
    1919  nameOfSoftware_ = nomDeLogiciel("unknownSoftware");
    2020}
    2121
    22 bool abstractSoftware::initComputationLimits_deprecated(unsigned int numeroDeb,unsigned int numeroFin_deprecated_)
    23 {
    24 /*  numeroDeb_deprecated_ = numeroDeb;
    25   numeroFin_deprecated__ = numeroFin_deprecated_;
    26   return ComputationLimitsOk_deprecated();
    27 */
    28 }
    2922
    3023bool abstractSoftware::ComputationLimitsOk_deprecated() const
    3124{
    3225/*  if (numeroDeb_deprecated_ < 1 || numeroFin_deprecated__ < 1 || numeroDeb_deprecated_ > dataManager_->getBeamLineSize() || numeroFin_deprecated__ > dataManager_->getBeamLineSize() ) {
    33     dataManager_->consoleMessage(" abstractSoftware::initComputationLimit : num of element out of limits in software " + getName() );
     26    consoleMessage(" abstractSoftware::initComputationLimit : num of element out of limits in software " + getName() );
    3427    return false;
    3528  } else {
Note: See TracChangeset for help on using the changeset viewer.