Compare commits
8 Commits
rev-distro
...
rev-distro
| Author | SHA1 | Date | |
|---|---|---|---|
| ea838b395f | |||
| 43689ef162 | |||
| fa24916aa6 | |||
| e3e80f5796 | |||
| c50ca2e577 | |||
| f419e92809 | |||
| ef9d08e5f5 | |||
| b7390cb46f |
46
.gitea/workflows/deploy-pages.yaml
Normal file
46
.gitea/workflows/deploy-pages.yaml
Normal file
@@ -0,0 +1,46 @@
|
||||
name: build and deploy documentation
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- distro
|
||||
|
||||
jobs:
|
||||
build-and-deploy:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: gitea.psi.ch/pearl/docs
|
||||
credentials:
|
||||
username: ${{ gitea.actor }}
|
||||
password: ${{ secrets.package_token }}
|
||||
|
||||
steps:
|
||||
- name: checkout
|
||||
working-directory: /app
|
||||
run: |
|
||||
git clone --branch master --single-branch https://${{ secrets.REPO_TOKEN }}@gitea.psi.ch/${{ github.repository }}.git
|
||||
|
||||
- name: build
|
||||
working-directory: /app/igor-procs/doc
|
||||
run: |
|
||||
REVISION=$(git describe --always --tags --dirty --long || date +"%F %T %z")
|
||||
export REVISION
|
||||
doxygen config.dox
|
||||
mv html/ /app/
|
||||
|
||||
- name: configure git
|
||||
working-directory: /app/igor-procs
|
||||
run: |
|
||||
git config --global user.name "Gitea Actions"
|
||||
git config --global user.email "actions@gitea.local"
|
||||
|
||||
- name: push to gitea-pages
|
||||
working-directory: /app/igor-procs
|
||||
run: |
|
||||
git checkout --orphan gitea-pages
|
||||
git reset --hard
|
||||
cp -r /app/html/* .
|
||||
git add .
|
||||
git commit -m "Deploy documentation to gitea"
|
||||
git push -f https://${{ secrets.REPO_TOKEN }}@gitea.psi.ch/${{ github.repository }}.git gitea-pages
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,5 +2,6 @@
|
||||
~*
|
||||
*.bak
|
||||
*.ipfT*
|
||||
doc/html/*
|
||||
doc/latex/*
|
||||
|
||||
|
||||
2
LICENSE
2
LICENSE
@@ -186,7 +186,7 @@
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright 2009-2019 Paul Scherrer Institut
|
||||
Copyright 2009-2022 Paul Scherrer Institut
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
||||
36
README.md
36
README.md
@@ -1,7 +1,7 @@
|
||||
Introduction
|
||||
============
|
||||
|
||||
PEARL Procedures is a suite of Igor Pro procedures developed for data acquisition and data processing at the PEARL beamline at the Swiss Light Source.
|
||||
PEARL Procedures is a suite of Igor Pro procedures developed for data acquisition and data processing at the PEARL beamline at the Swiss Light Source. PEARL Procedures requires Igor Pro 8 or newer.
|
||||
|
||||
|
||||
Installation
|
||||
@@ -11,13 +11,14 @@ PEARL Procedures should be installed according to the regular Igor Pro guideline
|
||||
|
||||
- Make a `pearl-procs` directory in your private or shared `User Procedures` folder, and copy the PEARL Procedures distribution there.
|
||||
- Create shortcuts of the `pearl-arpes.ipf` and `pearl-menu.ipf` files, and move them to the `Igor Procedures` folder next to your `User Procedures` folder.
|
||||
- Find the `HDF5.XOP` (`HDF5-64.xop` for Igor 7 64-bit) extension in the `Igor Pro Folder` under `More Extensions/File Loaders` (`More Extensions (64-bit)/File Loaders`), create a shortcut, and move the shortcut to the `Igor Extensions` folder next to your `User Procedures` folder.
|
||||
|
||||
Igor Pro 9 imports the HDF5 library by default. For earlier versions:
|
||||
|
||||
- Find the `HDF5.XOP` (`HDF5-64.xop` for 64-bit) extension in the `Igor Pro Folder` under `More Extensions/File Loaders` (`More Extensions (64-bit)/File Loaders`), create a shortcut, and move the shortcut to the `Igor Extensions` folder next to your `User Procedures` folder.
|
||||
- Find the `HDF5 Help.ihf` next to `HDF5.XOP`, create a shortcut, and move the shortcut to the `Igor Help Files` folder next to your `User Procedures` folder.
|
||||
|
||||
PEARL Procedures are compatible with Igor Pro versions 6-8, 32-bit and 64-bit.
|
||||
They are not compatible with Igor 6.36 and older.
|
||||
As long as no Igor 8 specific features are used, the produced experiment files remain compatible with Igor 6.
|
||||
Some features, in particular 3D graphics, may not work properly under Igor 7 and newer.
|
||||
PEARL Procedures are tested on Igor Pro 8.04, 64-bit.
|
||||
Please make sure to use the latest release version of Igor Pro.
|
||||
|
||||
|
||||
License
|
||||
@@ -35,12 +36,28 @@ Matthias Muntwiler, <mailto:matthias.muntwiler@psi.ch>
|
||||
Copyright
|
||||
---------
|
||||
|
||||
Copyright 2009-2019 by [Paul Scherrer Institut](http://www.psi.ch)
|
||||
Copyright 2009-2025 by [Paul Scherrer Institut](http://www.psi.ch)
|
||||
|
||||
|
||||
Release Notes
|
||||
=============
|
||||
|
||||
## rev-distro-3.1.0
|
||||
|
||||
- Ingestor to SciLog electronic logbook
|
||||
- Support for PShell files from DA30/DFS30 analyser
|
||||
- Fix Gizmo window in Igor 8 and higher
|
||||
|
||||
## rev-distro-3.0.0
|
||||
|
||||
- New panel and procedure interface for PShell data file import.
|
||||
- Support for latest PShell file structure.
|
||||
- Igor Pro 8.04 or later is required.
|
||||
|
||||
## rev-distro-2.2.0
|
||||
|
||||
- Updates, bugfixes and performance improvements in angle scan processing.
|
||||
|
||||
## rev-distro-2.1.0
|
||||
|
||||
- Check compatibility of major features with Igor 8.
|
||||
@@ -54,8 +71,3 @@ Release Notes
|
||||
|
||||
- The interface of data reduction functions has changed to make data reduction more efficient in multi-peak fits. The supplied reduction functions and dialogs have been refactored. If you want to use your own reduction functions written for pre-2.0, you have to adapt them to the new interface.
|
||||
|
||||
## rev-distro-1.1.1
|
||||
|
||||
- If you have upgraded PEARL Procedures from pre-1.1.1 and Igor breaks in pearl-elog.ipf while opening an experiment, please delete the ELOG preferences file `pearl-elog/preferences.pxp`. (Check the Igor Help to find the package preferences folder on your system.)
|
||||
|
||||
|
||||
|
||||
@@ -1581,7 +1581,7 @@ EXTRA_SEARCH_MAPPINGS =
|
||||
# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
|
||||
# The default value is: YES.
|
||||
|
||||
GENERATE_LATEX = YES
|
||||
GENERATE_LATEX = NO
|
||||
|
||||
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
|
||||
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
|
||||
|
||||
@@ -1,135 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.11"/>
|
||||
<title>PEARL Procedures: Projections</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
$(window).load(resizeHeight);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() { init_search(); });
|
||||
</script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.0-0-gfda49c3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</script>
|
||||
<div id="navrow1" class="tabs">
|
||||
<ul class="tablist">
|
||||
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||
<li class="current"><a href="pages.html"><span>Related Pages</span></a></li>
|
||||
<li><a href="modules.html"><span>Packages</span></a></li>
|
||||
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li><a href="files.html"><span>Files</span></a></li>
|
||||
<li>
|
||||
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||
<span class="left">
|
||||
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
alt=""/>
|
||||
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||
</span><span class="right">
|
||||
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
<div id="nav-sync" class="sync"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('PageProjections.html','');});
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
</div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">Projections </div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="textblock"><p>the functions of the anglescan package support the following map projections.</p>
|
||||
<p>for a description of the different projections, see, for example, <a href="https://en.wikipedia.org/wiki/Map_projection">https://en.wikipedia.org/wiki/Map_projection</a></p>
|
||||
<table class="doxtable">
|
||||
<tr>
|
||||
<th align="center">Selector </th><th align="center">Projection </th><th align="center">Function </th><th align="left">Properties </th></tr>
|
||||
<tr>
|
||||
<td align="center">kProjDist = 0 </td><td align="center">azimuthal equidistant </td><td align="center">r = c * theta </td><td align="left">radius is proportional to polar angle. </td></tr>
|
||||
<tr>
|
||||
<td align="center">kProjStereo = 1 </td><td align="center">stereographic </td><td align="center">r = c * tan theta/2 </td><td align="left">circles on sphere map to circles. </td></tr>
|
||||
<tr>
|
||||
<td align="center">kProjArea = 2 </td><td align="center">azimuthal equal-area </td><td align="center">r = c * sin theta/2 </td><td align="left">preserves area measure. </td></tr>
|
||||
<tr>
|
||||
<td align="center">kProjGnom = 3 </td><td align="center">gnomonic </td><td align="center">r = c * tan theta </td><td align="left">great circles map to straight lines. </td></tr>
|
||||
<tr>
|
||||
<td align="center">kProjOrtho = 4 </td><td align="center">orthographic </td><td align="center">r = c * sin theta </td><td align="left">k-space mapping in ARPES and LEED. </td></tr>
|
||||
</table>
|
||||
<p>the projections in this package are defined for 0 <= theta < 90. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Tue Mar 13 2018 12:43:01 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.11 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Projections</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('_page_projections.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('_page_projections.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -80,36 +82,36 @@ $(document).ready(function(){initNavTree('_page_projections.html','');});
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="PageDoc"><div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">Projections </div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="textblock"><p>the functions of the anglescan package support the following map projections.</p>
|
||||
<p>for a description of the different projections, see, for example, <a href="https://en.wikipedia.org/wiki/Map_projection">https://en.wikipedia.org/wiki/Map_projection</a></p>
|
||||
<table class="doxtable">
|
||||
<tr>
|
||||
<th align="center">Selector </th><th align="center">Projection </th><th align="center">Function </th><th align="left">Properties </th></tr>
|
||||
<tr>
|
||||
<td align="center">kProjDist = 0 </td><td align="center">azimuthal equidistant </td><td align="center">r = c * theta </td><td align="left">radius is proportional to polar angle. </td></tr>
|
||||
<tr>
|
||||
<td align="center">kProjStereo = 1 </td><td align="center">stereographic </td><td align="center">r = c * tan theta/2 </td><td align="left">circles on sphere map to circles. </td></tr>
|
||||
<tr>
|
||||
<td align="center">kProjArea = 2 </td><td align="center">azimuthal equal-area </td><td align="center">r = c * sin theta/2 </td><td align="left">preserves area measure. </td></tr>
|
||||
<tr>
|
||||
<td align="center">kProjGnom = 3 </td><td align="center">gnomonic </td><td align="center">r = c * tan theta </td><td align="left">great circles map to straight lines. </td></tr>
|
||||
<tr>
|
||||
<td align="center">kProjOrtho = 4 </td><td align="center">orthographic </td><td align="center">r = c * sin theta </td><td align="left">k-space mapping in ARPES and LEED. </td></tr>
|
||||
<div class="textblock"><p>the functions of the anglescan package support the following map projections. for a description of the different projections, see, for example, <a href="https://en.wikipedia.org/wiki/Map_projection">https://en.wikipedia.org/wiki/Map_projection</a></p>
|
||||
<table class="markdownTable">
|
||||
<tr class="markdownTableHead">
|
||||
<th class="markdownTableHeadCenter">Selector </th><th class="markdownTableHeadCenter">Projection </th><th class="markdownTableHeadCenter">Function </th><th class="markdownTableHeadLeft">Properties </th></tr>
|
||||
<tr class="markdownTableRowOdd">
|
||||
<td class="markdownTableBodyCenter">kProjDist = 0 </td><td class="markdownTableBodyCenter">azimuthal equidistant </td><td class="markdownTableBodyCenter">r = c * theta </td><td class="markdownTableBodyLeft">radius is proportional to polar angle. </td></tr>
|
||||
<tr class="markdownTableRowEven">
|
||||
<td class="markdownTableBodyCenter">kProjStereo = 1 </td><td class="markdownTableBodyCenter">stereographic </td><td class="markdownTableBodyCenter">r = c * tan theta/2 </td><td class="markdownTableBodyLeft">circles on sphere map to circles. </td></tr>
|
||||
<tr class="markdownTableRowOdd">
|
||||
<td class="markdownTableBodyCenter">kProjArea = 2 </td><td class="markdownTableBodyCenter">azimuthal equal-area </td><td class="markdownTableBodyCenter">r = c * sin theta/2 </td><td class="markdownTableBodyLeft">preserves area measure. </td></tr>
|
||||
<tr class="markdownTableRowEven">
|
||||
<td class="markdownTableBodyCenter">kProjGnom = 3 </td><td class="markdownTableBodyCenter">gnomonic </td><td class="markdownTableBodyCenter">r = c * tan theta </td><td class="markdownTableBodyLeft">great circles map to straight lines. </td></tr>
|
||||
<tr class="markdownTableRowOdd">
|
||||
<td class="markdownTableBodyCenter">kProjOrtho = 4 </td><td class="markdownTableBodyCenter">orthographic </td><td class="markdownTableBodyCenter">r = c * sin theta </td><td class="markdownTableBodyLeft">k-space mapping in ARPES and LEED. </td></tr>
|
||||
</table>
|
||||
<p>the projections in this package are defined for 0 <= theta < 90. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- PageDoc -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: anglescan-processing.dox File Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('anglescan-processing_8dox.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('anglescan-processing_8dox.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -91,9 +93,9 @@ $(document).ready(function(){initNavTree('anglescan-processing_8dox.html','');})
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="anglescan-processing_8dox.html">anglescan-processing.dox</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Data Structures</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('annotated.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('annotated.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -96,9 +98,9 @@ $(document).ready(function(){initNavTree('annotated.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 246 B |
Binary file not shown.
|
Before Width: | Height: | Size: 229 B |
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Data Structure Index</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('classes.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('classes.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -88,10 +90,14 @@ $(document).ready(function(){initNavTree('classes.html','');});
|
||||
<div class="qindex"><a class="qindex" href="#letter_d">d</a> | <a class="qindex" href="#letter_e">e</a></div>
|
||||
<table class="classindex">
|
||||
<tr><td rowspan="2" valign="bottom"><a name="letter_d"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  d  </div></td></tr></table>
|
||||
</td><td rowspan="2" valign="bottom"><a name="letter_e"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  e  </div></td></tr></table>
|
||||
</td><td></td></tr>
|
||||
</td>
|
||||
<td rowspan="2" valign="bottom"><a name="letter_e"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  e  </div></td></tr></table>
|
||||
</td>
|
||||
<td></td></tr>
|
||||
<tr><td></td></tr>
|
||||
<tr><td valign="top"><a class="el" href="struct_doniach_sunjic_struct.html">DoniachSunjicStruct</a>   </td><td valign="top"><a class="el" href="structerror_code.html">errorCode</a>   </td><td></td></tr>
|
||||
<tr><td valign="top"><a class="el" href="struct_doniach_sunjic_struct.html">DoniachSunjicStruct</a>   </td>
|
||||
<td valign="top"><a class="el" href="structerror_code.html">errorCode</a>   </td>
|
||||
<td></td></tr>
|
||||
<tr><td></td><td></td><td></td></tr>
|
||||
</table>
|
||||
<div class="qindex"><a class="qindex" href="#letter_d">d</a> | <a class="qindex" href="#letter_e">e</a></div>
|
||||
@@ -100,9 +106,9 @@ $(document).ready(function(){initNavTree('classes.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,123 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.11"/>
|
||||
<title>PEARL Procedures: Deprecated List</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
$(window).load(resizeHeight);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() { init_search(); });
|
||||
</script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</script>
|
||||
<div id="navrow1" class="tabs">
|
||||
<ul class="tablist">
|
||||
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||
<li class="current"><a href="pages.html"><span>Related Pages</span></a></li>
|
||||
<li><a href="modules.html"><span>Packages</span></a></li>
|
||||
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li><a href="files.html"><span>Files</span></a></li>
|
||||
<li>
|
||||
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||
<span class="left">
|
||||
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
alt=""/>
|
||||
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||
</span><span class="right">
|
||||
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
<div id="nav-sync" class="sync"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('deprecated.html','');});
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
</div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">Deprecated List </div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="textblock"><dl class="reflist">
|
||||
<dt><a class="anchor" id="_deprecated000001"></a>Global <a class="el" href="pearl-elog_8ipf.html#abee76b5f8f5f30a97d9a7258b8ab2ea7">elog_add_graph_prompt</a> (string graphname, variable replyto=defaultValue)</dt>
|
||||
<dd>this function is specific to the PEARL/Experiments logbook. it cannot be customized without major efforts. it will be removed in a future version. </dd>
|
||||
<dt><a class="anchor" id="_deprecated000002"></a>Global <a class="el" href="pearl-elog_8ipf.html#a4c4130ab54fdb4d9d4a005cfbbe3b77f">elog_prompt_attributes</a> (string *attributes, string *message)</dt>
|
||||
<dd>this function is specific to the PEARL/Experiments logbook. it cannot be customized without major efforts. it will be removed in a future version. </dd>
|
||||
</dl>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Fri Jun 3 2016 11:35:29 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.11 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: pearl Directory Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('dir_fe5dc42579d4b99403482a3a637d9f7d.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('dir_fe5dc42579d4b99403482a3a637d9f7d.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -111,8 +113,10 @@ Files</h2></td></tr>
|
||||
<tr class="memitem:pearl-arpes_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-arpes_8ipf.html">pearl-arpes.ipf</a> <a href="pearl-arpes_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memdesc:pearl-arpes_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">data acquisition and analysis package for ARPES at PEARL. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-compat_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-compat_8ipf.html">pearl-compat.ipf</a> <a href="pearl-compat_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memdesc:pearl-compat_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">compatibility procedures for igor 8 <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-data-explorer_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-data-explorer_8ipf.html">pearl-data-explorer.ipf</a> <a href="pearl-data-explorer_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memdesc:pearl-data-explorer_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">preview and import panel for PEARL data <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-elog_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-elog_8ipf.html">pearl-elog.ipf</a> <a href="pearl-elog_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memdesc:pearl-elog_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">interface for writing ELOG entries with Igor graphs as attachment. <br /></td></tr>
|
||||
@@ -137,12 +141,16 @@ Files</h2></td></tr>
|
||||
<tr class="memitem:pearl-pshell-import_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-pshell-import_8ipf.html">pearl-pshell-import.ipf</a> <a href="pearl-pshell-import_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memdesc:pearl-pshell-import_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">import data from PShell <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-scienta-live_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-scienta-live_8ipf.html">pearl-scienta-live.ipf</a> <a href="pearl-scienta-live_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memdesc:pearl-scienta-live_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">utility functions for operating the Scienta analyser. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-scienta-preprocess_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-scienta-preprocess_8ipf.html">pearl-scienta-preprocess.ipf</a> <a href="pearl-scienta-preprocess_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memdesc:pearl-scienta-preprocess_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">preprocessing functions for Scienta detector images. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-tools_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-tools_8ipf.html">pearl-tools.ipf</a> <a href="pearl-tools_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-vector-operations_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-vector-operations_8ipf.html">pearl-vector-operations.ipf</a> <a href="pearl-vector-operations_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memdesc:pearl-vector-operations_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">basic vector geometry operations. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
</div><!-- contents -->
|
||||
@@ -151,9 +159,9 @@ Files</h2></td></tr>
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="dir_fe5dc42579d4b99403482a3a637d9f7d.html">pearl</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* The standard CSS for doxygen 1.8.13 */
|
||||
/* The standard CSS for doxygen 1.8.17 */
|
||||
|
||||
body, table, div, p, dl {
|
||||
font: 400 14px/22px Roboto,sans-serif;
|
||||
@@ -53,17 +53,24 @@ dt {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.multicol {
|
||||
ul.multicol {
|
||||
-moz-column-gap: 1em;
|
||||
-webkit-column-gap: 1em;
|
||||
column-gap: 1em;
|
||||
-moz-column-count: 3;
|
||||
-webkit-column-count: 3;
|
||||
column-count: 3;
|
||||
}
|
||||
|
||||
p.startli, p.startdd {
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
th p.starttd, p.intertd, p.endtd {
|
||||
font-size: 100%;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
p.starttd {
|
||||
margin-top: 0px;
|
||||
}
|
||||
@@ -80,6 +87,15 @@ p.endtd {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
p.interli {
|
||||
}
|
||||
|
||||
p.interdd {
|
||||
}
|
||||
|
||||
p.intertd {
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
caption {
|
||||
@@ -134,12 +150,12 @@ a.qindex {
|
||||
a.qindexHL {
|
||||
font-weight: bold;
|
||||
background-color: #9CAFD4;
|
||||
color: #ffffff;
|
||||
color: #FFFFFF;
|
||||
border: 1px double #869DCA;
|
||||
}
|
||||
|
||||
.contents a.qindexHL:visited {
|
||||
color: #ffffff;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
a.el {
|
||||
@@ -163,6 +179,25 @@ dl.el {
|
||||
margin-left: -1cm;
|
||||
}
|
||||
|
||||
ul {
|
||||
overflow: hidden; /*Fixed: list item bullets overlap floating elements*/
|
||||
}
|
||||
|
||||
#side-nav ul {
|
||||
overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */
|
||||
}
|
||||
|
||||
#main-nav ul {
|
||||
overflow: visible; /* reset ul rule for the navigation bar drop down lists */
|
||||
}
|
||||
|
||||
.fragment {
|
||||
text-align: left;
|
||||
direction: ltr;
|
||||
overflow-x: auto; /*Fixed: fragment lines overlap floating elements*/
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
pre.fragment {
|
||||
border: 1px solid #C4CFE5;
|
||||
background-color: #FBFCFD;
|
||||
@@ -177,8 +212,8 @@ pre.fragment {
|
||||
}
|
||||
|
||||
div.fragment {
|
||||
padding: 0px;
|
||||
margin: 4px 8px 4px 2px;
|
||||
padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/
|
||||
margin: 4px 8px 4px 2px;
|
||||
background-color: #FBFCFD;
|
||||
border: 1px solid #C4CFE5;
|
||||
}
|
||||
@@ -248,7 +283,7 @@ span.lineno a:hover {
|
||||
div.ah, span.ah {
|
||||
background-color: black;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
color: #FFFFFF;
|
||||
margin-bottom: 3px;
|
||||
margin-top: 3px;
|
||||
padding: 0.2em;
|
||||
@@ -324,7 +359,7 @@ img.formulaDsp {
|
||||
|
||||
}
|
||||
|
||||
img.formulaInl {
|
||||
img.formulaInl, img.inline {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
@@ -402,6 +437,13 @@ blockquote {
|
||||
padding: 0 12px 0 16px;
|
||||
}
|
||||
|
||||
blockquote.DocNodeRTL {
|
||||
border-left: 0;
|
||||
border-right: 2px solid #9CAFD4;
|
||||
margin: 0 4px 0 24px;
|
||||
padding: 0 16px 0 12px;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/*
|
||||
@@ -498,7 +540,7 @@ table.memberdecls {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.memItemRight {
|
||||
.memItemRight, .memTemplItemRight {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@@ -666,17 +708,17 @@ dl.reflist dd {
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
.params .paramname, .retval .paramname {
|
||||
.params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname {
|
||||
font-weight: bold;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.params .paramtype {
|
||||
.params .paramtype, .tparams .paramtype {
|
||||
font-style: italic;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.params .paramdir {
|
||||
.params .paramdir, .tparams .paramdir {
|
||||
font-family: "courier new",courier,monospace;
|
||||
vertical-align: top;
|
||||
}
|
||||
@@ -1081,72 +1123,143 @@ div.headertitle
|
||||
padding: 5px 5px 5px 10px;
|
||||
}
|
||||
|
||||
dl
|
||||
{
|
||||
padding: 0 0 0 10px;
|
||||
.PageDocRTL-title div.headertitle {
|
||||
text-align: right;
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */
|
||||
dl.section
|
||||
{
|
||||
dl {
|
||||
padding: 0 0 0 0;
|
||||
}
|
||||
|
||||
/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.examples */
|
||||
dl.section {
|
||||
margin-left: 0px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
dl.note
|
||||
{
|
||||
margin-left:-7px;
|
||||
padding-left: 3px;
|
||||
border-left:4px solid;
|
||||
border-color: #D0C000;
|
||||
dl.section.DocNodeRTL {
|
||||
margin-right: 0px;
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
dl.warning, dl.attention
|
||||
{
|
||||
margin-left:-7px;
|
||||
padding-left: 3px;
|
||||
border-left:4px solid;
|
||||
border-color: #FF0000;
|
||||
dl.note {
|
||||
margin-left: -7px;
|
||||
padding-left: 3px;
|
||||
border-left: 4px solid;
|
||||
border-color: #D0C000;
|
||||
}
|
||||
|
||||
dl.pre, dl.post, dl.invariant
|
||||
{
|
||||
margin-left:-7px;
|
||||
padding-left: 3px;
|
||||
border-left:4px solid;
|
||||
border-color: #00D000;
|
||||
dl.note.DocNodeRTL {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
border-left: 0;
|
||||
margin-right: -7px;
|
||||
padding-right: 3px;
|
||||
border-right: 4px solid;
|
||||
border-color: #D0C000;
|
||||
}
|
||||
|
||||
dl.deprecated
|
||||
{
|
||||
margin-left:-7px;
|
||||
padding-left: 3px;
|
||||
border-left:4px solid;
|
||||
border-color: #505050;
|
||||
dl.warning, dl.attention {
|
||||
margin-left: -7px;
|
||||
padding-left: 3px;
|
||||
border-left: 4px solid;
|
||||
border-color: #FF0000;
|
||||
}
|
||||
|
||||
dl.todo
|
||||
{
|
||||
margin-left:-7px;
|
||||
padding-left: 3px;
|
||||
border-left:4px solid;
|
||||
border-color: #00C0E0;
|
||||
dl.warning.DocNodeRTL, dl.attention.DocNodeRTL {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
border-left: 0;
|
||||
margin-right: -7px;
|
||||
padding-right: 3px;
|
||||
border-right: 4px solid;
|
||||
border-color: #FF0000;
|
||||
}
|
||||
|
||||
dl.test
|
||||
{
|
||||
margin-left:-7px;
|
||||
padding-left: 3px;
|
||||
border-left:4px solid;
|
||||
border-color: #3030E0;
|
||||
dl.pre, dl.post, dl.invariant {
|
||||
margin-left: -7px;
|
||||
padding-left: 3px;
|
||||
border-left: 4px solid;
|
||||
border-color: #00D000;
|
||||
}
|
||||
|
||||
dl.bug
|
||||
{
|
||||
margin-left:-7px;
|
||||
padding-left: 3px;
|
||||
border-left:4px solid;
|
||||
border-color: #C08050;
|
||||
dl.pre.DocNodeRTL, dl.post.DocNodeRTL, dl.invariant.DocNodeRTL {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
border-left: 0;
|
||||
margin-right: -7px;
|
||||
padding-right: 3px;
|
||||
border-right: 4px solid;
|
||||
border-color: #00D000;
|
||||
}
|
||||
|
||||
dl.deprecated {
|
||||
margin-left: -7px;
|
||||
padding-left: 3px;
|
||||
border-left: 4px solid;
|
||||
border-color: #505050;
|
||||
}
|
||||
|
||||
dl.deprecated.DocNodeRTL {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
border-left: 0;
|
||||
margin-right: -7px;
|
||||
padding-right: 3px;
|
||||
border-right: 4px solid;
|
||||
border-color: #505050;
|
||||
}
|
||||
|
||||
dl.todo {
|
||||
margin-left: -7px;
|
||||
padding-left: 3px;
|
||||
border-left: 4px solid;
|
||||
border-color: #00C0E0;
|
||||
}
|
||||
|
||||
dl.todo.DocNodeRTL {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
border-left: 0;
|
||||
margin-right: -7px;
|
||||
padding-right: 3px;
|
||||
border-right: 4px solid;
|
||||
border-color: #00C0E0;
|
||||
}
|
||||
|
||||
dl.test {
|
||||
margin-left: -7px;
|
||||
padding-left: 3px;
|
||||
border-left: 4px solid;
|
||||
border-color: #3030E0;
|
||||
}
|
||||
|
||||
dl.test.DocNodeRTL {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
border-left: 0;
|
||||
margin-right: -7px;
|
||||
padding-right: 3px;
|
||||
border-right: 4px solid;
|
||||
border-color: #3030E0;
|
||||
}
|
||||
|
||||
dl.bug {
|
||||
margin-left: -7px;
|
||||
padding-left: 3px;
|
||||
border-left: 4px solid;
|
||||
border-color: #C08050;
|
||||
}
|
||||
|
||||
dl.bug.DocNodeRTL {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
border-left: 0;
|
||||
margin-right: -7px;
|
||||
padding-right: 3px;
|
||||
border-right: 4px solid;
|
||||
border-color: #C08050;
|
||||
}
|
||||
|
||||
dl.section dd {
|
||||
@@ -1263,6 +1376,11 @@ div.toc {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.PageDocRTL-title div.toc {
|
||||
float: left !important;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
div.toc li {
|
||||
background: url("bdwn.png") no-repeat scroll 0 5px transparent;
|
||||
font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif;
|
||||
@@ -1271,6 +1389,12 @@ div.toc li {
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
.PageDocRTL-title div.toc li {
|
||||
background-position-x: right !important;
|
||||
padding-left: 0 !important;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
div.toc h3 {
|
||||
font: bold 12px/1.2 Arial,FreeSans,sans-serif;
|
||||
color: #4665A2;
|
||||
@@ -1300,6 +1424,26 @@ div.toc li.level4 {
|
||||
margin-left: 45px;
|
||||
}
|
||||
|
||||
.PageDocRTL-title div.toc li.level1 {
|
||||
margin-left: 0 !important;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.PageDocRTL-title div.toc li.level2 {
|
||||
margin-left: 0 !important;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.PageDocRTL-title div.toc li.level3 {
|
||||
margin-left: 0 !important;
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.PageDocRTL-title div.toc li.level4 {
|
||||
margin-left: 0 !important;
|
||||
margin-right: 45px;
|
||||
}
|
||||
|
||||
.inherit_header {
|
||||
font-weight: bold;
|
||||
color: gray;
|
||||
@@ -1413,7 +1557,7 @@ tr.heading h2 {
|
||||
}
|
||||
|
||||
#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after {
|
||||
border-top-color: #ffffff;
|
||||
border-top-color: #FFFFFF;
|
||||
border-width: 10px;
|
||||
margin: 0px -10px;
|
||||
}
|
||||
@@ -1441,7 +1585,7 @@ tr.heading h2 {
|
||||
}
|
||||
|
||||
#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after {
|
||||
border-bottom-color: #ffffff;
|
||||
border-bottom-color: #FFFFFF;
|
||||
border-width: 10px;
|
||||
margin: 0px -10px;
|
||||
}
|
||||
@@ -1468,7 +1612,7 @@ tr.heading h2 {
|
||||
left: 100%;
|
||||
}
|
||||
#powerTip.e:after {
|
||||
border-left-color: #ffffff;
|
||||
border-left-color: #FFFFFF;
|
||||
border-width: 10px;
|
||||
top: 50%;
|
||||
margin-top: -10px;
|
||||
@@ -1484,7 +1628,7 @@ tr.heading h2 {
|
||||
right: 100%;
|
||||
}
|
||||
#powerTip.w:after {
|
||||
border-right-color: #ffffff;
|
||||
border-right-color: #FFFFFF;
|
||||
border-width: 10px;
|
||||
top: 50%;
|
||||
margin-top: -10px;
|
||||
@@ -1592,5 +1736,36 @@ th.markdownTableHeadCenter, td.markdownTableBodyCenter {
|
||||
text-align: center
|
||||
}
|
||||
|
||||
.DocNodeRTL {
|
||||
text-align: right;
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
.DocNodeLTR {
|
||||
text-align: left;
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
table.DocNodeRTL {
|
||||
width: auto;
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
table.DocNodeLTR {
|
||||
width: auto;
|
||||
margin-right: auto;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
tt, code, kbd, samp
|
||||
{
|
||||
display: inline-block;
|
||||
direction:ltr;
|
||||
}
|
||||
/* @end */
|
||||
|
||||
u {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,26 @@
|
||||
/*
|
||||
@licstart The following is the entire license notice for the
|
||||
JavaScript code in this file.
|
||||
|
||||
Copyright (C) 1997-2017 by Dimitri van Heesch
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
@licend The above is the entire license notice
|
||||
for the JavaScript code in this file
|
||||
*/
|
||||
function toggleVisibility(linkObj)
|
||||
{
|
||||
var base = $(linkObj).attr('id');
|
||||
@@ -94,11 +117,11 @@ function toggleInherit(id)
|
||||
$(img).attr('src',src.substring(0,src.length-10)+'open.png');
|
||||
}
|
||||
}
|
||||
|
||||
/* @license-end */
|
||||
|
||||
$(document).ready(function() {
|
||||
$('.code,.codeRef').each(function() {
|
||||
$(this).data('powertip',$('#'+$(this).attr('href').replace(/.*\//,'').replace(/[^a-z_A-Z0-9]/g,'_')).html());
|
||||
$(this).data('powertip',$('#a'+$(this).attr('href').replace(/.*\//,'').replace(/[^a-z_A-Z0-9]/g,'_')).html());
|
||||
$(this).powerTip({ placement: 's', smartPlacement: true, mouseOnToPopup: true });
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: fermi-edge-analysis.ipf File Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('fermi-edge-analysis_8ipf.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('fermi-edge-analysis_8ipf.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -111,23 +113,20 @@ Functions</h2></td></tr>
|
||||
<tr class="separator:a27f000c3a3ea74c49db31716be3396d4"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:acf72d644b8d37b6c26b1e070edba4e30"><td class="memItemLeft" align="right" valign="top">variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#acf72d644b8d37b6c26b1e070edba4e30">show_shift</a> (wave data)</td></tr>
|
||||
<tr class="separator:acf72d644b8d37b6c26b1e070edba4e30"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:ad23de34bb698589e2576ce2836b89d55"><td class="memItemLeft" align="right" valign="top">variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#ad23de34bb698589e2576ce2836b89d55">analyser_energy_resolution</a> (variable epass, variable slit)</td></tr>
|
||||
<tr class="memdesc:ad23de34bb698589e2576ce2836b89d55"><td class="mdescLeft"> </td><td class="mdescRight">calculate the energy resolution of the analyser <a href="#ad23de34bb698589e2576ce2836b89d55">More...</a><br /></td></tr>
|
||||
<tr class="separator:ad23de34bb698589e2576ce2836b89d55"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table><table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="var-members"></a>
|
||||
Variables</h2></td></tr>
|
||||
<tr class="memitem:a09f26b0a0fd940a3d8c6f92aa769c8bc"><td class="memItemLeft" align="right" valign="top">static const variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a09f26b0a0fd940a3d8c6f92aa769c8bc">mcp_radius_pix</a> = 555</td></tr>
|
||||
<tr class="memdesc:a09f26b0a0fd940a3d8c6f92aa769c8bc"><td class="mdescLeft"> </td><td class="mdescRight">MCP radius seen by the camera in pixels. <a href="#a09f26b0a0fd940a3d8c6f92aa769c8bc">More...</a><br /></td></tr>
|
||||
<tr class="memdesc:a09f26b0a0fd940a3d8c6f92aa769c8bc"><td class="mdescLeft"> </td><td class="mdescRight">MCP radius seen by the camera in pixels. <a href="fermi-edge-analysis_8ipf.html#a09f26b0a0fd940a3d8c6f92aa769c8bc">More...</a><br /></td></tr>
|
||||
<tr class="separator:a09f26b0a0fd940a3d8c6f92aa769c8bc"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a4dcc00b93822f1663be2908b10d2ad3e"><td class="memItemLeft" align="right" valign="top">static const variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a4dcc00b93822f1663be2908b10d2ad3e">mcp_radius_mm</a> = 20</td></tr>
|
||||
<tr class="memdesc:a4dcc00b93822f1663be2908b10d2ad3e"><td class="mdescLeft"> </td><td class="mdescRight">physical size (radius) of the MCP in mm <a href="#a4dcc00b93822f1663be2908b10d2ad3e">More...</a><br /></td></tr>
|
||||
<tr class="memdesc:a4dcc00b93822f1663be2908b10d2ad3e"><td class="mdescLeft"> </td><td class="mdescRight">physical size (radius) of the MCP in mm <a href="fermi-edge-analysis_8ipf.html#a4dcc00b93822f1663be2908b10d2ad3e">More...</a><br /></td></tr>
|
||||
<tr class="separator:a4dcc00b93822f1663be2908b10d2ad3e"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a0cb8da36beae05c79fe5b1da918d3897"><td class="memItemLeft" align="right" valign="top">static const variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a0cb8da36beae05c79fe5b1da918d3897">hemi_radius_mm</a> = 200</td></tr>
|
||||
<tr class="memdesc:a0cb8da36beae05c79fe5b1da918d3897"><td class="mdescLeft"> </td><td class="mdescRight">physical size (radius) of the hemisphere in mm <a href="#a0cb8da36beae05c79fe5b1da918d3897">More...</a><br /></td></tr>
|
||||
<tr class="memdesc:a0cb8da36beae05c79fe5b1da918d3897"><td class="mdescLeft"> </td><td class="mdescRight">physical size (radius) of the hemisphere in mm <a href="fermi-edge-analysis_8ipf.html#a0cb8da36beae05c79fe5b1da918d3897">More...</a><br /></td></tr>
|
||||
<tr class="separator:a0cb8da36beae05c79fe5b1da918d3897"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a4749b9bce3e1d0381bd9daeb97c9754c"><td class="memItemLeft" align="right" valign="top">static const variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a4749b9bce3e1d0381bd9daeb97c9754c">mcp_radius_epass</a> = 0.04</td></tr>
|
||||
<tr class="memdesc:a4749b9bce3e1d0381bd9daeb97c9754c"><td class="mdescLeft"> </td><td class="mdescRight">energy range imaged on MCP relative to the pass energy <a href="#a4749b9bce3e1d0381bd9daeb97c9754c">More...</a><br /></td></tr>
|
||||
<tr class="memdesc:a4749b9bce3e1d0381bd9daeb97c9754c"><td class="mdescLeft"> </td><td class="mdescRight">energy range imaged on MCP relative to the pass energy <a href="fermi-edge-analysis_8ipf.html#a4749b9bce3e1d0381bd9daeb97c9754c">More...</a><br /></td></tr>
|
||||
<tr class="separator:a4749b9bce3e1d0381bd9daeb97c9754c"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
@@ -142,9 +141,9 @@ Variables</h2></td></tr>
|
||||
<dl class="section author"><dt>Author</dt><dd>matthias muntwiler, <a href="#" onclick="location.href='mai'+'lto:'+'mat'+'th'+'ias'+'.m'+'unt'+'wi'+'ler'+'@p'+'si.'+'ch'; return false;">matth<span style="display: none;">.nosp@m.</span>ias.<span style="display: none;">.nosp@m.</span>muntw<span style="display: none;">.nosp@m.</span>iler<span style="display: none;">.nosp@m.</span>@psi.<span style="display: none;">.nosp@m.</span>ch</a> </dd>
|
||||
<dd>
|
||||
thomas dienel</dd></dl>
|
||||
<dl class="section copyright"><dt>Copyright</dt><dd>2013-15 Paul Scherrer Institut <br />
|
||||
Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
you may not use this file except in compliance with the License. <br />
|
||||
<dl class="section copyright"><dt>Copyright</dt><dd>2013-15 Paul Scherrer Institut <br />
|
||||
Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
you may not use this file except in compliance with the License. <br />
|
||||
You may obtain a copy of the License at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a> </dd></dl>
|
||||
|
||||
<p class="definition">Definition in file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
@@ -165,47 +164,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00027">27</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a id="ad23de34bb698589e2576ce2836b89d55"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#ad23de34bb698589e2576ce2836b89d55">◆ </a></span>analyser_energy_resolution()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">variable analyser_energy_resolution </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">variable </td>
|
||||
<td class="paramname"><em>epass</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">variable </td>
|
||||
<td class="paramname"><em>slit</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>calculate the energy resolution of the analyser </p>
|
||||
<dl class="params"><dt>Parameters</dt><dd>
|
||||
<table class="params">
|
||||
<tr><td class="paramname">epass</td><td>pass energy in eV </td></tr>
|
||||
<tr><td class="paramname">slit</td><td>analyser entrance slit in mm</td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="section return"><dt>Returns</dt><dd>energy resolution (FWHM) </dd></dl>
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00306">306</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00028">28</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -241,7 +200,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00216">216</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00217">217</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -271,7 +230,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00116">116</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00117">117</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -291,7 +250,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00098">98</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00099">99</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -311,7 +270,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00284">284</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00285">285</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -347,7 +306,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00173">173</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00174">174</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -377,7 +336,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00267">267</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00268">268</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -404,7 +363,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
|
||||
<p>physical size (radius) of the hemisphere in mm </p>
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00263">263</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00264">264</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -430,7 +389,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
|
||||
<p>energy range imaged on MCP relative to the pass energy </p>
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00265">265</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00266">266</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -456,7 +415,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
|
||||
<p>physical size (radius) of the MCP in mm </p>
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00261">261</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00262">262</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -482,7 +441,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
|
||||
<p>MCP radius seen by the camera in pixels. </p>
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00259">259</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition at line <a class="el" href="fermi-edge-analysis_8ipf_source.html#l00260">260</a> of file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -492,9 +451,9 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="dir_fe5dc42579d4b99403482a3a637d9f7d.html">pearl</a></li><li class="navelem"><a class="el" href="fermi-edge-analysis_8ipf.html">fermi-edge-analysis.ipf</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
var fermi_edge_analysis_8ipf =
|
||||
[
|
||||
[ "analyse_curved_edge", "fermi-edge-analysis_8ipf.html#a1c4a805435a1d43c2b6dfb6deb633894", null ],
|
||||
[ "analyser_energy_resolution", "fermi-edge-analysis_8ipf.html#ad23de34bb698589e2576ce2836b89d55", null ],
|
||||
[ "FermiFuncLinDOS2D_corr", "fermi-edge-analysis_8ipf.html#a520d8de9fbc4276c19fb417861f05b0d", null ],
|
||||
[ "integrate_curved_edge", "fermi-edge-analysis_8ipf.html#a2a1d7b49c1f88f29ee6d49f6a6f4fbf8", null ],
|
||||
[ "record_results", "fermi-edge-analysis_8ipf.html#aac6bac1ee0582caa0676bdc9c2d254f0", null ],
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: File List</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('files.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('files.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -95,19 +97,21 @@ $(document).ready(function(){initNavTree('files.html','');});
|
||||
<tr id="row_5_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-area-import_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-area-import_8ipf.html" target="_self">pearl-area-import.ipf</a></td><td class="desc">HDF5 file import from EPICS area detectors </td></tr>
|
||||
<tr id="row_6_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-area-profiles_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-area-profiles_8ipf.html" target="_self">pearl-area-profiles.ipf</a></td><td class="desc">Profile extraction for multi-dimensional datasets acquired from area detectors </td></tr>
|
||||
<tr id="row_7_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-arpes_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-arpes_8ipf.html" target="_self">pearl-arpes.ipf</a></td><td class="desc">Data acquisition and analysis package for ARPES at PEARL </td></tr>
|
||||
<tr id="row_8_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-data-explorer_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-data-explorer_8ipf.html" target="_self">pearl-data-explorer.ipf</a></td><td class="desc">Preview and import panel for PEARL data </td></tr>
|
||||
<tr id="row_9_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-elog_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-elog_8ipf.html" target="_self">pearl-elog.ipf</a></td><td class="desc">Interface for writing ELOG entries with Igor graphs as attachment </td></tr>
|
||||
<tr id="row_10_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-fitfuncs_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-fitfuncs_8ipf.html" target="_self">pearl-fitfuncs.ipf</a></td><td class="desc">Various fit functions for photoelectron spectroscopy </td></tr>
|
||||
<tr id="row_11_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-gui-tools_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-gui-tools_8ipf.html" target="_self">pearl-gui-tools.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_12_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-matrix-import_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-matrix-import_8ipf.html" target="_self">pearl-matrix-import.ipf</a></td><td class="desc">Data file import for omicron matrix (STM) files </td></tr>
|
||||
<tr id="row_13_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-menu_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-menu_8ipf.html" target="_self">pearl-menu.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_14_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-otf-import_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-otf-import_8ipf.html" target="_self">pearl-otf-import.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_15_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-pmsco-import_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-pmsco-import_8ipf.html" target="_self">pearl-pmsco-import.ipf</a></td><td class="desc">Data import/export procedures for multiple scattering calculations </td></tr>
|
||||
<tr id="row_16_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-polar-coordinates_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-polar-coordinates_8ipf.html" target="_self">pearl-polar-coordinates.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_17_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-pshell-import_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-pshell-import_8ipf.html" target="_self">pearl-pshell-import.ipf</a></td><td class="desc">Import data from PShell </td></tr>
|
||||
<tr id="row_18_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-scienta-preprocess_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-scienta-preprocess_8ipf.html" target="_self">pearl-scienta-preprocess.ipf</a></td><td class="desc">Preprocessing functions for Scienta detector images </td></tr>
|
||||
<tr id="row_19_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-tools_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-tools_8ipf.html" target="_self">pearl-tools.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_20_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-vector-operations_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-vector-operations_8ipf.html" target="_self">pearl-vector-operations.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_8_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-compat_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-compat_8ipf.html" target="_self">pearl-compat.ipf</a></td><td class="desc">Compatibility procedures for igor 8 </td></tr>
|
||||
<tr id="row_9_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-data-explorer_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-data-explorer_8ipf.html" target="_self">pearl-data-explorer.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_10_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-elog_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-elog_8ipf.html" target="_self">pearl-elog.ipf</a></td><td class="desc">Interface for writing ELOG entries with Igor graphs as attachment </td></tr>
|
||||
<tr id="row_11_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-fitfuncs_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-fitfuncs_8ipf.html" target="_self">pearl-fitfuncs.ipf</a></td><td class="desc">Various fit functions for photoelectron spectroscopy </td></tr>
|
||||
<tr id="row_12_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-gui-tools_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-gui-tools_8ipf.html" target="_self">pearl-gui-tools.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_13_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-matrix-import_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-matrix-import_8ipf.html" target="_self">pearl-matrix-import.ipf</a></td><td class="desc">Data file import for omicron matrix (STM) files </td></tr>
|
||||
<tr id="row_14_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-menu_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-menu_8ipf.html" target="_self">pearl-menu.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_15_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-otf-import_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-otf-import_8ipf.html" target="_self">pearl-otf-import.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_16_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-pmsco-import_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-pmsco-import_8ipf.html" target="_self">pearl-pmsco-import.ipf</a></td><td class="desc">Data import/export procedures for multiple scattering calculations </td></tr>
|
||||
<tr id="row_17_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-polar-coordinates_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-polar-coordinates_8ipf.html" target="_self">pearl-polar-coordinates.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_18_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-pshell-import_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-pshell-import_8ipf.html" target="_self">pearl-pshell-import.ipf</a></td><td class="desc">Import data from PShell </td></tr>
|
||||
<tr id="row_19_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-scienta-live_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-scienta-live_8ipf.html" target="_self">pearl-scienta-live.ipf</a></td><td class="desc">Utility functions for operating the Scienta analyser </td></tr>
|
||||
<tr id="row_20_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-scienta-preprocess_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-scienta-preprocess_8ipf.html" target="_self">pearl-scienta-preprocess.ipf</a></td><td class="desc">Preprocessing functions for Scienta detector images </td></tr>
|
||||
<tr id="row_21_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-tools_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-tools_8ipf.html" target="_self">pearl-tools.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_22_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-vector-operations_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-vector-operations_8ipf.html" target="_self">pearl-vector-operations.ipf</a></td><td class="desc">Basic vector geometry operations </td></tr>
|
||||
</table>
|
||||
</div><!-- directory -->
|
||||
</div><!-- contents -->
|
||||
@@ -115,9 +119,9 @@ $(document).ready(function(){initNavTree('files.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,24 +0,0 @@
|
||||
var files =
|
||||
[
|
||||
[ "fermi-edge-analysis.ipf", "fermi-edge-analysis_8ipf.html", "fermi-edge-analysis_8ipf" ],
|
||||
[ "pearl-anglescan-panel.ipf", "pearl-anglescan-panel_8ipf.html", "pearl-anglescan-panel_8ipf" ],
|
||||
[ "pearl-anglescan-process.ipf", "pearl-anglescan-process_8ipf.html", "pearl-anglescan-process_8ipf" ],
|
||||
[ "pearl-anglescan-tracker.ipf", "pearl-anglescan-tracker_8ipf.html", "pearl-anglescan-tracker_8ipf" ],
|
||||
[ "pearl-area-display.ipf", "pearl-area-display_8ipf.html", "pearl-area-display_8ipf" ],
|
||||
[ "pearl-area-import.ipf", "pearl-area-import_8ipf.html", "pearl-area-import_8ipf" ],
|
||||
[ "pearl-area-profiles.ipf", "pearl-area-profiles_8ipf.html", "pearl-area-profiles_8ipf" ],
|
||||
[ "pearl-arpes.ipf", "pearl-arpes_8ipf.html", "pearl-arpes_8ipf" ],
|
||||
[ "pearl-data-explorer.ipf", "pearl-data-explorer_8ipf.html", "pearl-data-explorer_8ipf" ],
|
||||
[ "pearl-elog.ipf", "pearl-elog_8ipf.html", "pearl-elog_8ipf" ],
|
||||
[ "pearl-fitfuncs.ipf", "pearl-fitfuncs_8ipf.html", "pearl-fitfuncs_8ipf" ],
|
||||
[ "pearl-gui-tools.ipf", "pearl-gui-tools_8ipf.html", "pearl-gui-tools_8ipf" ],
|
||||
[ "pearl-matrix-import.ipf", "pearl-matrix-import_8ipf.html", "pearl-matrix-import_8ipf" ],
|
||||
[ "pearl-menu.ipf", "pearl-menu_8ipf.html", "pearl-menu_8ipf" ],
|
||||
[ "pearl-otf-import.ipf", "pearl-otf-import_8ipf.html", "pearl-otf-import_8ipf" ],
|
||||
[ "pearl-pmsco-import.ipf", "pearl-pmsco-import_8ipf.html", "pearl-pmsco-import_8ipf" ],
|
||||
[ "pearl-polar-coordinates.ipf", "pearl-polar-coordinates_8ipf.html", "pearl-polar-coordinates_8ipf" ],
|
||||
[ "pearl-pshell-import.ipf", "pearl-pshell-import_8ipf.html", "pearl-pshell-import_8ipf" ],
|
||||
[ "pearl-scienta-preprocess.ipf", "pearl-scienta-preprocess_8ipf.html", "pearl-scienta-preprocess_8ipf" ],
|
||||
[ "pearl-tools.ipf", "pearl-tools_8ipf.html", "pearl-tools_8ipf" ],
|
||||
[ "pearl-vector-operations.ipf", "pearl-vector-operations_8ipf.html", "pearl-vector-operations_8ipf" ]
|
||||
];
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Data Fields</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('functions.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('functions.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -148,9 +150,9 @@ $(document).ready(function(){initNavTree('functions.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Data Fields - Variables</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('functions_vars.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('functions_vars.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -148,9 +150,9 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -84,6 +86,9 @@ $(document).ready(function(){initNavTree('globals.html','');});
|
||||
<div class="textblock">Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:</div>
|
||||
|
||||
<h3><a id="index_a"></a>- a -</h3><ul>
|
||||
<li>ad_add_overlay()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#af9bd125ed4fb4ada10b78bca2607b44d">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_box_filter()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a27f0957d61f3c2d30a4854911b460c36">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
@@ -201,6 +206,12 @@ $(document).ready(function(){initNavTree('globals.html','');});
|
||||
<li>ad_update_profiles()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#afa2546f9cb03dfa8bf0cc9966f0b7a45">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>add_anglescan_worker()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a8c83a187e371783dea62c9f2bc97c52c">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>add_aziscan_core()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a8eabc7feca73f9e0db2109a78ee382cb">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>add_image_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a35a5cd8a21b48be8d726c69eb5fca134">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
@@ -243,6 +254,9 @@ $(document).ready(function(){initNavTree('globals.html','');});
|
||||
<li>adh5_redim()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#acfa6d2675e63f4f686289ef853b262a9">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_reduce_brick()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#ae88bc41882fd16c94c04d856f3e062e4">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_scale()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a774751d1857ea6946a942448dc913128">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
@@ -264,14 +278,17 @@ $(document).ready(function(){initNavTree('globals.html','');});
|
||||
, <a class="el" href="pearl-arpes_8ipf.html#a8e4eacc6efacf2c65615c1ea72d722ed">pearl-arpes.ipf</a>
|
||||
</li>
|
||||
<li>AfterFileOpenHook()
|
||||
: <a class="el" href="pearl-matrix-import_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5">pearl-matrix-import.ipf</a>
|
||||
, <a class="el" href="pearl-elog_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5">pearl-elog.ipf</a>
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5">pearl-elog.ipf</a>
|
||||
, <a class="el" href="pearl-matrix-import_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>analyse_curved_edge()
|
||||
: <a class="el" href="fermi-edge-analysis_8ipf.html#a1c4a805435a1d43c2b6dfb6deb633894">fermi-edge-analysis.ipf</a>
|
||||
</li>
|
||||
<li>analyser_energy_resolution()
|
||||
: <a class="el" href="fermi-edge-analysis_8ipf.html#ad23de34bb698589e2576ce2836b89d55">fermi-edge-analysis.ipf</a>
|
||||
: <a class="el" href="pearl-scienta-live_8ipf.html#ad23de34bb698589e2576ce2836b89d55">pearl-scienta-live.ipf</a>
|
||||
</li>
|
||||
<li>AngleToK()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#acf6fddb73624fe2d21429e38c4994088">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>AppendToGraphIterator()
|
||||
: <a class="el" href="pearl-tools_8ipf.html#a90c62bdfc186e2482ccb18113a591d5e">pearl-tools.ipf</a>
|
||||
@@ -349,7 +366,7 @@ $(document).ready(function(){initNavTree('globals.html','');});
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a33e84ae8e13f405d466b28e83f608cb9">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>attributes_notebook()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad6cfb2c00d5112add84542a25eb68b19">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a844467a592e5b26b2324326f22b7da89">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>Au4f()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a13a5ee22049d9a3379cd6e55654e70a3">pearl-fitfuncs.ipf</a>
|
||||
@@ -366,9 +383,9 @@ $(document).ready(function(){initNavTree('globals.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_b.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_b.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -112,20 +114,14 @@ $(document).ready(function(){initNavTree('globals_b.html','');});
|
||||
<li>bp_clear()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ab39637298c93b7aefd67febf3a4e7672">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_crop_alpha_preview()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#ae73ae76ff6e2344143d4dee7cc26b4b5">pearl-anglescan-panel.ipf</a>
|
||||
<li>bp_crop_preview()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a57c666f93cb4310fadf13b1916eaf134">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>bp_dataset_display()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a5660c6f5f78d880b0805bad4eefed1d5">pearl-data-explorer.ipf</a>
|
||||
<li>bp_display_dataset()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a0f7473343cf773af9efedee1a18ac5db">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_dataset_folder()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a6b642da731bde1029e0fa2ff69d5fb06">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_dataset_next()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a3bbb332e319ef7ec5f0fe2d16afaf005">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_dataset_prev()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#add62ff5193206c9f207952bcd72dac88">pearl-data-explorer.ipf</a>
|
||||
<li>bp_elog()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a64bd3e5e68b30c94db00c58fa3be3f0d">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_extract_slice()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a31461b664ec651a39442e9a46ffd88c9">pearl-area-display.ipf</a>
|
||||
@@ -136,17 +132,17 @@ $(document).ready(function(){initNavTree('globals_b.html','');});
|
||||
<li>bp_file_prev()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a6aa44ff12b8530adbaaaf7405b1a68ba">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_goto_dataset()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a01e48e67a22dc56851447bd77abecbe1">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_graph_png()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a9be861636d98d7891e6d106deac2f90b">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>bp_graph_update()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a940f2115fb5b47e19516168d15346472">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>bp_load_files()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a742902dfaf2246f10b70f52805c6df1f">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_load_files_opt()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad61aa85dcf24dbf7e093dac3d0bf6f19">pearl-data-explorer.ipf</a>
|
||||
<li>bp_load_options()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a3fd06ac9aa62de7f00e10ce749ba12c9">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_load_prefs()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a1868754e64cb1448e564c0936e78574d">pearl-anglescan-panel.ipf</a>
|
||||
@@ -200,6 +196,9 @@ $(document).ready(function(){initNavTree('globals_b.html','');});
|
||||
<li>bp_output_itx()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a0bdc14f90bdc40045200ac23229b225d">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>bp_reduction_params()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a70150946799d759473b409b3371e3ae2">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_reset_cursors()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a24b17f99fafd8043ed3e4502000da316">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
@@ -207,8 +206,8 @@ $(document).ready(function(){initNavTree('globals_b.html','');});
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a8251cea45c8d1f1993a4051a6d0760c4">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_save_prefs()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5">pearl-anglescan-panel.ipf</a>
|
||||
, <a class="el" href="pearl-data-explorer_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5">pearl-data-explorer.ipf</a>
|
||||
, <a class="el" href="pearl-anglescan-panel_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>bp_source_select()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a1e50019bc895a0787cb3f07d776e9463">pearl-anglescan-panel.ipf</a>
|
||||
@@ -219,9 +218,6 @@ $(document).ready(function(){initNavTree('globals_b.html','');});
|
||||
<li>bp_submit()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#adeff6678e57313cb218824f06d32b5ec">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_update_datasets()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#af9f8769ca2989f152f23d976d1467a48">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_update_filelist()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a45be265789a5260e3daa05eca0ec309e">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
@@ -231,9 +227,9 @@ $(document).ready(function(){initNavTree('globals_b.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_c.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_c.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -121,7 +123,10 @@ $(document).ready(function(){initNavTree('globals_c.html','');});
|
||||
: <a class="el" href="pearl-polar-coordinates_8ipf.html#adfc1f0b3cddf672b0ccdb6a22b97ba9e">pearl-polar-coordinates.ipf</a>
|
||||
</li>
|
||||
<li>check_contrast()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a2e1ed05781f9eb4be5e77695ef049962">pearl-anglescan-process.ipf</a>
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a67d53a1c362d7e5bbeccf1c9c12ae0c2">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>check_exposure_opt()
|
||||
: <a class="el" href="pearl-scienta-live_8ipf.html#af2879284b1d1397447a31733fddd6273">pearl-scienta-live.ipf</a>
|
||||
</li>
|
||||
<li>check_norm_alpha()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#af5435ccaabba78f855b244929dc09ed0">pearl-anglescan-panel.ipf</a>
|
||||
@@ -150,6 +155,9 @@ $(document).ready(function(){initNavTree('globals_c.html','');});
|
||||
<li>convert_angles_ttpd2polar()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a2b38c6c9b6e60593ba69d3773b6bc779">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>create_attributes_notebook()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a77047115739da6d28055f7fd44c9fd2c">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>create_cmd_file()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ac8b61eefed231018cc36d47e95bd8c22">pearl-elog.ipf</a>
|
||||
</li>
|
||||
@@ -165,6 +173,9 @@ $(document).ready(function(){initNavTree('globals_c.html','');});
|
||||
<li>crop_strip()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ab65d25af7476ed18f7bf7359614a912b">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>crop_strip_theta()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#aa79c0ff6073bd42e202b9fa3f8c00b9f">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>csr_int_linbg_reduction()
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a95fbd22f52f61d2bff0625b7b8e159d1">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
@@ -174,9 +185,9 @@ $(document).ready(function(){initNavTree('globals_c.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_d.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_d.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -84,12 +86,18 @@ $(document).ready(function(){initNavTree('globals_d.html','');});
|
||||
<div class="textblock">Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:</div>
|
||||
|
||||
<h3><a id="index_d"></a>- d -</h3><ul>
|
||||
<li>DblDoubletGaussLinBG_AO()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#aca0bf4ff35794a459e15a3b358dbfa04">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>DefaultFolderIterator()
|
||||
: <a class="el" href="pearl-tools_8ipf.html#a3fb8c06030dc41a599380150807caeb0">pearl-tools.ipf</a>
|
||||
</li>
|
||||
<li>DefaultWaveIterator()
|
||||
: <a class="el" href="pearl-tools_8ipf.html#a6bdd1c0b269f1d7d99843ce0cb218cc7">pearl-tools.ipf</a>
|
||||
</li>
|
||||
<li>delete_rows()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a16424e5787967d9c120fb09c7849956e">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>Display2dProfiles()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#aad7d768680c6d8a9b8a7025c7e1ec75d">pearl-menu.ipf</a>
|
||||
</li>
|
||||
@@ -97,7 +105,7 @@ $(document).ready(function(){initNavTree('globals_d.html','');});
|
||||
: <a class="el" href="pearl-menu_8ipf.html#ac73a94f760455f19294a9f917b43f145">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>display_dataset()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ae79a57a41c734ce8836f427b81011b5d">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a67cd1a025e5428d443027c1f57eaec09">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>display_hemi_scan()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ae57302acfc822c4817f2b7eef55efea2">pearl-anglescan-process.ipf</a>
|
||||
@@ -117,8 +125,8 @@ $(document).ready(function(){initNavTree('globals_d.html','');});
|
||||
<li>DisplayGizmoSlicer()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#aab34952c2f3b36f9ee8619eb901ff581">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>do_crop_alpha()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a893478e43be64b0c404b7573d2e89cc2">pearl-anglescan-panel.ipf</a>
|
||||
<li>do_crop()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#af39609fc80e58f2188b3aa564f53b750">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>do_init_process()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a1836e607851ba4d5a4048f4cfb8121a7">pearl-anglescan-panel.ipf</a>
|
||||
@@ -174,9 +182,9 @@ $(document).ready(function(){initNavTree('globals_d.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_e.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_e.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -144,6 +146,9 @@ $(document).ready(function(){initNavTree('globals_e.html','');});
|
||||
<li>extend_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a4bde8b2fc39c61c0d5a6879f1d0ae115">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>extract_attributes()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#af4474f34647ec24f27f900226c6bb3bd">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>extract_preview_image()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a0adc1b370fd3bf230b61b094b3c0accb">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
@@ -153,9 +158,9 @@ $(document).ready(function(){initNavTree('globals_e.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_f.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_f.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -90,18 +92,9 @@ $(document).ready(function(){initNavTree('globals_f.html','');});
|
||||
<li>FermiGaussConv()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a4d20215153c0e0cee3870dfceded8bc9">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>find_attr_folder()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a41bf534983b0662ec2609b136c395f14">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>find_hemi_data()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#aa26c9ed4c4d703e07788d980edc2406d">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>find_scale_wave()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#acfb01ee360b66f286225f6e9c7220ba2">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>find_scan_folder()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a79b968d7439dfbfbc38c05f933071489">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>Fit_DoniachSunjicBroad()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a819902ab9f541b75a0fd33a7b52465d0">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
@@ -114,9 +107,9 @@ $(document).ready(function(){initNavTree('globals_f.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -84,6 +86,9 @@ $(document).ready(function(){initNavTree('globals_func.html','');});
|
||||
 
|
||||
|
||||
<h3><a id="index_a"></a>- a -</h3><ul>
|
||||
<li>ad_add_overlay()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#af9bd125ed4fb4ada10b78bca2607b44d">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_box_filter()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a27f0957d61f3c2d30a4854911b460c36">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
@@ -201,6 +206,12 @@ $(document).ready(function(){initNavTree('globals_func.html','');});
|
||||
<li>ad_update_profiles()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#afa2546f9cb03dfa8bf0cc9966f0b7a45">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>add_anglescan_worker()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a8c83a187e371783dea62c9f2bc97c52c">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>add_aziscan_core()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a8eabc7feca73f9e0db2109a78ee382cb">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>add_image_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a35a5cd8a21b48be8d726c69eb5fca134">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
@@ -243,6 +254,9 @@ $(document).ready(function(){initNavTree('globals_func.html','');});
|
||||
<li>adh5_redim()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#acfa6d2675e63f4f686289ef853b262a9">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_reduce_brick()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#ae88bc41882fd16c94c04d856f3e062e4">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_scale()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a774751d1857ea6946a942448dc913128">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
@@ -264,14 +278,17 @@ $(document).ready(function(){initNavTree('globals_func.html','');});
|
||||
, <a class="el" href="pearl-arpes_8ipf.html#a8e4eacc6efacf2c65615c1ea72d722ed">pearl-arpes.ipf</a>
|
||||
</li>
|
||||
<li>AfterFileOpenHook()
|
||||
: <a class="el" href="pearl-matrix-import_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5">pearl-matrix-import.ipf</a>
|
||||
, <a class="el" href="pearl-elog_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5">pearl-elog.ipf</a>
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5">pearl-elog.ipf</a>
|
||||
, <a class="el" href="pearl-matrix-import_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>analyse_curved_edge()
|
||||
: <a class="el" href="fermi-edge-analysis_8ipf.html#a1c4a805435a1d43c2b6dfb6deb633894">fermi-edge-analysis.ipf</a>
|
||||
</li>
|
||||
<li>analyser_energy_resolution()
|
||||
: <a class="el" href="fermi-edge-analysis_8ipf.html#ad23de34bb698589e2576ce2836b89d55">fermi-edge-analysis.ipf</a>
|
||||
: <a class="el" href="pearl-scienta-live_8ipf.html#ad23de34bb698589e2576ce2836b89d55">pearl-scienta-live.ipf</a>
|
||||
</li>
|
||||
<li>AngleToK()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#acf6fddb73624fe2d21429e38c4994088">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>AppendToGraphIterator()
|
||||
: <a class="el" href="pearl-tools_8ipf.html#a90c62bdfc186e2482ccb18113a591d5e">pearl-tools.ipf</a>
|
||||
@@ -349,7 +366,7 @@ $(document).ready(function(){initNavTree('globals_func.html','');});
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a33e84ae8e13f405d466b28e83f608cb9">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>attributes_notebook()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad6cfb2c00d5112add84542a25eb68b19">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a844467a592e5b26b2324326f22b7da89">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>Au4f()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a13a5ee22049d9a3379cd6e55654e70a3">pearl-fitfuncs.ipf</a>
|
||||
@@ -366,9 +383,9 @@ $(document).ready(function(){initNavTree('globals_func.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_b.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_b.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -112,20 +114,14 @@ $(document).ready(function(){initNavTree('globals_func_b.html','');});
|
||||
<li>bp_clear()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ab39637298c93b7aefd67febf3a4e7672">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_crop_alpha_preview()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#ae73ae76ff6e2344143d4dee7cc26b4b5">pearl-anglescan-panel.ipf</a>
|
||||
<li>bp_crop_preview()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a57c666f93cb4310fadf13b1916eaf134">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>bp_dataset_display()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a5660c6f5f78d880b0805bad4eefed1d5">pearl-data-explorer.ipf</a>
|
||||
<li>bp_display_dataset()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a0f7473343cf773af9efedee1a18ac5db">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_dataset_folder()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a6b642da731bde1029e0fa2ff69d5fb06">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_dataset_next()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a3bbb332e319ef7ec5f0fe2d16afaf005">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_dataset_prev()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#add62ff5193206c9f207952bcd72dac88">pearl-data-explorer.ipf</a>
|
||||
<li>bp_elog()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a64bd3e5e68b30c94db00c58fa3be3f0d">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_extract_slice()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a31461b664ec651a39442e9a46ffd88c9">pearl-area-display.ipf</a>
|
||||
@@ -136,17 +132,17 @@ $(document).ready(function(){initNavTree('globals_func_b.html','');});
|
||||
<li>bp_file_prev()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a6aa44ff12b8530adbaaaf7405b1a68ba">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_goto_dataset()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a01e48e67a22dc56851447bd77abecbe1">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_graph_png()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a9be861636d98d7891e6d106deac2f90b">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>bp_graph_update()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a940f2115fb5b47e19516168d15346472">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>bp_load_files()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a742902dfaf2246f10b70f52805c6df1f">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_load_files_opt()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad61aa85dcf24dbf7e093dac3d0bf6f19">pearl-data-explorer.ipf</a>
|
||||
<li>bp_load_options()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a3fd06ac9aa62de7f00e10ce749ba12c9">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_load_prefs()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a1868754e64cb1448e564c0936e78574d">pearl-anglescan-panel.ipf</a>
|
||||
@@ -200,6 +196,9 @@ $(document).ready(function(){initNavTree('globals_func_b.html','');});
|
||||
<li>bp_output_itx()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a0bdc14f90bdc40045200ac23229b225d">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>bp_reduction_params()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a70150946799d759473b409b3371e3ae2">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_reset_cursors()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a24b17f99fafd8043ed3e4502000da316">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
@@ -207,8 +206,8 @@ $(document).ready(function(){initNavTree('globals_func_b.html','');});
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a8251cea45c8d1f1993a4051a6d0760c4">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_save_prefs()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5">pearl-anglescan-panel.ipf</a>
|
||||
, <a class="el" href="pearl-data-explorer_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5">pearl-data-explorer.ipf</a>
|
||||
, <a class="el" href="pearl-anglescan-panel_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>bp_source_select()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a1e50019bc895a0787cb3f07d776e9463">pearl-anglescan-panel.ipf</a>
|
||||
@@ -219,9 +218,6 @@ $(document).ready(function(){initNavTree('globals_func_b.html','');});
|
||||
<li>bp_submit()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#adeff6678e57313cb218824f06d32b5ec">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_update_datasets()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#af9f8769ca2989f152f23d976d1467a48">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_update_filelist()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a45be265789a5260e3daa05eca0ec309e">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
@@ -231,9 +227,9 @@ $(document).ready(function(){initNavTree('globals_func_b.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_c.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_c.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -121,7 +123,10 @@ $(document).ready(function(){initNavTree('globals_func_c.html','');});
|
||||
: <a class="el" href="pearl-polar-coordinates_8ipf.html#adfc1f0b3cddf672b0ccdb6a22b97ba9e">pearl-polar-coordinates.ipf</a>
|
||||
</li>
|
||||
<li>check_contrast()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a2e1ed05781f9eb4be5e77695ef049962">pearl-anglescan-process.ipf</a>
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a67d53a1c362d7e5bbeccf1c9c12ae0c2">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>check_exposure_opt()
|
||||
: <a class="el" href="pearl-scienta-live_8ipf.html#af2879284b1d1397447a31733fddd6273">pearl-scienta-live.ipf</a>
|
||||
</li>
|
||||
<li>check_norm_alpha()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#af5435ccaabba78f855b244929dc09ed0">pearl-anglescan-panel.ipf</a>
|
||||
@@ -150,6 +155,9 @@ $(document).ready(function(){initNavTree('globals_func_c.html','');});
|
||||
<li>convert_angles_ttpd2polar()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a2b38c6c9b6e60593ba69d3773b6bc779">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>create_attributes_notebook()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a77047115739da6d28055f7fd44c9fd2c">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>create_cmd_file()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ac8b61eefed231018cc36d47e95bd8c22">pearl-elog.ipf</a>
|
||||
</li>
|
||||
@@ -165,6 +173,9 @@ $(document).ready(function(){initNavTree('globals_func_c.html','');});
|
||||
<li>crop_strip()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ab65d25af7476ed18f7bf7359614a912b">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>crop_strip_theta()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#aa79c0ff6073bd42e202b9fa3f8c00b9f">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>csr_int_linbg_reduction()
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a95fbd22f52f61d2bff0625b7b8e159d1">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
@@ -174,9 +185,9 @@ $(document).ready(function(){initNavTree('globals_func_c.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_d.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_d.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -84,12 +86,18 @@ $(document).ready(function(){initNavTree('globals_func_d.html','');});
|
||||
 
|
||||
|
||||
<h3><a id="index_d"></a>- d -</h3><ul>
|
||||
<li>DblDoubletGaussLinBG_AO()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#aca0bf4ff35794a459e15a3b358dbfa04">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>DefaultFolderIterator()
|
||||
: <a class="el" href="pearl-tools_8ipf.html#a3fb8c06030dc41a599380150807caeb0">pearl-tools.ipf</a>
|
||||
</li>
|
||||
<li>DefaultWaveIterator()
|
||||
: <a class="el" href="pearl-tools_8ipf.html#a6bdd1c0b269f1d7d99843ce0cb218cc7">pearl-tools.ipf</a>
|
||||
</li>
|
||||
<li>delete_rows()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a16424e5787967d9c120fb09c7849956e">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>Display2dProfiles()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#aad7d768680c6d8a9b8a7025c7e1ec75d">pearl-menu.ipf</a>
|
||||
</li>
|
||||
@@ -97,7 +105,7 @@ $(document).ready(function(){initNavTree('globals_func_d.html','');});
|
||||
: <a class="el" href="pearl-menu_8ipf.html#ac73a94f760455f19294a9f917b43f145">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>display_dataset()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ae79a57a41c734ce8836f427b81011b5d">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a67cd1a025e5428d443027c1f57eaec09">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>display_hemi_scan()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ae57302acfc822c4817f2b7eef55efea2">pearl-anglescan-process.ipf</a>
|
||||
@@ -117,8 +125,8 @@ $(document).ready(function(){initNavTree('globals_func_d.html','');});
|
||||
<li>DisplayGizmoSlicer()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#aab34952c2f3b36f9ee8619eb901ff581">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>do_crop_alpha()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a893478e43be64b0c404b7573d2e89cc2">pearl-anglescan-panel.ipf</a>
|
||||
<li>do_crop()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#af39609fc80e58f2188b3aa564f53b750">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>do_init_process()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a1836e607851ba4d5a4048f4cfb8121a7">pearl-anglescan-panel.ipf</a>
|
||||
@@ -174,9 +182,9 @@ $(document).ready(function(){initNavTree('globals_func_d.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_e.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_e.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -138,6 +140,9 @@ $(document).ready(function(){initNavTree('globals_func_e.html','');});
|
||||
<li>extend_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a4bde8b2fc39c61c0d5a6879f1d0ae115">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>extract_attributes()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#af4474f34647ec24f27f900226c6bb3bd">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>extract_preview_image()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a0adc1b370fd3bf230b61b094b3c0accb">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
@@ -147,9 +152,9 @@ $(document).ready(function(){initNavTree('globals_func_e.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_f.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_f.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -90,18 +92,9 @@ $(document).ready(function(){initNavTree('globals_func_f.html','');});
|
||||
<li>FermiGaussConv()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a4d20215153c0e0cee3870dfceded8bc9">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>find_attr_folder()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a41bf534983b0662ec2609b136c395f14">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>find_hemi_data()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#aa26c9ed4c4d703e07788d980edc2406d">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>find_scale_wave()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#acfb01ee360b66f286225f6e9c7220ba2">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>find_scan_folder()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a79b968d7439dfbfbc38c05f933071489">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>Fit_DoniachSunjicBroad()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a819902ab9f541b75a0fd33a7b52465d0">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
@@ -114,9 +107,9 @@ $(document).ready(function(){initNavTree('globals_func_f.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_g.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_g.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -90,12 +92,18 @@ $(document).ready(function(){initNavTree('globals_func_g.html','');});
|
||||
<li>gauss4_reduction()
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a83cdbd96c5b59011914d53118e5ef71c">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
<li>gauss6_reduction()
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a11d42ef1352876666b710b7545360fce">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
<li>get_default_panel_name()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a1376b5c9e6b1180a09961bc3296849ae">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>get_elog_df()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ac45196cb9ce8b43b76c9daf67689c49a">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>get_file_info()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a66043ccbe2e8dda258e639cb7a231537">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>get_hemi_nickname()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a987811346894d8d81fc590b2f5ccec49">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
@@ -114,6 +122,9 @@ $(document).ready(function(){initNavTree('globals_func_g.html','');});
|
||||
<li>get_panel_message()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a7ce92b03b6a786129959d44bf1112efa">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>get_pshell_info()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a28921b185d4e6fbe9a7a689757269f19">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>get_source_image()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a4b76a98582f5997d3810f969dbb6c4ed">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
@@ -129,6 +140,9 @@ $(document).ready(function(){initNavTree('globals_func_g.html','');});
|
||||
<li>GetAttrDataFolderDFR()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#aa3cdc56096a6a1bf2a2d80a6245a36d2">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>goto_dataset_folder()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a896081071fffecdeff09ae4c9d6e84cb">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>graphname_from_dfref()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a195b12857685c4e535a840c5db324b4a">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
@@ -138,9 +152,9 @@ $(document).ready(function(){initNavTree('globals_func_g.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_h.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_h.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -96,15 +98,39 @@ $(document).ready(function(){initNavTree('globals_func_h.html','');});
|
||||
<li>hemi_polar_cut()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#aa486e16909d01e2251eeb4d635b972b1">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>hl_add_objects()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a54be4e40b17906c281cdf649d6ce537e">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hl_contents_clear()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad95697e197428ff73a1a258ea3bb79b2">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hl_contents_update()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#aba2f8be504e49469194cc4b562be3a9c">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hl_default_selection()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a7c36ce6ccfaa77cf7a6b68b9014c1b9b">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hl_expand_scans()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a5d0c796365e8a24683c73e2b29571018">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hlp_contents_open()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a384a37c2865baf5c21b63cff2488c3b3">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hlp_contents_selection()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a36fd730f2d057513179dd59f8fddaf75">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hlp_setup()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#af616e37167d5753b11e513bd03685ab8">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_i.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_i.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -137,9 +139,9 @@ $(document).ready(function(){initNavTree('globals_func_i.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_k.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_k.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -84,6 +86,9 @@ $(document).ready(function(){initNavTree('globals_func_k.html','');});
|
||||
 
|
||||
|
||||
<h3><a id="index_k"></a>- k -</h3><ul>
|
||||
<li>kill_matching_waves()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a972bf23d6da0bb33e9f12e50c9d7f5e5">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kill_progress_panel()
|
||||
: <a class="el" href="pearl-gui-tools_8ipf.html#aca0a41a0f28a35ac7535df30ddbd79fe">pearl-gui-tools.ipf</a>
|
||||
</li>
|
||||
@@ -93,9 +98,9 @@ $(document).ready(function(){initNavTree('globals_func_k.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_l.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_l.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -84,9 +86,6 @@ $(document).ready(function(){initNavTree('globals_func_l.html','');});
|
||||
 
|
||||
|
||||
<h3><a id="index_l"></a>- l -</h3><ul>
|
||||
<li>lbp_datasets()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a8ec37ab6c651003957d7e1ba728de89e">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>lbp_filelist()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a614e89b9c06511144ccb380e61cc7bd6">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
@@ -97,19 +96,22 @@ $(document).ready(function(){initNavTree('globals_func_l.html','');});
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a356bebea8eb41c9ac3ea2148af22707f">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>load_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a1bbf3e1592f3344f3628526fa549dfdf">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a435adef620193e09110ff69ca8d106de">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>load_hdf_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a0c839d5f8f49e6937a6532bba3ef3714">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a96a3ef643cc29948ba57a3bfa1339c4d">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>load_hemi_scan()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a89f73edcd51a675f4c3933cd0242484e">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>load_itx_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a26f2f2bf5efc39dabb2a01abcc559e3e">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ababd5be120b526ca410c53b4a2ba3f8d">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>load_mtrx_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a98e327fa65bbcb3cd7c97545f7201afe">pearl-data-explorer.ipf</a>
|
||||
<li>load_pmsco_result()
|
||||
: <a class="el" href="pearl-pmsco-import_8ipf.html#afae0650a37e89f18c9c54f8adc9eafb2">pearl-pmsco-import.ipf</a>
|
||||
</li>
|
||||
<li>load_pmsco_scan()
|
||||
: <a class="el" href="pearl-pmsco-import_8ipf.html#a98bbe8db14dba5aea9588a1b433baca7">pearl-pmsco-import.ipf</a>
|
||||
</li>
|
||||
<li>load_prefs()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a92c27964d49ab8bcd7afc858ebe214a3">pearl-anglescan-panel.ipf</a>
|
||||
@@ -118,7 +120,7 @@ $(document).ready(function(){initNavTree('globals_func_l.html','');});
|
||||
, <a class="el" href="pearl-elog_8ipf.html#a92c27964d49ab8bcd7afc858ebe214a3">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>load_pshell_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a74c69e870329c5dd3b08f92bdeb21d87">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a0e1e23060294bd4b18980e59229c70ed">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>load_selected_files()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a2178d5acf21fe4372ecc06224bec28ba">pearl-data-explorer.ipf</a>
|
||||
@@ -141,9 +143,9 @@ $(document).ready(function(){initNavTree('globals_func_l.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_m.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_m.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -133,7 +135,7 @@ $(document).ready(function(){initNavTree('globals_func_m.html','');});
|
||||
: <a class="el" href="pearl-matrix-import_8ipf.html#a0dc1efa23739e10b7558543b166e95b9">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>MultiDoniachSunjicLinBG()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a1520bd078ef77fd16ba20e95dbc6829d">pearl-fitfuncs.ipf</a>
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#af669aa08d0c32d3647007155f4b7ea3c">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>MultiGaussLinBG()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#aad1418e71830c1ec71d7dd62b2ecf9ba">pearl-fitfuncs.ipf</a>
|
||||
@@ -142,7 +144,10 @@ $(document).ready(function(){initNavTree('globals_func_m.html','');});
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a2c6547164c0b46efecf4d372ea04c263">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>MultiVoigtLinBG()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a3a94468da285a31eed5e990cd90e5cdf">pearl-fitfuncs.ipf</a>
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a704de4b170620d07b75f2093fe052272">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>MultiVoigtLinBG_AO()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a81da09e30e2800703dd178248f0c55be">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
@@ -150,9 +155,9 @@ $(document).ready(function(){initNavTree('globals_func_m.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_n.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_n.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -93,6 +95,9 @@ $(document).ready(function(){initNavTree('globals_func_n.html','');});
|
||||
<li>normalize_strip_theta()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a9b56897bd92d926d65f4c67bef1d41bb">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>normalize_strip_theta_scans()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a992920d621023e6b483ff51eee68b508">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>normalize_strip_thetaphi()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ad0a93367d2e9b66bb7b81697e87adfaf">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
@@ -108,9 +113,9 @@ $(document).ready(function(){initNavTree('globals_func_n.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_o.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_o.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -117,9 +119,9 @@ $(document).ready(function(){initNavTree('globals_func_o.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_p.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_p.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -99,6 +101,12 @@ $(document).ready(function(){initNavTree('globals_func_p.html','');});
|
||||
<li>PearlAnglescanTracker()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#a74bc5da7843ee6c25f2d9c93d22a6ffa">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>PearlCameraDisplay()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#aab4ec7bc68f93029377b7657f40fbd6a">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>PearlCleanupName()
|
||||
: <a class="el" href="pearl-compat_8ipf.html#aa1f59acc532c7eee75c83b70ee1feaa9">pearl-compat.ipf</a>
|
||||
</li>
|
||||
<li>PearlDataExplorer()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a5b824531904179a94e0eaa3ffa09172e">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
@@ -111,12 +119,18 @@ $(document).ready(function(){initNavTree('globals_func_p.html','');});
|
||||
<li>PearlMenuEnableFunc()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#a3404a53bf13a01c1e811d1af6c35b726">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>PearlSampleTracker()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#a1437f6baee0bd6d04bbcd2236c2d1f7f">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>pizza_service()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#afed227ae79873fd32c96afbf606d1965">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>pizza_service_2()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a229770447193d4fd12032b235aab4d28">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>pm_reduction_values()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a638a13044aede37cabe0c2c7a7c0cb06">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>pmp_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a07efc5d6a7121540cc185c251353677c">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
@@ -138,6 +152,9 @@ $(document).ready(function(){initNavTree('globals_func_p.html','');});
|
||||
<li>pmp_norm_alpha_mode()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#acc1028dcd046f441ceaac268ffac9af6">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>pmp_norm_theta_domain()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a0153f4ed4892dd3b48276af190590e4f">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>pmp_norm_theta_mode()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#ae68496dbe344dc8a2c7c99b2d3f4b01c">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
@@ -150,6 +167,9 @@ $(document).ready(function(){initNavTree('globals_func_p.html','');});
|
||||
<li>pmp_parameters_mouseup()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#ad06e1354226f4f617ad0a8d6d7572dca">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>pmp_reduction_func()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a166273677188a66c25a84616c6f4baa9">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>pmsco_load_xyz()
|
||||
: <a class="el" href="pearl-pmsco-import_8ipf.html#ab3421c7f54aa64e5e493b267d700c0c8">pearl-pmsco-import.ipf</a>
|
||||
</li>
|
||||
@@ -177,18 +197,12 @@ $(document).ready(function(){initNavTree('globals_func_p.html','');});
|
||||
<li>prepare_hemi_scan_display()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ac15ebd5a19c558dde666ab36aeb9906f">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>preview_attributes()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a415e4867be1ee37d84fd609b06f6dcb8">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>preview_crop_alpha()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a24093c0e17cb670de9eb2ee795c46fff">pearl-anglescan-panel.ipf</a>
|
||||
<li>preview_crop()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a2268cc96a879c1a055c1ff29c1b040ea">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>preview_datafolder()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a6e8eaf8c092f5da60bd425f9bd8bf178">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>preview_dataset()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a68d38e9464f7d13520ec040cffdf5c3b">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>preview_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a3232c51a8c19eaf86b9bc67352967a9f">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
@@ -201,9 +215,6 @@ $(document).ready(function(){initNavTree('globals_func_p.html','');});
|
||||
<li>preview_matrix_file()
|
||||
: <a class="el" href="pearl-matrix-import_8ipf.html#a8acd2b03343ef9bdfecaa75e831392d1">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>preview_mtrx_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a340f334c6caa966ee1eb891614e57b5b">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>preview_norm_alpha()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#ad355d06d3b57bb458bd62e6d6f1f2417">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
@@ -247,7 +258,19 @@ $(document).ready(function(){initNavTree('globals_func_p.html','');});
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a6e7de6441bbcba217760448babaca827">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
<li>ps_detect_scale()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#acba7f4b98f67cc112c02dfeefe3e5acd">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ad2275b0b8a0a1ed05afc50ef50564243">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_find_attr_folder()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a476f19c72d6e54787535ab6989ee778d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_find_scale_wave()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a2f39f9379e66ead0d25c33adfbe05ee9">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_find_scan_folder()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a513091ea9a4e23f76765aa37f1d34055">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_fix_folder_name()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a7d7b67c9f983d3446c5c6f274284b82a">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_scale_dataset()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#adc11ea797562b3d99c247f4866618d39">pearl-pshell-import.ipf</a>
|
||||
@@ -256,7 +279,7 @@ $(document).ready(function(){initNavTree('globals_func_p.html','');});
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a2c456397c36d4116bfddca452eff5954">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_scale_datasets()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#af08a467036c64f70ca3dfe644fcc457c">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a5a1961e05ea900e72d6a886ac5744f2d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_set_dimlabels()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aba25eb98e4c6cc9066c46ef6be1cde15">pearl-pshell-import.ipf</a>
|
||||
@@ -265,67 +288,67 @@ $(document).ready(function(){initNavTree('globals_func_p.html','');});
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a8704627410409bcd27a1adeda4082c47">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_close_file()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a2fc497747287d6fe40c6de997ed4a90d">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a47513a1db5693f88d64739a5b28926b2">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_list_scan_datasets()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a4508bd507c4c935bd8463d9b2b84c6fc">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_create_folders()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aa7a48b65e465abde9aad80377605ae59">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_list_scan_regions()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#acb317b57ef137d4d5da5938013dbe442">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_dataset_to_folder()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#acda8bf0493a2e8ba1955f12de08e28f2">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_extract_region_paths()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a4f5d11063bd50ded36ca013a2656b539">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_extract_scan_paths()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ab86e42bb6f9ff20f685ad5627b446b77">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_filter_datasets_rank()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a7c191ea7367f2f328333b9986c7dd538">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_list_all_datasets()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a113622ae05611e5051a97d223fae59d0">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_list_dataset_info()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ad811542ccfc7c73156c2a107faa93d87">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_list_scans()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a2152f7c39a187b740cf9890767ffac3f">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a85c1fbd2aefff2028e084ea61314dc67">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_complete()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a8a5ce6c2767607de194b4c148ee98c27">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_load()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ab41e955a4ff70f9c78571faad1b43d7b">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_dataset()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ac4dfb90b951d29b56501e904f5cc38aa">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#af7a6eefbda58d31336c81a3dda6e9a2d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_dataset_meta()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#afde787a00a18dc8c63b100d8ac7d992f">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#abcf01e205858a512aa713da914eaf966">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_dataset_reduced()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a13a45e8618c1ab7406e1aa5e608e21fe">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_dataset_slab()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a035a4df9f4508144149abdb0b46c87d1">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#af662500c4f992ef7b956f37ed463513d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_dataset_slabs()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a2972587ec82cc2a261b8119a582b4215">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#afc4fa60c5fbfdb08c2a9d3072d3e16ce">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_info()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aa14b28120a07a8213e5a692930704a4b">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_load_datasets()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ae539a7501119cb2349707e2027f0f759">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_preview()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a1dc6c971120749b378014f1f63cb6668">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_reduced()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a3eefc2f84a09f2ce29893c71ef44ae32">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_attrs()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aec191d0167bbf606d24396f4658104b5">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_complete()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a0a02f87e19e825964aa17c46ed51df8c">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_data()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ad26b0b56d7ccd23547535091c9430569">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_info()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a79ac37bb666b42c3332e9984196ccfe7">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_load_general_group()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ac782084655d44d222742e3397051619d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_meta()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aa56c25d64b3e59f74d6dd92a599cce4f">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a23a2e4cb2dc5364bfdbab4367ed6f234">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_preview()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ad3b9354b137ba4f1bc3ed2e74f24dc88">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_section()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a83804ba9637debed6ef8b13e7b9b19e0">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_match_dataset_classes()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#af3b5005859915f410ec27a31ac9519ca">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_open_file()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#accc20b0fc6bda95ba0cd0aea6633086f">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ab684c44d5f0668631e42d9c9c9dfea9e">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_preview()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a24afba76ed5323d8cd0abc3c7b0d9912">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh_load_general_string()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a72465006d4e8379fad08d1a1064de2a3">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
@@ -333,9 +356,9 @@ $(document).ready(function(){initNavTree('globals_func_p.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_q.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_q.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -93,9 +95,9 @@ $(document).ready(function(){initNavTree('globals_func_q.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_r.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_r.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -93,13 +95,16 @@ $(document).ready(function(){initNavTree('globals_func_r.html','');});
|
||||
<li>redim_linbg_reduction()
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a8e2aef3e0d5f2b304399a11423661fdc">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
<li>reduce_brick_worker()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a4efc9178892310c9e2caf40c61d71bd7">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>reduce_slab_image()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a44d495fba0dd2b82dec13760a07fd226">pearl-area-import.ipf</a>
|
||||
, <a class="el" href="pearl-pshell-import_8ipf.html#a44d495fba0dd2b82dec13760a07fd226">pearl-pshell-import.ipf</a>
|
||||
, <a class="el" href="pearl-pshell-import_8ipf.html#a8089a75744ffc3626305406e925d320a">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>reduce_slab_worker()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6">pearl-area-import.ipf</a>
|
||||
, <a class="el" href="pearl-pshell-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6">pearl-pshell-import.ipf</a>
|
||||
, <a class="el" href="pearl-area-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>rotate2d_x()
|
||||
: <a class="el" href="pearl-vector-operations_8ipf.html#ac579a92f012f0d0ef7b8f097e1c8b3c7">pearl-vector-operations.ipf</a>
|
||||
@@ -125,9 +130,9 @@ $(document).ready(function(){initNavTree('globals_func_r.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_s.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_s.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -99,11 +101,20 @@ $(document).ready(function(){initNavTree('globals_func_s.html','');});
|
||||
<li>save_tracker_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a8d6e9058f2b0b4978f56e892ce199e6a">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>select_dataset()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#abb4afdef6ae4476c25a1ff77b17266c3">pearl-pshell-import.ipf</a>
|
||||
<li>ScientaLiveDisplay()
|
||||
: <a class="el" href="pearl-scienta-live_8ipf.html#a55886895329455b36b64d52ed6a4e228">pearl-scienta-live.ipf</a>
|
||||
</li>
|
||||
<li>selected_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ac477142f1949dc32d86663f1de4384e5">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>send_to_elog()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#aac8d96d9ccaeddab1cb0f463b01616cb">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>set_contrast()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a666dab03bb2e97ffef81cea450184d42">pearl-anglescan-process.ipf</a>
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#af9874b5c1ce1d216741c7880a5fdcfcc">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>set_elog_attributes()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a93c61109535e1644f5e53aabb895b48a">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>set_panel_attributes()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a39a1f418c8a2f9a5e4ab976827d8efca">pearl-elog.ipf</a>
|
||||
@@ -138,6 +149,12 @@ $(document).ready(function(){initNavTree('globals_func_s.html','');});
|
||||
<li>setup_graph()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#aa7c4e3e0ed255e61bc80f8b27b78fce6">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ShirleyBG()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#af07f887f3ba8e3e35c9214df8bb6a49f">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>shorten_filepath()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a00307dffd6f272f13acfe4dea99a81d4">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>show_analyser_line()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a01bac9e7d4ba743c3c34177a05070466">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
@@ -162,6 +179,9 @@ $(document).ready(function(){initNavTree('globals_func_s.html','');});
|
||||
<li>slp_slice_position()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ace169e0824e6bddbd646972946edccbe">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>strip_append()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ab97a936bc0fa6137b6d0b43cb61d39a1">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>strip_delete_frames()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a13e0d37ae23f68cdc5da3d84cb4beed8">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
@@ -183,9 +203,9 @@ $(document).ready(function(){initNavTree('globals_func_s.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_t.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_t.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -105,9 +107,9 @@ $(document).ready(function(){initNavTree('globals_func_t.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_u.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_u.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -84,6 +86,9 @@ $(document).ready(function(){initNavTree('globals_func_u.html','');});
|
||||
 
|
||||
|
||||
<h3><a id="index_u"></a>- u -</h3><ul>
|
||||
<li>unique_strings()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ae2aedcb7028cccdb683c43411cc8f1e2">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>UnloadPearlArpesPackage()
|
||||
: <a class="el" href="pearl-arpes_8ipf.html#ac41f24572943dac2b40c255797a6c7a8">pearl-arpes.ipf</a>
|
||||
</li>
|
||||
@@ -93,12 +98,12 @@ $(document).ready(function(){initNavTree('globals_func_u.html','');});
|
||||
<li>update_capture()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a9751db419b4c0de884450c09ff5822a7">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>update_controls()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a57e21bffee4cd64f2ea1efd9cc958bf1">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>update_data_graph()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a0b8ff36cf3c20b1c0db3217d9065f7cf">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>update_datasets()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad50f4c430d8bfe0fb5a1356cd9b84bf4">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>update_detector()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#ab961340af09fed4d2006bca8c0f2edd5">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
@@ -108,6 +113,9 @@ $(document).ready(function(){initNavTree('globals_func_u.html','');});
|
||||
<li>update_filelist()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a04cc0b9d5e3a649ba3514fcbf126eefe">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>update_filepath()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ae02b954d90dc8f43c007cc3fb1a1ee16">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>update_menus()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a7ddecbeeaee3f9da87ac1ecdc26f530b">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
@@ -126,9 +134,9 @@ $(document).ready(function(){initNavTree('globals_func_u.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func_w.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_func_w.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -93,9 +95,9 @@ $(document).ready(function(){initNavTree('globals_func_w.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_g.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_g.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -90,12 +92,18 @@ $(document).ready(function(){initNavTree('globals_g.html','');});
|
||||
<li>gauss4_reduction()
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a83cdbd96c5b59011914d53118e5ef71c">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
<li>gauss6_reduction()
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a11d42ef1352876666b710b7545360fce">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
<li>get_default_panel_name()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a1376b5c9e6b1180a09961bc3296849ae">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>get_elog_df()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ac45196cb9ce8b43b76c9daf67689c49a">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>get_file_info()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a66043ccbe2e8dda258e639cb7a231537">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>get_hemi_nickname()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a987811346894d8d81fc590b2f5ccec49">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
@@ -114,6 +122,9 @@ $(document).ready(function(){initNavTree('globals_g.html','');});
|
||||
<li>get_panel_message()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a7ce92b03b6a786129959d44bf1112efa">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>get_pshell_info()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a28921b185d4e6fbe9a7a689757269f19">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>get_source_image()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a4b76a98582f5997d3810f969dbb6c4ed">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
@@ -129,6 +140,9 @@ $(document).ready(function(){initNavTree('globals_g.html','');});
|
||||
<li>GetAttrDataFolderDFR()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#aa3cdc56096a6a1bf2a2d80a6245a36d2">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>goto_dataset_folder()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a896081071fffecdeff09ae4c9d6e84cb">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>graphname_from_dfref()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a195b12857685c4e535a840c5db324b4a">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
@@ -138,9 +152,9 @@ $(document).ready(function(){initNavTree('globals_g.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_h.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_h.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -99,15 +101,39 @@ $(document).ready(function(){initNavTree('globals_h.html','');});
|
||||
<li>hemi_radius_mm
|
||||
: <a class="el" href="fermi-edge-analysis_8ipf.html#a0cb8da36beae05c79fe5b1da918d3897">fermi-edge-analysis.ipf</a>
|
||||
</li>
|
||||
<li>hl_add_objects()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a54be4e40b17906c281cdf649d6ce537e">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hl_contents_clear()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad95697e197428ff73a1a258ea3bb79b2">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hl_contents_update()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#aba2f8be504e49469194cc4b562be3a9c">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hl_default_selection()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a7c36ce6ccfaa77cf7a6b68b9014c1b9b">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hl_expand_scans()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a5d0c796365e8a24683c73e2b29571018">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hlp_contents_open()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a384a37c2865baf5c21b63cff2488c3b3">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hlp_contents_selection()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a36fd730f2d057513179dd59f8fddaf75">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>hlp_setup()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#af616e37167d5753b11e513bd03685ab8">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_i.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_i.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -137,9 +139,9 @@ $(document).ready(function(){initNavTree('globals_i.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_k.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_k.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -99,9 +101,6 @@ $(document).ready(function(){initNavTree('globals_k.html','');});
|
||||
<li>kDataDimLabel
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a277cd450cca7832aa44f8097934e6acb">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDetectorSensitivity
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a5745428740b64cd66394a7fcd78b86f1">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kdfPersistent
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a3498e65d04de046481170b49d4e3d0d6">pearl-elog.ipf</a>
|
||||
</li>
|
||||
@@ -114,9 +113,54 @@ $(document).ready(function(){initNavTree('globals_k.html','');});
|
||||
<li>kdfVolatile
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a915905f2e57d0d9a25c75f39fcce485f">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>kDSCAll
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a237e95f14b988f58e2d4c37659f17347">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCAttrs
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a10224f615973777a43fefae8eb1a39f2">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCDetectors
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a7c5aaa2f133862ae16ddd735df1ab73d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCDiags
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#adf778206fa825ab5006bd553c64a8760">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCEssentialDiags
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aebf53e3de392d631b340ee0747b8bbbf">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCMeta
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a712ea7a6f18ce4178fd06b07d2d05a9f">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCMonitors
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a300847a8e08161a64a199a6e7ef165c8">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCOther
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ac81d8f4276cf7bb86a74796cc7199e42">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCPositioners
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aeb9a7f56922ff3c862e8b29b5090c01a">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCPreview
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a654f0b9fe8770a8bd09a6da4182ca3bc">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCRegions
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a48f07030482af8315447ac2c598edd0d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCScientaScaling
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ab7c2cc8687f6d4550ef90c538b938dad">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCSnaps
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a3236744797a780eb144a684b0bd41d4a">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kEnergyDimLabel
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a5ad52cb10171572c454f9426d3a9be21">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kEssentialDiagnostics
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ab0bc752ab76659b492cf88c75935336b">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kill_matching_waves()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a972bf23d6da0bb33e9f12e50c9d7f5e5">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kill_progress_panel()
|
||||
: <a class="el" href="pearl-gui-tools_8ipf.html#aca0a41a0f28a35ac7535df30ddbd79fe">pearl-gui-tools.ipf</a>
|
||||
</li>
|
||||
@@ -160,8 +204,7 @@ $(document).ready(function(){initNavTree('globals_k.html','');});
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a53af8689144e3aeb27ca177db5dd0c22">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>ks_filematch_mtrx
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad720655ff881ddecae2e1b8afed58fa0">pearl-data-explorer.ipf</a>
|
||||
, <a class="el" href="pearl-matrix-import_8ipf.html#ad720655ff881ddecae2e1b8afed58fa0">pearl-matrix-import.ipf</a>
|
||||
: <a class="el" href="pearl-matrix-import_8ipf.html#ad720655ff881ddecae2e1b8afed58fa0">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>ks_filematch_pshell
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a00bf5267a40b2b3d760c64d73e139878">pearl-data-explorer.ipf</a>
|
||||
@@ -181,9 +224,9 @@ $(document).ready(function(){initNavTree('globals_k.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_l.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_l.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -84,9 +86,6 @@ $(document).ready(function(){initNavTree('globals_l.html','');});
|
||||
<div class="textblock">Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:</div>
|
||||
|
||||
<h3><a id="index_l"></a>- l -</h3><ul>
|
||||
<li>lbp_datasets()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a8ec37ab6c651003957d7e1ba728de89e">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>lbp_filelist()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a614e89b9c06511144ccb380e61cc7bd6">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
@@ -97,19 +96,22 @@ $(document).ready(function(){initNavTree('globals_l.html','');});
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a356bebea8eb41c9ac3ea2148af22707f">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>load_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a1bbf3e1592f3344f3628526fa549dfdf">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a435adef620193e09110ff69ca8d106de">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>load_hdf_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a0c839d5f8f49e6937a6532bba3ef3714">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a96a3ef643cc29948ba57a3bfa1339c4d">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>load_hemi_scan()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a89f73edcd51a675f4c3933cd0242484e">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>load_itx_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a26f2f2bf5efc39dabb2a01abcc559e3e">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ababd5be120b526ca410c53b4a2ba3f8d">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>load_mtrx_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a98e327fa65bbcb3cd7c97545f7201afe">pearl-data-explorer.ipf</a>
|
||||
<li>load_pmsco_result()
|
||||
: <a class="el" href="pearl-pmsco-import_8ipf.html#afae0650a37e89f18c9c54f8adc9eafb2">pearl-pmsco-import.ipf</a>
|
||||
</li>
|
||||
<li>load_pmsco_scan()
|
||||
: <a class="el" href="pearl-pmsco-import_8ipf.html#a98bbe8db14dba5aea9588a1b433baca7">pearl-pmsco-import.ipf</a>
|
||||
</li>
|
||||
<li>load_prefs()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a92c27964d49ab8bcd7afc858ebe214a3">pearl-anglescan-panel.ipf</a>
|
||||
@@ -118,7 +120,7 @@ $(document).ready(function(){initNavTree('globals_l.html','');});
|
||||
, <a class="el" href="pearl-elog_8ipf.html#a92c27964d49ab8bcd7afc858ebe214a3">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>load_pshell_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a74c69e870329c5dd3b08f92bdeb21d87">pearl-data-explorer.ipf</a>
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a0e1e23060294bd4b18980e59229c70ed">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>load_selected_files()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a2178d5acf21fe4372ecc06224bec28ba">pearl-data-explorer.ipf</a>
|
||||
@@ -141,9 +143,9 @@ $(document).ready(function(){initNavTree('globals_l.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_m.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_m.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -142,7 +144,7 @@ $(document).ready(function(){initNavTree('globals_m.html','');});
|
||||
: <a class="el" href="pearl-matrix-import_8ipf.html#a0dc1efa23739e10b7558543b166e95b9">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>MultiDoniachSunjicLinBG()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a1520bd078ef77fd16ba20e95dbc6829d">pearl-fitfuncs.ipf</a>
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#af669aa08d0c32d3647007155f4b7ea3c">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>MultiGaussLinBG()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#aad1418e71830c1ec71d7dd62b2ecf9ba">pearl-fitfuncs.ipf</a>
|
||||
@@ -151,7 +153,10 @@ $(document).ready(function(){initNavTree('globals_m.html','');});
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a2c6547164c0b46efecf4d372ea04c263">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>MultiVoigtLinBG()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a3a94468da285a31eed5e990cd90e5cdf">pearl-fitfuncs.ipf</a>
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a704de4b170620d07b75f2093fe052272">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>MultiVoigtLinBG_AO()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a81da09e30e2800703dd178248f0c55be">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
@@ -159,9 +164,9 @@ $(document).ready(function(){initNavTree('globals_m.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_n.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_n.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -93,6 +95,9 @@ $(document).ready(function(){initNavTree('globals_n.html','');});
|
||||
<li>normalize_strip_theta()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a9b56897bd92d926d65f4c67bef1d41bb">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>normalize_strip_theta_scans()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a992920d621023e6b483ff51eee68b508">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>normalize_strip_thetaphi()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ad0a93367d2e9b66bb7b81697e87adfaf">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
@@ -108,9 +113,9 @@ $(document).ready(function(){initNavTree('globals_n.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_o.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_o.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -117,9 +119,9 @@ $(document).ready(function(){initNavTree('globals_o.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_p.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -86,16 +88,15 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
<h3><a id="index_p"></a>- p -</h3><ul>
|
||||
<li>package_name
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#aca457d1f4414d20a911254b1de13ebbb">pearl-anglescan-panel.ipf</a>
|
||||
, <a class="el" href="pearl-data-explorer_8ipf.html#aca457d1f4414d20a911254b1de13ebbb">pearl-data-explorer.ipf</a>
|
||||
, <a class="el" href="pearl-matrix-import_8ipf.html#aca457d1f4414d20a911254b1de13ebbb">pearl-matrix-import.ipf</a>
|
||||
, <a class="el" href="pearl-elog_8ipf.html#aca457d1f4414d20a911254b1de13ebbb">pearl-elog.ipf</a>
|
||||
, <a class="el" href="pearl-matrix-import_8ipf.html#aca457d1f4414d20a911254b1de13ebbb">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>package_path
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-elog.ipf</a>
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-anglescan-panel.ipf</a>
|
||||
, <a class="el" href="pearl-matrix-import_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-matrix-import.ipf</a>
|
||||
, <a class="el" href="pearl-anglescan-panel_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-anglescan-panel.ipf</a>
|
||||
, <a class="el" href="pearl-anglescan-tracker_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-anglescan-tracker.ipf</a>
|
||||
, <a class="el" href="pearl-data-explorer_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-data-explorer.ipf</a>
|
||||
, <a class="el" href="pearl-elog_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>parse_result()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a5306514bf7d1a582aec146256ae45a12">pearl-elog.ipf</a>
|
||||
@@ -112,6 +113,12 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
<li>PearlAnglescanTracker()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#a74bc5da7843ee6c25f2d9c93d22a6ffa">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>PearlCameraDisplay()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#aab4ec7bc68f93029377b7657f40fbd6a">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>PearlCleanupName()
|
||||
: <a class="el" href="pearl-compat_8ipf.html#aa1f59acc532c7eee75c83b70ee1feaa9">pearl-compat.ipf</a>
|
||||
</li>
|
||||
<li>PearlDataExplorer()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a5b824531904179a94e0eaa3ffa09172e">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
@@ -124,12 +131,18 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
<li>PearlMenuEnableFunc()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#a3404a53bf13a01c1e811d1af6c35b726">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>PearlSampleTracker()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#a1437f6baee0bd6d04bbcd2236c2d1f7f">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>pizza_service()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#afed227ae79873fd32c96afbf606d1965">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>pizza_service_2()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a229770447193d4fd12032b235aab4d28">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>pm_reduction_values()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a638a13044aede37cabe0c2c7a7c0cb06">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>pmp_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a07efc5d6a7121540cc185c251353677c">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
@@ -151,6 +164,9 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
<li>pmp_norm_alpha_mode()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#acc1028dcd046f441ceaac268ffac9af6">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>pmp_norm_theta_domain()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a0153f4ed4892dd3b48276af190590e4f">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>pmp_norm_theta_mode()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#ae68496dbe344dc8a2c7c99b2d3f4b01c">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
@@ -163,6 +179,9 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
<li>pmp_parameters_mouseup()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#ad06e1354226f4f617ad0a8d6d7572dca">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>pmp_reduction_func()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a166273677188a66c25a84616c6f4baa9">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>pmsco_load_xyz()
|
||||
: <a class="el" href="pearl-pmsco-import_8ipf.html#ab3421c7f54aa64e5e493b267d700c0c8">pearl-pmsco-import.ipf</a>
|
||||
</li>
|
||||
@@ -182,8 +201,7 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ac4dbd1ece37b2cf22fa976a153977288">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>prefs_objects
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a20720748c82a7eaa4b02d4084a4219b2">pearl-anglescan-panel.ipf</a>
|
||||
, <a class="el" href="pearl-anglescan-tracker_8ipf.html#a20720748c82a7eaa4b02d4084a4219b2">pearl-anglescan-tracker.ipf</a>
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a20720748c82a7eaa4b02d4084a4219b2">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>prepare_command_line()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#abd15431defaec6d770cc8cab2a40e6b0">pearl-elog.ipf</a>
|
||||
@@ -194,18 +212,12 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
<li>prepare_hemi_scan_display()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ac15ebd5a19c558dde666ab36aeb9906f">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>preview_attributes()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a415e4867be1ee37d84fd609b06f6dcb8">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>preview_crop_alpha()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a24093c0e17cb670de9eb2ee795c46fff">pearl-anglescan-panel.ipf</a>
|
||||
<li>preview_crop()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a2268cc96a879c1a055c1ff29c1b040ea">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
<li>preview_datafolder()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a6e8eaf8c092f5da60bd425f9bd8bf178">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>preview_dataset()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a68d38e9464f7d13520ec040cffdf5c3b">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>preview_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a3232c51a8c19eaf86b9bc67352967a9f">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
@@ -218,9 +230,6 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
<li>preview_matrix_file()
|
||||
: <a class="el" href="pearl-matrix-import_8ipf.html#a8acd2b03343ef9bdfecaa75e831392d1">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>preview_mtrx_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a340f334c6caa966ee1eb891614e57b5b">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>preview_norm_alpha()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#ad355d06d3b57bb458bd62e6d6f1f2417">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
@@ -264,7 +273,19 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a6e7de6441bbcba217760448babaca827">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
<li>ps_detect_scale()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#acba7f4b98f67cc112c02dfeefe3e5acd">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ad2275b0b8a0a1ed05afc50ef50564243">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_find_attr_folder()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a476f19c72d6e54787535ab6989ee778d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_find_scale_wave()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a2f39f9379e66ead0d25c33adfbe05ee9">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_find_scan_folder()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a513091ea9a4e23f76765aa37f1d34055">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_fix_folder_name()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a7d7b67c9f983d3446c5c6f274284b82a">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_scale_dataset()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#adc11ea797562b3d99c247f4866618d39">pearl-pshell-import.ipf</a>
|
||||
@@ -273,7 +294,7 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a2c456397c36d4116bfddca452eff5954">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_scale_datasets()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#af08a467036c64f70ca3dfe644fcc457c">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a5a1961e05ea900e72d6a886ac5744f2d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>ps_set_dimlabels()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aba25eb98e4c6cc9066c46ef6be1cde15">pearl-pshell-import.ipf</a>
|
||||
@@ -282,67 +303,67 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a8704627410409bcd27a1adeda4082c47">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_close_file()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a2fc497747287d6fe40c6de997ed4a90d">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a47513a1db5693f88d64739a5b28926b2">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_list_scan_datasets()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a4508bd507c4c935bd8463d9b2b84c6fc">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_create_folders()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aa7a48b65e465abde9aad80377605ae59">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_list_scan_regions()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#acb317b57ef137d4d5da5938013dbe442">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_dataset_to_folder()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#acda8bf0493a2e8ba1955f12de08e28f2">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_extract_region_paths()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a4f5d11063bd50ded36ca013a2656b539">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_extract_scan_paths()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ab86e42bb6f9ff20f685ad5627b446b77">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_filter_datasets_rank()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a7c191ea7367f2f328333b9986c7dd538">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_list_all_datasets()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a113622ae05611e5051a97d223fae59d0">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_list_dataset_info()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ad811542ccfc7c73156c2a107faa93d87">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_list_scans()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a2152f7c39a187b740cf9890767ffac3f">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a85c1fbd2aefff2028e084ea61314dc67">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_complete()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a8a5ce6c2767607de194b4c148ee98c27">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_load()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ab41e955a4ff70f9c78571faad1b43d7b">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_dataset()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ac4dfb90b951d29b56501e904f5cc38aa">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#af7a6eefbda58d31336c81a3dda6e9a2d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_dataset_meta()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#afde787a00a18dc8c63b100d8ac7d992f">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#abcf01e205858a512aa713da914eaf966">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_dataset_reduced()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a13a45e8618c1ab7406e1aa5e608e21fe">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_dataset_slab()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a035a4df9f4508144149abdb0b46c87d1">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#af662500c4f992ef7b956f37ed463513d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_dataset_slabs()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a2972587ec82cc2a261b8119a582b4215">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#afc4fa60c5fbfdb08c2a9d3072d3e16ce">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_info()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aa14b28120a07a8213e5a692930704a4b">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_load_datasets()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ae539a7501119cb2349707e2027f0f759">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_preview()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a1dc6c971120749b378014f1f63cb6668">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_reduced()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a3eefc2f84a09f2ce29893c71ef44ae32">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_attrs()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aec191d0167bbf606d24396f4658104b5">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_complete()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a0a02f87e19e825964aa17c46ed51df8c">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_data()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ad26b0b56d7ccd23547535091c9430569">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_info()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a79ac37bb666b42c3332e9984196ccfe7">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_load_general_group()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ac782084655d44d222742e3397051619d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_meta()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aa56c25d64b3e59f74d6dd92a599cce4f">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a23a2e4cb2dc5364bfdbab4367ed6f234">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_preview()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ad3b9354b137ba4f1bc3ed2e74f24dc88">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_load_scan_section()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a83804ba9637debed6ef8b13e7b9b19e0">pearl-pshell-import.ipf</a>
|
||||
<li>psh5_match_dataset_classes()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#af3b5005859915f410ec27a31ac9519ca">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_open_file()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#accc20b0fc6bda95ba0cd0aea6633086f">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ab684c44d5f0668631e42d9c9c9dfea9e">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh5_preview()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a24afba76ed5323d8cd0abc3c7b0d9912">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>psh_load_general_string()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a72465006d4e8379fad08d1a1064de2a3">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
@@ -350,9 +371,9 @@ $(document).ready(function(){initNavTree('globals_p.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_q.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_q.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -93,9 +95,9 @@ $(document).ready(function(){initNavTree('globals_q.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_r.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_r.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -93,13 +95,16 @@ $(document).ready(function(){initNavTree('globals_r.html','');});
|
||||
<li>redim_linbg_reduction()
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a8e2aef3e0d5f2b304399a11423661fdc">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
<li>reduce_brick_worker()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a4efc9178892310c9e2caf40c61d71bd7">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>reduce_slab_image()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a44d495fba0dd2b82dec13760a07fd226">pearl-area-import.ipf</a>
|
||||
, <a class="el" href="pearl-pshell-import_8ipf.html#a44d495fba0dd2b82dec13760a07fd226">pearl-pshell-import.ipf</a>
|
||||
, <a class="el" href="pearl-pshell-import_8ipf.html#a8089a75744ffc3626305406e925d320a">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>reduce_slab_worker()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6">pearl-area-import.ipf</a>
|
||||
, <a class="el" href="pearl-pshell-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6">pearl-pshell-import.ipf</a>
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6">pearl-pshell-import.ipf</a>
|
||||
, <a class="el" href="pearl-area-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>rotate2d_x()
|
||||
: <a class="el" href="pearl-vector-operations_8ipf.html#ac579a92f012f0d0ef7b8f097e1c8b3c7">pearl-vector-operations.ipf</a>
|
||||
@@ -125,9 +130,9 @@ $(document).ready(function(){initNavTree('globals_r.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_s.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_s.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -99,11 +101,20 @@ $(document).ready(function(){initNavTree('globals_s.html','');});
|
||||
<li>save_tracker_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a8d6e9058f2b0b4978f56e892ce199e6a">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>select_dataset()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#abb4afdef6ae4476c25a1ff77b17266c3">pearl-pshell-import.ipf</a>
|
||||
<li>ScientaLiveDisplay()
|
||||
: <a class="el" href="pearl-scienta-live_8ipf.html#a55886895329455b36b64d52ed6a4e228">pearl-scienta-live.ipf</a>
|
||||
</li>
|
||||
<li>selected_file()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ac477142f1949dc32d86663f1de4384e5">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>send_to_elog()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#aac8d96d9ccaeddab1cb0f463b01616cb">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>set_contrast()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a666dab03bb2e97ffef81cea450184d42">pearl-anglescan-process.ipf</a>
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#af9874b5c1ce1d216741c7880a5fdcfcc">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>set_elog_attributes()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a93c61109535e1644f5e53aabb895b48a">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>set_panel_attributes()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a39a1f418c8a2f9a5e4ab976827d8efca">pearl-elog.ipf</a>
|
||||
@@ -138,6 +149,12 @@ $(document).ready(function(){initNavTree('globals_s.html','');});
|
||||
<li>setup_graph()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#aa7c4e3e0ed255e61bc80f8b27b78fce6">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ShirleyBG()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#af07f887f3ba8e3e35c9214df8bb6a49f">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>shorten_filepath()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a00307dffd6f272f13acfe4dea99a81d4">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>show_analyser_line()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a01bac9e7d4ba743c3c34177a05070466">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
@@ -162,6 +179,9 @@ $(document).ready(function(){initNavTree('globals_s.html','');});
|
||||
<li>slp_slice_position()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ace169e0824e6bddbd646972946edccbe">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>strip_append()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ab97a936bc0fa6137b6d0b43cb61d39a1">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>strip_delete_frames()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a13e0d37ae23f68cdc5da3d84cb4beed8">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
@@ -183,9 +203,9 @@ $(document).ready(function(){initNavTree('globals_s.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_t.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_t.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -105,9 +107,9 @@ $(document).ready(function(){initNavTree('globals_t.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_u.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_u.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -84,6 +86,9 @@ $(document).ready(function(){initNavTree('globals_u.html','');});
|
||||
<div class="textblock">Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:</div>
|
||||
|
||||
<h3><a id="index_u"></a>- u -</h3><ul>
|
||||
<li>unique_strings()
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ae2aedcb7028cccdb683c43411cc8f1e2">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>UnloadPearlArpesPackage()
|
||||
: <a class="el" href="pearl-arpes_8ipf.html#ac41f24572943dac2b40c255797a6c7a8">pearl-arpes.ipf</a>
|
||||
</li>
|
||||
@@ -93,12 +98,12 @@ $(document).ready(function(){initNavTree('globals_u.html','');});
|
||||
<li>update_capture()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a9751db419b4c0de884450c09ff5822a7">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>update_controls()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a57e21bffee4cd64f2ea1efd9cc958bf1">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>update_data_graph()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a0b8ff36cf3c20b1c0db3217d9065f7cf">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>update_datasets()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad50f4c430d8bfe0fb5a1356cd9b84bf4">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>update_detector()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#ab961340af09fed4d2006bca8c0f2edd5">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
@@ -108,6 +113,9 @@ $(document).ready(function(){initNavTree('globals_u.html','');});
|
||||
<li>update_filelist()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a04cc0b9d5e3a649ba3514fcbf126eefe">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>update_filepath()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ae02b954d90dc8f43c007cc3fb1a1ee16">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>update_menus()
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a7ddecbeeaee3f9da87ac1ecdc26f530b">pearl-anglescan-panel.ipf</a>
|
||||
</li>
|
||||
@@ -126,9 +134,9 @@ $(document).ready(function(){initNavTree('globals_u.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_v.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_v.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -86,6 +88,7 @@ $(document).ready(function(){initNavTree('globals_v.html','');});
|
||||
<h3><a id="index_v"></a>- v -</h3><ul>
|
||||
<li>version
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a4c7a521b8f1a0769c09bfa4a1fca7dab">pearl-anglescan-tracker.ipf</a>
|
||||
, <a class="el" href="pearl-data-explorer_8ipf.html#a4c7a521b8f1a0769c09bfa4a1fca7dab">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
@@ -93,9 +96,9 @@ $(document).ready(function(){initNavTree('globals_v.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_vars.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_vars.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -116,9 +118,6 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
|
||||
<li>kDataDimLabel
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a277cd450cca7832aa44f8097934e6acb">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDetectorSensitivity
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a5745428740b64cd66394a7fcd78b86f1">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kdfPersistent
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a3498e65d04de046481170b49d4e3d0d6">pearl-elog.ipf</a>
|
||||
</li>
|
||||
@@ -131,9 +130,51 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
|
||||
<li>kdfVolatile
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a915905f2e57d0d9a25c75f39fcce485f">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>kDSCAll
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a237e95f14b988f58e2d4c37659f17347">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCAttrs
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a10224f615973777a43fefae8eb1a39f2">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCDetectors
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a7c5aaa2f133862ae16ddd735df1ab73d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCDiags
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#adf778206fa825ab5006bd553c64a8760">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCEssentialDiags
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aebf53e3de392d631b340ee0747b8bbbf">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCMeta
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a712ea7a6f18ce4178fd06b07d2d05a9f">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCMonitors
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a300847a8e08161a64a199a6e7ef165c8">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCOther
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ac81d8f4276cf7bb86a74796cc7199e42">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCPositioners
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#aeb9a7f56922ff3c862e8b29b5090c01a">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCPreview
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a654f0b9fe8770a8bd09a6da4182ca3bc">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCRegions
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a48f07030482af8315447ac2c598edd0d">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCScientaScaling
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ab7c2cc8687f6d4550ef90c538b938dad">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kDSCSnaps
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a3236744797a780eb144a684b0bd41d4a">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kEnergyDimLabel
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a5ad52cb10171572c454f9426d3a9be21">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kEssentialDiagnostics
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#ab0bc752ab76659b492cf88c75935336b">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
<li>kPreviewDatasets
|
||||
: <a class="el" href="pearl-pshell-import_8ipf.html#a3c72087695969f42ea91c000de47b26e">pearl-pshell-import.ipf</a>
|
||||
</li>
|
||||
@@ -174,8 +215,7 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a53af8689144e3aeb27ca177db5dd0c22">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>ks_filematch_mtrx
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad720655ff881ddecae2e1b8afed58fa0">pearl-data-explorer.ipf</a>
|
||||
, <a class="el" href="pearl-matrix-import_8ipf.html#ad720655ff881ddecae2e1b8afed58fa0">pearl-matrix-import.ipf</a>
|
||||
: <a class="el" href="pearl-matrix-import_8ipf.html#ad720655ff881ddecae2e1b8afed58fa0">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>ks_filematch_pshell
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a00bf5267a40b2b3d760c64d73e139878">pearl-data-explorer.ipf</a>
|
||||
@@ -208,20 +248,18 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
|
||||
<h3><a id="index_p"></a>- p -</h3><ul>
|
||||
<li>package_name
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#aca457d1f4414d20a911254b1de13ebbb">pearl-anglescan-panel.ipf</a>
|
||||
, <a class="el" href="pearl-data-explorer_8ipf.html#aca457d1f4414d20a911254b1de13ebbb">pearl-data-explorer.ipf</a>
|
||||
, <a class="el" href="pearl-elog_8ipf.html#aca457d1f4414d20a911254b1de13ebbb">pearl-elog.ipf</a>
|
||||
, <a class="el" href="pearl-matrix-import_8ipf.html#aca457d1f4414d20a911254b1de13ebbb">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>package_path
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-anglescan-panel.ipf</a>
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-elog.ipf</a>
|
||||
, <a class="el" href="pearl-anglescan-panel_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-anglescan-panel.ipf</a>
|
||||
, <a class="el" href="pearl-anglescan-tracker_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-anglescan-tracker.ipf</a>
|
||||
, <a class="el" href="pearl-data-explorer_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-data-explorer.ipf</a>
|
||||
, <a class="el" href="pearl-elog_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-elog.ipf</a>
|
||||
, <a class="el" href="pearl-matrix-import_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-matrix-import.ipf</a>
|
||||
, <a class="el" href="pearl-data-explorer_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>prefs_objects
|
||||
: <a class="el" href="pearl-anglescan-panel_8ipf.html#a20720748c82a7eaa4b02d4084a4219b2">pearl-anglescan-panel.ipf</a>
|
||||
, <a class="el" href="pearl-anglescan-tracker_8ipf.html#a20720748c82a7eaa4b02d4084a4219b2">pearl-anglescan-tracker.ipf</a>
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a20720748c82a7eaa4b02d4084a4219b2">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@@ -229,6 +267,7 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
|
||||
<h3><a id="index_v"></a>- v -</h3><ul>
|
||||
<li>version
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a4c7a521b8f1a0769c09bfa4a1fca7dab">pearl-anglescan-tracker.ipf</a>
|
||||
, <a class="el" href="pearl-data-explorer_8ipf.html#a4c7a521b8f1a0769c09bfa4a1fca7dab">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
@@ -236,9 +275,9 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_w.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('globals_w.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -93,9 +95,9 @@ $(document).ready(function(){initNavTree('globals_w.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: ARPES package</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('group___arpes_package.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('group___arpes_package.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -111,8 +113,8 @@ Files</h2></td></tr>
|
||||
<tr class="memitem:pearl-area-profiles_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-area-profiles_8ipf.html">pearl-area-profiles.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-area-profiles_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">profile extraction for multi-dimensional datasets acquired from area detectors. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-data-explorer_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-data-explorer_8ipf.html">pearl-data-explorer.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-data-explorer_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">preview and import panel for PEARL data <br /></td></tr>
|
||||
<tr class="memitem:pearl-compat_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-compat_8ipf.html">pearl-compat.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-compat_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">compatibility procedures for igor 8 <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-elog_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-elog_8ipf.html">pearl-elog.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-elog_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">interface for writing ELOG entries with Igor graphs as attachment. <br /></td></tr>
|
||||
@@ -126,38 +128,45 @@ Files</h2></td></tr>
|
||||
<tr class="memitem:pearl-pshell-import_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-pshell-import_8ipf.html">pearl-pshell-import.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-pshell-import_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">import data from PShell <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-scienta-live_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-scienta-live_8ipf.html">pearl-scienta-live.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-scienta-live_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">utility functions for operating the Scienta analyser. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-scienta-preprocess_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-scienta-preprocess_8ipf.html">pearl-scienta-preprocess.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-scienta-preprocess_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">preprocessing functions for Scienta detector images. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-vector-operations_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-vector-operations_8ipf.html">pearl-vector-operations.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-vector-operations_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">basic vector geometry operations. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<p>data acquisition and analysis package for ARPES at PEARL. </p>
|
||||
<p>The purpose of a package is to load a bunch of dependent procedure files. The ARPES package loads the following files which are helpful when working with ARPES data (any data from the Scienta analyser, that is) from PEARL.</p>
|
||||
<ul>
|
||||
<li><a class="el" href="pearl-area-import_8ipf.html" title="HDF5 file import from EPICS area detectors. ">pearl-area-import.ipf</a></li>
|
||||
<li><a class="el" href="pearl-area-display_8ipf.html" title="visualization tools for 2D and 3D data. ">pearl-area-display.ipf</a></li>
|
||||
<li><a class="el" href="pearl-area-profiles_8ipf.html" title="profile extraction for multi-dimensional datasets acquired from area detectors. ">pearl-area-profiles.ipf</a></li>
|
||||
<li><a class="el" href="pearl-data-explorer_8ipf.html" title="preview and import panel for PEARL data ">pearl-data-explorer.ipf</a></li>
|
||||
<li><a class="el" href="pearl-scienta-preprocess_8ipf.html" title="preprocessing functions for Scienta detector images. ">pearl-scienta-preprocess.ipf</a></li>
|
||||
<li><a class="el" href="pearl-anglescan-process_8ipf.html" title="processing and holographic mapping of angle scanned XPD data. ">pearl-anglescan-process.ipf</a></li>
|
||||
<li><a class="el" href="pearl-anglescan-panel_8ipf.html" title="interactive processing of angle scanned XPD data. ">pearl-anglescan-panel.ipf</a></li>
|
||||
<li><a class="el" href="pearl-area-import_8ipf.html" title="HDF5 file import from EPICS area detectors.">pearl-area-import.ipf</a></li>
|
||||
<li><a class="el" href="pearl-area-display_8ipf.html" title="visualization tools for 2D and 3D data.">pearl-area-display.ipf</a></li>
|
||||
<li><a class="el" href="pearl-area-profiles_8ipf.html" title="profile extraction for multi-dimensional datasets acquired from area detectors.">pearl-area-profiles.ipf</a></li>
|
||||
<li><a class="el" href="pearl-data-explorer_8ipf.html">pearl-data-explorer.ipf</a></li>
|
||||
<li><a class="el" href="pearl-scienta-preprocess_8ipf.html" title="preprocessing functions for Scienta detector images.">pearl-scienta-preprocess.ipf</a></li>
|
||||
<li><a class="el" href="pearl-anglescan-process_8ipf.html" title="processing and holographic mapping of angle scanned XPD data.">pearl-anglescan-process.ipf</a></li>
|
||||
<li><a class="el" href="pearl-anglescan-panel_8ipf.html" title="interactive processing of angle scanned XPD data.">pearl-anglescan-panel.ipf</a></li>
|
||||
<li><a class="el" href="pearl-anglescan-tracker_8ipf.html">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li><a class="el" href="pearl-elog_8ipf.html" title="interface for writing ELOG entries with Igor graphs as attachment. ">pearl-elog.ipf</a></li>
|
||||
<li><a class="el" href="pearl-elog_8ipf.html" title="interface for writing ELOG entries with Igor graphs as attachment.">pearl-elog.ipf</a></li>
|
||||
</ul>
|
||||
<p>Most of these files require the HDF5.XOP. The following files are loaded if the EPICS.XOP is present:</p>
|
||||
<ul>
|
||||
<li>pearl-area-live.ipf</li>
|
||||
<li>pearl-epics.ipf</li>
|
||||
<li>pearl-arpes-scans.ipf </li>
|
||||
<li>pearl-arpes-scans.ipf</li>
|
||||
<li>pearl-sample-tracker.ipf </li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -6,10 +6,12 @@ var group___arpes_package =
|
||||
[ "pearl-area-display.ipf", "pearl-area-display_8ipf.html", null ],
|
||||
[ "pearl-area-import.ipf", "pearl-area-import_8ipf.html", null ],
|
||||
[ "pearl-area-profiles.ipf", "pearl-area-profiles_8ipf.html", null ],
|
||||
[ "pearl-data-explorer.ipf", "pearl-data-explorer_8ipf.html", null ],
|
||||
[ "pearl-compat.ipf", "pearl-compat_8ipf.html", null ],
|
||||
[ "pearl-elog.ipf", "pearl-elog_8ipf.html", null ],
|
||||
[ "pearl-fitfuncs.ipf", "pearl-fitfuncs_8ipf.html", null ],
|
||||
[ "pearl-pmsco-import.ipf", "pearl-pmsco-import_8ipf.html", null ],
|
||||
[ "pearl-pshell-import.ipf", "pearl-pshell-import_8ipf.html", null ],
|
||||
[ "pearl-scienta-preprocess.ipf", "pearl-scienta-preprocess_8ipf.html", null ]
|
||||
[ "pearl-scienta-live.ipf", "pearl-scienta-live_8ipf.html", null ],
|
||||
[ "pearl-scienta-preprocess.ipf", "pearl-scienta-preprocess_8ipf.html", null ],
|
||||
[ "pearl-vector-operations.ipf", "pearl-vector-operations_8ipf.html", null ]
|
||||
];
|
||||
@@ -1,133 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.9.1"/>
|
||||
<title>PEARL Procedures: Sample preparation package</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
$(window).load(resizeHeight);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() { init_search(); });
|
||||
</script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.9.1 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</script>
|
||||
<div id="navrow1" class="tabs">
|
||||
<ul class="tablist">
|
||||
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||
<li><a href="pages.html"><span>Related Pages</span></a></li>
|
||||
<li><a href="modules.html"><span>Packages</span></a></li>
|
||||
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li><a href="files.html"><span>Files</span></a></li>
|
||||
<li>
|
||||
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||
<span class="left">
|
||||
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
alt=""/>
|
||||
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||
</span><span class="right">
|
||||
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
<div id="nav-sync" class="sync"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('group___preparation_package.html','');});
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
</div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">Sample preparation package</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
|
||||
<p>PEARL sample preparation package.
|
||||
<a href="#details">More...</a></p>
|
||||
<p>PEARL sample preparation package. </p>
|
||||
<p>The purpose of a package is to load a bunch of dependent procedure files. The sample preparation package loads the following files.</p>
|
||||
<ul>
|
||||
<li><a class="el" href="pearl-area-import_8ipf.html" title="HDF5 file import from EPICS area detectors. ">pearl-area-import.ipf</a></li>
|
||||
<li><a class="el" href="pearl-area-display_8ipf.html" title="visualization tools for 2D and 3D data. ">pearl-area-display.ipf</a></li>
|
||||
<li><a class="el" href="pearl-area-profiles_8ipf.html" title="profile extraction for multi-dimensional datasets acquired from area detectors. ">pearl-area-profiles.ipf</a></li>
|
||||
<li><a class="el" href="pearl-elog_8ipf.html" title="interface for writing ELOG entries with Igor graphs as attachment. ">pearl-elog.ipf</a></li>
|
||||
<li><a class="el" href="pearl-anneal_8ipf.html" title="ramp generator for sample annealing ">pearl-anneal.ipf</a></li>
|
||||
</ul>
|
||||
<p>The following files are loaded if the EPICS.XOP is present:</p>
|
||||
<ul>
|
||||
<li>pearl-epics.ipf </li>
|
||||
</ul>
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Sat Apr 9 2016 13:10:44 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Introduction</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('index.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('index.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -80,7 +82,7 @@ $(document).ready(function(){initNavTree('index.html','');});
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="PageDoc"><div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">Introduction </div> </div>
|
||||
</div><!--header-->
|
||||
@@ -96,29 +98,34 @@ Introduction</h1>
|
||||
<p>PEARL Procedures is a suite of Igor Pro procedures developed for data acquisition and data processing at the PEARL beamline at the Swiss Light Source.</p>
|
||||
<h1><a class="anchor" id="sec_install"></a>
|
||||
Installation</h1>
|
||||
<p>PEARL Procedures are tested on Igor Pro 8.04, 64-bit. Compatibility with earlier versions of Igor has been dropped. Please make sure to use the latest release version of Igor Pro.</p>
|
||||
<p>PEARL Procedures should be installed according to the regular Igor Pro guidelines. Please read the Igor help <code>About Igor Pro User Files</code> for details.</p>
|
||||
<ul>
|
||||
<li>Make a <code>pearl-procs</code> directory in your private or shared <code>User Procedures</code> folder, and copy the PEARL Procedures distribution there.</li>
|
||||
<li>Create shortcuts of the <code><a class="el" href="pearl-arpes_8ipf.html" title="data acquisition and analysis package for ARPES at PEARL. ">pearl-arpes.ipf</a></code> and <code><a class="el" href="pearl-menu_8ipf.html">pearl-menu.ipf</a></code> files, and move them to the <code>Igor Procedures</code> folder next to your <code>User Procedures</code> folder.</li>
|
||||
<li>Find the <code>HDF5.XOP</code> extension in the <code>Igor Pro Folder</code> under <code>More Extensions/File Loaders</code>, create a shortcut, and move the shortcut to the <code>Igor Extensions</code> folder next to your <code>User Procedures</code> folder.</li>
|
||||
<li>Create shortcuts of the <code><a class="el" href="pearl-arpes_8ipf.html" title="data acquisition and analysis package for ARPES at PEARL.">pearl-arpes.ipf</a></code> and <code><a class="el" href="pearl-menu_8ipf.html">pearl-menu.ipf</a></code> files, and move them to the <code>Igor Procedures</code> folder next to your <code>User Procedures</code> folder.</li>
|
||||
</ul>
|
||||
<p>Igor Pro 9 imports the HDF5 library by default. For earlier versions:</p>
|
||||
<ul>
|
||||
<li>Find the <code>HDF5.XOP</code> (<code>HDF5-64.xop</code> for 64-bit) extension in the <code>Igor Pro Folder</code> under <code>More Extensions/File Loaders</code> (<code>More Extensions (64-bit)/File Loaders</code>), create a shortcut, and move the shortcut to the <code>Igor Extensions</code> folder next to your <code>User Procedures</code> folder.</li>
|
||||
<li>Find the <code>HDF5 Help.ihf</code> next to <code>HDF5.XOP</code>, create a shortcut, and move the shortcut to the <code>Igor Help Files</code> folder next to your <code>User Procedures</code> folder.</li>
|
||||
</ul>
|
||||
<h1><a class="anchor" id="sec_license"></a>
|
||||
License Information</h1>
|
||||
<p>An open distribution of PEARL Procedures is available under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> at <a href="https://git.psi.ch/pearl-public/igor-procs">https://git.psi.ch/pearl-public/igor-procs</a>. Users of PEARL Procedures are requested to coordinate and share the development of the code with the original author. Please read and respect the respective license agreements.</p>
|
||||
<dl class="section author"><dt>Author</dt><dd>Matthias Muntwiler, <a href="#" onclick="location.href='mai'+'lto:'+'mat'+'th'+'ias'+'.m'+'unt'+'wi'+'ler'+'@p'+'si.'+'ch'; return false;">matth<span style="display: none;">.nosp@m.</span>ias.<span style="display: none;">.nosp@m.</span>muntw<span style="display: none;">.nosp@m.</span>iler<span style="display: none;">.nosp@m.</span>@psi.<span style="display: none;">.nosp@m.</span>ch</a> </dd></dl>
|
||||
<dl class="section version"><dt>Version</dt><dd>This documentation is compiled from version rev-distro-2.0.3-0-g0fb0fd9. </dd></dl>
|
||||
<dl class="section copyright"><dt>Copyright</dt><dd>2009-2016 by <a href="http://www.psi.ch">Paul Scherrer Institut</a> </dd>
|
||||
<dl class="section version"><dt>Version</dt><dd>This documentation is compiled from version rev-distro-3.0.0-0-gfa24916-dirty. </dd></dl>
|
||||
<dl class="section copyright"><dt>Copyright</dt><dd>2009-2022 by <a href="http://www.psi.ch">Paul Scherrer Institut</a> </dd>
|
||||
<dd>
|
||||
Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a> </dd></dl>
|
||||
</div></div><!-- contents -->
|
||||
</div></div><!-- PageDoc -->
|
||||
</div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
94
doc/html/jquery.js
vendored
94
doc/html/jquery.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: mainpage.dox File Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('mainpage_8dox.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('mainpage_8dox.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -91,9 +93,9 @@ $(document).ready(function(){initNavTree('mainpage_8dox.html','');});
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="mainpage_8dox.html">mainpage.dox</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,3 +1,26 @@
|
||||
/*
|
||||
@licstart The following is the entire license notice for the
|
||||
JavaScript code in this file.
|
||||
|
||||
Copyright (C) 1997-2017 by Dimitri van Heesch
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
@licend The above is the entire license notice
|
||||
for the JavaScript code in this file
|
||||
*/
|
||||
function initMenu(relPath,searchEnabled,serverSide,searchPage,search) {
|
||||
function makeTree(data,relPath) {
|
||||
var result='';
|
||||
@@ -17,10 +40,11 @@ function initMenu(relPath,searchEnabled,serverSide,searchPage,search) {
|
||||
$('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu');
|
||||
if (searchEnabled) {
|
||||
if (serverSide) {
|
||||
$('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><div class="left"><form id="FSearchBox" action="'+searchPage+'" method="get"><img id="MSearchSelect" src="'+relPath+'search/mag.png" alt=""/><input type="text" id="MSearchField" name="query" value="'+search+'" size="20" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)"></form></div><div class="right"></div></div></li>');
|
||||
$('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><div class="left"><form id="FSearchBox" action="'+relPath+searchPage+'" method="get"><img id="MSearchSelect" src="'+relPath+'search/mag.png" alt=""/><input type="text" id="MSearchField" name="query" value="'+search+'" size="20" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)"></form></div><div class="right"></div></div></li>');
|
||||
} else {
|
||||
$('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><span class="left"><img id="MSearchSelect" src="'+relPath+'search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/><input type="text" id="MSearchField" value="'+search+'" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/></span><span class="right"><a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="'+relPath+'search/close.png" alt=""/></a></span></div></li>');
|
||||
}
|
||||
}
|
||||
$('#main-menu').smartmenus();
|
||||
}
|
||||
/* @license-end */
|
||||
|
||||
@@ -1,3 +1,25 @@
|
||||
/*
|
||||
@licstart The following is the entire license notice for the
|
||||
JavaScript code in this file.
|
||||
|
||||
Copyright (C) 1997-2019 by Dimitri van Heesch
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of version 2 of the GNU General Public License as published by
|
||||
the Free Software Foundation
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
@licend The above is the entire license notice
|
||||
for the JavaScript code in this file
|
||||
*/
|
||||
var menudata={children:[
|
||||
{text:"Main Page",url:"index.html"},
|
||||
{text:"Related Pages",url:"pages.html"},
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Packages</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('modules.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('modules.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -95,9 +97,9 @@ $(document).ready(function(){initNavTree('modules.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlAnglescanPanel Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_anglescan_panel.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_anglescan_panel.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,19 +89,19 @@ $(document).ready(function(){initNavTree('namespace_pearl_anglescan_panel.html',
|
||||
<div class="contents">
|
||||
|
||||
<p>interactive processing of angle scanned XPD data.
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_anglescan_panel.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>interactive processing of angle scanned XPD data. </p>
|
||||
<p><a class="el" href="namespace_pearl_anglescan_panel.html" title="interactive processing of angle scanned XPD data. ">PearlAnglescanPanel</a> is declared in <a class="el" href="pearl-anglescan-panel_8ipf.html">pearl-anglescan-panel.ipf</a>. </p>
|
||||
<p><a class="el" href="namespace_pearl_anglescan_panel.html" title="interactive processing of angle scanned XPD data.">PearlAnglescanPanel</a> is declared in <a class="el" href="pearl-anglescan-panel_8ipf.html">pearl-anglescan-panel.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_anglescan_panel.html">PearlAnglescanPanel</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlAnglescanProcess Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_anglescan_process.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_anglescan_process.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,19 +89,19 @@ $(document).ready(function(){initNavTree('namespace_pearl_anglescan_process.html
|
||||
<div class="contents">
|
||||
|
||||
<p>processing and holographic mapping of angle scanned XPD data.
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_anglescan_process.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>processing and holographic mapping of angle scanned XPD data. </p>
|
||||
<p><a class="el" href="namespace_pearl_anglescan_process.html" title="processing and holographic mapping of angle scanned XPD data. ">PearlAnglescanProcess</a> is declared in <a class="el" href="pearl-anglescan-process_8ipf.html">pearl-anglescan-process.ipf</a>. </p>
|
||||
<p><a class="el" href="namespace_pearl_anglescan_process.html" title="processing and holographic mapping of angle scanned XPD data.">PearlAnglescanProcess</a> is declared in <a class="el" href="pearl-anglescan-process_8ipf.html">pearl-anglescan-process.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_anglescan_process.html">PearlAnglescanProcess</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlAreaDisplay Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_area_display.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_area_display.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,23 +89,24 @@ $(document).ready(function(){initNavTree('namespace_pearl_area_display.html','')
|
||||
<div class="contents">
|
||||
|
||||
<p>instant visualization of angle scan and manipulator position.
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_area_display.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>instant visualization of angle scan and manipulator position. </p>
|
||||
<ul>
|
||||
<li>3D graphics in a Gizmo window</li>
|
||||
<li><p class="startli">3D graphics in a Gizmo window</p><ul>
|
||||
<li>2D graphics with profiles</li>
|
||||
<li>Slicer panel</li>
|
||||
</ul>
|
||||
<p>data dictionary of global variables in view_xxxx folder:</p><ul>
|
||||
<p class="startli">data dictionary of global variables in view_xxxx folder:</p><ul>
|
||||
<li>gizmo_graphname = name of the gizmo window</li>
|
||||
<li>slice_graphname = name of the slice/profiles graph window</li>
|
||||
<li>slice_panelname = name of the slicer panel</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h1><a class="anchor" id="sec_misc"></a>
|
||||
Miscellaneous</h1>
|
||||
<pre class="fragment">scienta HDF5 import, display, and slicer how-to
|
||||
</pre> <pre class="fragment">/// ad_display_brick(root:x03da_scienta_20130821_01560:data)
|
||||
<p>scienta HDF5 import, display, and slicer how-to </p><pre class="fragment">/// ad_display_brick(root:x03da_scienta_20130821_01560:data)
|
||||
/// ad_scale_scienta(root:x03da_scienta_20130821_01560:data)
|
||||
/// ad_scale_extra(root:x03da_scienta_20130821_01560:data,root:x03da_scienta_20130821_01560:MonoEnergy,root:x03da_scienta_20130821_01560:data)
|
||||
/// ad_display_brick(root:x03da_scienta_20130821_01560:data)
|
||||
@@ -114,16 +117,17 @@ Miscellaneous</h1>
|
||||
Licensed under the Apache License, Version 2.0 (the "License"); @n
|
||||
you may not use this file except in compliance with the License. @n
|
||||
You may obtain a copy of the License at
|
||||
http://www.apache.org/licenses/LICENSE-2.0 </pre><p><a class="el" href="namespace_pearl_area_display.html" title="instant visualization of angle scan and manipulator position. ">PearlAreaDisplay</a> is declared in <a class="el" href="pearl-area-display_8ipf.html">pearl-area-display.ipf</a>. </p>
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
</pre><p> <a class="el" href="namespace_pearl_area_display.html" title="instant visualization of angle scan and manipulator position.">PearlAreaDisplay</a> is declared in <a class="el" href="pearl-area-display_8ipf.html">pearl-area-display.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_area_display.html">PearlAreaDisplay</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlAreaImport Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_area_import.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_area_import.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,19 +89,19 @@ $(document).ready(function(){initNavTree('namespace_pearl_area_import.html','');
|
||||
<div class="contents">
|
||||
|
||||
<p>HDF5 file import from EPICS area detectors.
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_area_import.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>HDF5 file import from EPICS area detectors. </p>
|
||||
<p><a class="el" href="namespace_pearl_area_import.html" title="HDF5 file import from EPICS area detectors. ">PearlAreaImport</a> is declared in <a class="el" href="pearl-area-import_8ipf.html">pearl-area-import.ipf</a>. </p>
|
||||
<p><a class="el" href="namespace_pearl_area_import.html" title="HDF5 file import from EPICS area detectors.">PearlAreaImport</a> is declared in <a class="el" href="pearl-area-import_8ipf.html">pearl-area-import.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_area_import.html">PearlAreaImport</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlAreaProfiles Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_area_profiles.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_area_profiles.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,7 +89,7 @@ $(document).ready(function(){initNavTree('namespace_pearl_area_profiles.html',''
|
||||
<div class="contents">
|
||||
|
||||
<p>profile extraction for multi-dimensional datasets acquired from area detectors.
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_area_profiles.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>profile extraction for multi-dimensional datasets acquired from area detectors. </p>
|
||||
<p>PearlAnglescanTracker is declared in <a class="el" href="pearl-area-profiles_8ipf.html">pearl-area-profiles.ipf</a>. </p>
|
||||
@@ -97,9 +99,9 @@ $(document).ready(function(){initNavTree('namespace_pearl_area_profiles.html',''
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_area_profiles.html">PearlAreaProfiles</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,129 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.9.1"/>
|
||||
<title>PEARL Procedures: PearlAreaProfilesTest Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
$(window).load(resizeHeight);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() { init_search(); });
|
||||
</script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.9.1 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</script>
|
||||
<div id="navrow1" class="tabs">
|
||||
<ul class="tablist">
|
||||
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||
<li><a href="pages.html"><span>Related Pages</span></a></li>
|
||||
<li><a href="modules.html"><span>Packages</span></a></li>
|
||||
<li class="current"><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li><a href="files.html"><span>Files</span></a></li>
|
||||
<li>
|
||||
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||
<span class="left">
|
||||
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
alt=""/>
|
||||
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||
</span><span class="right">
|
||||
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow2" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li><a href="namespaces.html"><span>Namespace List</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
<div id="nav-sync" class="sync"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_area_profiles_test.html','');});
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
</div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">PearlAreaProfilesTest Namespace Reference</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
|
||||
<p>profile extraction for multi-dimensional datasets acquired from area detectors.
|
||||
<a href="#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>profile extraction for multi-dimensional datasets acquired from area detectors. </p>
|
||||
<p><a class="el" href="namespace_pearl_area_profiles_test.html" title="profile extraction for multi-dimensional datasets acquired from area detectors. ">PearlAreaProfilesTest</a> is declared in <a class="el" href="pearl-area-profiles-test_8ipf.html">pearl-area-profiles-test.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_area_profiles_test.html">PearlAreaProfilesTest</a></li>
|
||||
<li class="footer">Generated on Sat Apr 9 2016 13:10:44 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlArpes Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_arpes.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_arpes.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,19 +89,19 @@ $(document).ready(function(){initNavTree('namespace_pearl_arpes.html','');});
|
||||
<div class="contents">
|
||||
|
||||
<p>data acquisition and analysis package for ARPES at PEARL.
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_arpes.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>data acquisition and analysis package for ARPES at PEARL. </p>
|
||||
<p><a class="el" href="namespace_pearl_arpes.html" title="data acquisition and analysis package for ARPES at PEARL. ">PearlArpes</a> is declared in <a class="el" href="pearl-arpes_8ipf.html">pearl-arpes.ipf</a>. </p>
|
||||
<p><a class="el" href="namespace_pearl_arpes.html" title="data acquisition and analysis package for ARPES at PEARL.">PearlArpes</a> is declared in <a class="el" href="pearl-arpes_8ipf.html">pearl-arpes.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_arpes.html">PearlArpes</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlDataExplorer Namespace Reference</title>
|
||||
<title>PEARL Procedures: PearlCompat Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_data_explorer.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_compat.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -82,24 +84,24 @@ $(document).ready(function(){initNavTree('namespace_pearl_data_explorer.html',''
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">PearlDataExplorer Namespace Reference</div> </div>
|
||||
<div class="title">PearlCompat Namespace Reference</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
|
||||
<p>preview and import panel for PEARL data
|
||||
<a href="#details">More...</a></p>
|
||||
<p>compatibility procedures for igor 8
|
||||
<a href="namespace_pearl_compat.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>preview and import panel for PEARL data </p>
|
||||
<p><a class="el" href="namespace_pearl_data_explorer.html" title="preview and import panel for PEARL data ">PearlDataExplorer</a> is declared in <a class="el" href="pearl-data-explorer_8ipf.html">pearl-data-explorer.ipf</a>. </p>
|
||||
<div class="textblock"><p>compatibility procedures for igor 8 </p>
|
||||
<p><a class="el" href="namespace_pearl_compat.html" title="compatibility procedures for igor 8">PearlCompat</a> is declared in <a class="el" href="pearl-compat_8ipf.html">pearl-compat.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_data_explorer.html">PearlDataExplorer</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_compat.html">PearlCompat</a></li>
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlElog Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_elog.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_elog.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,19 +89,19 @@ $(document).ready(function(){initNavTree('namespace_pearl_elog.html','');});
|
||||
<div class="contents">
|
||||
|
||||
<p>interface for writing ELOG entries with Igor graphs as attachment.
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_elog.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>interface for writing ELOG entries with Igor graphs as attachment. </p>
|
||||
<p><a class="el" href="namespace_pearl_elog.html" title="interface for writing ELOG entries with Igor graphs as attachment. ">PearlElog</a> is declared in <a class="el" href="pearl-elog_8ipf.html">pearl-elog.ipf</a>. </p>
|
||||
<p><a class="el" href="namespace_pearl_elog.html" title="interface for writing ELOG entries with Igor graphs as attachment.">PearlElog</a> is declared in <a class="el" href="pearl-elog_8ipf.html">pearl-elog.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_elog.html">PearlElog</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlFitFuncs Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_fit_funcs.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_fit_funcs.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,19 +89,19 @@ $(document).ready(function(){initNavTree('namespace_pearl_fit_funcs.html','');})
|
||||
<div class="contents">
|
||||
|
||||
<p>various fit functions for photoelectron spectroscopy.
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_fit_funcs.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>various fit functions for photoelectron spectroscopy. </p>
|
||||
<p><a class="el" href="namespace_pearl_fit_funcs.html" title="various fit functions for photoelectron spectroscopy. ">PearlFitFuncs</a> is declared in <a class="el" href="pearl-fitfuncs_8ipf.html">pearl-fitfuncs.ipf</a>. </p>
|
||||
<p><a class="el" href="namespace_pearl_fit_funcs.html" title="various fit functions for photoelectron spectroscopy.">PearlFitFuncs</a> is declared in <a class="el" href="pearl-fitfuncs_8ipf.html">pearl-fitfuncs.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_fit_funcs.html">PearlFitFuncs</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlMatrixImport Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_matrix_import.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_matrix_import.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,19 +89,19 @@ $(document).ready(function(){initNavTree('namespace_pearl_matrix_import.html',''
|
||||
<div class="contents">
|
||||
|
||||
<p>data file import for omicron matrix (STM) files
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_matrix_import.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>data file import for omicron matrix (STM) files </p>
|
||||
<p><a class="el" href="namespace_pearl_matrix_import.html" title="data file import for omicron matrix (STM) files ">PearlMatrixImport</a> is declared in <a class="el" href="pearl-matrix-import_8ipf.html">pearl-matrix-import.ipf</a>. </p>
|
||||
<p><a class="el" href="namespace_pearl_matrix_import.html" title="data file import for omicron matrix (STM) files">PearlMatrixImport</a> is declared in <a class="el" href="pearl-matrix-import_8ipf.html">pearl-matrix-import.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_matrix_import.html">PearlMatrixImport</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlPShellImport Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_p_shell_import.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_p_shell_import.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,19 +89,19 @@ $(document).ready(function(){initNavTree('namespace_pearl_p_shell_import.html','
|
||||
<div class="contents">
|
||||
|
||||
<p>import data from PShell
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_p_shell_import.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>import data from PShell </p>
|
||||
<p><a class="el" href="namespace_pearl_p_shell_import.html" title="import data from PShell ">PearlPShellImport</a> is declared in <a class="el" href="pearl-pshell-import_8ipf.html">pearl-pshell-import.ipf</a>. </p>
|
||||
<p><a class="el" href="namespace_pearl_p_shell_import.html" title="import data from PShell">PearlPShellImport</a> is declared in <a class="el" href="pearl-pshell-import_8ipf.html">pearl-pshell-import.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_p_shell_import.html">PearlPShellImport</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlPmscoImport Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_pmsco_import.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_pmsco_import.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,19 +89,19 @@ $(document).ready(function(){initNavTree('namespace_pearl_pmsco_import.html','')
|
||||
<div class="contents">
|
||||
|
||||
<p>data import/export procedures for multiple scattering calculations.
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_pmsco_import.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>data import/export procedures for multiple scattering calculations. </p>
|
||||
<p><a class="el" href="namespace_pearl_pmsco_import.html" title="data import/export procedures for multiple scattering calculations. ">PearlPmscoImport</a> is declared in <a class="el" href="pearl-pmsco-import_8ipf.html">pearl-pmsco-import.ipf</a>. </p>
|
||||
<p><a class="el" href="namespace_pearl_pmsco_import.html" title="data import/export procedures for multiple scattering calculations.">PearlPmscoImport</a> is declared in <a class="el" href="pearl-pmsco-import_8ipf.html">pearl-pmsco-import.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_pmsco_import.html">PearlPmscoImport</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,129 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.9.1"/>
|
||||
<title>PEARL Procedures: PearlPreparation Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
$(window).load(resizeHeight);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() { init_search(); });
|
||||
</script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.9.1 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</script>
|
||||
<div id="navrow1" class="tabs">
|
||||
<ul class="tablist">
|
||||
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||
<li><a href="pages.html"><span>Related Pages</span></a></li>
|
||||
<li><a href="modules.html"><span>Packages</span></a></li>
|
||||
<li class="current"><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li><a href="files.html"><span>Files</span></a></li>
|
||||
<li>
|
||||
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||
<span class="left">
|
||||
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
alt=""/>
|
||||
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||
</span><span class="right">
|
||||
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow2" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li><a href="namespaces.html"><span>Namespace List</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
<div id="nav-tree-contents">
|
||||
<div id="nav-sync" class="sync"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="splitbar" style="-moz-user-select:none;"
|
||||
class="ui-resizable-handle">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_preparation.html','');});
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
</div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">PearlPreparation Namespace Reference</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
|
||||
<p>PEARL sample preparation package.
|
||||
<a href="#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>PEARL sample preparation package. </p>
|
||||
<p><a class="el" href="namespace_pearl_preparation.html" title="PEARL sample preparation package. ">PearlPreparation</a> is declared in <a class="el" href="pearl-preparation_8ipf.html">pearl-preparation.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_preparation.html">PearlPreparation</a></li>
|
||||
<li class="footer">Generated on Sat Apr 9 2016 13:10:44 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlScientaPreprocess Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_scienta_preprocess.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_scienta_preprocess.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -87,19 +89,19 @@ $(document).ready(function(){initNavTree('namespace_pearl_scienta_preprocess.htm
|
||||
<div class="contents">
|
||||
|
||||
<p>preprocessing functions for Scienta detector images.
|
||||
<a href="#details">More...</a></p>
|
||||
<a href="namespace_pearl_scienta_preprocess.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>preprocessing functions for Scienta detector images. </p>
|
||||
<p><a class="el" href="namespace_pearl_scienta_preprocess.html" title="preprocessing functions for Scienta detector images. ">PearlScientaPreprocess</a> is declared in <a class="el" href="pearl-scienta-preprocess_8ipf.html">pearl-scienta-preprocess.ipf</a>. </p>
|
||||
<p><a class="el" href="namespace_pearl_scienta_preprocess.html" title="preprocessing functions for Scienta detector images.">PearlScientaPreprocess</a> is declared in <a class="el" href="pearl-scienta-preprocess_8ipf.html">pearl-scienta-preprocess.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_scienta_preprocess.html">PearlScientaPreprocess</a></li>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.9.1"/>
|
||||
<title>PEARL Procedures: PearlAnneal Namespace Reference</title>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: PearlVectorOperations Namespace Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
@@ -12,16 +13,9 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
$(window).load(resizeHeight);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() { init_search(); });
|
||||
</script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
@@ -30,8 +24,9 @@
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td style="padding-left: 0.5em;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -40,40 +35,22 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.9.1 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="navrow1" class="tabs">
|
||||
<ul class="tablist">
|
||||
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||
<li><a href="pages.html"><span>Related Pages</span></a></li>
|
||||
<li><a href="modules.html"><span>Packages</span></a></li>
|
||||
<li class="current"><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li><a href="files.html"><span>Files</span></a></li>
|
||||
<li>
|
||||
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||
<span class="left">
|
||||
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
alt=""/>
|
||||
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||
</span><span class="right">
|
||||
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow2" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li><a href="namespaces.html"><span>Namespace List</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
<div id="nav-tree">
|
||||
@@ -86,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_anneal.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespace_pearl_vector_operations.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -105,24 +84,24 @@ $(document).ready(function(){initNavTree('namespace_pearl_anneal.html','');});
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">PearlAnneal Namespace Reference</div> </div>
|
||||
<div class="title">PearlVectorOperations Namespace Reference</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
|
||||
<p>ramp generator for sample annealing
|
||||
<a href="#details">More...</a></p>
|
||||
<p>basic vector geometry operations.
|
||||
<a href="namespace_pearl_vector_operations.html#details">More...</a></p>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>ramp generator for sample annealing </p>
|
||||
<p><a class="el" href="namespace_pearl_anneal.html" title="ramp generator for sample annealing ">PearlAnneal</a> is declared in <a class="el" href="pearl-anneal_8ipf.html">pearl-anneal.ipf</a>. </p>
|
||||
<div class="textblock"><p>basic vector geometry operations. </p>
|
||||
<p><a class="el" href="namespace_pearl_vector_operations.html" title="basic vector geometry operations.">PearlVectorOperations</a> is declared in <a class="el" href="pearl-vector-operations_8ipf.html">pearl-vector-operations.ipf</a>. </p>
|
||||
</div></div><!-- contents -->
|
||||
</div><!-- doc-content -->
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_anneal.html">PearlAnneal</a></li>
|
||||
<li class="footer">Generated on Sat Apr 9 2016 13:10:44 for PEARL Procedures by
|
||||
<li class="navelem"><a class="el" href="namespace_pearl_vector_operations.html">PearlVectorOperations</a></li>
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
@@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.13"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Namespace List</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -13,9 +13,6 @@
|
||||
<script type="text/javascript" src="resize.js"></script>
|
||||
<script type="text/javascript" src="navtreedata.js"></script>
|
||||
<script type="text/javascript" src="navtree.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(initResizable);
|
||||
</script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
@@ -29,7 +26,7 @@
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PEARL Procedures
|
||||
 <span id="projectnumber">rev-distro-2.0.3-0-g0fb0fd9</span>
|
||||
 <span id="projectnumber">rev-distro-3.0.0-0-gfa24916-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -38,18 +35,21 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.13 -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
</script>
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
</div><!-- top -->
|
||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||
@@ -63,7 +63,9 @@ $(function() {
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('namespaces.html','');});
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(document).ready(function(){initNavTree('namespaces.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -93,13 +95,15 @@ $(document).ready(function(){initNavTree('namespaces.html','');});
|
||||
<tr id="row_3_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_area_import.html" target="_self">PearlAreaImport</a></td><td class="desc">HDF5 file import from EPICS area detectors </td></tr>
|
||||
<tr id="row_4_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_area_profiles.html" target="_self">PearlAreaProfiles</a></td><td class="desc">Profile extraction for multi-dimensional datasets acquired from area detectors </td></tr>
|
||||
<tr id="row_5_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_arpes.html" target="_self">PearlArpes</a></td><td class="desc">Data acquisition and analysis package for ARPES at PEARL </td></tr>
|
||||
<tr id="row_6_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_data_explorer.html" target="_self">PearlDataExplorer</a></td><td class="desc">Preview and import panel for PEARL data </td></tr>
|
||||
<tr id="row_6_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_compat.html" target="_self">PearlCompat</a></td><td class="desc">Compatibility procedures for igor 8 </td></tr>
|
||||
<tr id="row_7_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_elog.html" target="_self">PearlElog</a></td><td class="desc">Interface for writing ELOG entries with Igor graphs as attachment </td></tr>
|
||||
<tr id="row_8_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_fit_funcs.html" target="_self">PearlFitFuncs</a></td><td class="desc">Various fit functions for photoelectron spectroscopy </td></tr>
|
||||
<tr id="row_9_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_matrix_import.html" target="_self">PearlMatrixImport</a></td><td class="desc">Data file import for omicron matrix (STM) files </td></tr>
|
||||
<tr id="row_10_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_pmsco_import.html" target="_self">PearlPmscoImport</a></td><td class="desc">Data import/export procedures for multiple scattering calculations </td></tr>
|
||||
<tr id="row_11_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_p_shell_import.html" target="_self">PearlPShellImport</a></td><td class="desc">Import data from PShell </td></tr>
|
||||
<tr id="row_12_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_scienta_preprocess.html" target="_self">PearlScientaPreprocess</a></td><td class="desc">Preprocessing functions for Scienta detector images </td></tr>
|
||||
<tr id="row_12_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_scienta_live.html" target="_self">PearlScientaLive</a></td><td class="desc">Utility functions for operating the Scienta analyser </td></tr>
|
||||
<tr id="row_13_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_scienta_preprocess.html" target="_self">PearlScientaPreprocess</a></td><td class="desc">Preprocessing functions for Scienta detector images </td></tr>
|
||||
<tr id="row_14_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_pearl_vector_operations.html" target="_self">PearlVectorOperations</a></td><td class="desc">Basic vector geometry operations </td></tr>
|
||||
</table>
|
||||
</div><!-- directory -->
|
||||
</div><!-- contents -->
|
||||
@@ -107,9 +111,9 @@ $(document).ready(function(){initNavTree('namespaces.html','');});
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated on Thu Feb 28 2019 18:57:24 for PEARL Procedures by
|
||||
<li class="footer">Generated on Tue Mar 1 2022 15:31:30 for PEARL Procedures by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
var namespaces =
|
||||
[
|
||||
[ "PearlAnglescanPanel", "namespace_pearl_anglescan_panel.html", null ],
|
||||
[ "PearlAnglescanProcess", "namespace_pearl_anglescan_process.html", null ],
|
||||
[ "PearlAreaDisplay", "namespace_pearl_area_display.html", null ],
|
||||
[ "PearlAreaImport", "namespace_pearl_area_import.html", null ],
|
||||
[ "PearlAreaProfiles", "namespace_pearl_area_profiles.html", null ],
|
||||
[ "PearlArpes", "namespace_pearl_arpes.html", null ],
|
||||
[ "PearlDataExplorer", "namespace_pearl_data_explorer.html", null ],
|
||||
[ "PearlElog", "namespace_pearl_elog.html", null ],
|
||||
[ "PearlFitFuncs", "namespace_pearl_fit_funcs.html", null ],
|
||||
[ "PearlMatrixImport", "namespace_pearl_matrix_import.html", null ],
|
||||
[ "PearlPmscoImport", "namespace_pearl_pmsco_import.html", null ],
|
||||
[ "PearlPShellImport", "namespace_pearl_p_shell_import.html", null ],
|
||||
[ "PearlScientaPreprocess", "namespace_pearl_scienta_preprocess.html", null ]
|
||||
];
|
||||
@@ -96,7 +96,7 @@
|
||||
.ui-resizable-e {
|
||||
background-image:url("splitbar.png");
|
||||
background-size:100%;
|
||||
background-repeat:no-repeat;
|
||||
background-repeat:repeat-y;
|
||||
background-attachment: scroll;
|
||||
cursor:ew-resize;
|
||||
height:100%;
|
||||
|
||||
@@ -1,3 +1,25 @@
|
||||
/*
|
||||
@licstart The following is the entire license notice for the
|
||||
JavaScript code in this file.
|
||||
|
||||
Copyright (C) 1997-2019 by Dimitri van Heesch
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of version 2 of the GNU General Public License as
|
||||
published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
@licend The above is the entire license notice
|
||||
for the JavaScript code in this file
|
||||
*/
|
||||
var navTreeSubIndices = new Array();
|
||||
var arrowDown = '▼';
|
||||
var arrowRight = '►';
|
||||
@@ -47,7 +69,6 @@ function localStorageSupported()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function storeLink(link)
|
||||
{
|
||||
if (!$("#nav-sync").hasClass('sync') && localStorageSupported()) {
|
||||
@@ -79,14 +100,6 @@ function getScript(scriptName,func,show)
|
||||
script.type = 'text/javascript';
|
||||
script.onload = func;
|
||||
script.src = scriptName+'.js';
|
||||
if ($.browser.msie && $.browser.version<=8) {
|
||||
// script.onload does not work with older versions of IE
|
||||
script.onreadystatechange = function() {
|
||||
if (script.readyState=='complete' || script.readyState=='loaded') {
|
||||
func(); if (show) showRoot();
|
||||
}
|
||||
}
|
||||
}
|
||||
head.appendChild(script);
|
||||
}
|
||||
|
||||
@@ -130,6 +143,7 @@ function gotoAnchor(anchor,aname,updateLocation)
|
||||
var pos, docContent = $('#doc-content');
|
||||
var ancParent = $(anchor.parent());
|
||||
if (ancParent.hasClass('memItemLeft') ||
|
||||
ancParent.hasClass('memtitle') ||
|
||||
ancParent.hasClass('fieldname') ||
|
||||
ancParent.hasClass('fieldtype') ||
|
||||
ancParent.is(':header'))
|
||||
@@ -242,7 +256,7 @@ function showRoot()
|
||||
(function (){ // retry until we can scroll to the selected item
|
||||
try {
|
||||
var navtree=$('#nav-tree');
|
||||
navtree.scrollTo('#selected',0,{offset:-windowHeight/2});
|
||||
navtree.scrollTo('#selected',100,{offset:-windowHeight/2});
|
||||
} catch (err) {
|
||||
setTimeout(arguments.callee, 0);
|
||||
}
|
||||
@@ -261,12 +275,8 @@ function expandNode(o, node, imm, showRoot)
|
||||
} else {
|
||||
if (!node.childrenVisited) {
|
||||
getNode(o, node);
|
||||
} if (imm || ($.browser.msie && $.browser.version>8)) {
|
||||
// somehow slideDown jumps to the start of tree for IE9 :-(
|
||||
$(node.getChildrenUL()).show();
|
||||
} else {
|
||||
$(node.getChildrenUL()).slideDown("fast");
|
||||
}
|
||||
$(node.getChildrenUL()).slideDown("fast");
|
||||
node.plus_img.innerHTML = arrowDown;
|
||||
node.expanded = true;
|
||||
}
|
||||
@@ -296,7 +306,6 @@ function highlightAnchor()
|
||||
} else {
|
||||
glowEffect(anchor.next(),1000); // normal member
|
||||
}
|
||||
gotoAnchor(anchor,aname,false);
|
||||
}
|
||||
|
||||
function selectAndHighlight(hash,n)
|
||||
@@ -458,6 +467,18 @@ function toggleSyncButton(relpath)
|
||||
}
|
||||
}
|
||||
|
||||
var loadTriggered = false;
|
||||
var readyTriggered = false;
|
||||
var loadObject,loadToRoot,loadUrl,loadRelPath;
|
||||
|
||||
$(window).on('load',function(){
|
||||
if (readyTriggered) { // ready first
|
||||
navTo(loadObject,loadToRoot,loadUrl,loadRelPath);
|
||||
showRoot();
|
||||
}
|
||||
loadTriggered=true;
|
||||
});
|
||||
|
||||
function initNavTree(toroot,relpath)
|
||||
{
|
||||
var o = new Object();
|
||||
@@ -488,10 +509,16 @@ function initNavTree(toroot,relpath)
|
||||
navSync.click(function(){ toggleSyncButton(relpath); });
|
||||
}
|
||||
|
||||
$(window).load(function(){
|
||||
if (loadTriggered) { // load before ready
|
||||
navTo(o,toroot,hashUrl(),relpath);
|
||||
showRoot();
|
||||
});
|
||||
} else { // ready before load
|
||||
loadObject = o;
|
||||
loadToRoot = toroot;
|
||||
loadUrl = hashUrl();
|
||||
loadRelPath = relpath;
|
||||
readyTriggered=true;
|
||||
}
|
||||
|
||||
$(window).bind('hashchange', function(){
|
||||
if (window.location.hash && window.location.hash.length>1){
|
||||
@@ -514,4 +541,4 @@ function initNavTree(toroot,relpath)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
/* @license-end */
|
||||
|
||||
@@ -1,3 +1,25 @@
|
||||
/*
|
||||
@licstart The following is the entire license notice for the
|
||||
JavaScript code in this file.
|
||||
|
||||
Copyright (C) 1997-2019 by Dimitri van Heesch
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of version 2 of the GNU General Public License as published by
|
||||
the Free Software Foundation
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
@licend The above is the entire license notice
|
||||
for the JavaScript code in this file
|
||||
*/
|
||||
var NAVTREE =
|
||||
[
|
||||
[ "PEARL Procedures", "index.html", [
|
||||
@@ -36,8 +58,8 @@ var NAVTREE =
|
||||
] ],
|
||||
[ "Todo List", "todo.html", null ],
|
||||
[ "Packages", "modules.html", "modules" ],
|
||||
[ "Namespaces", null, [
|
||||
[ "Namespace List", "namespaces.html", "namespaces" ]
|
||||
[ "Namespaces", "namespaces.html", [
|
||||
[ "Namespace List", "namespaces.html", "namespaces_dup" ]
|
||||
] ],
|
||||
[ "Data Structures", "annotated.html", "annotated" ],
|
||||
[ "Data Structure Index", "classes.html", null ],
|
||||
@@ -45,8 +67,8 @@ var NAVTREE =
|
||||
[ "All", "functions.html", null ],
|
||||
[ "Variables", "functions_vars.html", null ]
|
||||
] ],
|
||||
[ "Files", null, [
|
||||
[ "File List", "files.html", "files" ],
|
||||
[ "Files", "files.html", [
|
||||
[ "File List", "files.html", "files_dup" ],
|
||||
[ "Globals", "globals.html", [
|
||||
[ "All", "globals.html", "globals_dup" ],
|
||||
[ "Functions", "globals_func.html", "globals_func" ],
|
||||
@@ -59,8 +81,8 @@ var NAVTREE =
|
||||
var NAVTREEINDEX =
|
||||
[
|
||||
"_page_projections.html",
|
||||
"pearl-anglescan-tracker_8ipf.html#a4bc40cded4d4d7676b084f7200ca5e0d",
|
||||
"pearl-fitfuncs_8ipf.html#a84a0278284332631682ce032018d1716"
|
||||
"pearl-anglescan-tracker_8ipf.html#a33e84ae8e13f405d466b28e83f608cb9",
|
||||
"pearl-elog_8ipf.html#acbba78d869a543edf7c2b80d7a8d2344"
|
||||
];
|
||||
|
||||
var SYNCONMSG = 'click to disable panel synchronisation';
|
||||
|
||||
@@ -4,18 +4,17 @@ var NAVTREEINDEX0 =
|
||||
"annotated.html":[6],
|
||||
"classes.html":[7],
|
||||
"fermi-edge-analysis_8ipf.html":[9,0,0],
|
||||
"fermi-edge-analysis_8ipf.html#a09f26b0a0fd940a3d8c6f92aa769c8bc":[9,0,0,11],
|
||||
"fermi-edge-analysis_8ipf.html#a0cb8da36beae05c79fe5b1da918d3897":[9,0,0,8],
|
||||
"fermi-edge-analysis_8ipf.html#a09f26b0a0fd940a3d8c6f92aa769c8bc":[9,0,0,10],
|
||||
"fermi-edge-analysis_8ipf.html#a0cb8da36beae05c79fe5b1da918d3897":[9,0,0,7],
|
||||
"fermi-edge-analysis_8ipf.html#a1c4a805435a1d43c2b6dfb6deb633894":[9,0,0,0],
|
||||
"fermi-edge-analysis_8ipf.html#a27f000c3a3ea74c49db31716be3396d4":[9,0,0,7],
|
||||
"fermi-edge-analysis_8ipf.html#a2a1d7b49c1f88f29ee6d49f6a6f4fbf8":[9,0,0,3],
|
||||
"fermi-edge-analysis_8ipf.html#a4749b9bce3e1d0381bd9daeb97c9754c":[9,0,0,9],
|
||||
"fermi-edge-analysis_8ipf.html#a4cec596c8fd2b21953cb45d6d347211d":[9,0,0,6],
|
||||
"fermi-edge-analysis_8ipf.html#a4dcc00b93822f1663be2908b10d2ad3e":[9,0,0,10],
|
||||
"fermi-edge-analysis_8ipf.html#a520d8de9fbc4276c19fb417861f05b0d":[9,0,0,2],
|
||||
"fermi-edge-analysis_8ipf.html#aac6bac1ee0582caa0676bdc9c2d254f0":[9,0,0,4],
|
||||
"fermi-edge-analysis_8ipf.html#acf72d644b8d37b6c26b1e070edba4e30":[9,0,0,5],
|
||||
"fermi-edge-analysis_8ipf.html#ad23de34bb698589e2576ce2836b89d55":[9,0,0,1],
|
||||
"fermi-edge-analysis_8ipf.html#a27f000c3a3ea74c49db31716be3396d4":[9,0,0,6],
|
||||
"fermi-edge-analysis_8ipf.html#a2a1d7b49c1f88f29ee6d49f6a6f4fbf8":[9,0,0,2],
|
||||
"fermi-edge-analysis_8ipf.html#a4749b9bce3e1d0381bd9daeb97c9754c":[9,0,0,8],
|
||||
"fermi-edge-analysis_8ipf.html#a4cec596c8fd2b21953cb45d6d347211d":[9,0,0,5],
|
||||
"fermi-edge-analysis_8ipf.html#a4dcc00b93822f1663be2908b10d2ad3e":[9,0,0,9],
|
||||
"fermi-edge-analysis_8ipf.html#a520d8de9fbc4276c19fb417861f05b0d":[9,0,0,1],
|
||||
"fermi-edge-analysis_8ipf.html#aac6bac1ee0582caa0676bdc9c2d254f0":[9,0,0,3],
|
||||
"fermi-edge-analysis_8ipf.html#acf72d644b8d37b6c26b1e070edba4e30":[9,0,0,4],
|
||||
"fermi-edge-analysis_8ipf_source.html":[9,0,0],
|
||||
"files.html":[9,0],
|
||||
"functions.html":[8,0],
|
||||
@@ -79,13 +78,15 @@ var NAVTREEINDEX0 =
|
||||
"namespace_pearl_area_import.html":[5,0,3],
|
||||
"namespace_pearl_area_profiles.html":[5,0,4],
|
||||
"namespace_pearl_arpes.html":[5,0,5],
|
||||
"namespace_pearl_data_explorer.html":[5,0,6],
|
||||
"namespace_pearl_compat.html":[5,0,6],
|
||||
"namespace_pearl_elog.html":[5,0,7],
|
||||
"namespace_pearl_fit_funcs.html":[5,0,8],
|
||||
"namespace_pearl_matrix_import.html":[5,0,9],
|
||||
"namespace_pearl_p_shell_import.html":[5,0,11],
|
||||
"namespace_pearl_pmsco_import.html":[5,0,10],
|
||||
"namespace_pearl_scienta_preprocess.html":[5,0,12],
|
||||
"namespace_pearl_scienta_live.html":[5,0,12],
|
||||
"namespace_pearl_scienta_preprocess.html":[5,0,13],
|
||||
"namespace_pearl_vector_operations.html":[5,0,14],
|
||||
"namespaces.html":[5,0],
|
||||
"pag_anglescan_processing.html":[2],
|
||||
"pag_anglescan_processing.html#sec_anglescan_intro":[2,0],
|
||||
@@ -111,40 +112,41 @@ var NAVTREEINDEX0 =
|
||||
"pag_anglescan_processing.html#sec_projection":[2,3,4],
|
||||
"pages.html":[],
|
||||
"pearl-anglescan-panel_8ipf.html":[9,0,1],
|
||||
"pearl-anglescan-panel_8ipf.html#a0153f4ed4892dd3b48276af190590e4f":[9,0,1,49],
|
||||
"pearl-anglescan-panel_8ipf.html#a0931ce925d2dae6a1bb7e4a65a8a2be7":[9,0,1,21],
|
||||
"pearl-anglescan-panel_8ipf.html#a0bdc14f90bdc40045200ac23229b225d":[9,0,1,28],
|
||||
"pearl-anglescan-panel_8ipf.html#a0c228ce2048827dc8161691ec5c425fc":[9,0,1,52],
|
||||
"pearl-anglescan-panel_8ipf.html#a0c228ce2048827dc8161691ec5c425fc":[9,0,1,54],
|
||||
"pearl-anglescan-panel_8ipf.html#a0e0f10d125f1cdacffa3bff9b0854aa9":[9,0,1,10],
|
||||
"pearl-anglescan-panel_8ipf.html#a16424e5787967d9c120fb09c7849956e":[9,0,1,36],
|
||||
"pearl-anglescan-panel_8ipf.html#a16d2f6a58fedc370d7901126bb814bbb":[9,0,1,27],
|
||||
"pearl-anglescan-panel_8ipf.html#a1836e607851ba4d5a4048f4cfb8121a7":[9,0,1,37],
|
||||
"pearl-anglescan-panel_8ipf.html#a1836e607851ba4d5a4048f4cfb8121a7":[9,0,1,38],
|
||||
"pearl-anglescan-panel_8ipf.html#a1868754e64cb1448e564c0936e78574d":[9,0,1,16],
|
||||
"pearl-anglescan-panel_8ipf.html#a1b41c992729d627445dbba0637b31ece":[9,0,1,45],
|
||||
"pearl-anglescan-panel_8ipf.html#a1b41c992729d627445dbba0637b31ece":[9,0,1,46],
|
||||
"pearl-anglescan-panel_8ipf.html#a1e50019bc895a0787cb3f07d776e9463":[9,0,1,30],
|
||||
"pearl-anglescan-panel_8ipf.html#a20720748c82a7eaa4b02d4084a4219b2":[9,0,1,59],
|
||||
"pearl-anglescan-panel_8ipf.html#a21aab19fbcde395df6e1ea8654b3af9a":[9,0,1,8],
|
||||
"pearl-anglescan-panel_8ipf.html#a24093c0e17cb670de9eb2ee795c46fff":[9,0,1,50],
|
||||
"pearl-anglescan-panel_8ipf.html#a289996a12d0ef46af1dac49a67289931":[9,0,1,49],
|
||||
"pearl-anglescan-panel_8ipf.html#a3e798e20a99a03a789dd7914612e4fd2":[9,0,1,54],
|
||||
"pearl-anglescan-panel_8ipf.html#a2268cc96a879c1a055c1ff29c1b040ea":[9,0,1,52],
|
||||
"pearl-anglescan-panel_8ipf.html#a289996a12d0ef46af1dac49a67289931":[9,0,1,51],
|
||||
"pearl-anglescan-panel_8ipf.html#a3e798e20a99a03a789dd7914612e4fd2":[9,0,1,56],
|
||||
"pearl-anglescan-panel_8ipf.html#a452f09c3057638056ac2b5a15ac660b2":[9,0,1,11],
|
||||
"pearl-anglescan-panel_8ipf.html#a45e930b8eadd7cf6a5f664befd87d725":[9,0,1,42],
|
||||
"pearl-anglescan-panel_8ipf.html#a45e930b8eadd7cf6a5f664befd87d725":[9,0,1,43],
|
||||
"pearl-anglescan-panel_8ipf.html#a4708e7385790d1a9f2d58c4d64a60653":[9,0,1,35],
|
||||
"pearl-anglescan-panel_8ipf.html#a57c666f93cb4310fadf13b1916eaf134":[9,0,1,13],
|
||||
"pearl-anglescan-panel_8ipf.html#a59886414c7dc2486c5a17f078896c705":[9,0,1,4],
|
||||
"pearl-anglescan-panel_8ipf.html#a630dfc775d45843c71c279bbb01d05a6":[9,0,1,17],
|
||||
"pearl-anglescan-panel_8ipf.html#a65dbeab54647d7c27a139035d69c812f":[9,0,1,1],
|
||||
"pearl-anglescan-panel_8ipf.html#a66b3eef1fd0be13dfef0a66781f55062":[9,0,1,6],
|
||||
"pearl-anglescan-panel_8ipf.html#a740c8a80ab2fc0550a05cf3b032821d0":[9,0,1,20],
|
||||
"pearl-anglescan-panel_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b":[9,0,1,58],
|
||||
"pearl-anglescan-panel_8ipf.html#a790519191391ac03c75eb7b57ea0749e":[9,0,1,39],
|
||||
"pearl-anglescan-panel_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b":[9,0,1,60],
|
||||
"pearl-anglescan-panel_8ipf.html#a790519191391ac03c75eb7b57ea0749e":[9,0,1,40],
|
||||
"pearl-anglescan-panel_8ipf.html#a7ab3962d1d9d50d6cd285d40d4a7ce50":[9,0,1,31],
|
||||
"pearl-anglescan-panel_8ipf.html#a7b288598e3faa37e414b1443982c1a3e":[9,0,1,40],
|
||||
"pearl-anglescan-panel_8ipf.html#a7ddecbeeaee3f9da87ac1ecdc26f530b":[9,0,1,56],
|
||||
"pearl-anglescan-panel_8ipf.html#a893478e43be64b0c404b7573d2e89cc2":[9,0,1,36],
|
||||
"pearl-anglescan-panel_8ipf.html#a7b288598e3faa37e414b1443982c1a3e":[9,0,1,41],
|
||||
"pearl-anglescan-panel_8ipf.html#a7ddecbeeaee3f9da87ac1ecdc26f530b":[9,0,1,58],
|
||||
"pearl-anglescan-panel_8ipf.html#a89caab501e8f15262d6e4f2fa5b4a1bd":[9,0,1,23],
|
||||
"pearl-anglescan-panel_8ipf.html#a8e4eacc6efacf2c65615c1ea72d722ed":[9,0,1,0],
|
||||
"pearl-anglescan-panel_8ipf.html#a8e540427fab71f879e84003c49c59f22":[9,0,1,5],
|
||||
"pearl-anglescan-panel_8ipf.html#a8f7266ac2840155dede704fda66fe6b0":[9,0,1,38],
|
||||
"pearl-anglescan-panel_8ipf.html#a8f7266ac2840155dede704fda66fe6b0":[9,0,1,39],
|
||||
"pearl-anglescan-panel_8ipf.html#a91d5343cc96730de12b535cb0bef9df2":[9,0,1,33],
|
||||
"pearl-anglescan-panel_8ipf.html#a92c27964d49ab8bcd7afc858ebe214a3":[9,0,1,43],
|
||||
"pearl-anglescan-panel_8ipf.html#a92c27964d49ab8bcd7afc858ebe214a3":[9,0,1,44],
|
||||
"pearl-anglescan-panel_8ipf.html#a93dc5a029ae9831066e6ad133522ee88":[9,0,1,12],
|
||||
"pearl-anglescan-panel_8ipf.html#a940f2115fb5b47e19516168d15346472":[9,0,1,15],
|
||||
"pearl-anglescan-panel_8ipf.html#a9be861636d98d7891e6d106deac2f90b":[9,0,1,14],
|
||||
@@ -152,85 +154,91 @@ var NAVTREEINDEX0 =
|
||||
"pearl-anglescan-panel_8ipf.html#aaaf3facc118f90a8f1b32948446899b3":[9,0,1,18],
|
||||
"pearl-anglescan-panel_8ipf.html#aac9d4d0388cbe8e6aa8f47b1c5276d83":[9,0,1,3],
|
||||
"pearl-anglescan-panel_8ipf.html#abb4d53822bc34bda0e38332c7777ebac":[9,0,1,9],
|
||||
"pearl-anglescan-panel_8ipf.html#abe1237d8bf79a2ec3791ad9fe184bc3f":[9,0,1,53],
|
||||
"pearl-anglescan-panel_8ipf.html#ac729557a307bddd2f2ad298199976c01":[9,0,1,55],
|
||||
"pearl-anglescan-panel_8ipf.html#ac80c675f6f1a5505e9b6f0349ff5fe92":[9,0,1,44],
|
||||
"pearl-anglescan-panel_8ipf.html#aca457d1f4414d20a911254b1de13ebbb":[9,0,1,57],
|
||||
"pearl-anglescan-panel_8ipf.html#acc1028dcd046f441ceaac268ffac9af6":[9,0,1,47],
|
||||
"pearl-anglescan-panel_8ipf.html#ad355d06d3b57bb458bd62e6d6f1f2417":[9,0,1,51],
|
||||
"pearl-anglescan-panel_8ipf.html#abe1237d8bf79a2ec3791ad9fe184bc3f":[9,0,1,55],
|
||||
"pearl-anglescan-panel_8ipf.html#ac729557a307bddd2f2ad298199976c01":[9,0,1,57],
|
||||
"pearl-anglescan-panel_8ipf.html#ac80c675f6f1a5505e9b6f0349ff5fe92":[9,0,1,45],
|
||||
"pearl-anglescan-panel_8ipf.html#aca457d1f4414d20a911254b1de13ebbb":[9,0,1,59],
|
||||
"pearl-anglescan-panel_8ipf.html#acc1028dcd046f441ceaac268ffac9af6":[9,0,1,48],
|
||||
"pearl-anglescan-panel_8ipf.html#ad355d06d3b57bb458bd62e6d6f1f2417":[9,0,1,53],
|
||||
"pearl-anglescan-panel_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5":[9,0,1,29],
|
||||
"pearl-anglescan-panel_8ipf.html#addddc12e5b622a3d00756d724e5d05a9":[9,0,1,34],
|
||||
"pearl-anglescan-panel_8ipf.html#adefddc5f384948c9dab3ee65b4a0668a":[9,0,1,25],
|
||||
"pearl-anglescan-panel_8ipf.html#adf7c5a4e7c66c3d6e13d01674b9cf47f":[9,0,1,7],
|
||||
"pearl-anglescan-panel_8ipf.html#ae42eb7f46e5c1a1b5d334ebb5e94d2d3":[9,0,1,19],
|
||||
"pearl-anglescan-panel_8ipf.html#ae68496dbe344dc8a2c7c99b2d3f4b01c":[9,0,1,48],
|
||||
"pearl-anglescan-panel_8ipf.html#ae73ae76ff6e2344143d4dee7cc26b4b5":[9,0,1,13],
|
||||
"pearl-anglescan-panel_8ipf.html#ae68496dbe344dc8a2c7c99b2d3f4b01c":[9,0,1,50],
|
||||
"pearl-anglescan-panel_8ipf.html#ae838bde232c45d81f88303e91b16326b":[9,0,1,26],
|
||||
"pearl-anglescan-panel_8ipf.html#af21424ce00e4bac1ac990d2bb83d46dc":[9,0,1,2],
|
||||
"pearl-anglescan-panel_8ipf.html#af39609fc80e58f2188b3aa564f53b750":[9,0,1,37],
|
||||
"pearl-anglescan-panel_8ipf.html#af5435ccaabba78f855b244929dc09ed0":[9,0,1,32],
|
||||
"pearl-anglescan-panel_8ipf.html#af57abb0a7d41b800d33bb748f9fc5c38":[9,0,1,22],
|
||||
"pearl-anglescan-panel_8ipf.html#af6509fc7584b0bcbdc8561df2bc12a58":[9,0,1,41],
|
||||
"pearl-anglescan-panel_8ipf.html#af83bfcf48723e7f6eeb78b4e0d84277d":[9,0,1,46],
|
||||
"pearl-anglescan-panel_8ipf.html#af6509fc7584b0bcbdc8561df2bc12a58":[9,0,1,42],
|
||||
"pearl-anglescan-panel_8ipf.html#af83bfcf48723e7f6eeb78b4e0d84277d":[9,0,1,47],
|
||||
"pearl-anglescan-panel_8ipf_source.html":[9,0,1],
|
||||
"pearl-anglescan-process_8ipf.html":[9,0,2],
|
||||
"pearl-anglescan-process_8ipf.html#a01bac9e7d4ba743c3c34177a05070466":[9,0,2,44],
|
||||
"pearl-anglescan-process_8ipf.html#a04e75675884236b6ed8244d7575d3a13":[9,0,2,53],
|
||||
"pearl-anglescan-process_8ipf.html#a0b9e2b025e1d55d2a064edccf6c1c3e3":[9,0,2,39],
|
||||
"pearl-anglescan-process_8ipf.html#a13e0d37ae23f68cdc5da3d84cb4beed8":[9,0,2,45],
|
||||
"pearl-anglescan-process_8ipf.html#a1442bc23122d52ba9c77e0f9baaad1da":[9,0,2,20],
|
||||
"pearl-anglescan-process_8ipf.html#a1baaa3ffd9495ed427b43cbfe6e1edf8":[9,0,2,47],
|
||||
"pearl-anglescan-process_8ipf.html#a1f4f74a8ae557c56e1e3aacd0b45f3f1":[9,0,2,14],
|
||||
"pearl-anglescan-process_8ipf.html#a1fb6aa7870dfbf0ed92660b7aae579e0":[9,0,2,5],
|
||||
"pearl-anglescan-process_8ipf.html#a207c56ac03cc18bf1bfde88dbfe2666f":[9,0,2,48],
|
||||
"pearl-anglescan-process_8ipf.html#a229770447193d4fd12032b235aab4d28":[9,0,2,36],
|
||||
"pearl-anglescan-process_8ipf.html#a2b38c6c9b6e60593ba69d3773b6bc779":[9,0,2,10],
|
||||
"pearl-anglescan-process_8ipf.html#a2e1ed05781f9eb4be5e77695ef049962":[9,0,2,7],
|
||||
"pearl-anglescan-process_8ipf.html#a3b3bd11c35d5f850b34937ab6c45f659":[9,0,2,51],
|
||||
"pearl-anglescan-process_8ipf.html#a3cc7eddf5c6b0658260cfb32dd2c026d":[9,0,2,9],
|
||||
"pearl-anglescan-process_8ipf.html#a3ec6935a5903d0974c93a2072d743013":[9,0,2,8],
|
||||
"pearl-anglescan-process_8ipf.html#a4641c716180d737700c6df87f5f8974e":[9,0,2,22],
|
||||
"pearl-anglescan-process_8ipf.html#a46fd99d35a43601c39af6096d4e4f770":[9,0,2,13],
|
||||
"pearl-anglescan-process_8ipf.html#a48b7d774ed8d3f4329e9923e18e580e8":[9,0,2,34],
|
||||
"pearl-anglescan-process_8ipf.html#a48cbd596656bc6d849c53afb4c58b90d":[9,0,2,41],
|
||||
"pearl-anglescan-process_8ipf.html#a4952bc53e3d6d272d25b5e35e91696b5":[9,0,2,21],
|
||||
"pearl-anglescan-process_8ipf.html#a4a40c73c0e03545e0050ea370e9c57d3":[9,0,2,50],
|
||||
"pearl-anglescan-process_8ipf.html#a4fc744e24e3e9c5efb17f14ab622bcae":[9,0,2,0],
|
||||
"pearl-anglescan-process_8ipf.html#a5162488b366e217195d8f8bd7cdde0ce":[9,0,2,40],
|
||||
"pearl-anglescan-process_8ipf.html#a5265fd61f86eb72dd877e4190bfb4adf":[9,0,2,25],
|
||||
"pearl-anglescan-process_8ipf.html#a5dc0cc7db9d3d7a6b3fa3f1b04d84a5e":[9,0,2,46],
|
||||
"pearl-anglescan-process_8ipf.html#a666dab03bb2e97ffef81cea450184d42":[9,0,2,42],
|
||||
"pearl-anglescan-process_8ipf.html#a70b0e243bcbd549e2b1da74aab605629":[9,0,2,43],
|
||||
"pearl-anglescan-process_8ipf.html#a75219b38ea58012abcffc848d536faa4":[9,0,2,2],
|
||||
"pearl-anglescan-process_8ipf.html#a89f73edcd51a675f4c3933cd0242484e":[9,0,2,28],
|
||||
"pearl-anglescan-process_8ipf.html#a902ac3a24e33f651e83ee03d31707da7":[9,0,2,29],
|
||||
"pearl-anglescan-process_8ipf.html#a9624070f3e938378631432430d47a389":[9,0,2,3],
|
||||
"pearl-anglescan-process_8ipf.html#a987811346894d8d81fc590b2f5ccec49":[9,0,2,19],
|
||||
"pearl-anglescan-process_8ipf.html#a999a9cd7d00d3e1ec8e768228a664ad1":[9,0,2,4],
|
||||
"pearl-anglescan-process_8ipf.html#a9b56897bd92d926d65f4c67bef1d41bb":[9,0,2,32],
|
||||
"pearl-anglescan-process_8ipf.html#aa26c9ed4c4d703e07788d980edc2406d":[9,0,2,18],
|
||||
"pearl-anglescan-process_8ipf.html#aa486e16909d01e2251eeb4d635b972b1":[9,0,2,24],
|
||||
"pearl-anglescan-process_8ipf.html#aa5487fdee22e0da61a511c14239262f5":[9,0,2,55],
|
||||
"pearl-anglescan-process_8ipf.html#aa54a550eccad2c8ccd82d2b4167f7a92":[9,0,2,27],
|
||||
"pearl-anglescan-process_8ipf.html#aa5b1e2ab1dd43a73b7157406b803887e":[9,0,2,17],
|
||||
"pearl-anglescan-process_8ipf.html#aaa734fddecdd75c7cabe20ba777b41b9":[9,0,2,31],
|
||||
"pearl-anglescan-process_8ipf.html#aae45cc49d67f79dcedc4420f82acea4c":[9,0,2,49],
|
||||
"pearl-anglescan-process_8ipf.html#ab65d25af7476ed18f7bf7359614a912b":[9,0,2,11],
|
||||
"pearl-anglescan-process_8ipf.html#ab6670abb621d01994c0b9974f58be843":[9,0,2,54],
|
||||
"pearl-anglescan-process_8ipf.html#ab6ac1268de338040028dca8d0ddc967c":[9,0,2,23],
|
||||
"pearl-anglescan-process_8ipf.html#ac0def1ded61f9cd758df0c99f4ff9470":[9,0,2,6],
|
||||
"pearl-anglescan-process_8ipf.html#ac151c6f989d6a568fdef0acb791f84db":[9,0,2,57],
|
||||
"pearl-anglescan-process_8ipf.html#ac15ebd5a19c558dde666ab36aeb9906f":[9,0,2,38],
|
||||
"pearl-anglescan-process_8ipf.html#ac4dbd1ece37b2cf22fa976a153977288":[9,0,2,37],
|
||||
"pearl-anglescan-process_8ipf.html#ac617c3b400488b656493af8ca08f1791":[9,0,2,30],
|
||||
"pearl-anglescan-process_8ipf.html#acca0130cccf2286863bbf5b7f91c5b3b":[9,0,2,26],
|
||||
"pearl-anglescan-process_8ipf.html#ad0a93367d2e9b66bb7b81697e87adfaf":[9,0,2,33],
|
||||
"pearl-anglescan-process_8ipf.html#ae2b036a06ffac8d2bb292a65401f8a9a":[9,0,2,1],
|
||||
"pearl-anglescan-process_8ipf.html#ae57302acfc822c4817f2b7eef55efea2":[9,0,2,12],
|
||||
"pearl-anglescan-process_8ipf.html#aed66bda9701d8a69b2174fac974aa665":[9,0,2,56],
|
||||
"pearl-anglescan-process_8ipf.html#af00d9061e410ad033a9fd1f0ca561e0d":[9,0,2,16],
|
||||
"pearl-anglescan-process_8ipf.html#afa14187803f5b428a96c8234e04ab217":[9,0,2,52],
|
||||
"pearl-anglescan-process_8ipf.html#afed227ae79873fd32c96afbf606d1965":[9,0,2,35],
|
||||
"pearl-anglescan-process_8ipf.html#afedad38a418cee5d1fb9e08aae2160a0":[9,0,2,15],
|
||||
"pearl-anglescan-process_8ipf.html#a01bac9e7d4ba743c3c34177a05070466":[9,0,2,49],
|
||||
"pearl-anglescan-process_8ipf.html#a04e75675884236b6ed8244d7575d3a13":[9,0,2,59],
|
||||
"pearl-anglescan-process_8ipf.html#a0b9e2b025e1d55d2a064edccf6c1c3e3":[9,0,2,44],
|
||||
"pearl-anglescan-process_8ipf.html#a13e0d37ae23f68cdc5da3d84cb4beed8":[9,0,2,51],
|
||||
"pearl-anglescan-process_8ipf.html#a1442bc23122d52ba9c77e0f9baaad1da":[9,0,2,24],
|
||||
"pearl-anglescan-process_8ipf.html#a1baaa3ffd9495ed427b43cbfe6e1edf8":[9,0,2,53],
|
||||
"pearl-anglescan-process_8ipf.html#a1f4f74a8ae557c56e1e3aacd0b45f3f1":[9,0,2,18],
|
||||
"pearl-anglescan-process_8ipf.html#a1fb6aa7870dfbf0ed92660b7aae579e0":[9,0,2,8],
|
||||
"pearl-anglescan-process_8ipf.html#a207c56ac03cc18bf1bfde88dbfe2666f":[9,0,2,54],
|
||||
"pearl-anglescan-process_8ipf.html#a229770447193d4fd12032b235aab4d28":[9,0,2,41],
|
||||
"pearl-anglescan-process_8ipf.html#a2b38c6c9b6e60593ba69d3773b6bc779":[9,0,2,13],
|
||||
"pearl-anglescan-process_8ipf.html#a3b3bd11c35d5f850b34937ab6c45f659":[9,0,2,57],
|
||||
"pearl-anglescan-process_8ipf.html#a3cc7eddf5c6b0658260cfb32dd2c026d":[9,0,2,12],
|
||||
"pearl-anglescan-process_8ipf.html#a3ec6935a5903d0974c93a2072d743013":[9,0,2,11],
|
||||
"pearl-anglescan-process_8ipf.html#a4641c716180d737700c6df87f5f8974e":[9,0,2,26],
|
||||
"pearl-anglescan-process_8ipf.html#a46fd99d35a43601c39af6096d4e4f770":[9,0,2,17],
|
||||
"pearl-anglescan-process_8ipf.html#a48b7d774ed8d3f4329e9923e18e580e8":[9,0,2,39],
|
||||
"pearl-anglescan-process_8ipf.html#a48cbd596656bc6d849c53afb4c58b90d":[9,0,2,46],
|
||||
"pearl-anglescan-process_8ipf.html#a4952bc53e3d6d272d25b5e35e91696b5":[9,0,2,25],
|
||||
"pearl-anglescan-process_8ipf.html#a4a40c73c0e03545e0050ea370e9c57d3":[9,0,2,56],
|
||||
"pearl-anglescan-process_8ipf.html#a4fc744e24e3e9c5efb17f14ab622bcae":[9,0,2,3],
|
||||
"pearl-anglescan-process_8ipf.html#a5162488b366e217195d8f8bd7cdde0ce":[9,0,2,45],
|
||||
"pearl-anglescan-process_8ipf.html#a5265fd61f86eb72dd877e4190bfb4adf":[9,0,2,29],
|
||||
"pearl-anglescan-process_8ipf.html#a5dc0cc7db9d3d7a6b3fa3f1b04d84a5e":[9,0,2,52],
|
||||
"pearl-anglescan-process_8ipf.html#a67d53a1c362d7e5bbeccf1c9c12ae0c2":[9,0,2,10],
|
||||
"pearl-anglescan-process_8ipf.html#a70b0e243bcbd549e2b1da74aab605629":[9,0,2,48],
|
||||
"pearl-anglescan-process_8ipf.html#a75219b38ea58012abcffc848d536faa4":[9,0,2,5],
|
||||
"pearl-anglescan-process_8ipf.html#a89f73edcd51a675f4c3933cd0242484e":[9,0,2,32],
|
||||
"pearl-anglescan-process_8ipf.html#a8c83a187e371783dea62c9f2bc97c52c":[9,0,2,0],
|
||||
"pearl-anglescan-process_8ipf.html#a8eabc7feca73f9e0db2109a78ee382cb":[9,0,2,1],
|
||||
"pearl-anglescan-process_8ipf.html#a902ac3a24e33f651e83ee03d31707da7":[9,0,2,33],
|
||||
"pearl-anglescan-process_8ipf.html#a9624070f3e938378631432430d47a389":[9,0,2,6],
|
||||
"pearl-anglescan-process_8ipf.html#a987811346894d8d81fc590b2f5ccec49":[9,0,2,23],
|
||||
"pearl-anglescan-process_8ipf.html#a992920d621023e6b483ff51eee68b508":[9,0,2,37],
|
||||
"pearl-anglescan-process_8ipf.html#a999a9cd7d00d3e1ec8e768228a664ad1":[9,0,2,7],
|
||||
"pearl-anglescan-process_8ipf.html#a9b56897bd92d926d65f4c67bef1d41bb":[9,0,2,36],
|
||||
"pearl-anglescan-process_8ipf.html#aa26c9ed4c4d703e07788d980edc2406d":[9,0,2,22],
|
||||
"pearl-anglescan-process_8ipf.html#aa486e16909d01e2251eeb4d635b972b1":[9,0,2,28],
|
||||
"pearl-anglescan-process_8ipf.html#aa5487fdee22e0da61a511c14239262f5":[9,0,2,61],
|
||||
"pearl-anglescan-process_8ipf.html#aa54a550eccad2c8ccd82d2b4167f7a92":[9,0,2,31],
|
||||
"pearl-anglescan-process_8ipf.html#aa5b1e2ab1dd43a73b7157406b803887e":[9,0,2,21],
|
||||
"pearl-anglescan-process_8ipf.html#aa79c0ff6073bd42e202b9fa3f8c00b9f":[9,0,2,15],
|
||||
"pearl-anglescan-process_8ipf.html#aaa734fddecdd75c7cabe20ba777b41b9":[9,0,2,35],
|
||||
"pearl-anglescan-process_8ipf.html#aae45cc49d67f79dcedc4420f82acea4c":[9,0,2,55],
|
||||
"pearl-anglescan-process_8ipf.html#ab65d25af7476ed18f7bf7359614a912b":[9,0,2,14],
|
||||
"pearl-anglescan-process_8ipf.html#ab6670abb621d01994c0b9974f58be843":[9,0,2,60],
|
||||
"pearl-anglescan-process_8ipf.html#ab6ac1268de338040028dca8d0ddc967c":[9,0,2,27],
|
||||
"pearl-anglescan-process_8ipf.html#ab97a936bc0fa6137b6d0b43cb61d39a1":[9,0,2,50],
|
||||
"pearl-anglescan-process_8ipf.html#ac0def1ded61f9cd758df0c99f4ff9470":[9,0,2,9],
|
||||
"pearl-anglescan-process_8ipf.html#ac151c6f989d6a568fdef0acb791f84db":[9,0,2,63],
|
||||
"pearl-anglescan-process_8ipf.html#ac15ebd5a19c558dde666ab36aeb9906f":[9,0,2,43],
|
||||
"pearl-anglescan-process_8ipf.html#ac4dbd1ece37b2cf22fa976a153977288":[9,0,2,42],
|
||||
"pearl-anglescan-process_8ipf.html#ac617c3b400488b656493af8ca08f1791":[9,0,2,34],
|
||||
"pearl-anglescan-process_8ipf.html#acca0130cccf2286863bbf5b7f91c5b3b":[9,0,2,30],
|
||||
"pearl-anglescan-process_8ipf.html#acf6fddb73624fe2d21429e38c4994088":[9,0,2,2],
|
||||
"pearl-anglescan-process_8ipf.html#ad0a93367d2e9b66bb7b81697e87adfaf":[9,0,2,38],
|
||||
"pearl-anglescan-process_8ipf.html#ae2b036a06ffac8d2bb292a65401f8a9a":[9,0,2,4],
|
||||
"pearl-anglescan-process_8ipf.html#ae57302acfc822c4817f2b7eef55efea2":[9,0,2,16],
|
||||
"pearl-anglescan-process_8ipf.html#aed66bda9701d8a69b2174fac974aa665":[9,0,2,62],
|
||||
"pearl-anglescan-process_8ipf.html#af00d9061e410ad033a9fd1f0ca561e0d":[9,0,2,20],
|
||||
"pearl-anglescan-process_8ipf.html#af9874b5c1ce1d216741c7880a5fdcfcc":[9,0,2,47],
|
||||
"pearl-anglescan-process_8ipf.html#afa14187803f5b428a96c8234e04ab217":[9,0,2,58],
|
||||
"pearl-anglescan-process_8ipf.html#afed227ae79873fd32c96afbf606d1965":[9,0,2,40],
|
||||
"pearl-anglescan-process_8ipf.html#afedad38a418cee5d1fb9e08aae2160a0":[9,0,2,19],
|
||||
"pearl-anglescan-process_8ipf_source.html":[9,0,2],
|
||||
"pearl-anglescan-tracker_8ipf.html":[9,0,3],
|
||||
"pearl-anglescan-tracker_8ipf.html#a02271bf812a3e3f87c958f4c58e9f71b":[9,0,3,10],
|
||||
@@ -241,13 +249,5 @@ var NAVTREEINDEX0 =
|
||||
"pearl-anglescan-tracker_8ipf.html#a0b8ff36cf3c20b1c0db3217d9065f7cf":[9,0,3,39],
|
||||
"pearl-anglescan-tracker_8ipf.html#a150243e26e8adf8b354b8afde064136d":[9,0,3,12],
|
||||
"pearl-anglescan-tracker_8ipf.html#a20720748c82a7eaa4b02d4084a4219b2":[9,0,3,43],
|
||||
"pearl-anglescan-tracker_8ipf.html#a306b168cab2f9c4146cee87009e69f6d":[9,0,3,17],
|
||||
"pearl-anglescan-tracker_8ipf.html#a33e84ae8e13f405d466b28e83f608cb9":[9,0,3,13],
|
||||
"pearl-anglescan-tracker_8ipf.html#a35a5cd8a21b48be8d726c69eb5fca134":[9,0,3,0],
|
||||
"pearl-anglescan-tracker_8ipf.html#a37aaf2f08c3910bed554a10dd82616ec":[9,0,3,15],
|
||||
"pearl-anglescan-tracker_8ipf.html#a3844e7fd93b4f54aa52f084687c2106c":[9,0,3,16],
|
||||
"pearl-anglescan-tracker_8ipf.html#a3882038c0ad82396b6591fd756817535":[9,0,3,26],
|
||||
"pearl-anglescan-tracker_8ipf.html#a43d85b93bb42a67b8e8afb9afc8d8eae":[9,0,3,2],
|
||||
"pearl-anglescan-tracker_8ipf.html#a45e930b8eadd7cf6a5f664befd87d725":[9,0,3,24],
|
||||
"pearl-anglescan-tracker_8ipf.html#a4619cb98a75adb3c39ea3a62e524b793":[9,0,3,18]
|
||||
"pearl-anglescan-tracker_8ipf.html#a306b168cab2f9c4146cee87009e69f6d":[9,0,3,17]
|
||||
};
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
var NAVTREEINDEX1 =
|
||||
{
|
||||
"pearl-anglescan-tracker_8ipf.html#a33e84ae8e13f405d466b28e83f608cb9":[9,0,3,13],
|
||||
"pearl-anglescan-tracker_8ipf.html#a35a5cd8a21b48be8d726c69eb5fca134":[9,0,3,0],
|
||||
"pearl-anglescan-tracker_8ipf.html#a37aaf2f08c3910bed554a10dd82616ec":[9,0,3,15],
|
||||
"pearl-anglescan-tracker_8ipf.html#a3844e7fd93b4f54aa52f084687c2106c":[9,0,3,16],
|
||||
"pearl-anglescan-tracker_8ipf.html#a3882038c0ad82396b6591fd756817535":[9,0,3,26],
|
||||
"pearl-anglescan-tracker_8ipf.html#a43d85b93bb42a67b8e8afb9afc8d8eae":[9,0,3,2],
|
||||
"pearl-anglescan-tracker_8ipf.html#a45e930b8eadd7cf6a5f664befd87d725":[9,0,3,24],
|
||||
"pearl-anglescan-tracker_8ipf.html#a4619cb98a75adb3c39ea3a62e524b793":[9,0,3,18],
|
||||
"pearl-anglescan-tracker_8ipf.html#a4bc40cded4d4d7676b084f7200ca5e0d":[9,0,3,31],
|
||||
"pearl-anglescan-tracker_8ipf.html#a4bde8b2fc39c61c0d5a6879f1d0ae115":[9,0,3,21],
|
||||
"pearl-anglescan-tracker_8ipf.html#a4c7a521b8f1a0769c09bfa4a1fca7dab":[9,0,3,44],
|
||||
@@ -30,71 +38,74 @@ var NAVTREEINDEX1 =
|
||||
"pearl-anglescan-tracker_8ipf.html#afaec8443094530fd1e723251e04c5dc9":[9,0,3,14],
|
||||
"pearl-anglescan-tracker_8ipf_source.html":[9,0,3],
|
||||
"pearl-area-display_8ipf.html":[9,0,4],
|
||||
"pearl-area-display_8ipf.html#a174177742fdce7f37027de8fa832b3bd":[9,0,4,36],
|
||||
"pearl-area-display_8ipf.html#a195b12857685c4e535a840c5db324b4a":[9,0,4,31],
|
||||
"pearl-area-display_8ipf.html#a1bf20e37ed3e9c76be8ebe448c68a048":[9,0,4,29],
|
||||
"pearl-area-display_8ipf.html#a2442bc044aaa12ab817a5f9fa300d1f8":[9,0,4,38],
|
||||
"pearl-area-display_8ipf.html#a24b17f99fafd8043ed3e4502000da316":[9,0,4,27],
|
||||
"pearl-area-display_8ipf.html#a27f0957d61f3c2d30a4854911b460c36":[9,0,4,0],
|
||||
"pearl-area-display_8ipf.html#a2b183a27ec795b0ec1f8efabe3068369":[9,0,4,32],
|
||||
"pearl-area-display_8ipf.html#a31461b664ec651a39442e9a46ffd88c9":[9,0,4,24],
|
||||
"pearl-area-display_8ipf.html#a48044f9ee518d47770e33ee9f381f204":[9,0,4,4],
|
||||
"pearl-area-display_8ipf.html#a48b08ab53729d9d0477deaceedef2769":[9,0,4,3],
|
||||
"pearl-area-display_8ipf.html#a4af98ec7af48a653c6fac716ea8fa505":[9,0,4,19],
|
||||
"pearl-area-display_8ipf.html#a4b76a98582f5997d3810f969dbb6c4ed":[9,0,4,28],
|
||||
"pearl-area-display_8ipf.html#a5657fc4dcd395aef637c19e8df57a418":[9,0,4,14],
|
||||
"pearl-area-display_8ipf.html#a6418a1b2d18b82cb71c0fecbd513a934":[9,0,4,5],
|
||||
"pearl-area-display_8ipf.html#a65b07e355df20cfb692dfb32f472b478":[9,0,4,7],
|
||||
"pearl-area-display_8ipf.html#a6cc0970b41ca197fa47263556fa2686a":[9,0,4,30],
|
||||
"pearl-area-display_8ipf.html#a6d20a8c6bf5ed143d375dee71fb3a6d5":[9,0,4,13],
|
||||
"pearl-area-display_8ipf.html#a72b57037abd27f65986034c0b4cc191e":[9,0,4,2],
|
||||
"pearl-area-display_8ipf.html#a7334815c60e2c11e2754c07489a62f4b":[9,0,4,18],
|
||||
"pearl-area-display_8ipf.html#a77a71985e716a300e0b61c233cd93f40":[9,0,4,21],
|
||||
"pearl-area-display_8ipf.html#a8411f0cfec3515f1ae4f0140efc14318":[9,0,4,22],
|
||||
"pearl-area-display_8ipf.html#a89a5e3e29a0cd09951dcdf13aa28d941":[9,0,4,15],
|
||||
"pearl-area-display_8ipf.html#a8cc3ea3bea4e851e4144140a2da42a03":[9,0,4,8],
|
||||
"pearl-area-display_8ipf.html#a8fad5aebaca72887d5898b4c421bcdae":[9,0,4,9],
|
||||
"pearl-area-display_8ipf.html#ab10a0d94991b9cd958557dbc48d70624":[9,0,4,37],
|
||||
"pearl-area-display_8ipf.html#ab8c9979c6f3ab95f983c2a525a69c035":[9,0,4,25],
|
||||
"pearl-area-display_8ipf.html#abaf229d75d9d579a559295795a6bc2e1":[9,0,4,17],
|
||||
"pearl-area-display_8ipf.html#abafc4f012b04592724109f4757cbe271":[9,0,4,34],
|
||||
"pearl-area-display_8ipf.html#abe702d40071e3c5e662eb8d47dd6d885":[9,0,4,26],
|
||||
"pearl-area-display_8ipf.html#ac5c7a25e9a8c0b001a429bae23639da9":[9,0,4,33],
|
||||
"pearl-area-display_8ipf.html#ace169e0824e6bddbd646972946edccbe":[9,0,4,35],
|
||||
"pearl-area-display_8ipf.html#ad2a84495ddac89bc8f4203fca56babfd":[9,0,4,16],
|
||||
"pearl-area-display_8ipf.html#ad3e190d1ec1b82ebef00c9f9ac44b50a":[9,0,4,11],
|
||||
"pearl-area-display_8ipf.html#ad79b37ab4fcf2cbdad6874813d93d4b1":[9,0,4,20],
|
||||
"pearl-area-display_8ipf.html#ae2b11295d2715e9af019513923c64570":[9,0,4,6],
|
||||
"pearl-area-display_8ipf.html#ae3b4756cdc12a4a4b15a770ba0069823":[9,0,4,1],
|
||||
"pearl-area-display_8ipf.html#aee051acfe6a3c8214118b78dfe4854fd":[9,0,4,12],
|
||||
"pearl-area-display_8ipf.html#af8d5e003fcff1f750685ed6f94717730":[9,0,4,10],
|
||||
"pearl-area-display_8ipf.html#afa2546f9cb03dfa8bf0cc9966f0b7a45":[9,0,4,23],
|
||||
"pearl-area-display_8ipf.html#a174177742fdce7f37027de8fa832b3bd":[9,0,4,37],
|
||||
"pearl-area-display_8ipf.html#a195b12857685c4e535a840c5db324b4a":[9,0,4,32],
|
||||
"pearl-area-display_8ipf.html#a1bf20e37ed3e9c76be8ebe448c68a048":[9,0,4,30],
|
||||
"pearl-area-display_8ipf.html#a2442bc044aaa12ab817a5f9fa300d1f8":[9,0,4,39],
|
||||
"pearl-area-display_8ipf.html#a24b17f99fafd8043ed3e4502000da316":[9,0,4,28],
|
||||
"pearl-area-display_8ipf.html#a27f0957d61f3c2d30a4854911b460c36":[9,0,4,1],
|
||||
"pearl-area-display_8ipf.html#a2b183a27ec795b0ec1f8efabe3068369":[9,0,4,33],
|
||||
"pearl-area-display_8ipf.html#a31461b664ec651a39442e9a46ffd88c9":[9,0,4,25],
|
||||
"pearl-area-display_8ipf.html#a48044f9ee518d47770e33ee9f381f204":[9,0,4,5],
|
||||
"pearl-area-display_8ipf.html#a48b08ab53729d9d0477deaceedef2769":[9,0,4,4],
|
||||
"pearl-area-display_8ipf.html#a4af98ec7af48a653c6fac716ea8fa505":[9,0,4,20],
|
||||
"pearl-area-display_8ipf.html#a4b76a98582f5997d3810f969dbb6c4ed":[9,0,4,29],
|
||||
"pearl-area-display_8ipf.html#a5657fc4dcd395aef637c19e8df57a418":[9,0,4,15],
|
||||
"pearl-area-display_8ipf.html#a6418a1b2d18b82cb71c0fecbd513a934":[9,0,4,6],
|
||||
"pearl-area-display_8ipf.html#a65b07e355df20cfb692dfb32f472b478":[9,0,4,8],
|
||||
"pearl-area-display_8ipf.html#a6cc0970b41ca197fa47263556fa2686a":[9,0,4,31],
|
||||
"pearl-area-display_8ipf.html#a6d20a8c6bf5ed143d375dee71fb3a6d5":[9,0,4,14],
|
||||
"pearl-area-display_8ipf.html#a72b57037abd27f65986034c0b4cc191e":[9,0,4,3],
|
||||
"pearl-area-display_8ipf.html#a7334815c60e2c11e2754c07489a62f4b":[9,0,4,19],
|
||||
"pearl-area-display_8ipf.html#a77a71985e716a300e0b61c233cd93f40":[9,0,4,22],
|
||||
"pearl-area-display_8ipf.html#a8411f0cfec3515f1ae4f0140efc14318":[9,0,4,23],
|
||||
"pearl-area-display_8ipf.html#a89a5e3e29a0cd09951dcdf13aa28d941":[9,0,4,16],
|
||||
"pearl-area-display_8ipf.html#a8cc3ea3bea4e851e4144140a2da42a03":[9,0,4,9],
|
||||
"pearl-area-display_8ipf.html#a8fad5aebaca72887d5898b4c421bcdae":[9,0,4,10],
|
||||
"pearl-area-display_8ipf.html#ab10a0d94991b9cd958557dbc48d70624":[9,0,4,38],
|
||||
"pearl-area-display_8ipf.html#ab8c9979c6f3ab95f983c2a525a69c035":[9,0,4,26],
|
||||
"pearl-area-display_8ipf.html#abaf229d75d9d579a559295795a6bc2e1":[9,0,4,18],
|
||||
"pearl-area-display_8ipf.html#abafc4f012b04592724109f4757cbe271":[9,0,4,35],
|
||||
"pearl-area-display_8ipf.html#abe702d40071e3c5e662eb8d47dd6d885":[9,0,4,27],
|
||||
"pearl-area-display_8ipf.html#ac5c7a25e9a8c0b001a429bae23639da9":[9,0,4,34],
|
||||
"pearl-area-display_8ipf.html#ace169e0824e6bddbd646972946edccbe":[9,0,4,36],
|
||||
"pearl-area-display_8ipf.html#ad2a84495ddac89bc8f4203fca56babfd":[9,0,4,17],
|
||||
"pearl-area-display_8ipf.html#ad3e190d1ec1b82ebef00c9f9ac44b50a":[9,0,4,12],
|
||||
"pearl-area-display_8ipf.html#ad79b37ab4fcf2cbdad6874813d93d4b1":[9,0,4,21],
|
||||
"pearl-area-display_8ipf.html#ae2b11295d2715e9af019513923c64570":[9,0,4,7],
|
||||
"pearl-area-display_8ipf.html#ae3b4756cdc12a4a4b15a770ba0069823":[9,0,4,2],
|
||||
"pearl-area-display_8ipf.html#aee051acfe6a3c8214118b78dfe4854fd":[9,0,4,13],
|
||||
"pearl-area-display_8ipf.html#af8d5e003fcff1f750685ed6f94717730":[9,0,4,11],
|
||||
"pearl-area-display_8ipf.html#af9bd125ed4fb4ada10b78bca2607b44d":[9,0,4,0],
|
||||
"pearl-area-display_8ipf.html#afa2546f9cb03dfa8bf0cc9966f0b7a45":[9,0,4,24],
|
||||
"pearl-area-display_8ipf_source.html":[9,0,4],
|
||||
"pearl-area-import_8ipf.html":[9,0,5],
|
||||
"pearl-area-import_8ipf.html#a1fdcc02340375afe8d8cd7537c6e9cfb":[9,0,5,16],
|
||||
"pearl-area-import_8ipf.html#a227e4db1c51a910dcf86d355473fe74e":[9,0,5,17],
|
||||
"pearl-area-import_8ipf.html#a1fdcc02340375afe8d8cd7537c6e9cfb":[9,0,5,17],
|
||||
"pearl-area-import_8ipf.html#a227e4db1c51a910dcf86d355473fe74e":[9,0,5,18],
|
||||
"pearl-area-import_8ipf.html#a27a72a3901a5342ca9dea02e3219631c":[9,0,5,3],
|
||||
"pearl-area-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6":[9,0,5,24],
|
||||
"pearl-area-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6":[9,0,5,26],
|
||||
"pearl-area-import_8ipf.html#a3f2ac36f961941e46e80a775de8300e5":[9,0,5,12],
|
||||
"pearl-area-import_8ipf.html#a44d495fba0dd2b82dec13760a07fd226":[9,0,5,23],
|
||||
"pearl-area-import_8ipf.html#a44d495fba0dd2b82dec13760a07fd226":[9,0,5,25],
|
||||
"pearl-area-import_8ipf.html#a4a9741d1c19b10bb98b73bd5163a497b":[9,0,5,8],
|
||||
"pearl-area-import_8ipf.html#a774751d1857ea6946a942448dc913128":[9,0,5,15],
|
||||
"pearl-area-import_8ipf.html#a4efc9178892310c9e2caf40c61d71bd7":[9,0,5,24],
|
||||
"pearl-area-import_8ipf.html#a774751d1857ea6946a942448dc913128":[9,0,5,16],
|
||||
"pearl-area-import_8ipf.html#a84dc7f466b42dde5d96c49827b2122cf":[9,0,5,6],
|
||||
"pearl-area-import_8ipf.html#a931a7bfaaf75d308a0ce3c74ffc751bc":[9,0,5,7],
|
||||
"pearl-area-import_8ipf.html#a9439de3b676e686eeca4e6b2588c01a6":[9,0,5,18],
|
||||
"pearl-area-import_8ipf.html#a98804ce23a5c2c314ac243baa0824424":[9,0,5,19],
|
||||
"pearl-area-import_8ipf.html#a9439de3b676e686eeca4e6b2588c01a6":[9,0,5,19],
|
||||
"pearl-area-import_8ipf.html#a98804ce23a5c2c314ac243baa0824424":[9,0,5,20],
|
||||
"pearl-area-import_8ipf.html#a98f29671bdce6a5981e8865de8b9d483":[9,0,5,10],
|
||||
"pearl-area-import_8ipf.html#a98f9339cd2fae80d0d92451df88395aa":[9,0,5,11],
|
||||
"pearl-area-import_8ipf.html#aa3cdc56096a6a1bf2a2d80a6245a36d2":[9,0,5,21],
|
||||
"pearl-area-import_8ipf.html#aa3cdc56096a6a1bf2a2d80a6245a36d2":[9,0,5,22],
|
||||
"pearl-area-import_8ipf.html#aa5e29dc1a380311d00a5f85be867e47b":[9,0,5,4],
|
||||
"pearl-area-import_8ipf.html#ab1040bf272c69dc69777b2f91df41fab":[9,0,5,5],
|
||||
"pearl-area-import_8ipf.html#ac76d5ba94a3d7c864437420d80c77064":[9,0,5,9],
|
||||
"pearl-area-import_8ipf.html#ac98a5f2d12b559aba4e53192c49a7743":[9,0,5,22],
|
||||
"pearl-area-import_8ipf.html#ac98a5f2d12b559aba4e53192c49a7743":[9,0,5,23],
|
||||
"pearl-area-import_8ipf.html#acde16dc7a393250b17165344f865f7b5":[9,0,5,13],
|
||||
"pearl-area-import_8ipf.html#acfa6d2675e63f4f686289ef853b262a9":[9,0,5,14],
|
||||
"pearl-area-import_8ipf.html#ad28dbbba73e553f7b5dcf8baf1c86786":[9,0,5,1],
|
||||
"pearl-area-import_8ipf.html#ade69cb0f82e0c9cf6082d5fcc29f742f":[9,0,5,2],
|
||||
"pearl-area-import_8ipf.html#ae2cfa1ac6651cfc3fb0dfce03494995b":[9,0,5,20],
|
||||
"pearl-area-import_8ipf.html#ae2cfa1ac6651cfc3fb0dfce03494995b":[9,0,5,21],
|
||||
"pearl-area-import_8ipf.html#ae88bc41882fd16c94c04d856f3e062e4":[9,0,5,15],
|
||||
"pearl-area-import_8ipf.html#aedff2e67d2e1bac907f2eaf24a6e5c3c":[9,0,5,0],
|
||||
"pearl-area-import_8ipf_source.html":[9,0,5],
|
||||
"pearl-area-profiles_8ipf.html":[9,0,6],
|
||||
@@ -117,137 +128,126 @@ var NAVTREEINDEX1 =
|
||||
"pearl-arpes_8ipf.html#a8e4eacc6efacf2c65615c1ea72d722ed":[9,0,7,0],
|
||||
"pearl-arpes_8ipf.html#ac41f24572943dac2b40c255797a6c7a8":[9,0,7,1],
|
||||
"pearl-arpes_8ipf_source.html":[9,0,7],
|
||||
"pearl-data-explorer_8ipf.html":[9,0,8],
|
||||
"pearl-data-explorer_8ipf.html#a001074020ad32b290d390a450a389c69":[9,0,8,16],
|
||||
"pearl-data-explorer_8ipf.html#a00bf5267a40b2b3d760c64d73e139878":[9,0,8,53],
|
||||
"pearl-data-explorer_8ipf.html#a02a64144b7ed2c1bc230e265c55e81a1":[9,0,8,2],
|
||||
"pearl-data-explorer_8ipf.html#a04cc0b9d5e3a649ba3514fcbf126eefe":[9,0,8,49],
|
||||
"pearl-data-explorer_8ipf.html#a0adc1b370fd3bf230b61b094b3c0accb":[9,0,8,17],
|
||||
"pearl-data-explorer_8ipf.html#a0c162346b59b0f66d34ee26ce5fe1e52":[9,0,8,29],
|
||||
"pearl-data-explorer_8ipf.html#a0c839d5f8f49e6937a6532bba3ef3714":[9,0,8,23],
|
||||
"pearl-data-explorer_8ipf.html#a1731f8e1507d90e285885723ae32ba13":[9,0,8,37],
|
||||
"pearl-data-explorer_8ipf.html#a181ccce237172811baf3de5a7a06370d":[9,0,8,50],
|
||||
"pearl-data-explorer_8ipf.html#a1868754e64cb1448e564c0936e78574d":[9,0,8,11],
|
||||
"pearl-data-explorer_8ipf.html#a1bbf3e1592f3344f3628526fa549dfdf":[9,0,8,22],
|
||||
"pearl-data-explorer_8ipf.html#a1d7f4ad59b81ecd84bb63cfabd9f24dc":[9,0,8,43],
|
||||
"pearl-data-explorer_8ipf.html#a200e7ba052fbce4614fb4254701646ab":[9,0,8,44],
|
||||
"pearl-data-explorer_8ipf.html#a2178d5acf21fe4372ecc06224bec28ba":[9,0,8,28],
|
||||
"pearl-data-explorer_8ipf.html#a26f2f2bf5efc39dabb2a01abcc559e3e":[9,0,8,24],
|
||||
"pearl-data-explorer_8ipf.html#a3232c51a8c19eaf86b9bc67352967a9f":[9,0,8,36],
|
||||
"pearl-data-explorer_8ipf.html#a340f334c6caa966ee1eb891614e57b5b":[9,0,8,39],
|
||||
"pearl-data-explorer_8ipf.html#a3bbb332e319ef7ec5f0fe2d16afaf005":[9,0,8,5],
|
||||
"pearl-data-explorer_8ipf.html#a415e4867be1ee37d84fd609b06f6dcb8":[9,0,8,33],
|
||||
"pearl-data-explorer_8ipf.html#a457d2257ffd5880ab858fa583a5d1c99":[9,0,8,40],
|
||||
"pearl-data-explorer_8ipf.html#a45be265789a5260e3daa05eca0ec309e":[9,0,8,14],
|
||||
"pearl-data-explorer_8ipf.html#a45e930b8eadd7cf6a5f664befd87d725":[9,0,8,18],
|
||||
"pearl-data-explorer_8ipf.html#a4633885afab755fbc5d262178b9ddcb8":[9,0,8,38],
|
||||
"pearl-data-explorer_8ipf.html#a4db79d04c74beb1af71b72916f8f0362":[9,0,8,46],
|
||||
"pearl-data-explorer_8ipf.html#a4ef196f752bb5780ed4f4a588f9ebc81":[9,0,8,1],
|
||||
"pearl-data-explorer_8ipf.html#a505ebda6bdecc4120e01766d7aedaf5d":[9,0,8,42],
|
||||
"pearl-data-explorer_8ipf.html#a53af8689144e3aeb27ca177db5dd0c22":[9,0,8,51],
|
||||
"pearl-data-explorer_8ipf.html#a5660c6f5f78d880b0805bad4eefed1d5":[9,0,8,3],
|
||||
"pearl-data-explorer_8ipf.html#a5a7d3c00360944c00f236900b992694d":[9,0,8,41],
|
||||
"pearl-data-explorer_8ipf.html#a5b824531904179a94e0eaa3ffa09172e":[9,0,8,32],
|
||||
"pearl-data-explorer_8ipf.html#a614e89b9c06511144ccb380e61cc7bd6":[9,0,8,21],
|
||||
"pearl-data-explorer_8ipf.html#a68d38e9464f7d13520ec040cffdf5c3b":[9,0,8,35],
|
||||
"pearl-data-explorer_8ipf.html#a6aa44ff12b8530adbaaaf7405b1a68ba":[9,0,8,8],
|
||||
"pearl-data-explorer_8ipf.html#a6b5e9729ee6dedbb217c741639a168ed":[9,0,8,19],
|
||||
"pearl-data-explorer_8ipf.html#a6b642da731bde1029e0fa2ff69d5fb06":[9,0,8,4],
|
||||
"pearl-data-explorer_8ipf.html#a6e8eaf8c092f5da60bd425f9bd8bf178":[9,0,8,34],
|
||||
"pearl-data-explorer_8ipf.html#a71f9c277d310c3f4e7739be69dad0ab5":[9,0,8,47],
|
||||
"pearl-data-explorer_8ipf.html#a742902dfaf2246f10b70f52805c6df1f":[9,0,8,9],
|
||||
"pearl-data-explorer_8ipf.html#a74c69e870329c5dd3b08f92bdeb21d87":[9,0,8,27],
|
||||
"pearl-data-explorer_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b":[9,0,8,55],
|
||||
"pearl-data-explorer_8ipf.html#a8a923d7095071e7e6f99018379807732":[9,0,8,31],
|
||||
"pearl-data-explorer_8ipf.html#a8ec37ab6c651003957d7e1ba728de89e":[9,0,8,20],
|
||||
"pearl-data-explorer_8ipf.html#a92c27964d49ab8bcd7afc858ebe214a3":[9,0,8,26],
|
||||
"pearl-data-explorer_8ipf.html#a98e327fa65bbcb3cd7c97545f7201afe":[9,0,8,25],
|
||||
"pearl-data-explorer_8ipf.html#a9cefcdc49b2169e99c743b0a683ed3a6":[9,0,8,7],
|
||||
"pearl-data-explorer_8ipf.html#ab7e3b3a0a901f7559ee9f5affb9a6fca":[9,0,8,30],
|
||||
"pearl-data-explorer_8ipf.html#ac729557a307bddd2f2ad298199976c01":[9,0,8,45],
|
||||
"pearl-data-explorer_8ipf.html#aca457d1f4414d20a911254b1de13ebbb":[9,0,8,54],
|
||||
"pearl-data-explorer_8ipf.html#ad50f4c430d8bfe0fb5a1356cd9b84bf4":[9,0,8,48],
|
||||
"pearl-data-explorer_8ipf.html#ad61aa85dcf24dbf7e093dac3d0bf6f19":[9,0,8,10],
|
||||
"pearl-data-explorer_8ipf.html#ad6cfb2c00d5112add84542a25eb68b19":[9,0,8,0],
|
||||
"pearl-data-explorer_8ipf.html#ad720655ff881ddecae2e1b8afed58fa0":[9,0,8,52],
|
||||
"pearl-data-explorer_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5":[9,0,8,12],
|
||||
"pearl-data-explorer_8ipf.html#add62ff5193206c9f207952bcd72dac88":[9,0,8,6],
|
||||
"pearl-data-explorer_8ipf.html#ae79a57a41c734ce8836f427b81011b5d":[9,0,8,15],
|
||||
"pearl-data-explorer_8ipf.html#af9f8769ca2989f152f23d976d1467a48":[9,0,8,13],
|
||||
"pearl-data-explorer_8ipf_source.html":[9,0,8],
|
||||
"pearl-elog_8ipf.html":[9,0,9],
|
||||
"pearl-elog_8ipf.html#a05301d497e4796e5fb5adde3728ba971":[9,0,9,16],
|
||||
"pearl-elog_8ipf.html#a1376b5c9e6b1180a09961bc3296849ae":[9,0,9,26],
|
||||
"pearl-elog_8ipf.html#a14f8376a0485aa654ccf3d2f30ab4d01":[9,0,9,6],
|
||||
"pearl-elog_8ipf.html#a2417d079483f773f8231c5f2caba6cf0":[9,0,9,12],
|
||||
"pearl-elog_8ipf.html#a28eb44739e7d5c7f9899a69afa231b8e":[9,0,9,57],
|
||||
"pearl-elog_8ipf.html#a3498e65d04de046481170b49d4e3d0d6":[9,0,9,55],
|
||||
"pearl-elog_8ipf.html#a356bebea8eb41c9ac3ea2148af22707f":[9,0,9,37],
|
||||
"pearl-elog_8ipf.html#a39a1f418c8a2f9a5e4ab976827d8efca":[9,0,9,46],
|
||||
"pearl-elog_8ipf.html#a3cc9074c84d684d207dfdf2045755df4":[9,0,9,25],
|
||||
"pearl-elog_8ipf.html#a3eac4012891c2813e401aee2c1134763":[9,0,9,19],
|
||||
"pearl-elog_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5":[9,0,9,0],
|
||||
"pearl-elog_8ipf.html#a4040736819edadf4b26982bcfdb9c7b9":[9,0,9,2],
|
||||
"pearl-elog_8ipf.html#a4088a48a8428629f120c08a419af62d6":[9,0,9,41],
|
||||
"pearl-elog_8ipf.html#a424460442afd5f6f853e68cd665ed785":[9,0,9,15],
|
||||
"pearl-elog_8ipf.html#a4986de01085dc5481500240ef7667419":[9,0,9,44],
|
||||
"pearl-elog_8ipf.html#a5306514bf7d1a582aec146256ae45a12":[9,0,9,40],
|
||||
"pearl-elog_8ipf.html#a5afeb893f92034532341ae51471dc2d2":[9,0,9,54],
|
||||
"pearl-elog_8ipf.html#a63aa38b624b66fe502505040c25bc0c3":[9,0,9,51],
|
||||
"pearl-elog_8ipf.html#a66e1200515eff8cd5c961572eccd7220":[9,0,9,29],
|
||||
"pearl-elog_8ipf.html#a6a9923c6465c91b1f9d1d97b090f424b":[9,0,9,50],
|
||||
"pearl-elog_8ipf.html#a6b2d6cf641c61120332ac1983b2f3846":[9,0,9,32],
|
||||
"pearl-elog_8ipf.html#a6da33f1bb2639cb912e9b25af25bf663":[9,0,9,42],
|
||||
"pearl-elog_8ipf.html#a6eca5f4fab999984df32b50dd669c0b1":[9,0,9,47],
|
||||
"pearl-elog_8ipf.html#a6fcae5eafc97bca9a637bd7800b13e25":[9,0,9,34],
|
||||
"pearl-elog_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b":[9,0,9,60],
|
||||
"pearl-elog_8ipf.html#a7990f2948d48aefe990271d1961df833":[9,0,9,39],
|
||||
"pearl-elog_8ipf.html#a7a4572f4f861f7eb46c932508d1164f9":[9,0,9,35],
|
||||
"pearl-elog_8ipf.html#a7ce92b03b6a786129959d44bf1112efa":[9,0,9,31],
|
||||
"pearl-elog_8ipf.html#a8251cea45c8d1f1993a4051a6d0760c4":[9,0,9,8],
|
||||
"pearl-elog_8ipf.html#a85cf9d39ea917860b463b1b4111705f2":[9,0,9,36],
|
||||
"pearl-elog_8ipf.html#a915905f2e57d0d9a25c75f39fcce485f":[9,0,9,58],
|
||||
"pearl-elog_8ipf.html#a91b5f51982d23a36d1760b8874b5736a":[9,0,9,3],
|
||||
"pearl-elog_8ipf.html#a92c27964d49ab8bcd7afc858ebe214a3":[9,0,9,38],
|
||||
"pearl-elog_8ipf.html#a96e4cbbdb0fd8c58d87b502dc1883664":[9,0,9,20],
|
||||
"pearl-elog_8ipf.html#a9c1cfd320e88e84dcf4f84bbcf3f46a5":[9,0,9,49],
|
||||
"pearl-elog_8ipf.html#aa1dfae6d78a367d50ee8fc1ffe9cb69b":[9,0,9,4],
|
||||
"pearl-elog_8ipf.html#aa7a3988440bb6d73573b50a4698a0e75":[9,0,9,48],
|
||||
"pearl-elog_8ipf.html#aaca820a0149ce6a0e843ca72b9c9e7ab":[9,0,9,18],
|
||||
"pearl-elog_8ipf.html#aae61ff4d4a4d83dfc55af45d9ed1cbc3":[9,0,9,53],
|
||||
"pearl-elog_8ipf.html#ab2558ef5cd5e5dfba410bd58ed258b64":[9,0,9,24],
|
||||
"pearl-elog_8ipf.html#ab39637298c93b7aefd67febf3a4e7672":[9,0,9,5],
|
||||
"pearl-elog_8ipf.html#ab6d97edbf33e8ec039b34ff756e7ab93":[9,0,9,17],
|
||||
"pearl-elog_8ipf.html#abd15431defaec6d770cc8cab2a40e6b0":[9,0,9,43],
|
||||
"pearl-elog_8ipf.html#ac2f76abed8cfaa7ac02a46c0b89004f0":[9,0,9,14],
|
||||
"pearl-elog_8ipf.html#ac45196cb9ce8b43b76c9daf67689c49a":[9,0,9,27],
|
||||
"pearl-elog_8ipf.html#ac729557a307bddd2f2ad298199976c01":[9,0,9,45],
|
||||
"pearl-elog_8ipf.html#ac8b61eefed231018cc36d47e95bd8c22":[9,0,9,11],
|
||||
"pearl-elog_8ipf.html#aca457d1f4414d20a911254b1de13ebbb":[9,0,9,59],
|
||||
"pearl-elog_8ipf.html#acbba78d869a543edf7c2b80d7a8d2344":[9,0,9,1],
|
||||
"pearl-elog_8ipf.html#ace94356f691cbe343761aabd67ced23c":[9,0,9,30],
|
||||
"pearl-elog_8ipf.html#acedf0c8ae34e9ebadd6fa0d9d1353aa4":[9,0,9,22],
|
||||
"pearl-elog_8ipf.html#ad1a72c63f269b2e22b21a72d1ef3b279":[9,0,9,28],
|
||||
"pearl-elog_8ipf.html#ad4472ea917691c41ad0b4ea6f36010a5":[9,0,9,7],
|
||||
"pearl-elog_8ipf.html#ad7640d06f004ecd4a8980ea29d24dcbe":[9,0,9,10],
|
||||
"pearl-elog_8ipf.html#addbdec64930e9c1e417b16b25df8c723":[9,0,9,52],
|
||||
"pearl-elog_8ipf.html#adeff6678e57313cb218824f06d32b5ec":[9,0,9,9],
|
||||
"pearl-elog_8ipf.html#ae824bbf81f8b7d16b36b53e3f3d85f69":[9,0,9,33],
|
||||
"pearl-elog_8ipf.html#af34e46263aa50843f98f755988f9ab5c":[9,0,9,56],
|
||||
"pearl-elog_8ipf.html#af652f6f257be1ee749fe788d1b03f75f":[9,0,9,13],
|
||||
"pearl-elog_8ipf.html#af8b1ea711208bcc2cd1647abe04131dc":[9,0,9,21],
|
||||
"pearl-elog_8ipf.html#afbace5ffc3167b42b09657ce6cc854ca":[9,0,9,23],
|
||||
"pearl-elog_8ipf_source.html":[9,0,9],
|
||||
"pearl-fitfuncs_8ipf.html":[9,0,10],
|
||||
"pearl-fitfuncs_8ipf.html#a02368cc4adfbd746cd2f1e7d73884a61":[9,0,10,20],
|
||||
"pearl-fitfuncs_8ipf.html#a13a5ee22049d9a3379cd6e55654e70a3":[9,0,10,1],
|
||||
"pearl-fitfuncs_8ipf.html#a1520bd078ef77fd16ba20e95dbc6829d":[9,0,10,15],
|
||||
"pearl-fitfuncs_8ipf.html#a1e729418252bf0d05ea6ec5cbd65b834":[9,0,10,10],
|
||||
"pearl-fitfuncs_8ipf.html#a24cd6a0c96ef8c720e371bb31ac0a479":[9,0,10,2],
|
||||
"pearl-fitfuncs_8ipf.html#a2c6547164c0b46efecf4d372ea04c263":[9,0,10,17],
|
||||
"pearl-fitfuncs_8ipf.html#a3a94468da285a31eed5e990cd90e5cdf":[9,0,10,18],
|
||||
"pearl-fitfuncs_8ipf.html#a4d20215153c0e0cee3870dfceded8bc9":[9,0,10,13],
|
||||
"pearl-fitfuncs_8ipf.html#a5a2a03026b88f3dd99214ab1b26e6f80":[9,0,10,12],
|
||||
"pearl-fitfuncs_8ipf.html#a709f7c4585b1d850ea8aae1885ac18cb":[9,0,10,3],
|
||||
"pearl-fitfuncs_8ipf.html#a819902ab9f541b75a0fd33a7b52465d0":[9,0,10,14]
|
||||
"pearl-compat_8ipf.html":[9,0,8],
|
||||
"pearl-compat_8ipf.html#aa1f59acc532c7eee75c83b70ee1feaa9":[9,0,8,0],
|
||||
"pearl-compat_8ipf_source.html":[9,0,8],
|
||||
"pearl-data-explorer_8ipf.html":[9,0,9],
|
||||
"pearl-data-explorer_8ipf.html#a001074020ad32b290d390a450a389c69":[9,0,9,15],
|
||||
"pearl-data-explorer_8ipf.html#a00307dffd6f272f13acfe4dea99a81d4":[9,0,9,57],
|
||||
"pearl-data-explorer_8ipf.html#a00bf5267a40b2b3d760c64d73e139878":[9,0,9,65],
|
||||
"pearl-data-explorer_8ipf.html#a01e48e67a22dc56851447bd77abecbe1":[9,0,9,7],
|
||||
"pearl-data-explorer_8ipf.html#a02a64144b7ed2c1bc230e265c55e81a1":[9,0,9,2],
|
||||
"pearl-data-explorer_8ipf.html#a04cc0b9d5e3a649ba3514fcbf126eefe":[9,0,9,61],
|
||||
"pearl-data-explorer_8ipf.html#a0adc1b370fd3bf230b61b094b3c0accb":[9,0,9,17],
|
||||
"pearl-data-explorer_8ipf.html#a0c162346b59b0f66d34ee26ce5fe1e52":[9,0,9,38],
|
||||
"pearl-data-explorer_8ipf.html#a0e1e23060294bd4b18980e59229c70ed":[9,0,9,36],
|
||||
"pearl-data-explorer_8ipf.html#a0f7473343cf773af9efedee1a18ac5db":[9,0,9,3],
|
||||
"pearl-data-explorer_8ipf.html#a166273677188a66c25a84616c6f4baa9":[9,0,9,43],
|
||||
"pearl-data-explorer_8ipf.html#a1731f8e1507d90e285885723ae32ba13":[9,0,9,46],
|
||||
"pearl-data-explorer_8ipf.html#a181ccce237172811baf3de5a7a06370d":[9,0,9,63],
|
||||
"pearl-data-explorer_8ipf.html#a1868754e64cb1448e564c0936e78574d":[9,0,9,9],
|
||||
"pearl-data-explorer_8ipf.html#a1d7f4ad59b81ecd84bb63cfabd9f24dc":[9,0,9,51],
|
||||
"pearl-data-explorer_8ipf.html#a200e7ba052fbce4614fb4254701646ab":[9,0,9,52],
|
||||
"pearl-data-explorer_8ipf.html#a2178d5acf21fe4372ecc06224bec28ba":[9,0,9,37],
|
||||
"pearl-data-explorer_8ipf.html#a28921b185d4e6fbe9a7a689757269f19":[9,0,9,19],
|
||||
"pearl-data-explorer_8ipf.html#a3232c51a8c19eaf86b9bc67352967a9f":[9,0,9,45],
|
||||
"pearl-data-explorer_8ipf.html#a36fd730f2d057513179dd59f8fddaf75":[9,0,9,27],
|
||||
"pearl-data-explorer_8ipf.html#a384a37c2865baf5c21b63cff2488c3b3":[9,0,9,26],
|
||||
"pearl-data-explorer_8ipf.html#a3fd06ac9aa62de7f00e10ce749ba12c9":[9,0,9,8],
|
||||
"pearl-data-explorer_8ipf.html#a435adef620193e09110ff69ca8d106de":[9,0,9,32],
|
||||
"pearl-data-explorer_8ipf.html#a457d2257ffd5880ab858fa583a5d1c99":[9,0,9,48],
|
||||
"pearl-data-explorer_8ipf.html#a45be265789a5260e3daa05eca0ec309e":[9,0,9,12],
|
||||
"pearl-data-explorer_8ipf.html#a45e930b8eadd7cf6a5f664befd87d725":[9,0,9,29],
|
||||
"pearl-data-explorer_8ipf.html#a4633885afab755fbc5d262178b9ddcb8":[9,0,9,47],
|
||||
"pearl-data-explorer_8ipf.html#a4c7a521b8f1a0769c09bfa4a1fca7dab":[9,0,9,67],
|
||||
"pearl-data-explorer_8ipf.html#a4db79d04c74beb1af71b72916f8f0362":[9,0,9,58],
|
||||
"pearl-data-explorer_8ipf.html#a4ef196f752bb5780ed4f4a588f9ebc81":[9,0,9,1],
|
||||
"pearl-data-explorer_8ipf.html#a505ebda6bdecc4120e01766d7aedaf5d":[9,0,9,50],
|
||||
"pearl-data-explorer_8ipf.html#a53af8689144e3aeb27ca177db5dd0c22":[9,0,9,64],
|
||||
"pearl-data-explorer_8ipf.html#a54be4e40b17906c281cdf649d6ce537e":[9,0,9,21],
|
||||
"pearl-data-explorer_8ipf.html#a57e21bffee4cd64f2ea1efd9cc958bf1":[9,0,9,60],
|
||||
"pearl-data-explorer_8ipf.html#a5a7d3c00360944c00f236900b992694d":[9,0,9,49],
|
||||
"pearl-data-explorer_8ipf.html#a5b824531904179a94e0eaa3ffa09172e":[9,0,9,41],
|
||||
"pearl-data-explorer_8ipf.html#a5d0c796365e8a24683c73e2b29571018":[9,0,9,25],
|
||||
"pearl-data-explorer_8ipf.html#a614e89b9c06511144ccb380e61cc7bd6":[9,0,9,31],
|
||||
"pearl-data-explorer_8ipf.html#a638a13044aede37cabe0c2c7a7c0cb06":[9,0,9,42],
|
||||
"pearl-data-explorer_8ipf.html#a64bd3e5e68b30c94db00c58fa3be3f0d":[9,0,9,4],
|
||||
"pearl-data-explorer_8ipf.html#a66043ccbe2e8dda258e639cb7a231537":[9,0,9,18],
|
||||
"pearl-data-explorer_8ipf.html#a67cd1a025e5428d443027c1f57eaec09":[9,0,9,14],
|
||||
"pearl-data-explorer_8ipf.html#a6aa44ff12b8530adbaaaf7405b1a68ba":[9,0,9,6],
|
||||
"pearl-data-explorer_8ipf.html#a6b5e9729ee6dedbb217c741639a168ed":[9,0,9,30],
|
||||
"pearl-data-explorer_8ipf.html#a6e8eaf8c092f5da60bd425f9bd8bf178":[9,0,9,44],
|
||||
"pearl-data-explorer_8ipf.html#a70150946799d759473b409b3371e3ae2":[9,0,9,10],
|
||||
"pearl-data-explorer_8ipf.html#a71f9c277d310c3f4e7739be69dad0ab5":[9,0,9,59],
|
||||
"pearl-data-explorer_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b":[9,0,9,66],
|
||||
"pearl-data-explorer_8ipf.html#a77047115739da6d28055f7fd44c9fd2c":[9,0,9,13],
|
||||
"pearl-data-explorer_8ipf.html#a7c36ce6ccfaa77cf7a6b68b9014c1b9b":[9,0,9,24],
|
||||
"pearl-data-explorer_8ipf.html#a844467a592e5b26b2324326f22b7da89":[9,0,9,0],
|
||||
"pearl-data-explorer_8ipf.html#a896081071fffecdeff09ae4c9d6e84cb":[9,0,9,20],
|
||||
"pearl-data-explorer_8ipf.html#a8a923d7095071e7e6f99018379807732":[9,0,9,40],
|
||||
"pearl-data-explorer_8ipf.html#a92c27964d49ab8bcd7afc858ebe214a3":[9,0,9,35],
|
||||
"pearl-data-explorer_8ipf.html#a93c61109535e1644f5e53aabb895b48a":[9,0,9,56],
|
||||
"pearl-data-explorer_8ipf.html#a96a3ef643cc29948ba57a3bfa1339c4d":[9,0,9,33],
|
||||
"pearl-data-explorer_8ipf.html#a9cefcdc49b2169e99c743b0a683ed3a6":[9,0,9,5],
|
||||
"pearl-data-explorer_8ipf.html#aac8d96d9ccaeddab1cb0f463b01616cb":[9,0,9,55],
|
||||
"pearl-data-explorer_8ipf.html#ab7e3b3a0a901f7559ee9f5affb9a6fca":[9,0,9,39],
|
||||
"pearl-data-explorer_8ipf.html#aba2f8be504e49469194cc4b562be3a9c":[9,0,9,23],
|
||||
"pearl-data-explorer_8ipf.html#ababd5be120b526ca410c53b4a2ba3f8d":[9,0,9,34],
|
||||
"pearl-data-explorer_8ipf.html#ac477142f1949dc32d86663f1de4384e5":[9,0,9,54],
|
||||
"pearl-data-explorer_8ipf.html#ac729557a307bddd2f2ad298199976c01":[9,0,9,53],
|
||||
"pearl-data-explorer_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5":[9,0,9,11],
|
||||
"pearl-data-explorer_8ipf.html#ad95697e197428ff73a1a258ea3bb79b2":[9,0,9,22],
|
||||
"pearl-data-explorer_8ipf.html#ae02b954d90dc8f43c007cc3fb1a1ee16":[9,0,9,62],
|
||||
"pearl-data-explorer_8ipf.html#af4474f34647ec24f27f900226c6bb3bd":[9,0,9,16],
|
||||
"pearl-data-explorer_8ipf.html#af616e37167d5753b11e513bd03685ab8":[9,0,9,28],
|
||||
"pearl-data-explorer_8ipf_source.html":[9,0,9],
|
||||
"pearl-elog_8ipf.html":[9,0,10],
|
||||
"pearl-elog_8ipf.html#a05301d497e4796e5fb5adde3728ba971":[9,0,10,16],
|
||||
"pearl-elog_8ipf.html#a1376b5c9e6b1180a09961bc3296849ae":[9,0,10,26],
|
||||
"pearl-elog_8ipf.html#a14f8376a0485aa654ccf3d2f30ab4d01":[9,0,10,6],
|
||||
"pearl-elog_8ipf.html#a2417d079483f773f8231c5f2caba6cf0":[9,0,10,12],
|
||||
"pearl-elog_8ipf.html#a28eb44739e7d5c7f9899a69afa231b8e":[9,0,10,57],
|
||||
"pearl-elog_8ipf.html#a3498e65d04de046481170b49d4e3d0d6":[9,0,10,55],
|
||||
"pearl-elog_8ipf.html#a356bebea8eb41c9ac3ea2148af22707f":[9,0,10,37],
|
||||
"pearl-elog_8ipf.html#a39a1f418c8a2f9a5e4ab976827d8efca":[9,0,10,46],
|
||||
"pearl-elog_8ipf.html#a3cc9074c84d684d207dfdf2045755df4":[9,0,10,25],
|
||||
"pearl-elog_8ipf.html#a3eac4012891c2813e401aee2c1134763":[9,0,10,19],
|
||||
"pearl-elog_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5":[9,0,10,0],
|
||||
"pearl-elog_8ipf.html#a4040736819edadf4b26982bcfdb9c7b9":[9,0,10,2],
|
||||
"pearl-elog_8ipf.html#a4088a48a8428629f120c08a419af62d6":[9,0,10,41],
|
||||
"pearl-elog_8ipf.html#a424460442afd5f6f853e68cd665ed785":[9,0,10,15],
|
||||
"pearl-elog_8ipf.html#a4986de01085dc5481500240ef7667419":[9,0,10,44],
|
||||
"pearl-elog_8ipf.html#a5306514bf7d1a582aec146256ae45a12":[9,0,10,40],
|
||||
"pearl-elog_8ipf.html#a5afeb893f92034532341ae51471dc2d2":[9,0,10,54],
|
||||
"pearl-elog_8ipf.html#a63aa38b624b66fe502505040c25bc0c3":[9,0,10,51],
|
||||
"pearl-elog_8ipf.html#a66e1200515eff8cd5c961572eccd7220":[9,0,10,29],
|
||||
"pearl-elog_8ipf.html#a6a9923c6465c91b1f9d1d97b090f424b":[9,0,10,50],
|
||||
"pearl-elog_8ipf.html#a6b2d6cf641c61120332ac1983b2f3846":[9,0,10,32],
|
||||
"pearl-elog_8ipf.html#a6da33f1bb2639cb912e9b25af25bf663":[9,0,10,42],
|
||||
"pearl-elog_8ipf.html#a6eca5f4fab999984df32b50dd669c0b1":[9,0,10,47],
|
||||
"pearl-elog_8ipf.html#a6fcae5eafc97bca9a637bd7800b13e25":[9,0,10,34],
|
||||
"pearl-elog_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b":[9,0,10,60],
|
||||
"pearl-elog_8ipf.html#a7990f2948d48aefe990271d1961df833":[9,0,10,39],
|
||||
"pearl-elog_8ipf.html#a7a4572f4f861f7eb46c932508d1164f9":[9,0,10,35],
|
||||
"pearl-elog_8ipf.html#a7ce92b03b6a786129959d44bf1112efa":[9,0,10,31],
|
||||
"pearl-elog_8ipf.html#a8251cea45c8d1f1993a4051a6d0760c4":[9,0,10,8],
|
||||
"pearl-elog_8ipf.html#a85cf9d39ea917860b463b1b4111705f2":[9,0,10,36],
|
||||
"pearl-elog_8ipf.html#a915905f2e57d0d9a25c75f39fcce485f":[9,0,10,58],
|
||||
"pearl-elog_8ipf.html#a91b5f51982d23a36d1760b8874b5736a":[9,0,10,3],
|
||||
"pearl-elog_8ipf.html#a92c27964d49ab8bcd7afc858ebe214a3":[9,0,10,38],
|
||||
"pearl-elog_8ipf.html#a96e4cbbdb0fd8c58d87b502dc1883664":[9,0,10,20],
|
||||
"pearl-elog_8ipf.html#a9c1cfd320e88e84dcf4f84bbcf3f46a5":[9,0,10,49],
|
||||
"pearl-elog_8ipf.html#aa1dfae6d78a367d50ee8fc1ffe9cb69b":[9,0,10,4],
|
||||
"pearl-elog_8ipf.html#aa7a3988440bb6d73573b50a4698a0e75":[9,0,10,48],
|
||||
"pearl-elog_8ipf.html#aaca820a0149ce6a0e843ca72b9c9e7ab":[9,0,10,18],
|
||||
"pearl-elog_8ipf.html#aae61ff4d4a4d83dfc55af45d9ed1cbc3":[9,0,10,53],
|
||||
"pearl-elog_8ipf.html#ab2558ef5cd5e5dfba410bd58ed258b64":[9,0,10,24],
|
||||
"pearl-elog_8ipf.html#ab39637298c93b7aefd67febf3a4e7672":[9,0,10,5],
|
||||
"pearl-elog_8ipf.html#ab6d97edbf33e8ec039b34ff756e7ab93":[9,0,10,17],
|
||||
"pearl-elog_8ipf.html#abd15431defaec6d770cc8cab2a40e6b0":[9,0,10,43],
|
||||
"pearl-elog_8ipf.html#ac2f76abed8cfaa7ac02a46c0b89004f0":[9,0,10,14],
|
||||
"pearl-elog_8ipf.html#ac45196cb9ce8b43b76c9daf67689c49a":[9,0,10,27],
|
||||
"pearl-elog_8ipf.html#ac729557a307bddd2f2ad298199976c01":[9,0,10,45],
|
||||
"pearl-elog_8ipf.html#ac8b61eefed231018cc36d47e95bd8c22":[9,0,10,11],
|
||||
"pearl-elog_8ipf.html#aca457d1f4414d20a911254b1de13ebbb":[9,0,10,59]
|
||||
};
|
||||
|
||||
@@ -1,157 +1,211 @@
|
||||
var NAVTREEINDEX2 =
|
||||
{
|
||||
"pearl-fitfuncs_8ipf.html#a84a0278284332631682ce032018d1716":[9,0,10,19],
|
||||
"pearl-fitfuncs_8ipf.html#a9d110819fa3cd2173f3103724e394fdf":[9,0,10,7],
|
||||
"pearl-fitfuncs_8ipf.html#aaa48428994f8720a12e7237ef43e86ea":[9,0,10,5],
|
||||
"pearl-fitfuncs_8ipf.html#aad1418e71830c1ec71d7dd62b2ecf9ba":[9,0,10,16],
|
||||
"pearl-fitfuncs_8ipf.html#ab32134566b2573672ac674565deebd36":[9,0,10,11],
|
||||
"pearl-fitfuncs_8ipf.html#adb438f665e51a8dd104a37cfead04f27":[9,0,10,8],
|
||||
"pearl-fitfuncs_8ipf.html#ae2d138beb7cb39e8042487893095b461":[9,0,10,6],
|
||||
"pearl-fitfuncs_8ipf.html#af62cb65b7444ff60e956a45bd5d0ec27":[9,0,10,9],
|
||||
"pearl-fitfuncs_8ipf.html#aff8e8b103c32c8e723b57ce7ad5ef0f5":[9,0,10,4],
|
||||
"pearl-fitfuncs_8ipf_source.html":[9,0,10],
|
||||
"pearl-gui-tools_8ipf.html":[9,0,11],
|
||||
"pearl-gui-tools_8ipf.html#a97ad19d83cf0007c4bcf97a32164610f":[9,0,11,2],
|
||||
"pearl-gui-tools_8ipf.html#aaf29d090c81e00cf44af295193b24c5a":[9,0,11,0],
|
||||
"pearl-gui-tools_8ipf.html#aca0a41a0f28a35ac7535df30ddbd79fe":[9,0,11,1],
|
||||
"pearl-gui-tools_8ipf_source.html":[9,0,11],
|
||||
"pearl-matrix-import_8ipf.html":[9,0,12],
|
||||
"pearl-matrix-import_8ipf.html#a0dc1efa23739e10b7558543b166e95b9":[9,0,12,18],
|
||||
"pearl-matrix-import_8ipf.html#a1a46b042e41daffee61706ab2cf54351":[9,0,12,10],
|
||||
"pearl-matrix-import_8ipf.html#a3a0ba4a7ad64739303b705d92be53267":[9,0,12,13],
|
||||
"pearl-matrix-import_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5":[9,0,12,1],
|
||||
"pearl-matrix-import_8ipf.html#a45e930b8eadd7cf6a5f664befd87d725":[9,0,12,4],
|
||||
"pearl-matrix-import_8ipf.html#a4bfeaf81ac483df0a38b26b6a8cf74a6":[9,0,12,16],
|
||||
"pearl-matrix-import_8ipf.html#a59e72c849f4314aaa8339fd899665d85":[9,0,12,15],
|
||||
"pearl-matrix-import_8ipf.html#a6ac0c685976b0e0c1944fb616a4f3a3c":[9,0,12,11],
|
||||
"pearl-matrix-import_8ipf.html#a6aeef317fd468c88c99a274338c70ae3":[9,0,12,12],
|
||||
"pearl-matrix-import_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b":[9,0,12,23],
|
||||
"pearl-matrix-import_8ipf.html#a81b1d81261a32d0ed4cf79b81487f1b4":[9,0,12,6],
|
||||
"pearl-matrix-import_8ipf.html#a856478705a78e8105ea5d91a2228975b":[9,0,12,7],
|
||||
"pearl-matrix-import_8ipf.html#a893405a122fdf70429f4f75b8877ed7d":[9,0,12,8],
|
||||
"pearl-matrix-import_8ipf.html#a8acd2b03343ef9bdfecaa75e831392d1":[9,0,12,19],
|
||||
"pearl-matrix-import_8ipf.html#ab80101bc780dcbe94200e2446bce51d9":[9,0,12,20],
|
||||
"pearl-matrix-import_8ipf.html#abd09594d22038853e1e8021e0f36363d":[9,0,12,14],
|
||||
"pearl-matrix-import_8ipf.html#ac7790f06151821678a65ab0065a5323e":[9,0,12,3],
|
||||
"pearl-matrix-import_8ipf.html#aca457d1f4414d20a911254b1de13ebbb":[9,0,12,22],
|
||||
"pearl-matrix-import_8ipf.html#ad720655ff881ddecae2e1b8afed58fa0":[9,0,12,21],
|
||||
"pearl-matrix-import_8ipf.html#ad74d5afa71179728a9237d1ec5884482":[9,0,12,9],
|
||||
"pearl-matrix-import_8ipf.html#ad8532f1473f92539fe88217d5d6e3368":[9,0,12,17],
|
||||
"pearl-matrix-import_8ipf.html#ae2cfa1ac6651cfc3fb0dfce03494995b":[9,0,12,2],
|
||||
"pearl-matrix-import_8ipf.html#af0eaec901e06ce59250eb434539a0f6c":[9,0,12,5],
|
||||
"pearl-matrix-import_8ipf_source.html":[9,0,12],
|
||||
"pearl-menu_8ipf.html":[9,0,13],
|
||||
"pearl-menu_8ipf.html#a3404a53bf13a01c1e811d1af6c35b726":[9,0,13,8],
|
||||
"pearl-menu_8ipf.html#a3658ae687e12987fa1d70636849a060f":[9,0,13,5],
|
||||
"pearl-menu_8ipf.html#a61ded60be72959b00f22842afa37c56f":[9,0,13,7],
|
||||
"pearl-menu_8ipf.html#a74bc5da7843ee6c25f2d9c93d22a6ffa":[9,0,13,6],
|
||||
"pearl-menu_8ipf.html#aa70ef420d6fe0f6a433cd2371fc4a03d":[9,0,13,3],
|
||||
"pearl-menu_8ipf.html#aab34952c2f3b36f9ee8619eb901ff581":[9,0,13,2],
|
||||
"pearl-menu_8ipf.html#aad7d768680c6d8a9b8a7025c7e1ec75d":[9,0,13,0],
|
||||
"pearl-menu_8ipf.html#ac73a94f760455f19294a9f917b43f145":[9,0,13,1],
|
||||
"pearl-menu_8ipf.html#af6c9740540c6242eb7bf57fc49de82ab":[9,0,13,4],
|
||||
"pearl-menu_8ipf_source.html":[9,0,13],
|
||||
"pearl-otf-import_8ipf.html":[9,0,14],
|
||||
"pearl-otf-import_8ipf.html#a3632f8a5c0ee32a14a3e589b74a0c496":[9,0,14,4],
|
||||
"pearl-otf-import_8ipf.html#a44078e1d8f26e515539acb96973fc630":[9,0,14,2],
|
||||
"pearl-otf-import_8ipf.html#a603b71176ed838713ec555c440082e22":[9,0,14,5],
|
||||
"pearl-otf-import_8ipf.html#a715f9cf2d2b1ffb04f2f9a0e344a80ee":[9,0,14,7],
|
||||
"pearl-otf-import_8ipf.html#a882da254075e8d89f0117e491af90df0":[9,0,14,8],
|
||||
"pearl-otf-import_8ipf.html#aa47fc4b956ee84a993b6d285b628fe20":[9,0,14,6],
|
||||
"pearl-otf-import_8ipf.html#aba965b854836658aa00e3ec2b361d7c9":[9,0,14,9],
|
||||
"pearl-otf-import_8ipf.html#abd8897317366046dfb97c6ca53813d18":[9,0,14,3],
|
||||
"pearl-otf-import_8ipf.html#ad2a83b85030a7d7769d434d6e2e9e557":[9,0,14,1],
|
||||
"pearl-otf-import_8ipf.html#ae2640256d7d07c11b41621430279cef6":[9,0,14,0],
|
||||
"pearl-otf-import_8ipf_source.html":[9,0,14],
|
||||
"pearl-pmsco-import_8ipf.html":[9,0,15],
|
||||
"pearl-pmsco-import_8ipf.html#a0a53a4686b482d62fe1797932a1708db":[9,0,15,2],
|
||||
"pearl-pmsco-import_8ipf.html#aa31bbaa2fc77b447e6c6f386b23abdd9":[9,0,15,1],
|
||||
"pearl-pmsco-import_8ipf.html#ab3421c7f54aa64e5e493b267d700c0c8":[9,0,15,0],
|
||||
"pearl-pmsco-import_8ipf_source.html":[9,0,15],
|
||||
"pearl-polar-coordinates_8ipf.html":[9,0,16],
|
||||
"pearl-polar-coordinates_8ipf.html#a58139e6ebfba242b6b2ba3533b865a9a":[9,0,16,4],
|
||||
"pearl-polar-coordinates_8ipf.html#a6a0ffb6b9160413d9694b1fd8e10c858":[9,0,16,3],
|
||||
"pearl-polar-coordinates_8ipf.html#a94ccfa9cf52c55eb1f66c2704478c396":[9,0,16,2],
|
||||
"pearl-polar-coordinates_8ipf.html#aca0a5aaa4854d83ef667c53007312fb8":[9,0,16,0],
|
||||
"pearl-polar-coordinates_8ipf.html#adfc1f0b3cddf672b0ccdb6a22b97ba9e":[9,0,16,1],
|
||||
"pearl-polar-coordinates_8ipf_source.html":[9,0,16],
|
||||
"pearl-pshell-import_8ipf.html":[9,0,17],
|
||||
"pearl-pshell-import_8ipf.html#a035a4df9f4508144149abdb0b46c87d1":[9,0,17,17],
|
||||
"pearl-pshell-import_8ipf.html#a03f00b3299bc3df671fcc239f7dd5418":[9,0,17,41],
|
||||
"pearl-pshell-import_8ipf.html#a0a02f87e19e825964aa17c46ed51df8c":[9,0,17,23],
|
||||
"pearl-pshell-import_8ipf.html#a0f2c168c04d075734edb995361aefb82":[9,0,17,42],
|
||||
"pearl-pshell-import_8ipf.html#a13a45e8618c1ab7406e1aa5e608e21fe":[9,0,17,16],
|
||||
"pearl-pshell-import_8ipf.html#a1dc6c971120749b378014f1f63cb6668":[9,0,17,20],
|
||||
"pearl-pshell-import_8ipf.html#a2152f7c39a187b740cf9890767ffac3f":[9,0,17,12],
|
||||
"pearl-pshell-import_8ipf.html#a277cd450cca7832aa44f8097934e6acb":[9,0,17,36],
|
||||
"pearl-pshell-import_8ipf.html#a2972587ec82cc2a261b8119a582b4215":[9,0,17,18],
|
||||
"pearl-pshell-import_8ipf.html#a2c456397c36d4116bfddca452eff5954":[9,0,17,5],
|
||||
"pearl-pshell-import_8ipf.html#a2fc497747287d6fe40c6de997ed4a90d":[9,0,17,9],
|
||||
"pearl-pshell-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6":[9,0,17,31],
|
||||
"pearl-pshell-import_8ipf.html#a3c72087695969f42ea91c000de47b26e":[9,0,17,39],
|
||||
"pearl-pshell-import_8ipf.html#a3eefc2f84a09f2ce29893c71ef44ae32":[9,0,17,21],
|
||||
"pearl-pshell-import_8ipf.html#a412b4753ceb753d705a113a26c018b22":[9,0,17,40],
|
||||
"pearl-pshell-import_8ipf.html#a41bf534983b0662ec2609b136c395f14":[9,0,17,0],
|
||||
"pearl-pshell-import_8ipf.html#a44d495fba0dd2b82dec13760a07fd226":[9,0,17,30],
|
||||
"pearl-pshell-import_8ipf.html#a4508bd507c4c935bd8463d9b2b84c6fc":[9,0,17,10],
|
||||
"pearl-pshell-import_8ipf.html#a5745428740b64cd66394a7fcd78b86f1":[9,0,17,37],
|
||||
"pearl-pshell-import_8ipf.html#a5ad52cb10171572c454f9426d3a9be21":[9,0,17,38],
|
||||
"pearl-pshell-import_8ipf.html#a79ac37bb666b42c3332e9984196ccfe7":[9,0,17,25],
|
||||
"pearl-pshell-import_8ipf.html#a79b968d7439dfbfbc38c05f933071489":[9,0,17,2],
|
||||
"pearl-pshell-import_8ipf.html#a83804ba9637debed6ef8b13e7b9b19e0":[9,0,17,28],
|
||||
"pearl-pshell-import_8ipf.html#a83930d4384b0238fc8416ba03dbc0386":[9,0,17,35],
|
||||
"pearl-pshell-import_8ipf.html#a8704627410409bcd27a1adeda4082c47":[9,0,17,8],
|
||||
"pearl-pshell-import_8ipf.html#a8a5ce6c2767607de194b4c148ee98c27":[9,0,17,13],
|
||||
"pearl-pshell-import_8ipf.html#a92a18d6e81c3f521ba3bb240eaf578a9":[9,0,17,33],
|
||||
"pearl-pshell-import_8ipf.html#aa14b28120a07a8213e5a692930704a4b":[9,0,17,19],
|
||||
"pearl-pshell-import_8ipf.html#aa56c25d64b3e59f74d6dd92a599cce4f":[9,0,17,26],
|
||||
"pearl-pshell-import_8ipf.html#aa6dc3e3f7dc1ca4346132635a90fc447":[9,0,17,34],
|
||||
"pearl-pshell-import_8ipf.html#aba25eb98e4c6cc9066c46ef6be1cde15":[9,0,17,7],
|
||||
"pearl-pshell-import_8ipf.html#abb4afdef6ae4476c25a1ff77b17266c3":[9,0,17,32],
|
||||
"pearl-pshell-import_8ipf.html#ac4dfb90b951d29b56501e904f5cc38aa":[9,0,17,14],
|
||||
"pearl-pshell-import_8ipf.html#acb317b57ef137d4d5da5938013dbe442":[9,0,17,11],
|
||||
"pearl-pshell-import_8ipf.html#acba7f4b98f67cc112c02dfeefe3e5acd":[9,0,17,3],
|
||||
"pearl-pshell-import_8ipf.html#accc20b0fc6bda95ba0cd0aea6633086f":[9,0,17,29],
|
||||
"pearl-pshell-import_8ipf.html#acfb01ee360b66f286225f6e9c7220ba2":[9,0,17,1],
|
||||
"pearl-pshell-import_8ipf.html#ad26b0b56d7ccd23547535091c9430569":[9,0,17,24],
|
||||
"pearl-pshell-import_8ipf.html#ad3b9354b137ba4f1bc3ed2e74f24dc88":[9,0,17,27],
|
||||
"pearl-pshell-import_8ipf.html#adc11ea797562b3d99c247f4866618d39":[9,0,17,4],
|
||||
"pearl-pshell-import_8ipf.html#aec191d0167bbf606d24396f4658104b5":[9,0,17,22],
|
||||
"pearl-pshell-import_8ipf.html#af08a467036c64f70ca3dfe644fcc457c":[9,0,17,6],
|
||||
"pearl-pshell-import_8ipf.html#afde787a00a18dc8c63b100d8ac7d992f":[9,0,17,15],
|
||||
"pearl-pshell-import_8ipf_source.html":[9,0,17],
|
||||
"pearl-scienta-preprocess_8ipf.html":[9,0,18],
|
||||
"pearl-scienta-preprocess_8ipf.html#a145c7275b8809c5e789b932ef46e4811":[9,0,18,6],
|
||||
"pearl-scienta-preprocess_8ipf.html#a1514250704b40aa2614d389a2e250d61":[9,0,18,5],
|
||||
"pearl-scienta-preprocess_8ipf.html#a1e91197cd7a3581b70bc59a194d3f43b":[9,0,18,3],
|
||||
"pearl-scienta-preprocess_8ipf.html#a6d06ea5a11ba79160efeea7fe673af8c":[9,0,18,7],
|
||||
"pearl-scienta-preprocess_8ipf.html#a6e7de6441bbcba217760448babaca827":[9,0,18,8],
|
||||
"pearl-scienta-preprocess_8ipf.html#a83cdbd96c5b59011914d53118e5ef71c":[9,0,18,2],
|
||||
"pearl-scienta-preprocess_8ipf.html#a8e2aef3e0d5f2b304399a11423661fdc":[9,0,18,9],
|
||||
"pearl-scienta-preprocess_8ipf.html#a95fbd22f52f61d2bff0625b7b8e159d1":[9,0,18,1],
|
||||
"pearl-scienta-preprocess_8ipf.html#ad626526589efec3f2f72ad001702fe39":[9,0,18,4],
|
||||
"pearl-scienta-preprocess_8ipf.html#adb78e8b2bbfd9c0faa5eb049b1dcad1c":[9,0,18,10],
|
||||
"pearl-scienta-preprocess_8ipf.html#ae6877c51ad15c2ba8a69c65356cb34b8":[9,0,18,0],
|
||||
"pearl-scienta-preprocess_8ipf_source.html":[9,0,18],
|
||||
"pearl-tools_8ipf.html":[9,0,19],
|
||||
"pearl-tools_8ipf.html#a3fb8c06030dc41a599380150807caeb0":[9,0,19,1],
|
||||
"pearl-tools_8ipf.html#a6bdd1c0b269f1d7d99843ce0cb218cc7":[9,0,19,2],
|
||||
"pearl-tools_8ipf.html#a7c5307e5e7c0202d2b088fdc11887069":[9,0,19,3],
|
||||
"pearl-tools_8ipf.html#a90c62bdfc186e2482ccb18113a591d5e":[9,0,19,0],
|
||||
"pearl-tools_8ipf.html#aabc250f68dd85ca58d7be5077255af99":[9,0,19,4],
|
||||
"pearl-tools_8ipf.html#aea193a1b5fbdbb2a5dec9f25f3c05c45":[9,0,19,5],
|
||||
"pearl-tools_8ipf_source.html":[9,0,19],
|
||||
"pearl-vector-operations_8ipf.html":[9,0,20],
|
||||
"pearl-vector-operations_8ipf.html#a0030e927980581d57781ad391f2d872a":[9,0,20,5],
|
||||
"pearl-vector-operations_8ipf.html#a355150c423ab975fe7f1832917118ea3":[9,0,20,2],
|
||||
"pearl-vector-operations_8ipf.html#a72c3200a7344c708ea76e20cc2c19c43":[9,0,20,0],
|
||||
"pearl-vector-operations_8ipf.html#a76feca10fe5d3e085f01c73a59b38424":[9,0,20,8],
|
||||
"pearl-vector-operations_8ipf.html#a8a8dff94d9f7b992c2c2c0744001e74b":[9,0,20,6],
|
||||
"pearl-vector-operations_8ipf.html#ac579a92f012f0d0ef7b8f097e1c8b3c7":[9,0,20,1],
|
||||
"pearl-vector-operations_8ipf.html#ada80428496dc748b960bd9c65df7da8b":[9,0,20,3],
|
||||
"pearl-vector-operations_8ipf.html#adfd1d68e739694982fbd00b76568c1c0":[9,0,20,4],
|
||||
"pearl-vector-operations_8ipf.html#adfdf1cfe8812d8d0006228f6c14c9582":[9,0,20,7],
|
||||
"pearl-vector-operations_8ipf_source.html":[9,0,20],
|
||||
"pearl-elog_8ipf.html#acbba78d869a543edf7c2b80d7a8d2344":[9,0,10,1],
|
||||
"pearl-elog_8ipf.html#ace94356f691cbe343761aabd67ced23c":[9,0,10,30],
|
||||
"pearl-elog_8ipf.html#acedf0c8ae34e9ebadd6fa0d9d1353aa4":[9,0,10,22],
|
||||
"pearl-elog_8ipf.html#ad1a72c63f269b2e22b21a72d1ef3b279":[9,0,10,28],
|
||||
"pearl-elog_8ipf.html#ad4472ea917691c41ad0b4ea6f36010a5":[9,0,10,7],
|
||||
"pearl-elog_8ipf.html#ad7640d06f004ecd4a8980ea29d24dcbe":[9,0,10,10],
|
||||
"pearl-elog_8ipf.html#addbdec64930e9c1e417b16b25df8c723":[9,0,10,52],
|
||||
"pearl-elog_8ipf.html#adeff6678e57313cb218824f06d32b5ec":[9,0,10,9],
|
||||
"pearl-elog_8ipf.html#ae824bbf81f8b7d16b36b53e3f3d85f69":[9,0,10,33],
|
||||
"pearl-elog_8ipf.html#af34e46263aa50843f98f755988f9ab5c":[9,0,10,56],
|
||||
"pearl-elog_8ipf.html#af652f6f257be1ee749fe788d1b03f75f":[9,0,10,13],
|
||||
"pearl-elog_8ipf.html#af8b1ea711208bcc2cd1647abe04131dc":[9,0,10,21],
|
||||
"pearl-elog_8ipf.html#afbace5ffc3167b42b09657ce6cc854ca":[9,0,10,23],
|
||||
"pearl-elog_8ipf_source.html":[9,0,10],
|
||||
"pearl-fitfuncs_8ipf.html":[9,0,11],
|
||||
"pearl-fitfuncs_8ipf.html#a02368cc4adfbd746cd2f1e7d73884a61":[9,0,11,23],
|
||||
"pearl-fitfuncs_8ipf.html#a13a5ee22049d9a3379cd6e55654e70a3":[9,0,11,1],
|
||||
"pearl-fitfuncs_8ipf.html#a1e729418252bf0d05ea6ec5cbd65b834":[9,0,11,11],
|
||||
"pearl-fitfuncs_8ipf.html#a24cd6a0c96ef8c720e371bb31ac0a479":[9,0,11,2],
|
||||
"pearl-fitfuncs_8ipf.html#a2c6547164c0b46efecf4d372ea04c263":[9,0,11,18],
|
||||
"pearl-fitfuncs_8ipf.html#a4d20215153c0e0cee3870dfceded8bc9":[9,0,11,14],
|
||||
"pearl-fitfuncs_8ipf.html#a5a2a03026b88f3dd99214ab1b26e6f80":[9,0,11,13],
|
||||
"pearl-fitfuncs_8ipf.html#a704de4b170620d07b75f2093fe052272":[9,0,11,19],
|
||||
"pearl-fitfuncs_8ipf.html#a709f7c4585b1d850ea8aae1885ac18cb":[9,0,11,3],
|
||||
"pearl-fitfuncs_8ipf.html#a819902ab9f541b75a0fd33a7b52465d0":[9,0,11,15],
|
||||
"pearl-fitfuncs_8ipf.html#a81da09e30e2800703dd178248f0c55be":[9,0,11,20],
|
||||
"pearl-fitfuncs_8ipf.html#a84a0278284332631682ce032018d1716":[9,0,11,22],
|
||||
"pearl-fitfuncs_8ipf.html#a9d110819fa3cd2173f3103724e394fdf":[9,0,11,8],
|
||||
"pearl-fitfuncs_8ipf.html#aaa48428994f8720a12e7237ef43e86ea":[9,0,11,6],
|
||||
"pearl-fitfuncs_8ipf.html#aad1418e71830c1ec71d7dd62b2ecf9ba":[9,0,11,17],
|
||||
"pearl-fitfuncs_8ipf.html#ab32134566b2573672ac674565deebd36":[9,0,11,12],
|
||||
"pearl-fitfuncs_8ipf.html#aca0bf4ff35794a459e15a3b358dbfa04":[9,0,11,5],
|
||||
"pearl-fitfuncs_8ipf.html#adb438f665e51a8dd104a37cfead04f27":[9,0,11,9],
|
||||
"pearl-fitfuncs_8ipf.html#ae2d138beb7cb39e8042487893095b461":[9,0,11,7],
|
||||
"pearl-fitfuncs_8ipf.html#af07f887f3ba8e3e35c9214df8bb6a49f":[9,0,11,21],
|
||||
"pearl-fitfuncs_8ipf.html#af62cb65b7444ff60e956a45bd5d0ec27":[9,0,11,10],
|
||||
"pearl-fitfuncs_8ipf.html#af669aa08d0c32d3647007155f4b7ea3c":[9,0,11,16],
|
||||
"pearl-fitfuncs_8ipf.html#aff8e8b103c32c8e723b57ce7ad5ef0f5":[9,0,11,4],
|
||||
"pearl-fitfuncs_8ipf_source.html":[9,0,11],
|
||||
"pearl-gui-tools_8ipf.html":[9,0,12],
|
||||
"pearl-gui-tools_8ipf.html#a97ad19d83cf0007c4bcf97a32164610f":[9,0,12,2],
|
||||
"pearl-gui-tools_8ipf.html#aaf29d090c81e00cf44af295193b24c5a":[9,0,12,0],
|
||||
"pearl-gui-tools_8ipf.html#aca0a41a0f28a35ac7535df30ddbd79fe":[9,0,12,1],
|
||||
"pearl-gui-tools_8ipf_source.html":[9,0,12],
|
||||
"pearl-matrix-import_8ipf.html":[9,0,13],
|
||||
"pearl-matrix-import_8ipf.html#a0dc1efa23739e10b7558543b166e95b9":[9,0,13,18],
|
||||
"pearl-matrix-import_8ipf.html#a1a46b042e41daffee61706ab2cf54351":[9,0,13,10],
|
||||
"pearl-matrix-import_8ipf.html#a3a0ba4a7ad64739303b705d92be53267":[9,0,13,13],
|
||||
"pearl-matrix-import_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5":[9,0,13,1],
|
||||
"pearl-matrix-import_8ipf.html#a45e930b8eadd7cf6a5f664befd87d725":[9,0,13,4],
|
||||
"pearl-matrix-import_8ipf.html#a4bfeaf81ac483df0a38b26b6a8cf74a6":[9,0,13,16],
|
||||
"pearl-matrix-import_8ipf.html#a59e72c849f4314aaa8339fd899665d85":[9,0,13,15],
|
||||
"pearl-matrix-import_8ipf.html#a6ac0c685976b0e0c1944fb616a4f3a3c":[9,0,13,11],
|
||||
"pearl-matrix-import_8ipf.html#a6aeef317fd468c88c99a274338c70ae3":[9,0,13,12],
|
||||
"pearl-matrix-import_8ipf.html#a75bb92ef5f80843e66a7243bd958ef8b":[9,0,13,23],
|
||||
"pearl-matrix-import_8ipf.html#a81b1d81261a32d0ed4cf79b81487f1b4":[9,0,13,6],
|
||||
"pearl-matrix-import_8ipf.html#a856478705a78e8105ea5d91a2228975b":[9,0,13,7],
|
||||
"pearl-matrix-import_8ipf.html#a893405a122fdf70429f4f75b8877ed7d":[9,0,13,8],
|
||||
"pearl-matrix-import_8ipf.html#a8acd2b03343ef9bdfecaa75e831392d1":[9,0,13,19],
|
||||
"pearl-matrix-import_8ipf.html#ab80101bc780dcbe94200e2446bce51d9":[9,0,13,20],
|
||||
"pearl-matrix-import_8ipf.html#abd09594d22038853e1e8021e0f36363d":[9,0,13,14],
|
||||
"pearl-matrix-import_8ipf.html#ac7790f06151821678a65ab0065a5323e":[9,0,13,3],
|
||||
"pearl-matrix-import_8ipf.html#aca457d1f4414d20a911254b1de13ebbb":[9,0,13,22],
|
||||
"pearl-matrix-import_8ipf.html#ad720655ff881ddecae2e1b8afed58fa0":[9,0,13,21],
|
||||
"pearl-matrix-import_8ipf.html#ad74d5afa71179728a9237d1ec5884482":[9,0,13,9],
|
||||
"pearl-matrix-import_8ipf.html#ad8532f1473f92539fe88217d5d6e3368":[9,0,13,17],
|
||||
"pearl-matrix-import_8ipf.html#ae2cfa1ac6651cfc3fb0dfce03494995b":[9,0,13,2],
|
||||
"pearl-matrix-import_8ipf.html#af0eaec901e06ce59250eb434539a0f6c":[9,0,13,5],
|
||||
"pearl-matrix-import_8ipf_source.html":[9,0,13],
|
||||
"pearl-menu_8ipf.html":[9,0,14],
|
||||
"pearl-menu_8ipf.html#a1437f6baee0bd6d04bbcd2236c2d1f7f":[9,0,14,10],
|
||||
"pearl-menu_8ipf.html#a3404a53bf13a01c1e811d1af6c35b726":[9,0,14,9],
|
||||
"pearl-menu_8ipf.html#a3658ae687e12987fa1d70636849a060f":[9,0,14,5],
|
||||
"pearl-menu_8ipf.html#a61ded60be72959b00f22842afa37c56f":[9,0,14,8],
|
||||
"pearl-menu_8ipf.html#a74bc5da7843ee6c25f2d9c93d22a6ffa":[9,0,14,6],
|
||||
"pearl-menu_8ipf.html#aa70ef420d6fe0f6a433cd2371fc4a03d":[9,0,14,3],
|
||||
"pearl-menu_8ipf.html#aab34952c2f3b36f9ee8619eb901ff581":[9,0,14,2],
|
||||
"pearl-menu_8ipf.html#aab4ec7bc68f93029377b7657f40fbd6a":[9,0,14,7],
|
||||
"pearl-menu_8ipf.html#aad7d768680c6d8a9b8a7025c7e1ec75d":[9,0,14,0],
|
||||
"pearl-menu_8ipf.html#ac73a94f760455f19294a9f917b43f145":[9,0,14,1],
|
||||
"pearl-menu_8ipf.html#af6c9740540c6242eb7bf57fc49de82ab":[9,0,14,4],
|
||||
"pearl-menu_8ipf_source.html":[9,0,14],
|
||||
"pearl-otf-import_8ipf.html":[9,0,15],
|
||||
"pearl-otf-import_8ipf.html#a3632f8a5c0ee32a14a3e589b74a0c496":[9,0,15,4],
|
||||
"pearl-otf-import_8ipf.html#a44078e1d8f26e515539acb96973fc630":[9,0,15,2],
|
||||
"pearl-otf-import_8ipf.html#a603b71176ed838713ec555c440082e22":[9,0,15,5],
|
||||
"pearl-otf-import_8ipf.html#a715f9cf2d2b1ffb04f2f9a0e344a80ee":[9,0,15,7],
|
||||
"pearl-otf-import_8ipf.html#a882da254075e8d89f0117e491af90df0":[9,0,15,8],
|
||||
"pearl-otf-import_8ipf.html#aa47fc4b956ee84a993b6d285b628fe20":[9,0,15,6],
|
||||
"pearl-otf-import_8ipf.html#aba965b854836658aa00e3ec2b361d7c9":[9,0,15,9],
|
||||
"pearl-otf-import_8ipf.html#abd8897317366046dfb97c6ca53813d18":[9,0,15,3],
|
||||
"pearl-otf-import_8ipf.html#ad2a83b85030a7d7769d434d6e2e9e557":[9,0,15,1],
|
||||
"pearl-otf-import_8ipf.html#ae2640256d7d07c11b41621430279cef6":[9,0,15,0],
|
||||
"pearl-otf-import_8ipf_source.html":[9,0,15],
|
||||
"pearl-pmsco-import_8ipf.html":[9,0,16],
|
||||
"pearl-pmsco-import_8ipf.html#a0a53a4686b482d62fe1797932a1708db":[9,0,16,4],
|
||||
"pearl-pmsco-import_8ipf.html#a98bbe8db14dba5aea9588a1b433baca7":[9,0,16,1],
|
||||
"pearl-pmsco-import_8ipf.html#aa31bbaa2fc77b447e6c6f386b23abdd9":[9,0,16,3],
|
||||
"pearl-pmsco-import_8ipf.html#ab3421c7f54aa64e5e493b267d700c0c8":[9,0,16,2],
|
||||
"pearl-pmsco-import_8ipf.html#afae0650a37e89f18c9c54f8adc9eafb2":[9,0,16,0],
|
||||
"pearl-pmsco-import_8ipf_source.html":[9,0,16],
|
||||
"pearl-polar-coordinates_8ipf.html":[9,0,17],
|
||||
"pearl-polar-coordinates_8ipf.html#a58139e6ebfba242b6b2ba3533b865a9a":[9,0,17,4],
|
||||
"pearl-polar-coordinates_8ipf.html#a6a0ffb6b9160413d9694b1fd8e10c858":[9,0,17,3],
|
||||
"pearl-polar-coordinates_8ipf.html#a94ccfa9cf52c55eb1f66c2704478c396":[9,0,17,2],
|
||||
"pearl-polar-coordinates_8ipf.html#aca0a5aaa4854d83ef667c53007312fb8":[9,0,17,0],
|
||||
"pearl-polar-coordinates_8ipf.html#adfc1f0b3cddf672b0ccdb6a22b97ba9e":[9,0,17,1],
|
||||
"pearl-polar-coordinates_8ipf_source.html":[9,0,17],
|
||||
"pearl-pshell-import_8ipf.html":[9,0,18],
|
||||
"pearl-pshell-import_8ipf.html#a03f00b3299bc3df671fcc239f7dd5418":[9,0,18,56],
|
||||
"pearl-pshell-import_8ipf.html#a0f2c168c04d075734edb995361aefb82":[9,0,18,57],
|
||||
"pearl-pshell-import_8ipf.html#a10224f615973777a43fefae8eb1a39f2":[9,0,18,40],
|
||||
"pearl-pshell-import_8ipf.html#a113622ae05611e5051a97d223fae59d0":[9,0,18,17],
|
||||
"pearl-pshell-import_8ipf.html#a237e95f14b988f58e2d4c37659f17347":[9,0,18,39],
|
||||
"pearl-pshell-import_8ipf.html#a23a2e4cb2dc5364bfdbab4367ed6f234":[9,0,18,27],
|
||||
"pearl-pshell-import_8ipf.html#a24afba76ed5323d8cd0abc3c7b0d9912":[9,0,18,30],
|
||||
"pearl-pshell-import_8ipf.html#a277cd450cca7832aa44f8097934e6acb":[9,0,18,38],
|
||||
"pearl-pshell-import_8ipf.html#a2c456397c36d4116bfddca452eff5954":[9,0,18,7],
|
||||
"pearl-pshell-import_8ipf.html#a2f39f9379e66ead0d25c33adfbe05ee9":[9,0,18,3],
|
||||
"pearl-pshell-import_8ipf.html#a300847a8e08161a64a199a6e7ef165c8":[9,0,18,45],
|
||||
"pearl-pshell-import_8ipf.html#a3236744797a780eb144a684b0bd41d4a":[9,0,18,51],
|
||||
"pearl-pshell-import_8ipf.html#a33f8faf117450af1d6dae9ef48786cd6":[9,0,18,33],
|
||||
"pearl-pshell-import_8ipf.html#a3c72087695969f42ea91c000de47b26e":[9,0,18,54],
|
||||
"pearl-pshell-import_8ipf.html#a412b4753ceb753d705a113a26c018b22":[9,0,18,55],
|
||||
"pearl-pshell-import_8ipf.html#a47513a1db5693f88d64739a5b28926b2":[9,0,18,11],
|
||||
"pearl-pshell-import_8ipf.html#a476f19c72d6e54787535ab6989ee778d":[9,0,18,2],
|
||||
"pearl-pshell-import_8ipf.html#a48f07030482af8315447ac2c598edd0d":[9,0,18,49],
|
||||
"pearl-pshell-import_8ipf.html#a4f5d11063bd50ded36ca013a2656b539":[9,0,18,14],
|
||||
"pearl-pshell-import_8ipf.html#a513091ea9a4e23f76765aa37f1d34055":[9,0,18,4],
|
||||
"pearl-pshell-import_8ipf.html#a5a1961e05ea900e72d6a886ac5744f2d":[9,0,18,8],
|
||||
"pearl-pshell-import_8ipf.html#a5ad52cb10171572c454f9426d3a9be21":[9,0,18,52],
|
||||
"pearl-pshell-import_8ipf.html#a654f0b9fe8770a8bd09a6da4182ca3bc":[9,0,18,48],
|
||||
"pearl-pshell-import_8ipf.html#a712ea7a6f18ce4178fd06b07d2d05a9f":[9,0,18,44],
|
||||
"pearl-pshell-import_8ipf.html#a72465006d4e8379fad08d1a1064de2a3":[9,0,18,31],
|
||||
"pearl-pshell-import_8ipf.html#a7c191ea7367f2f328333b9986c7dd538":[9,0,18,16],
|
||||
"pearl-pshell-import_8ipf.html#a7c5aaa2f133862ae16ddd735df1ab73d":[9,0,18,41],
|
||||
"pearl-pshell-import_8ipf.html#a7d7b67c9f983d3446c5c6f274284b82a":[9,0,18,5],
|
||||
"pearl-pshell-import_8ipf.html#a8089a75744ffc3626305406e925d320a":[9,0,18,32],
|
||||
"pearl-pshell-import_8ipf.html#a83930d4384b0238fc8416ba03dbc0386":[9,0,18,37],
|
||||
"pearl-pshell-import_8ipf.html#a85c1fbd2aefff2028e084ea61314dc67":[9,0,18,19],
|
||||
"pearl-pshell-import_8ipf.html#a8704627410409bcd27a1adeda4082c47":[9,0,18,10],
|
||||
"pearl-pshell-import_8ipf.html#a92a18d6e81c3f521ba3bb240eaf578a9":[9,0,18,34],
|
||||
"pearl-pshell-import_8ipf.html#a972bf23d6da0bb33e9f12e50c9d7f5e5":[9,0,18,0],
|
||||
"pearl-pshell-import_8ipf.html#aa6dc3e3f7dc1ca4346132635a90fc447":[9,0,18,36],
|
||||
"pearl-pshell-import_8ipf.html#aa7a48b65e465abde9aad80377605ae59":[9,0,18,12],
|
||||
"pearl-pshell-import_8ipf.html#ab0bc752ab76659b492cf88c75935336b":[9,0,18,53],
|
||||
"pearl-pshell-import_8ipf.html#ab41e955a4ff70f9c78571faad1b43d7b":[9,0,18,20],
|
||||
"pearl-pshell-import_8ipf.html#ab684c44d5f0668631e42d9c9c9dfea9e":[9,0,18,29],
|
||||
"pearl-pshell-import_8ipf.html#ab7c2cc8687f6d4550ef90c538b938dad":[9,0,18,50],
|
||||
"pearl-pshell-import_8ipf.html#ab86e42bb6f9ff20f685ad5627b446b77":[9,0,18,15],
|
||||
"pearl-pshell-import_8ipf.html#aba25eb98e4c6cc9066c46ef6be1cde15":[9,0,18,9],
|
||||
"pearl-pshell-import_8ipf.html#abcf01e205858a512aa713da914eaf966":[9,0,18,22],
|
||||
"pearl-pshell-import_8ipf.html#ac782084655d44d222742e3397051619d":[9,0,18,26],
|
||||
"pearl-pshell-import_8ipf.html#ac81d8f4276cf7bb86a74796cc7199e42":[9,0,18,46],
|
||||
"pearl-pshell-import_8ipf.html#acda8bf0493a2e8ba1955f12de08e28f2":[9,0,18,13],
|
||||
"pearl-pshell-import_8ipf.html#ad2275b0b8a0a1ed05afc50ef50564243":[9,0,18,1],
|
||||
"pearl-pshell-import_8ipf.html#ad811542ccfc7c73156c2a107faa93d87":[9,0,18,18],
|
||||
"pearl-pshell-import_8ipf.html#adc11ea797562b3d99c247f4866618d39":[9,0,18,6],
|
||||
"pearl-pshell-import_8ipf.html#adf778206fa825ab5006bd553c64a8760":[9,0,18,42],
|
||||
"pearl-pshell-import_8ipf.html#ae2aedcb7028cccdb683c43411cc8f1e2":[9,0,18,35],
|
||||
"pearl-pshell-import_8ipf.html#ae539a7501119cb2349707e2027f0f759":[9,0,18,25],
|
||||
"pearl-pshell-import_8ipf.html#aeb9a7f56922ff3c862e8b29b5090c01a":[9,0,18,47],
|
||||
"pearl-pshell-import_8ipf.html#aebf53e3de392d631b340ee0747b8bbbf":[9,0,18,43],
|
||||
"pearl-pshell-import_8ipf.html#af3b5005859915f410ec27a31ac9519ca":[9,0,18,28],
|
||||
"pearl-pshell-import_8ipf.html#af662500c4f992ef7b956f37ed463513d":[9,0,18,23],
|
||||
"pearl-pshell-import_8ipf.html#af7a6eefbda58d31336c81a3dda6e9a2d":[9,0,18,21],
|
||||
"pearl-pshell-import_8ipf.html#afc4fa60c5fbfdb08c2a9d3072d3e16ce":[9,0,18,24],
|
||||
"pearl-pshell-import_8ipf_source.html":[9,0,18],
|
||||
"pearl-scienta-live_8ipf.html":[9,0,19],
|
||||
"pearl-scienta-live_8ipf.html#a55886895329455b36b64d52ed6a4e228":[9,0,19,2],
|
||||
"pearl-scienta-live_8ipf.html#ad23de34bb698589e2576ce2836b89d55":[9,0,19,0],
|
||||
"pearl-scienta-live_8ipf.html#af2879284b1d1397447a31733fddd6273":[9,0,19,1],
|
||||
"pearl-scienta-live_8ipf_source.html":[9,0,19],
|
||||
"pearl-scienta-preprocess_8ipf.html":[9,0,20],
|
||||
"pearl-scienta-preprocess_8ipf.html#a11d42ef1352876666b710b7545360fce":[9,0,20,3],
|
||||
"pearl-scienta-preprocess_8ipf.html#a145c7275b8809c5e789b932ef46e4811":[9,0,20,7],
|
||||
"pearl-scienta-preprocess_8ipf.html#a1514250704b40aa2614d389a2e250d61":[9,0,20,6],
|
||||
"pearl-scienta-preprocess_8ipf.html#a1e91197cd7a3581b70bc59a194d3f43b":[9,0,20,4],
|
||||
"pearl-scienta-preprocess_8ipf.html#a6d06ea5a11ba79160efeea7fe673af8c":[9,0,20,8],
|
||||
"pearl-scienta-preprocess_8ipf.html#a6e7de6441bbcba217760448babaca827":[9,0,20,9],
|
||||
"pearl-scienta-preprocess_8ipf.html#a83cdbd96c5b59011914d53118e5ef71c":[9,0,20,2],
|
||||
"pearl-scienta-preprocess_8ipf.html#a8e2aef3e0d5f2b304399a11423661fdc":[9,0,20,10],
|
||||
"pearl-scienta-preprocess_8ipf.html#a95fbd22f52f61d2bff0625b7b8e159d1":[9,0,20,1],
|
||||
"pearl-scienta-preprocess_8ipf.html#ad626526589efec3f2f72ad001702fe39":[9,0,20,5],
|
||||
"pearl-scienta-preprocess_8ipf.html#adb78e8b2bbfd9c0faa5eb049b1dcad1c":[9,0,20,11],
|
||||
"pearl-scienta-preprocess_8ipf.html#ae6877c51ad15c2ba8a69c65356cb34b8":[9,0,20,0],
|
||||
"pearl-scienta-preprocess_8ipf_source.html":[9,0,20],
|
||||
"pearl-tools_8ipf.html":[9,0,21],
|
||||
"pearl-tools_8ipf.html#a3fb8c06030dc41a599380150807caeb0":[9,0,21,1],
|
||||
"pearl-tools_8ipf.html#a6bdd1c0b269f1d7d99843ce0cb218cc7":[9,0,21,2],
|
||||
"pearl-tools_8ipf.html#a7c5307e5e7c0202d2b088fdc11887069":[9,0,21,3],
|
||||
"pearl-tools_8ipf.html#a90c62bdfc186e2482ccb18113a591d5e":[9,0,21,0],
|
||||
"pearl-tools_8ipf.html#aabc250f68dd85ca58d7be5077255af99":[9,0,21,4],
|
||||
"pearl-tools_8ipf.html#aea193a1b5fbdbb2a5dec9f25f3c05c45":[9,0,21,5],
|
||||
"pearl-tools_8ipf_source.html":[9,0,21],
|
||||
"pearl-vector-operations_8ipf.html":[9,0,22],
|
||||
"pearl-vector-operations_8ipf.html#a0030e927980581d57781ad391f2d872a":[9,0,22,5],
|
||||
"pearl-vector-operations_8ipf.html#a355150c423ab975fe7f1832917118ea3":[9,0,22,2],
|
||||
"pearl-vector-operations_8ipf.html#a72c3200a7344c708ea76e20cc2c19c43":[9,0,22,0],
|
||||
"pearl-vector-operations_8ipf.html#a76feca10fe5d3e085f01c73a59b38424":[9,0,22,8],
|
||||
"pearl-vector-operations_8ipf.html#a8a8dff94d9f7b992c2c2c0744001e74b":[9,0,22,6],
|
||||
"pearl-vector-operations_8ipf.html#ac579a92f012f0d0ef7b8f097e1c8b3c7":[9,0,22,1],
|
||||
"pearl-vector-operations_8ipf.html#ada80428496dc748b960bd9c65df7da8b":[9,0,22,3],
|
||||
"pearl-vector-operations_8ipf.html#adfd1d68e739694982fbd00b76568c1c0":[9,0,22,4],
|
||||
"pearl-vector-operations_8ipf.html#adfdf1cfe8812d8d0006228f6c14c9582":[9,0,22,7],
|
||||
"pearl-vector-operations_8ipf_source.html":[9,0,22],
|
||||
"struct_doniach_sunjic_struct.html":[6,0],
|
||||
"struct_doniach_sunjic_struct.html#a02c13fdcf15e9adfee13464701bb7de2":[6,0,2],
|
||||
"struct_doniach_sunjic_struct.html#a45c3a3fa68850032e545907ca65ab982":[6,0,7],
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user