File: activate.cc

package info (click to toggle)
simrisc 16.06.00-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,568 kB
  • sloc: cpp: 6,889; fortran: 669; makefile: 112; ansic: 112; sh: 107
file content (20 lines) | stat: -rw-r--r-- 760 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#define XERR
#include "options.ih"

void Options::activate()
{
    // activate the options, to be used in the analyses.
    // d_specified contains the single-letter option characters
    // of the options that were specified on the command-line

    d_specified[ANALYSIS]       = d_specified[STARTUP];

    d_base[ANALYSIS]            = d_base[STARTUP];
    d_cancer[ANALYSIS]          = d_cancer[STARTUP];
    d_config[ANALYSIS]          = d_config[STARTUP];
    d_dataFile[ANALYSIS]        = d_dataFile[STARTUP];
    d_parametersFile[ANALYSIS]  = d_parametersFile[STARTUP];
    d_roundsFile[ANALYSIS]      = d_roundsFile[STARTUP];
//FBB    d_sensitivityFile[ANALYSIS] = d_sensitivityFile[STARTUP];
    d_spreadFile[ANALYSIS]      = d_spreadFile[STARTUP];
}