Example #1
0
        public HD_RUNTIME_LEVEL(string pfsname)
        {
            _pfsHandle = new PFSSection(pfsname);

            STOP_CRITERION = new STOP_CRITERION1("STOP_CRITERION");
            _pfsHandle.AddSection(STOP_CRITERION._pfsHandle);
        }
    public HD_RUNTIME_LEVEL(string pfsname)
    {
      _pfsHandle = new PFSSection(pfsname);

      STOP_CRITERION = new STOP_CRITERION1("STOP_CRITERION" );
      _pfsHandle.AddSection(STOP_CRITERION._pfsHandle);

    }
    internal HD_RUNTIME_LEVEL(PFSSection Section)
    {
      _pfsHandle = Section;

      for (int i = 1; i <= Section.GetSectionsNo(); i++)
      {
        PFSSection sub = Section.GetSection(i);
        switch (sub.Name)
        {
        case "STOP_CRITERION":
          STOP_CRITERION = new STOP_CRITERION1(sub);
          break;
          default:
            _unMappedSections.Add(sub.Name);
          break;
        }
      }

    }
Example #4
0
        internal HD_RUNTIME_LEVEL(PFSSection Section)
        {
            _pfsHandle = Section;

            for (int i = 1; i <= Section.GetSectionsNo(); i++)
            {
                PFSSection sub = Section.GetSection(i);
                switch (sub.Name)
                {
                case "STOP_CRITERION":
                    STOP_CRITERION = new STOP_CRITERION1(sub);
                    break;

                default:
                    _unMappedSections.Add(sub.Name);
                    break;
                }
            }
        }