1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
//#define XERR
#include "loop.ih"
unordered_set<string> Loop::s_availableFiles;
char const *Loop::s_status[] =
{
"", // PRESENT,
"natural death, no tumor, before the 1st screening round", // NATURAL_PRE,
"natural death, undetected tumor, before the 1st screening round", // UNDETECTED_PRE,
"self-detected tumor before the 1st screening round", // SELF_PRE,
"natural death, no tumor, between screening rounds", // NATURAL_DURING,
"natural death, undetected tumor, between screening rounds", // UNDETECTED_DURING,
"self-detected tumor between screening rounds", // SELF_DURING,
"screening-detected tumor", // SCREEN_DETECTED,
"natural death, no tumor, after the last screening round", // NATURAL_POST,
"natural death, undetected tumor, after the last screening round", // UNDETECTED_POST,
"self-detected tumor after the last screening round", // SELF_POST,
};
//// from original input/CumDeathProb.txt
//
//DoubleVect Loop::s_cumDeathProb =
//{
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0,
// 0.00014,
// 0.00028,
// 0.00042,
// 0.00056,
// 0.0007,
// 0.00106,
// 0.00142,
// 0.00178,
// 0.00214,
// 0.0025,
// 0.00382,
// 0.00514,
// 0.00646,
// 0.00778,
// 0.0091,
// 0.01118,
// 0.01326,
// 0.01534,
// 0.01742,
// 0.0195,
// 0.02312,
// 0.02674,
// 0.03036,
// 0.03398,
// 0.0376,
// 0.04414,
// 0.05068,
// 0.05722,
// 0.06376,
// 0.0703,
// 0.07776,
// 0.08522,
// 0.09268,
// 0.10014,
// 0.1076,
// 0.11564,
// 0.12368,
// 0.13172,
// 0.13976,
// 0.1478,
// 0.15718,
// 0.16656,
// 0.17594,
// 0.18532,
// 0.1947,
// 0.20658,
// 0.21846,
// 0.23034,
// 0.24222,
// 0.2541,
// 0.2756,
// 0.2971,
// 0.3186,
// 0.3401,
// 0.3616,
// 0.39368,
// 0.42576,
// 0.45784,
// 0.48992,
// 0.522,
// 0.5624,
// 0.6028,
// 0.6432,
// 0.6836,
// 0.724,
// 0.75826,
// 0.79252,
// 0.82678,
// 0.86104,
// 0.8953,
// 0.90962,
// 0.92394,
// 0.93826,
// 0.95258,
// 0.9669,
// 0.97104,
// 0.97518,
// 0.97932,
// 0.98346,
// 0.9876,
//};
//
|