" ; echo " (Initialization file being used: ", basename($_FILES['uploadFile']['name']), ")
" ;
// file name used to save upload found with 'tmp_name' key
$all = file_get_contents($_FILES['uploadFile']['tmp_name']);
// echo $all."
";
// break file contents on new line character
$lines = explode( "\n", $all);
// echo $lines."
";
$nLines = count($lines);
// echo "nlines=".$nlines."
";
$iSig = 10;
// loop over the number of lines in the file
for ($i = 0; $i < $nLines; $i++) {
$thisLine = trim($lines[$i]);
///echo "Read this line:".$thisLine, "
";
$skip = 0;
// if ($thisLine == "2") $skip = 1; // don't understand why this is needed !!!
if (strlen($thisLine) == 1) $skip = 1;
if ($thisLine == "\n") $skip = 1;
if ($thisLine == "") $skip = 1;
if (substr($thisLine,0,2) == "//") $skip = 1;
if (substr($thisLine,0,1) == "#") $skip = 1;
if ($skip == 0) {
// echo "Found a line", "
";
// if line contains an equal sign, treat it as a keyword-value pair
if (strpos($thisLine,'=') !== false) {
// have to parse the command, then execute it (must be easier way)
$pos = strpos($thisLine,'=');
$mycmd = substr($thisLine, 0, $pos);
$val=substr($thisLine, $pos+1, 1000);
// echo $val."
";
// echo " will execute: ".$mycmd."=".$val."
";
$$mycmd=$val; // execute the string (any security concern with this?)
} else {
// since input file was tab-delimited for signal names and y limits , break fields on tabs
$items = explode( "\t", $thisLine);
// create the name of the desired field, e.g., sig10
$var_container='sig'.$iSig;
// use the variable name to set the desired contents
$$var_container=$items[0];
// do the same for Y lower and upper limits, if they were in the file
if (count($items) > 1 ) {
$var_container='p'.$iSig.'_Y1';
// echo $var_container;
$$var_container=$items[1];
}
if (count($items) > 2 ) {
$var_container='p'.$iSig.'_Y2';
$$var_container=$items[2];
}
$iSig = $iSig+1;
}
}
}
}
//echo "f_11=".$f_11."
";
if (empty($ctb)) $ctb = -1 ;
if (empty($f_10)) $f_10 = 1 ;
if (empty($f_11)) $f_11 = 2 ;
if (empty($f_12)) $f_12 = 3 ;
if (empty($f_13)) $f_13 = 4 ;
if (empty($f_14)) $f_14 = 5 ;
if (empty($f_15)) $f_15 = 6 ;
if (empty($f_16)) $f_16 = 7 ;
if (empty($f_17)) $f_17 = 8 ;
if (empty($f_18)) $f_18 = 9 ;
if (empty($f_19)) $f_19 = 10;
if (empty($f_20)) $f_20 = 11;
if (empty($f_21)) $f_21 = 12;
if (empty($f_22)) $f_22 = 13;
if (empty($f_23)) $f_23 = 14;
if (empty($f_24)) $f_24 = 15;
if (empty($f_25)) $f_25 = 16;
if (empty($f_26)) $f_26 = 17;
if (empty($f_27)) $f_27 = 18;
if (empty($f_28)) $f_28 = 19;
if (empty($f_29)) $f_29 = 20;
// echo "f_11=".$f_11."
";
?>
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
||||
![]() |
![]() |
![]() |
![]() |
![]() |
||||||
![]() |
![]() |
(To use this page from outside the pppl.gov domain, you must be authenticated at the firewall)
(If this page is not working, you may be able to diagnose problems with the server).
If you want your signals and Y ranges remembered when you return to this page, read about the IMPORTANT FEATURE on the Scope Plotting Details page.