Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5d7bd9992f | |||
| f6a189a9eb | |||
| 70207096d5 | |||
| ea838b395f | |||
| 43689ef162 | |||
| fa24916aa6 | |||
| e3e80f5796 | |||
| c50ca2e577 | |||
| f419e92809 | |||
| ef9d08e5f5 | |||
| b7390cb46f | |||
| 6ab1cefec2 | |||
| 58135e4f4f | |||
| 259f537a22 | |||
| 0fb0fd92c8 | |||
| 9a81493a1a | |||
| 3235d52212 | |||
| b2f4816629 | |||
| 17036e1daa | |||
| fda49c3195 | |||
| e1f1aa9636 |
@@ -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 distro --single-branch https://${{ secrets.REPO_TOKEN }}@gitea.psi.ch/${{ github.repository }}.git igor-procs
|
||||
|
||||
- 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
|
||||
|
||||
@@ -2,5 +2,6 @@
|
||||
~*
|
||||
*.bak
|
||||
*.ipfT*
|
||||
doc/html/*
|
||||
doc/latex/*
|
||||
|
||||
|
||||
@@ -0,0 +1,201 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "{}"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
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.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
@@ -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,12 +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 has been tested under Igor Pro version 6.37 (32-bit). Older versions prior to 6.36 are not be compatible. Please update to the latest Igor Pro 6 version before reporting any problems.
|
||||
|
||||
PEARL Procedures compiles under Igor 7.00. Some features, in particular 3D graphics, may not work properly.
|
||||
PEARL Procedures are tested on Igor Pro 8.04, 64-bit.
|
||||
Please make sure to use the latest release version of Igor Pro.
|
||||
|
||||
|
||||
License
|
||||
@@ -24,7 +26,7 @@ License
|
||||
|
||||
The source code of PEARL Procedures is available under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) at <https://git.psi.ch/pearl-public/igor-procs>.
|
||||
Please read and respect the respective license agreements.
|
||||
Please share your extensions of the code with the original author.
|
||||
Please acknowledge the use of the code and share your extensions with the original author.
|
||||
|
||||
Author
|
||||
------
|
||||
@@ -34,14 +36,38 @@ Matthias Muntwiler, <mailto:matthias.muntwiler@psi.ch>
|
||||
Copyright
|
||||
---------
|
||||
|
||||
Copyright 2009-2016 by [Paul Scherrer Institut](http://www.psi.ch)
|
||||
Copyright 2009-2025 by [Paul Scherrer Institut](http://www.psi.ch)
|
||||
|
||||
|
||||
Release Notes
|
||||
=============
|
||||
|
||||
## rev-distro-1.1.1
|
||||
## rev-distro-3.1.0
|
||||
|
||||
- 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.)
|
||||
- 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.
|
||||
- pshell-import does not apply a detector sensitivity scaling any more. The returned intensities have arbitrary units.
|
||||
|
||||
## rev-distro-2.0.3
|
||||
|
||||
- The interpolate_hemi_scan function now requires a projection argument unless stereographic projection is desired.
|
||||
|
||||
## rev-distro-2.0.0
|
||||
|
||||
- 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.
|
||||
|
||||
|
||||
@@ -768,7 +768,8 @@ INPUT = ../pearl \
|
||||
# possible encodings.
|
||||
# The default value is: UTF-8.
|
||||
|
||||
INPUT_ENCODING = CP1252
|
||||
#INPUT_ENCODING = CP1252
|
||||
INPUT_ENCODING = ISO-8859-15
|
||||
|
||||
# If the value of the INPUT tag contains directories, you can use the
|
||||
# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
|
||||
@@ -874,14 +875,15 @@ INPUT_FILTER =
|
||||
# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
|
||||
# patterns match the file name, INPUT_FILTER is applied.
|
||||
|
||||
FILTER_PATTERNS = "*.ipf=\"gawk -f doxygen-filter-ipf.awk\""
|
||||
#FILTER_PATTERNS = "*.ipf=\"/usr/bin/gawk -f doxygen-filter-ipf.awk\""
|
||||
FILTER_PATTERNS = "*.ipf=/bin/sh doxygen-filter-ipf.sh"
|
||||
|
||||
# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
|
||||
# INPUT_FILTER) will also be used to filter the input files that are used for
|
||||
# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
|
||||
# The default value is: NO.
|
||||
|
||||
FILTER_SOURCE_FILES = YES
|
||||
FILTER_SOURCE_FILES = NO
|
||||
|
||||
# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
|
||||
# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
|
||||
@@ -1579,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
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
gawk -b -f doxygen-filter-ipf.awk "$1"
|
||||
|
||||
@@ -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-1.4.0-1-g0a436db-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 Thu Sep 21 2017 12:35:04 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>
|
||||
@@ -0,0 +1,123 @@
|
||||
<!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" lang="en-US">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<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>
|
||||
<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>
|
||||
<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 id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-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.9.8 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
<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">
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('_page_projections.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</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">
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<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="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 Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,106 @@
|
||||
<!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" lang="en-US">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<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"/>
|
||||
<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>
|
||||
<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>
|
||||
<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 id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-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.9.8 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
<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">
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('anglescan-processing_8dox.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</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">
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle"><div class="title">anglescan-processing.dox File Reference</div></div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
</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="anglescan-processing_8dox.html">anglescan-processing.dox</a></li>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<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"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,42 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><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 class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
|
||||
<li><a href="functions.html"><span>Data Fields</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -89,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('annotated.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('annotated.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -101,20 +77,26 @@ $(document).ready(function(){initNavTree('annotated.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">Data Structures</div> </div>
|
||||
<div class="headertitle"><div class="title">Data Structures</div></div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="textblock">Here are the data structures with brief descriptions:</div><div class="directory">
|
||||
<table class="directory">
|
||||
<tr id="row_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="struct_doniach_sunjic_struct.html" target="_self">DoniachSunjicStruct</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_1_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structerror_code.html" target="_self">errorCode</a></td><td class="desc">From matrixfilereader help </td></tr>
|
||||
<tr id="row_1_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="structerror_code.html" target="_self">errorCode</a></td><td class="desc">From matrixfilereader help </td></tr>
|
||||
</table>
|
||||
</div><!-- directory -->
|
||||
</div><!-- contents -->
|
||||
@@ -122,9 +104,7 @@ $(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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
var annotated =
|
||||
[
|
||||
[ "DoniachSunjicStruct", "struct_doniach_sunjic_struct.html", "struct_doniach_sunjic_struct" ],
|
||||
[ "errorCode", "structerror_code.html", "structerror_code" ]
|
||||
];
|
||||
|
Before Width: | Height: | Size: 246 B |
|
Before Width: | Height: | Size: 229 B |
|
Before Width: | Height: | Size: 147 B |
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<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"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,42 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><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="annotated.html"><span>Data Structures</span></a></li>
|
||||
<li class="current"><a href="classes.html"><span>Data Structure Index</span></a></li>
|
||||
<li><a href="functions.html"><span>Data Fields</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -89,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('classes.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('classes.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -101,34 +77,37 @@ $(document).ready(function(){initNavTree('classes.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">Data Structure Index</div> </div>
|
||||
<div class="headertitle"><div class="title">Data Structure Index</div></div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<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>
|
||||
<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></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>
|
||||
<div class="classindex">
|
||||
<dl class="classindex even">
|
||||
<dt class="alphachar"><a id="letter_D" name="letter_D">D</a></dt>
|
||||
<dd><a class="el" href="struct_doniach_sunjic_struct.html">DoniachSunjicStruct</a></dd></dl>
|
||||
<dl class="classindex odd">
|
||||
<dt class="alphachar"><a id="letter_E" name="letter_E">E</a></dt>
|
||||
<dd><a class="el" href="structerror_code.html">errorCode</a></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 Thu Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </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,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<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"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,41 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li class="current"><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 class="current"><a href="files.html"><span>File List</span></a></li>
|
||||
<li><a href="globals.html"><span>Globals</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -88,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('dir_fe5dc42579d4b99403482a3a637d9f7d.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('dir_fe5dc42579d4b99403482a3a637d9f7d.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -100,67 +77,89 @@ $(document).ready(function(){initNavTree('dir_fe5dc42579d4b99403482a3a637d9f7d.h
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">pearl Directory Reference</div> </div>
|
||||
<div class="headertitle"><div class="title">pearl Directory Reference</div></div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="files"></a>
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="files" name="files"></a>
|
||||
Files</h2></td></tr>
|
||||
<tr class="memitem:fermi-edge-analysis_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html">fermi-edge-analysis.ipf</a> <a href="fermi-edge-analysis_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="fermi-edge-analysis_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html">fermi-edge-analysis.ipf</a></td></tr>
|
||||
<tr class="memdesc:fermi-edge-analysis_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">tools for analysing the Fermi edge measured by the Scienta EW4000 analyser. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-anglescan-process_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-anglescan-process_8ipf.html">pearl-anglescan-process.ipf</a> <a href="pearl-anglescan-process_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-anglescan-panel_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-anglescan-panel_8ipf.html">pearl-anglescan-panel.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-anglescan-panel_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">interactive processing of angle scanned XPD data. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-anglescan-process_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-anglescan-process_8ipf.html">pearl-anglescan-process.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-anglescan-process_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">processing and holographic mapping of angle scanned XPD data. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-anglescan-tracker_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-anglescan-tracker_8ipf.html">pearl-anglescan-tracker.ipf</a> <a href="pearl-anglescan-tracker_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-anglescan-tracker_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-anglescan-tracker_8ipf.html">pearl-anglescan-tracker.ipf</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-area-display_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-area-display_8ipf.html">pearl-area-display.ipf</a> <a href="pearl-area-display_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-area-display_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-area-display_8ipf.html">pearl-area-display.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-area-display_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">visualization tools for 2D and 3D data. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-area-import_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-area-import_8ipf.html">pearl-area-import.ipf</a> <a href="pearl-area-import_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-area-import_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-area-import_8ipf.html">pearl-area-import.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-area-import_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">HDF5 file import from EPICS area detectors. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </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> <a href="pearl-area-profiles_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-area-profiles_8ipf_source.html"><span class="icondoc"></span></a> </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-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="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-arpes_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-arpes_8ipf.html">pearl-arpes.ipf</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-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="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-compat_8ipf_source.html"><span class="icondoc"></span></a> </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> <a href="pearl-elog_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-data-explorer_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-data-explorer_8ipf.html">pearl-data-explorer.ipf</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-elog_8ipf_source.html"><span class="icondoc"></span></a> </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>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-fitfuncs_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-fitfuncs_8ipf.html">pearl-fitfuncs.ipf</a> <a href="pearl-fitfuncs_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-fitfuncs_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-fitfuncs_8ipf.html">pearl-fitfuncs.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-fitfuncs_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">various fit functions for photoelectron spectroscopy. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-gui-tools_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-gui-tools_8ipf.html">pearl-gui-tools.ipf</a> <a href="pearl-gui-tools_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-gui-tools_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-gui-tools_8ipf.html">pearl-gui-tools.ipf</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-matrix-import_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-matrix-import_8ipf.html">pearl-matrix-import.ipf</a> <a href="pearl-matrix-import_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-matrix-import_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-matrix-import_8ipf.html">pearl-matrix-import.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-matrix-import_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">data file import for omicron matrix (STM) files <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-menu_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-menu_8ipf.html">pearl-menu.ipf</a> <a href="pearl-menu_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-menu_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-menu_8ipf.html">pearl-menu.ipf</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-otf-import_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-otf-import_8ipf.html">pearl-otf-import.ipf</a> <a href="pearl-otf-import_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-otf-import_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-otf-import_8ipf.html">pearl-otf-import.ipf</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:pearl-polar-coordinates_8ipf"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-polar-coordinates_8ipf.html">pearl-polar-coordinates.ipf</a> <a href="pearl-polar-coordinates_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-pmsco-import_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-pmsco-import_8ipf.html">pearl-pmsco-import.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-pmsco-import_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">data import/export procedures for multiple scattering calculations. <br /></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </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="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-polar-coordinates_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-polar-coordinates_8ipf.html">pearl-polar-coordinates.ipf</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-pshell-import_8ipf_source.html"><span class="icondoc"></span></a> </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-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="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-scienta-live_8ipf_source.html"><span class="icondoc"></span></a> </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:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-scienta-preprocess_8ipf_source.html"><span class="icondoc"></span></a> </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-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="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-scilog_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-scilog_8ipf.html">pearl-scilog.ipf</a></td></tr>
|
||||
<tr class="memdesc:pearl-scilog_8ipf"><td class="mdescLeft"> </td><td class="mdescRight">Interface for writing SciLog entries with Igor graphs as attachment. <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> <a href="pearl-vector-operations_8ipf_source.html">[code]</a></td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-tools_8ipf_source.html"><span class="icondoc"></span></a> </td><td class="memItemRight" valign="bottom"><a class="el" href="pearl-tools_8ipf.html">pearl-tools.ipf</a></td></tr>
|
||||
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><a href="pearl-vector-operations_8ipf_source.html"><span class="icondoc"></span></a> </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>
|
||||
</div><!-- contents -->
|
||||
@@ -169,9 +168,7 @@ 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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
Before Width: | Height: | Size: 746 B |
|
Before Width: | Height: | Size: 3.7 KiB |
@@ -1,3 +1,27 @@
|
||||
/*
|
||||
@licstart The following is the entire license notice for the JavaScript code in this file.
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (C) 1997-2020 by Dimitri van Heesch
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
||||
and associated documentation files (the "Software"), to deal in the Software without restriction,
|
||||
including without limitation the rights to use, copy, modify, merge, publish, distribute,
|
||||
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or
|
||||
substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
|
||||
BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
@licend The above is the entire license notice for the JavaScript code in this file
|
||||
*/
|
||||
function toggleVisibility(linkObj)
|
||||
{
|
||||
var base = $(linkObj).attr('id');
|
||||
@@ -15,7 +39,7 @@ function toggleVisibility(linkObj)
|
||||
summary.hide();
|
||||
$(linkObj).removeClass('closed').addClass('opened');
|
||||
$(trigger).attr('src',src.substring(0,src.length-10)+'open.png');
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -23,6 +47,8 @@ function updateStripes()
|
||||
{
|
||||
$('table.directory tr').
|
||||
removeClass('even').filter(':visible:even').addClass('even');
|
||||
$('table.directory tr').
|
||||
removeClass('odd').filter(':visible:odd').addClass('odd');
|
||||
}
|
||||
|
||||
function toggleLevel(level)
|
||||
@@ -95,10 +121,79 @@ function toggleInherit(id)
|
||||
}
|
||||
}
|
||||
|
||||
var opened=true;
|
||||
// in case HTML_COLORSTYLE is LIGHT or DARK the vars will be replaced, so we write them out explicitly and use double quotes
|
||||
var plusImg = [ "var(--fold-plus-image)", "var(--fold-plus-image-relpath)" ];
|
||||
var minusImg = [ "var(--fold-minus-image)", "var(--fold-minus-image-relpath)" ];
|
||||
|
||||
// toggle all folding blocks
|
||||
function codefold_toggle_all(relPath) {
|
||||
if (opened) {
|
||||
$('#fold_all').css('background-image',plusImg[relPath]);
|
||||
$('div[id^=foldopen]').hide();
|
||||
$('div[id^=foldclosed]').show();
|
||||
} else {
|
||||
$('#fold_all').css('background-image',minusImg[relPath]);
|
||||
$('div[id^=foldopen]').show();
|
||||
$('div[id^=foldclosed]').hide();
|
||||
}
|
||||
opened=!opened;
|
||||
}
|
||||
|
||||
// toggle single folding block
|
||||
function codefold_toggle(id) {
|
||||
$('#foldopen'+id).toggle();
|
||||
$('#foldclosed'+id).toggle();
|
||||
}
|
||||
function init_codefold(relPath) {
|
||||
$('span[class=lineno]').css(
|
||||
{'padding-right':'4px',
|
||||
'margin-right':'2px',
|
||||
'display':'inline-block',
|
||||
'width':'54px',
|
||||
'background':'linear-gradient(var(--fold-line-color),var(--fold-line-color)) no-repeat 46px/2px 100%'
|
||||
});
|
||||
// add global toggle to first line
|
||||
$('span[class=lineno]:first').append('<span class="fold" id="fold_all" '+
|
||||
'onclick="javascript:codefold_toggle_all('+relPath+');" '+
|
||||
'style="background-image:'+minusImg[relPath]+';"></span>');
|
||||
// add vertical lines to other rows
|
||||
$('span[class=lineno]').not(':eq(0)').append('<span class="fold"></span>');
|
||||
// add toggle controls to lines with fold divs
|
||||
$('div[class=foldopen]').each(function() {
|
||||
// extract specific id to use
|
||||
var id = $(this).attr('id').replace('foldopen','');
|
||||
// extract start and end foldable fragment attributes
|
||||
var start = $(this).attr('data-start');
|
||||
var end = $(this).attr('data-end');
|
||||
// replace normal fold span with controls for the first line of a foldable fragment
|
||||
$(this).find('span[class=fold]:first').replaceWith('<span class="fold" '+
|
||||
'onclick="javascript:codefold_toggle(\''+id+'\');" '+
|
||||
'style="background-image:'+minusImg[relPath]+';"></span>');
|
||||
// append div for folded (closed) representation
|
||||
$(this).after('<div id="foldclosed'+id+'" class="foldclosed" style="display:none;"></div>');
|
||||
// extract the first line from the "open" section to represent closed content
|
||||
var line = $(this).children().first().clone();
|
||||
// remove any glow that might still be active on the original line
|
||||
$(line).removeClass('glow');
|
||||
if (start) {
|
||||
// if line already ends with a start marker (e.g. trailing {), remove it
|
||||
$(line).html($(line).html().replace(new RegExp('\\s*'+start+'\\s*$','g'),''));
|
||||
}
|
||||
// replace minus with plus symbol
|
||||
$(line).find('span[class=fold]').css('background-image',plusImg[relPath]);
|
||||
// append ellipsis
|
||||
$(line).append(' '+start+'<a href="javascript:codefold_toggle(\''+id+'\')">…</a>'+end);
|
||||
// insert constructed line into closed div
|
||||
$('#foldclosed'+id).html(line);
|
||||
});
|
||||
}
|
||||
|
||||
/* @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());
|
||||
$.fn.powerTip.smartPlacementLists.s = [ 's', 'n', 'ne', 'se' ];
|
||||
$(this).powerTip({ placement: 's', smartPlacement: true, mouseOnToPopup: true });
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<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"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,41 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li class="current"><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="files.html"><span>File List</span></a></li>
|
||||
<li><a href="globals.html"><span>Globals</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -88,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('fermi-edge-analysis_8ipf.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('fermi-edge-analysis_8ipf.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -100,17 +77,23 @@ $(document).ready(function(){initNavTree('fermi-edge-analysis_8ipf.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> |
|
||||
<a href="#var-members">Variables</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">fermi-edge-analysis.ipf File Reference<div class="ingroups"><a class="el" href="group___arpes_package.html">ARPES package</a></div></div> </div>
|
||||
<div class="headertitle"><div class="title">fermi-edge-analysis.ipf File Reference<div class="ingroups"><a class="el" href="group___arpes_package.html">ARPES package</a></div></div></div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
|
||||
@@ -120,39 +103,36 @@ $(document).ready(function(){initNavTree('fermi-edge-analysis_8ipf.html','');});
|
||||
</div>
|
||||
<p><a href="fermi-edge-analysis_8ipf_source.html">Go to the source code of this file.</a></p>
|
||||
<table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="func-members" name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:a1c4a805435a1d43c2b6dfb6deb633894"><td class="memItemLeft" align="right" valign="top">variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a1c4a805435a1d43c2b6dfb6deb633894">analyse_curved_edge</a> (wave data)</td></tr>
|
||||
<tr class="memitem:a1c4a805435a1d43c2b6dfb6deb633894" id="r_a1c4a805435a1d43c2b6dfb6deb633894"><td class="memItemLeft" align="right" valign="top">variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a1c4a805435a1d43c2b6dfb6deb633894">analyse_curved_edge</a> (wave data)</td></tr>
|
||||
<tr class="separator:a1c4a805435a1d43c2b6dfb6deb633894"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:aac6bac1ee0582caa0676bdc9c2d254f0"><td class="memItemLeft" align="right" valign="top">variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#aac6bac1ee0582caa0676bdc9c2d254f0">record_results</a> (variable index)</td></tr>
|
||||
<tr class="memitem:aac6bac1ee0582caa0676bdc9c2d254f0" id="r_aac6bac1ee0582caa0676bdc9c2d254f0"><td class="memItemLeft" align="right" valign="top">variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#aac6bac1ee0582caa0676bdc9c2d254f0">record_results</a> (variable index)</td></tr>
|
||||
<tr class="separator:aac6bac1ee0582caa0676bdc9c2d254f0"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a2a1d7b49c1f88f29ee6d49f6a6f4fbf8"><td class="memItemLeft" align="right" valign="top">variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a2a1d7b49c1f88f29ee6d49f6a6f4fbf8">integrate_curved_edge</a> (wave data, wave data_sig)</td></tr>
|
||||
<tr class="memitem:a2a1d7b49c1f88f29ee6d49f6a6f4fbf8" id="r_a2a1d7b49c1f88f29ee6d49f6a6f4fbf8"><td class="memItemLeft" align="right" valign="top">variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a2a1d7b49c1f88f29ee6d49f6a6f4fbf8">integrate_curved_edge</a> (wave data, wave data_sig)</td></tr>
|
||||
<tr class="separator:a2a1d7b49c1f88f29ee6d49f6a6f4fbf8"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a4cec596c8fd2b21953cb45d6d347211d"><td class="memItemLeft" align="right" valign="top">variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a4cec596c8fd2b21953cb45d6d347211d">slit_correction</a> (wave data, wave data_out, variable epass)</td></tr>
|
||||
<tr class="memitem:a4cec596c8fd2b21953cb45d6d347211d" id="r_a4cec596c8fd2b21953cb45d6d347211d"><td class="memItemLeft" align="right" valign="top">variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a4cec596c8fd2b21953cb45d6d347211d">slit_correction</a> (wave data, wave data_out, variable epass)</td></tr>
|
||||
<tr class="separator:a4cec596c8fd2b21953cb45d6d347211d"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a520d8de9fbc4276c19fb417861f05b0d"><td class="memItemLeft" align="right" valign="top">threadsafe variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a520d8de9fbc4276c19fb417861f05b0d">FermiFuncLinDOS2D_corr</a> (variable w, threadsafe x, wave y)</td></tr>
|
||||
<tr class="memitem:a520d8de9fbc4276c19fb417861f05b0d" id="r_a520d8de9fbc4276c19fb417861f05b0d"><td class="memItemLeft" align="right" valign="top">threadsafe variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a520d8de9fbc4276c19fb417861f05b0d">FermiFuncLinDOS2D_corr</a> (variable w, threadsafe x, wave y)</td></tr>
|
||||
<tr class="separator:a520d8de9fbc4276c19fb417861f05b0d"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a27f000c3a3ea74c49db31716be3396d4"><td class="memItemLeft" align="right" valign="top">threadsafe variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a27f000c3a3ea74c49db31716be3396d4">slit_shift</a> (variable ypix, variable epass)</td></tr>
|
||||
<tr class="memitem:a27f000c3a3ea74c49db31716be3396d4" id="r_a27f000c3a3ea74c49db31716be3396d4"><td class="memItemLeft" align="right" valign="top">threadsafe variable </td><td class="memItemRight" valign="bottom"><a class="el" href="fermi-edge-analysis_8ipf.html#a27f000c3a3ea74c49db31716be3396d4">slit_shift</a> (variable ypix, variable epass)</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="memitem:acf72d644b8d37b6c26b1e070edba4e30" id="r_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>
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="var-members" 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="memitem:a09f26b0a0fd940a3d8c6f92aa769c8bc" id="r_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. <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="memitem:a4dcc00b93822f1663be2908b10d2ad3e" id="r_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 <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="memitem:a0cb8da36beae05c79fe5b1da918d3897" id="r_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 <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="memitem:a4749b9bce3e1d0381bd9daeb97c9754c" id="r_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 <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>
|
||||
@@ -164,17 +144,19 @@ Variables</h2></td></tr>
|
||||
<li>calculate corrected energy coordinates and map to single independent variable</li>
|
||||
<li>fit normal fermi function</li>
|
||||
</ul>
|
||||
<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 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 class="obfuscator">.nosp@m.</span>ias.<span class="obfuscator">.nosp@m.</span>muntw<span class="obfuscator">.nosp@m.</span>iler<span class="obfuscator">.nosp@m.</span>@psi.<span class="obfuscator">.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>Definition in file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
<p class="definition">Definition in file <a class="el" href="fermi-edge-analysis_8ipf_source.html">fermi-edge-analysis.ipf</a>.</p>
|
||||
</div><h2 class="groupheader">Function Documentation</h2>
|
||||
<a class="anchor" id="a1c4a805435a1d43c2b6dfb6deb633894"></a>
|
||||
<a id="a1c4a805435a1d43c2b6dfb6deb633894" name="a1c4a805435a1d43c2b6dfb6deb633894"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a1c4a805435a1d43c2b6dfb6deb633894">◆ </a></span>analyse_curved_edge()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
@@ -188,49 +170,13 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>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>
|
||||
<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>
|
||||
<a class="anchor" id="ad23de34bb698589e2576ce2836b89d55"></a>
|
||||
<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">
|
||||
<a id="a520d8de9fbc4276c19fb417861f05b0d" name="a520d8de9fbc4276c19fb417861f05b0d"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a520d8de9fbc4276c19fb417861f05b0d">◆ </a></span>FermiFuncLinDOS2D_corr()</h2>
|
||||
|
||||
<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>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>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a class="anchor" id="a520d8de9fbc4276c19fb417861f05b0d"></a>
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
@@ -260,11 +206,13 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>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>
|
||||
<a class="anchor" id="a2a1d7b49c1f88f29ee6d49f6a6f4fbf8"></a>
|
||||
<a id="a2a1d7b49c1f88f29ee6d49f6a6f4fbf8" name="a2a1d7b49c1f88f29ee6d49f6a6f4fbf8"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a2a1d7b49c1f88f29ee6d49f6a6f4fbf8">◆ </a></span>integrate_curved_edge()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
@@ -288,11 +236,13 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>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>
|
||||
<a class="anchor" id="aac6bac1ee0582caa0676bdc9c2d254f0"></a>
|
||||
<a id="aac6bac1ee0582caa0676bdc9c2d254f0" name="aac6bac1ee0582caa0676bdc9c2d254f0"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#aac6bac1ee0582caa0676bdc9c2d254f0">◆ </a></span>record_results()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
@@ -306,11 +256,13 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>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>
|
||||
<a class="anchor" id="acf72d644b8d37b6c26b1e070edba4e30"></a>
|
||||
<a id="acf72d644b8d37b6c26b1e070edba4e30" name="acf72d644b8d37b6c26b1e070edba4e30"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#acf72d644b8d37b6c26b1e070edba4e30">◆ </a></span>show_shift()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
@@ -324,11 +276,13 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>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>
|
||||
<a class="anchor" id="a4cec596c8fd2b21953cb45d6d347211d"></a>
|
||||
<a id="a4cec596c8fd2b21953cb45d6d347211d" name="a4cec596c8fd2b21953cb45d6d347211d"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a4cec596c8fd2b21953cb45d6d347211d">◆ </a></span>slit_correction()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
@@ -358,11 +312,13 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>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>
|
||||
<a class="anchor" id="a27f000c3a3ea74c49db31716be3396d4"></a>
|
||||
<a id="a27f000c3a3ea74c49db31716be3396d4" name="a27f000c3a3ea74c49db31716be3396d4"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a27f000c3a3ea74c49db31716be3396d4">◆ </a></span>slit_shift()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
@@ -386,12 +342,14 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>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>
|
||||
<h2 class="groupheader">Variable Documentation</h2>
|
||||
<a class="anchor" id="a0cb8da36beae05c79fe5b1da918d3897"></a>
|
||||
<a id="a0cb8da36beae05c79fe5b1da918d3897" name="a0cb8da36beae05c79fe5b1da918d3897"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a0cb8da36beae05c79fe5b1da918d3897">◆ </a></span>hemi_radius_mm</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="mlabels">
|
||||
@@ -411,11 +369,13 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
|
||||
<p>physical size (radius) of the hemisphere in mm </p>
|
||||
|
||||
<p>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>
|
||||
<a class="anchor" id="a4749b9bce3e1d0381bd9daeb97c9754c"></a>
|
||||
<a id="a4749b9bce3e1d0381bd9daeb97c9754c" name="a4749b9bce3e1d0381bd9daeb97c9754c"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a4749b9bce3e1d0381bd9daeb97c9754c">◆ </a></span>mcp_radius_epass</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="mlabels">
|
||||
@@ -435,11 +395,13 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
|
||||
<p>energy range imaged on MCP relative to the pass energy </p>
|
||||
|
||||
<p>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>
|
||||
<a class="anchor" id="a4dcc00b93822f1663be2908b10d2ad3e"></a>
|
||||
<a id="a4dcc00b93822f1663be2908b10d2ad3e" name="a4dcc00b93822f1663be2908b10d2ad3e"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a4dcc00b93822f1663be2908b10d2ad3e">◆ </a></span>mcp_radius_mm</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="mlabels">
|
||||
@@ -459,11 +421,13 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
|
||||
<p>physical size (radius) of the MCP in mm </p>
|
||||
|
||||
<p>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>
|
||||
<a class="anchor" id="a09f26b0a0fd940a3d8c6f92aa769c8bc"></a>
|
||||
<a id="a09f26b0a0fd940a3d8c6f92aa769c8bc" name="a09f26b0a0fd940a3d8c6f92aa769c8bc"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a09f26b0a0fd940a3d8c6f92aa769c8bc">◆ </a></span>mcp_radius_pix</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="mlabels">
|
||||
@@ -483,7 +447,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); <br />
|
||||
|
||||
<p>MCP radius seen by the camera in pixels. </p>
|
||||
|
||||
<p>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>
|
||||
@@ -493,9 +457,7 @@ 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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </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 ],
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<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"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,41 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li class="current"><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 class="current"><a href="files.html"><span>File List</span></a></li>
|
||||
<li><a href="globals.html"><span>Globals</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -88,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('files.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('files.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -100,37 +77,50 @@ $(document).ready(function(){initNavTree('files.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">File List</div> </div>
|
||||
<div class="headertitle"><div class="title">File List</div></div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="textblock">Here is a list of all files with brief descriptions:</div><div class="directory">
|
||||
<table class="directory">
|
||||
<tr id="row_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="fermi-edge-analysis_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="fermi-edge-analysis_8ipf.html" target="_self">fermi-edge-analysis.ipf</a></td><td class="desc">Tools for analysing the Fermi edge measured by the Scienta EW4000 analyser </td></tr>
|
||||
<tr id="row_1_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-anglescan-process_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-anglescan-process_8ipf.html" target="_self">pearl-anglescan-process.ipf</a></td><td class="desc">Processing and holographic mapping of angle scanned XPD data </td></tr>
|
||||
<tr id="row_2_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-anglescan-tracker_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-anglescan-tracker_8ipf.html" target="_self">pearl-anglescan-tracker.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_3_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="pearl-area-display_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-area-display_8ipf.html" target="_self">pearl-area-display.ipf</a></td><td class="desc">Visualization tools for 2D and 3D data </td></tr>
|
||||
<tr id="row_4_" class="even"><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_5_"><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_6_" class="even"><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_7_"><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_8_" 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_9_"><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"></td></tr>
|
||||
<tr id="row_10_" 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_11_"><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_12_" 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_13_"><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_14_" 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_15_"><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_16_" 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_17_"><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_18_" 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>
|
||||
<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span>]</div><table class="directory">
|
||||
<tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_0_" class="arrow" onclick="toggleFolder('0_')">▼</span><span id="img_0_" class="iconfopen" onclick="toggleFolder('0_')"> </span><a class="el" href="dir_fe5dc42579d4b99403482a3a637d9f7d.html" target="_self">pearl</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_0_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;"> </span><a href="fermi-edge-analysis_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="fermi-edge-analysis_8ipf.html" target="_self">fermi-edge-analysis.ipf</a></td><td class="desc">Tools for analysing the Fermi edge measured by the Scienta EW4000 analyser </td></tr>
|
||||
<tr id="row_0_1_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><a href="pearl-anglescan-panel_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-anglescan-panel_8ipf.html" target="_self">pearl-anglescan-panel.ipf</a></td><td class="desc">Interactive processing of angle scanned XPD data </td></tr>
|
||||
<tr id="row_0_2_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;"> </span><a href="pearl-anglescan-process_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-anglescan-process_8ipf.html" target="_self">pearl-anglescan-process.ipf</a></td><td class="desc">Processing and holographic mapping of angle scanned XPD data </td></tr>
|
||||
<tr id="row_0_3_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><a href="pearl-anglescan-tracker_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-anglescan-tracker_8ipf.html" target="_self">pearl-anglescan-tracker.ipf</a></td><td class="desc"></td></tr>
|
||||
<tr id="row_0_4_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;"> </span><a href="pearl-area-display_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-area-display_8ipf.html" target="_self">pearl-area-display.ipf</a></td><td class="desc">Visualization tools for 2D and 3D data </td></tr>
|
||||
<tr id="row_0_5_" class="even"><td class="entry"><span style="width:32px;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_0_6_" class="odd"><td class="entry"><span style="width:32px;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_0_7_" class="even"><td class="entry"><span style="width:32px;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_0_8_" class="odd"><td class="entry"><span style="width:32px;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_0_9_" class="even"><td class="entry"><span style="width:32px;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_0_10_" class="odd"><td class="entry"><span style="width:32px;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_0_11_" class="even"><td class="entry"><span style="width:32px;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_0_12_" class="odd"><td class="entry"><span style="width:32px;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_0_13_" class="even"><td class="entry"><span style="width:32px;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_0_14_" class="odd"><td class="entry"><span style="width:32px;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_0_15_" class="even"><td class="entry"><span style="width:32px;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_0_16_" class="odd"><td class="entry"><span style="width:32px;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_0_17_" class="even"><td class="entry"><span style="width:32px;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_0_18_" class="odd"><td class="entry"><span style="width:32px;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_0_19_" class="even"><td class="entry"><span style="width:32px;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_0_20_" class="odd"><td class="entry"><span style="width:32px;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_0_21_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><a href="pearl-scilog_8ipf_source.html"><span class="icondoc"></span></a><a class="el" href="pearl-scilog_8ipf.html" target="_self">pearl-scilog.ipf</a></td><td class="desc">Interface for writing SciLog entries with Igor graphs as attachment </td></tr>
|
||||
<tr id="row_0_22_" class="odd"><td class="entry"><span style="width:32px;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_0_23_" class="even"><td class="entry"><span style="width:32px;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>
|
||||
<tr id="row_1_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="iconfclosed"></span><a class="el" href="dir_61c9e5842729cb34568d93cb98ad85b9.html" target="_self">src</a></td><td class="desc"></td></tr>
|
||||
</table>
|
||||
</div><!-- directory -->
|
||||
</div><!-- contents -->
|
||||
@@ -138,9 +128,7 @@ $(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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
var files =
|
||||
[
|
||||
[ "fermi-edge-analysis.ipf", "fermi-edge-analysis_8ipf.html", "fermi-edge-analysis_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-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" ]
|
||||
];
|
||||
|
Before Width: | Height: | Size: 616 B |
|
Before Width: | Height: | Size: 597 B |
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<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"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,48 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><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="annotated.html"><span>Data Structures</span></a></li>
|
||||
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
|
||||
<li class="current"><a href="functions.html"><span>Data Fields</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow3" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li class="current"><a href="functions.html"><span>All</span></a></li>
|
||||
<li><a href="functions_vars.html"><span>Variables</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -95,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('functions.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('functions.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -107,82 +77,47 @@ $(document).ready(function(){initNavTree('functions.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="contents">
|
||||
<div class="textblock">Here is a list of all struct and union fields with links to the structures/unions they belong to:</div><ul>
|
||||
<li>ALREADY_FILE_OPEN
|
||||
: <a class="el" href="structerror_code.html#a19dc49bdfb4bd9601f17f907da158026">errorCode</a>
|
||||
</li>
|
||||
<li>broadening
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#ac9b18c8b44b43c2ee438f37f8d002a66">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>convolution
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a7f05f7827435fea3c986a8d538496955">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>EMPTY_RESULTFILE
|
||||
: <a class="el" href="structerror_code.html#ab7f29ef2ba8497c55f2bc55c4b9fc186">errorCode</a>
|
||||
</li>
|
||||
<li>FILE_NOT_READABLE
|
||||
: <a class="el" href="structerror_code.html#a71ce7c0413c44515d9570dab1ffd5ffd">errorCode</a>
|
||||
</li>
|
||||
<li>INTERNAL_ERROR_CONVERTING_DATA
|
||||
: <a class="el" href="structerror_code.html#afb49d1cffe8e7590892b018ac9e648cc">errorCode</a>
|
||||
</li>
|
||||
<li>INVALID_RANGE
|
||||
: <a class="el" href="structerror_code.html#a5477920df1edcc7a1af0513d9120947a">errorCode</a>
|
||||
</li>
|
||||
<li>model
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a02c13fdcf15e9adfee13464701bb7de2">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>NO_FILE_OPEN
|
||||
: <a class="el" href="structerror_code.html#affc9a8a46877373b0212d82d867ca5fa">errorCode</a>
|
||||
</li>
|
||||
<li>NO_NEW_BRICKLETS
|
||||
: <a class="el" href="structerror_code.html#a4ec3cbf922809b99b04d324d3a0bbb22">errorCode</a>
|
||||
</li>
|
||||
<li>oversampling
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#ab5a630be50286c3cf04e40d5880506e6">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>precision
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a906e214875392bc470dbd4bb4bdda2db">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>pw
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a92bbb374f66840510e7cb8b316057610">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>SUCCESS
|
||||
: <a class="el" href="structerror_code.html#a36a53ca508600b841a54cfd3a3fd5402">errorCode</a>
|
||||
</li>
|
||||
<li>UNKNOWN_ERROR
|
||||
: <a class="el" href="structerror_code.html#a11b729058e2f4a2698ddaecf4e61c846">errorCode</a>
|
||||
</li>
|
||||
<li>WAVE_EXIST
|
||||
: <a class="el" href="structerror_code.html#aa91bd8ef7a635f4575161813ebb09f3b">errorCode</a>
|
||||
</li>
|
||||
<li>WRONG_PARAMETER
|
||||
: <a class="el" href="structerror_code.html#aa4279dfdaceed3bd57336cd4e38ed739">errorCode</a>
|
||||
</li>
|
||||
<li>xdw
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a750e7260bf5d4c936dadde714fb2db52">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>xw
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a45c3a3fa68850032e545907ca65ab982">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>yw
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a6cef648ad0cf4be1dd9fbe33ff5df1eb">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>ALREADY_FILE_OPEN : <a class="el" href="structerror_code.html#a19dc49bdfb4bd9601f17f907da158026">errorCode</a></li>
|
||||
<li>broadening : <a class="el" href="struct_doniach_sunjic_struct.html#ac9b18c8b44b43c2ee438f37f8d002a66">DoniachSunjicStruct</a></li>
|
||||
<li>convolution : <a class="el" href="struct_doniach_sunjic_struct.html#a7f05f7827435fea3c986a8d538496955">DoniachSunjicStruct</a></li>
|
||||
<li>EMPTY_RESULTFILE : <a class="el" href="structerror_code.html#ab7f29ef2ba8497c55f2bc55c4b9fc186">errorCode</a></li>
|
||||
<li>FILE_NOT_READABLE : <a class="el" href="structerror_code.html#a71ce7c0413c44515d9570dab1ffd5ffd">errorCode</a></li>
|
||||
<li>INTERNAL_ERROR_CONVERTING_DATA : <a class="el" href="structerror_code.html#afb49d1cffe8e7590892b018ac9e648cc">errorCode</a></li>
|
||||
<li>INVALID_RANGE : <a class="el" href="structerror_code.html#a5477920df1edcc7a1af0513d9120947a">errorCode</a></li>
|
||||
<li>model : <a class="el" href="struct_doniach_sunjic_struct.html#a02c13fdcf15e9adfee13464701bb7de2">DoniachSunjicStruct</a></li>
|
||||
<li>NO_FILE_OPEN : <a class="el" href="structerror_code.html#affc9a8a46877373b0212d82d867ca5fa">errorCode</a></li>
|
||||
<li>NO_NEW_BRICKLETS : <a class="el" href="structerror_code.html#a4ec3cbf922809b99b04d324d3a0bbb22">errorCode</a></li>
|
||||
<li>oversampling : <a class="el" href="struct_doniach_sunjic_struct.html#ab5a630be50286c3cf04e40d5880506e6">DoniachSunjicStruct</a></li>
|
||||
<li>precision : <a class="el" href="struct_doniach_sunjic_struct.html#a906e214875392bc470dbd4bb4bdda2db">DoniachSunjicStruct</a></li>
|
||||
<li>pw : <a class="el" href="struct_doniach_sunjic_struct.html#a92bbb374f66840510e7cb8b316057610">DoniachSunjicStruct</a></li>
|
||||
<li>SUCCESS : <a class="el" href="structerror_code.html#a36a53ca508600b841a54cfd3a3fd5402">errorCode</a></li>
|
||||
<li>UNKNOWN_ERROR : <a class="el" href="structerror_code.html#a11b729058e2f4a2698ddaecf4e61c846">errorCode</a></li>
|
||||
<li>WAVE_EXIST : <a class="el" href="structerror_code.html#aa91bd8ef7a635f4575161813ebb09f3b">errorCode</a></li>
|
||||
<li>WRONG_PARAMETER : <a class="el" href="structerror_code.html#aa4279dfdaceed3bd57336cd4e38ed739">errorCode</a></li>
|
||||
<li>xdw : <a class="el" href="struct_doniach_sunjic_struct.html#a750e7260bf5d4c936dadde714fb2db52">DoniachSunjicStruct</a></li>
|
||||
<li>xw : <a class="el" href="struct_doniach_sunjic_struct.html#a45c3a3fa68850032e545907ca65ab982">DoniachSunjicStruct</a></li>
|
||||
<li>yw : <a class="el" href="struct_doniach_sunjic_struct.html#a6cef648ad0cf4be1dd9fbe33ff5df1eb">DoniachSunjicStruct</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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<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"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,48 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><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="annotated.html"><span>Data Structures</span></a></li>
|
||||
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
|
||||
<li class="current"><a href="functions.html"><span>Data Fields</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow3" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li><a href="functions.html"><span>All</span></a></li>
|
||||
<li class="current"><a href="functions_vars.html"><span>Variables</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -95,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('functions_vars.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('functions_vars.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -107,82 +77,47 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="contents">
|
||||
 <ul>
|
||||
<li>ALREADY_FILE_OPEN
|
||||
: <a class="el" href="structerror_code.html#a19dc49bdfb4bd9601f17f907da158026">errorCode</a>
|
||||
</li>
|
||||
<li>broadening
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#ac9b18c8b44b43c2ee438f37f8d002a66">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>convolution
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a7f05f7827435fea3c986a8d538496955">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>EMPTY_RESULTFILE
|
||||
: <a class="el" href="structerror_code.html#ab7f29ef2ba8497c55f2bc55c4b9fc186">errorCode</a>
|
||||
</li>
|
||||
<li>FILE_NOT_READABLE
|
||||
: <a class="el" href="structerror_code.html#a71ce7c0413c44515d9570dab1ffd5ffd">errorCode</a>
|
||||
</li>
|
||||
<li>INTERNAL_ERROR_CONVERTING_DATA
|
||||
: <a class="el" href="structerror_code.html#afb49d1cffe8e7590892b018ac9e648cc">errorCode</a>
|
||||
</li>
|
||||
<li>INVALID_RANGE
|
||||
: <a class="el" href="structerror_code.html#a5477920df1edcc7a1af0513d9120947a">errorCode</a>
|
||||
</li>
|
||||
<li>model
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a02c13fdcf15e9adfee13464701bb7de2">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>NO_FILE_OPEN
|
||||
: <a class="el" href="structerror_code.html#affc9a8a46877373b0212d82d867ca5fa">errorCode</a>
|
||||
</li>
|
||||
<li>NO_NEW_BRICKLETS
|
||||
: <a class="el" href="structerror_code.html#a4ec3cbf922809b99b04d324d3a0bbb22">errorCode</a>
|
||||
</li>
|
||||
<li>oversampling
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#ab5a630be50286c3cf04e40d5880506e6">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>precision
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a906e214875392bc470dbd4bb4bdda2db">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>pw
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a92bbb374f66840510e7cb8b316057610">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>SUCCESS
|
||||
: <a class="el" href="structerror_code.html#a36a53ca508600b841a54cfd3a3fd5402">errorCode</a>
|
||||
</li>
|
||||
<li>UNKNOWN_ERROR
|
||||
: <a class="el" href="structerror_code.html#a11b729058e2f4a2698ddaecf4e61c846">errorCode</a>
|
||||
</li>
|
||||
<li>WAVE_EXIST
|
||||
: <a class="el" href="structerror_code.html#aa91bd8ef7a635f4575161813ebb09f3b">errorCode</a>
|
||||
</li>
|
||||
<li>WRONG_PARAMETER
|
||||
: <a class="el" href="structerror_code.html#aa4279dfdaceed3bd57336cd4e38ed739">errorCode</a>
|
||||
</li>
|
||||
<li>xdw
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a750e7260bf5d4c936dadde714fb2db52">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>xw
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a45c3a3fa68850032e545907ca65ab982">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<li>yw
|
||||
: <a class="el" href="struct_doniach_sunjic_struct.html#a6cef648ad0cf4be1dd9fbe33ff5df1eb">DoniachSunjicStruct</a>
|
||||
</li>
|
||||
<div class="textblock">Here is a list of all variables with links to the structures/unions they belong to:</div><ul>
|
||||
<li>ALREADY_FILE_OPEN : <a class="el" href="structerror_code.html#a19dc49bdfb4bd9601f17f907da158026">errorCode</a></li>
|
||||
<li>broadening : <a class="el" href="struct_doniach_sunjic_struct.html#ac9b18c8b44b43c2ee438f37f8d002a66">DoniachSunjicStruct</a></li>
|
||||
<li>convolution : <a class="el" href="struct_doniach_sunjic_struct.html#a7f05f7827435fea3c986a8d538496955">DoniachSunjicStruct</a></li>
|
||||
<li>EMPTY_RESULTFILE : <a class="el" href="structerror_code.html#ab7f29ef2ba8497c55f2bc55c4b9fc186">errorCode</a></li>
|
||||
<li>FILE_NOT_READABLE : <a class="el" href="structerror_code.html#a71ce7c0413c44515d9570dab1ffd5ffd">errorCode</a></li>
|
||||
<li>INTERNAL_ERROR_CONVERTING_DATA : <a class="el" href="structerror_code.html#afb49d1cffe8e7590892b018ac9e648cc">errorCode</a></li>
|
||||
<li>INVALID_RANGE : <a class="el" href="structerror_code.html#a5477920df1edcc7a1af0513d9120947a">errorCode</a></li>
|
||||
<li>model : <a class="el" href="struct_doniach_sunjic_struct.html#a02c13fdcf15e9adfee13464701bb7de2">DoniachSunjicStruct</a></li>
|
||||
<li>NO_FILE_OPEN : <a class="el" href="structerror_code.html#affc9a8a46877373b0212d82d867ca5fa">errorCode</a></li>
|
||||
<li>NO_NEW_BRICKLETS : <a class="el" href="structerror_code.html#a4ec3cbf922809b99b04d324d3a0bbb22">errorCode</a></li>
|
||||
<li>oversampling : <a class="el" href="struct_doniach_sunjic_struct.html#ab5a630be50286c3cf04e40d5880506e6">DoniachSunjicStruct</a></li>
|
||||
<li>precision : <a class="el" href="struct_doniach_sunjic_struct.html#a906e214875392bc470dbd4bb4bdda2db">DoniachSunjicStruct</a></li>
|
||||
<li>pw : <a class="el" href="struct_doniach_sunjic_struct.html#a92bbb374f66840510e7cb8b316057610">DoniachSunjicStruct</a></li>
|
||||
<li>SUCCESS : <a class="el" href="structerror_code.html#a36a53ca508600b841a54cfd3a3fd5402">errorCode</a></li>
|
||||
<li>UNKNOWN_ERROR : <a class="el" href="structerror_code.html#a11b729058e2f4a2698ddaecf4e61c846">errorCode</a></li>
|
||||
<li>WAVE_EXIST : <a class="el" href="structerror_code.html#aa91bd8ef7a635f4575161813ebb09f3b">errorCode</a></li>
|
||||
<li>WRONG_PARAMETER : <a class="el" href="structerror_code.html#aa4279dfdaceed3bd57336cd4e38ed739">errorCode</a></li>
|
||||
<li>xdw : <a class="el" href="struct_doniach_sunjic_struct.html#a750e7260bf5d4c936dadde714fb2db52">DoniachSunjicStruct</a></li>
|
||||
<li>xw : <a class="el" href="struct_doniach_sunjic_struct.html#a45c3a3fa68850032e545907ca65ab982">DoniachSunjicStruct</a></li>
|
||||
<li>yw : <a class="el" href="struct_doniach_sunjic_struct.html#a6cef648ad0cf4be1dd9fbe33ff5df1eb">DoniachSunjicStruct</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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,74 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li class="current"><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="files.html"><span>File List</span></a></li>
|
||||
<li class="current"><a href="globals.html"><span>Globals</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow3" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li class="current"><a href="globals.html"><span>All</span></a></li>
|
||||
<li><a href="globals_func.html"><span>Functions</span></a></li>
|
||||
<li><a href="globals_vars.html"><span>Variables</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow4" class="tabs3">
|
||||
<ul class="tablist">
|
||||
<li class="current"><a href="globals.html#index_a"><span>a</span></a></li>
|
||||
<li><a href="globals_b.html#index_b"><span>b</span></a></li>
|
||||
<li><a href="globals_c.html#index_c"><span>c</span></a></li>
|
||||
<li><a href="globals_d.html#index_d"><span>d</span></a></li>
|
||||
<li><a href="globals_e.html#index_e"><span>e</span></a></li>
|
||||
<li><a href="globals_f.html#index_f"><span>f</span></a></li>
|
||||
<li><a href="globals_g.html#index_g"><span>g</span></a></li>
|
||||
<li><a href="globals_h.html#index_h"><span>h</span></a></li>
|
||||
<li><a href="globals_i.html#index_i"><span>i</span></a></li>
|
||||
<li><a href="globals_k.html#index_k"><span>k</span></a></li>
|
||||
<li><a href="globals_l.html#index_l"><span>l</span></a></li>
|
||||
<li><a href="globals_m.html#index_m"><span>m</span></a></li>
|
||||
<li><a href="globals_n.html#index_n"><span>n</span></a></li>
|
||||
<li><a href="globals_o.html#index_o"><span>o</span></a></li>
|
||||
<li><a href="globals_p.html#index_p"><span>p</span></a></li>
|
||||
<li><a href="globals_q.html#index_q"><span>q</span></a></li>
|
||||
<li><a href="globals_r.html#index_r"><span>r</span></a></li>
|
||||
<li><a href="globals_s.html#index_s"><span>s</span></a></li>
|
||||
<li><a href="globals_t.html#index_t"><span>t</span></a></li>
|
||||
<li><a href="globals_u.html#index_u"><span>u</span></a></li>
|
||||
<li><a href="globals_v.html#index_v"><span>v</span></a></li>
|
||||
<li><a href="globals_w.html#index_w"><span>w</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -121,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('globals.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -133,260 +77,125 @@ $(document).ready(function(){initNavTree('globals.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="contents">
|
||||
<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 class="anchor" id="index_a"></a>- a -</h3><ul>
|
||||
<li>ad_box_filter()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a27f0957d61f3c2d30a4854911b460c36">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_brick_slicer()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ae3b4756cdc12a4a4b15a770ba0069823">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_calc_cursor_profiles()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a72b57037abd27f65986034c0b4cc191e">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_calc_histogram()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a48b08ab53729d9d0477deaceedef2769">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_calc_profiles()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a48044f9ee518d47770e33ee9f381f204">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_collect_multiscan_y()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a3cadf0b28d1fd84e9922610c20868283">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_default_image_filter()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a6418a1b2d18b82cb71c0fecbd513a934">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_display()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ae2b11295d2715e9af019513923c64570">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_display_brick()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a65b07e355df20cfb692dfb32f472b478">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_display_histogram()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a8cc3ea3bea4e851e4144140a2da42a03">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_display_profiles()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a8fad5aebaca72887d5898b4c421bcdae">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_display_slice()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#af8d5e003fcff1f750685ed6f94717730">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_export_profile()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ad3e190d1ec1b82ebef00c9f9ac44b50a">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_rod()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a8de5d4f1bcca91df5bbff568ab7b582d">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_rod_x()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a83700e2faf844e2480c89b6ca4c66a79">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_rod_y()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a363af257a04d51fff2a8d5b282f65f21">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_rod_z()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a3483707fbdbfdbaec069591a5d3b07a6">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_slab()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a65bb359c057a9d900c486e186c9974df">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_slab_x()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#af612340d1d132cacda9de7bb77c2e0aa">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_slab_y()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a2eb6a0bcced893e827cfa4e1236e8460">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_slab_z()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a71f02613c4a4d21c014493e906dbe922">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_gizmo_set_plane()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#aee051acfe6a3c8214118b78dfe4854fd">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_load_dialog()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#aedff2e67d2e1bac907f2eaf24a6e5c3c">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>ad_profile_x()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#ab1a65cf82f6933db3dd7b564582e8ed1">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_profile_x_w()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#aa40fd5049f993e72fd52a66a6cdde7cc">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_profile_y()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#abb1eed32a982037ebab00f5c3ea95e62">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_profile_y_w()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a8b09e13162fa47cc076e1e661e80b002">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_profiles_crosshairs()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a6d20a8c6bf5ed143d375dee71fb3a6d5">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_profiles_cursor_mode()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a5657fc4dcd395aef637c19e8df57a418">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_profiles_hook()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a89a5e3e29a0cd09951dcdf13aa28d941">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_profiles_set_cursor()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ad2a84495ddac89bc8f4203fca56babfd">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_profiles_set_slice()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#abaf229d75d9d579a559295795a6bc2e1">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_slicer_init_bg()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a7334815c60e2c11e2754c07489a62f4b">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_slicer_move_bg()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a4af98ec7af48a653c6fac716ea8fa505">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_slicer_start_bg()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ad79b37ab4fcf2cbdad6874813d93d4b1">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_slicer_stop_bg()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a77a71985e716a300e0b61c233cd93f40">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_suggest_foldername()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#ad28dbbba73e553f7b5dcf8baf1c86786">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>ad_transpose_filter()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a8411f0cfec3515f1ae4f0140efc14318">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_update_profiles()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#afa2546f9cb03dfa8bf0cc9966f0b7a45">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>add_image_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a35a5cd8a21b48be8d726c69eb5fca134">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>adh5_default_reduction()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a245034d7a94536a24c78a7bfe22725b7">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_list_reduction_funcs()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#aa5e29dc1a380311d00a5f85be867e47b">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_complete()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#ab1040bf272c69dc69777b2f91df41fab">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_detector()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a84dc7f466b42dde5d96c49827b2122cf">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_detector_image()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a931a7bfaaf75d308a0ce3c74ffc751bc">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_detector_slabs()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a4a9741d1c19b10bb98b73bd5163a497b">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_info()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#ac76d5ba94a3d7c864437420d80c77064">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_preview()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a98f29671bdce6a5981e8865de8b9d483">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_reduced()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a98f9339cd2fae80d0d92451df88395aa">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_reduced_detector()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a3f2ac36f961941e46e80a775de8300e5">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_loadattr_all()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#acde16dc7a393250b17165344f865f7b5">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_redim()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#acfa6d2675e63f4f686289ef853b262a9">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>
|
||||
<li>adh5_scale_scan()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a1fdcc02340375afe8d8cd7537c6e9cfb">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_scale_scienta()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a227e4db1c51a910dcf86d355473fe74e">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_setup_profile()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a9439de3b676e686eeca4e6b2588c01a6">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_test_reduction_func()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a706fb32ee79b589366dec1cf9f7e9d02">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>AfterCompiledHook()
|
||||
: <a class="el" href="pearl-arpes_8ipf.html#a8e4eacc6efacf2c65615c1ea72d722ed">pearl-arpes.ipf</a>
|
||||
, <a class="el" href="pearl-anglescan-tracker_8ipf.html#a8e4eacc6efacf2c65615c1ea72d722ed">pearl-anglescan-tracker.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>
|
||||
</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>
|
||||
</li>
|
||||
<li>AppendToGraphIterator()
|
||||
: <a class="el" href="pearl-tools_8ipf.html#a90c62bdfc186e2482ccb18113a591d5e">pearl-tools.ipf</a>
|
||||
</li>
|
||||
<li>ast_add_image()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a43d85b93bb42a67b8e8afb9afc8d8eae">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ast_callback_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a4cf5ad2fdf771ffc157a3924a03f5a46">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ast_callback_detector()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#ac953a75b45d65adf37ce5560bf441876">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ast_callback_manip()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a9b4acc299c5e698695baf0b4817ff7eb">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ast_close()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a8a74ddd33e286105a45a89105de72621">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ast_export()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#ac9c92805f39c7a5c68d4c017d14ee178">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ast_import()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#ae4ece97352b85ced47e954c025e3b69b">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ast_prepare()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a766f90a9dad70d9deb4272ba480ee84a">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ast_set_processing()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a02271bf812a3e3f87c958f4c58e9f71b">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ast_setup()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a5fb1f1abddb56b129f053605035d3281">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ast_update_detector()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a150243e26e8adf8b354b8afde064136d">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>ast_window_hook()
|
||||
: <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>
|
||||
</li>
|
||||
<li>Au4f()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a13a5ee22049d9a3379cd6e55654e70a3">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>Au4f_2p2()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a24cd6a0c96ef8c720e371bb31ac0a479">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>Au4f_2p3()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a709f7c4585b1d850ea8aae1885ac18cb">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<h3><a id="index_a" name="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>
|
||||
<li>ad_brick_slicer() : <a class="el" href="pearl-area-display_8ipf.html#ae3b4756cdc12a4a4b15a770ba0069823">pearl-area-display.ipf</a></li>
|
||||
<li>ad_calc_cursor_profiles() : <a class="el" href="pearl-area-display_8ipf.html#a72b57037abd27f65986034c0b4cc191e">pearl-area-display.ipf</a></li>
|
||||
<li>ad_calc_histogram() : <a class="el" href="pearl-area-display_8ipf.html#a48b08ab53729d9d0477deaceedef2769">pearl-area-display.ipf</a></li>
|
||||
<li>ad_calc_profiles() : <a class="el" href="pearl-area-display_8ipf.html#a48044f9ee518d47770e33ee9f381f204">pearl-area-display.ipf</a></li>
|
||||
<li>ad_collect_multiscan_y() : <a class="el" href="pearl-area-profiles_8ipf.html#a3cadf0b28d1fd84e9922610c20868283">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_default_image_filter() : <a class="el" href="pearl-area-display_8ipf.html#a6418a1b2d18b82cb71c0fecbd513a934">pearl-area-display.ipf</a></li>
|
||||
<li>ad_display() : <a class="el" href="pearl-area-display_8ipf.html#ae2b11295d2715e9af019513923c64570">pearl-area-display.ipf</a></li>
|
||||
<li>ad_display_brick() : <a class="el" href="pearl-area-display_8ipf.html#a65b07e355df20cfb692dfb32f472b478">pearl-area-display.ipf</a></li>
|
||||
<li>ad_display_histogram() : <a class="el" href="pearl-area-display_8ipf.html#a8cc3ea3bea4e851e4144140a2da42a03">pearl-area-display.ipf</a></li>
|
||||
<li>ad_display_profiles() : <a class="el" href="pearl-area-display_8ipf.html#a8fad5aebaca72887d5898b4c421bcdae">pearl-area-display.ipf</a></li>
|
||||
<li>ad_display_slice() : <a class="el" href="pearl-area-display_8ipf.html#af8d5e003fcff1f750685ed6f94717730">pearl-area-display.ipf</a></li>
|
||||
<li>ad_export_profile() : <a class="el" href="pearl-area-display_8ipf.html#ad3e190d1ec1b82ebef00c9f9ac44b50a">pearl-area-display.ipf</a></li>
|
||||
<li>ad_extract_rod() : <a class="el" href="pearl-area-profiles_8ipf.html#a8de5d4f1bcca91df5bbff568ab7b582d">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_extract_rod_x() : <a class="el" href="pearl-area-profiles_8ipf.html#a83700e2faf844e2480c89b6ca4c66a79">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_extract_rod_y() : <a class="el" href="pearl-area-profiles_8ipf.html#a363af257a04d51fff2a8d5b282f65f21">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_extract_rod_z() : <a class="el" href="pearl-area-profiles_8ipf.html#a3483707fbdbfdbaec069591a5d3b07a6">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_extract_slab() : <a class="el" href="pearl-area-profiles_8ipf.html#a65bb359c057a9d900c486e186c9974df">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_extract_slab_x() : <a class="el" href="pearl-area-profiles_8ipf.html#af612340d1d132cacda9de7bb77c2e0aa">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_extract_slab_y() : <a class="el" href="pearl-area-profiles_8ipf.html#a2eb6a0bcced893e827cfa4e1236e8460">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_extract_slab_z() : <a class="el" href="pearl-area-profiles_8ipf.html#a71f02613c4a4d21c014493e906dbe922">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_gizmo_set_plane() : <a class="el" href="pearl-area-display_8ipf.html#aee051acfe6a3c8214118b78dfe4854fd">pearl-area-display.ipf</a></li>
|
||||
<li>ad_load_dialog() : <a class="el" href="pearl-area-import_8ipf.html#aedff2e67d2e1bac907f2eaf24a6e5c3c">pearl-area-import.ipf</a></li>
|
||||
<li>ad_profile_x() : <a class="el" href="pearl-area-profiles_8ipf.html#ab1a65cf82f6933db3dd7b564582e8ed1">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_profile_x_w() : <a class="el" href="pearl-area-profiles_8ipf.html#aa40fd5049f993e72fd52a66a6cdde7cc">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_profile_y() : <a class="el" href="pearl-area-profiles_8ipf.html#abb1eed32a982037ebab00f5c3ea95e62">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_profile_y_w() : <a class="el" href="pearl-area-profiles_8ipf.html#a8b09e13162fa47cc076e1e661e80b002">pearl-area-profiles.ipf</a></li>
|
||||
<li>ad_profiles_crosshairs() : <a class="el" href="pearl-area-display_8ipf.html#a6d20a8c6bf5ed143d375dee71fb3a6d5">pearl-area-display.ipf</a></li>
|
||||
<li>ad_profiles_cursor_mode() : <a class="el" href="pearl-area-display_8ipf.html#a5657fc4dcd395aef637c19e8df57a418">pearl-area-display.ipf</a></li>
|
||||
<li>ad_profiles_hook() : <a class="el" href="pearl-area-display_8ipf.html#a89a5e3e29a0cd09951dcdf13aa28d941">pearl-area-display.ipf</a></li>
|
||||
<li>ad_profiles_set_cursor() : <a class="el" href="pearl-area-display_8ipf.html#ad2a84495ddac89bc8f4203fca56babfd">pearl-area-display.ipf</a></li>
|
||||
<li>ad_profiles_set_slice() : <a class="el" href="pearl-area-display_8ipf.html#abaf229d75d9d579a559295795a6bc2e1">pearl-area-display.ipf</a></li>
|
||||
<li>ad_slicer_init_bg() : <a class="el" href="pearl-area-display_8ipf.html#a7334815c60e2c11e2754c07489a62f4b">pearl-area-display.ipf</a></li>
|
||||
<li>ad_slicer_move_bg() : <a class="el" href="pearl-area-display_8ipf.html#a4af98ec7af48a653c6fac716ea8fa505">pearl-area-display.ipf</a></li>
|
||||
<li>ad_slicer_start_bg() : <a class="el" href="pearl-area-display_8ipf.html#ad79b37ab4fcf2cbdad6874813d93d4b1">pearl-area-display.ipf</a></li>
|
||||
<li>ad_slicer_stop_bg() : <a class="el" href="pearl-area-display_8ipf.html#a77a71985e716a300e0b61c233cd93f40">pearl-area-display.ipf</a></li>
|
||||
<li>ad_suggest_foldername() : <a class="el" href="pearl-area-import_8ipf.html#ad28dbbba73e553f7b5dcf8baf1c86786">pearl-area-import.ipf</a></li>
|
||||
<li>ad_transpose_filter() : <a class="el" href="pearl-area-display_8ipf.html#a8411f0cfec3515f1ae4f0140efc14318">pearl-area-display.ipf</a></li>
|
||||
<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>
|
||||
<li>adh5_default_reduction() : <a class="el" href="pearl-area-import_8ipf.html#ade69cb0f82e0c9cf6082d5fcc29f742f">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_get_result_waves() : <a class="el" href="pearl-area-import_8ipf.html#a27a72a3901a5342ca9dea02e3219631c">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_list_reduction_funcs() : <a class="el" href="pearl-area-import_8ipf.html#aa5e29dc1a380311d00a5f85be867e47b">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_load_complete() : <a class="el" href="pearl-area-import_8ipf.html#ab1040bf272c69dc69777b2f91df41fab">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_load_detector() : <a class="el" href="pearl-area-import_8ipf.html#a84dc7f466b42dde5d96c49827b2122cf">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_load_detector_image() : <a class="el" href="pearl-area-import_8ipf.html#a931a7bfaaf75d308a0ce3c74ffc751bc">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_load_detector_slabs() : <a class="el" href="pearl-area-import_8ipf.html#a4a9741d1c19b10bb98b73bd5163a497b">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_load_info() : <a class="el" href="pearl-area-import_8ipf.html#ac76d5ba94a3d7c864437420d80c77064">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_load_preview() : <a class="el" href="pearl-area-import_8ipf.html#a98f29671bdce6a5981e8865de8b9d483">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_load_reduced() : <a class="el" href="pearl-area-import_8ipf.html#a98f9339cd2fae80d0d92451df88395aa">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_load_reduced_detector() : <a class="el" href="pearl-area-import_8ipf.html#a3f2ac36f961941e46e80a775de8300e5">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_loadattr_all() : <a class="el" href="pearl-area-import_8ipf.html#acde16dc7a393250b17165344f865f7b5">pearl-area-import.ipf</a></li>
|
||||
<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>
|
||||
<li>adh5_scale_scan() : <a class="el" href="pearl-area-import_8ipf.html#a1fdcc02340375afe8d8cd7537c6e9cfb">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_scale_scienta() : <a class="el" href="pearl-area-import_8ipf.html#a227e4db1c51a910dcf86d355473fe74e">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_setup_profile() : <a class="el" href="pearl-area-import_8ipf.html#a9439de3b676e686eeca4e6b2588c01a6">pearl-area-import.ipf</a></li>
|
||||
<li>adh5_test_reduction_func() : <a class="el" href="pearl-area-import_8ipf.html#a98804ce23a5c2c314ac243baa0824424">pearl-area-import.ipf</a></li>
|
||||
<li>AfterCompiledHook() : <a class="el" href="pearl-arpes_8ipf.html#a8e4eacc6efacf2c65615c1ea72d722ed">pearl-arpes.ipf</a>, <a class="el" href="pearl-anglescan-tracker_8ipf.html#a8e4eacc6efacf2c65615c1ea72d722ed">pearl-anglescan-tracker.ipf</a>, <a class="el" href="pearl-anglescan-panel_8ipf.html#a8e4eacc6efacf2c65615c1ea72d722ed">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>AfterFileOpenHook() : <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>, <a class="el" href="pearl-scilog_8ipf.html#a3f524f5190341d2accc8cb8c3ed2ceb5">pearl-scilog.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="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></li>
|
||||
<li>arrange_controls() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a65dbeab54647d7c27a139035d69c812f">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>asp_calculate_output() : <a class="el" href="pearl-anglescan-panel_8ipf.html#af21424ce00e4bac1ac990d2bb83d46dc">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>asp_close_graphs() : <a class="el" href="pearl-anglescan-panel_8ipf.html#aac9d4d0388cbe8e6aa8f47b1c5276d83">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>asp_display_dist_check() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a59886414c7dc2486c5a17f078896c705">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>asp_display_output() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a8e540427fab71f879e84003c49c59f22">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>asp_display_previews() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a66b3eef1fd0be13dfef0a66781f55062">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>asp_duplicate_output() : <a class="el" href="pearl-anglescan-panel_8ipf.html#adf7c5a4e7c66c3d6e13d01674b9cf47f">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>asp_import_raw() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a21aab19fbcde395df6e1ea8654b3af9a">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>asp_save_output_etpi() : <a class="el" href="pearl-anglescan-panel_8ipf.html#abb4d53822bc34bda0e38332c7777ebac">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>asp_save_output_itx() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a0e0f10d125f1cdacffa3bff9b0854aa9">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>asp_show_panel() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a452f09c3057638056ac2b5a15ac660b2">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>asp_update_graph() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a93dc5a029ae9831066e6ad133522ee88">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>ast_add_image() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a43d85b93bb42a67b8e8afb9afc8d8eae">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>ast_callback_data() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a4cf5ad2fdf771ffc157a3924a03f5a46">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>ast_callback_detector() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#ac953a75b45d65adf37ce5560bf441876">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>ast_callback_manip() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a9b4acc299c5e698695baf0b4817ff7eb">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>ast_close() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a8a74ddd33e286105a45a89105de72621">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>ast_export() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#ac9c92805f39c7a5c68d4c017d14ee178">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>ast_import() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#ae4ece97352b85ced47e954c025e3b69b">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>ast_prepare() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a766f90a9dad70d9deb4272ba480ee84a">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>ast_set_processing() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a02271bf812a3e3f87c958f4c58e9f71b">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>ast_setup() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a5fb1f1abddb56b129f053605035d3281">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>ast_update_detector() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a150243e26e8adf8b354b8afde064136d">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>ast_window_hook() : <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#a844467a592e5b26b2324326f22b7da89">pearl-data-explorer.ipf</a></li>
|
||||
<li>Au4f() : <a class="el" href="pearl-fitfuncs_8ipf.html#a13a5ee22049d9a3379cd6e55654e70a3">pearl-fitfuncs.ipf</a></li>
|
||||
<li>Au4f_2p2() : <a class="el" href="pearl-fitfuncs_8ipf.html#a24cd6a0c96ef8c720e371bb31ac0a479">pearl-fitfuncs.ipf</a></li>
|
||||
<li>Au4f_2p3() : <a class="el" href="pearl-fitfuncs_8ipf.html#a709f7c4585b1d850ea8aae1885ac18cb">pearl-fitfuncs.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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,74 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li class="current"><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="files.html"><span>File List</span></a></li>
|
||||
<li class="current"><a href="globals.html"><span>Globals</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow3" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li class="current"><a href="globals.html"><span>All</span></a></li>
|
||||
<li><a href="globals_func.html"><span>Functions</span></a></li>
|
||||
<li><a href="globals_vars.html"><span>Variables</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow4" class="tabs3">
|
||||
<ul class="tablist">
|
||||
<li><a href="globals.html#index_a"><span>a</span></a></li>
|
||||
<li class="current"><a href="globals_b.html#index_b"><span>b</span></a></li>
|
||||
<li><a href="globals_c.html#index_c"><span>c</span></a></li>
|
||||
<li><a href="globals_d.html#index_d"><span>d</span></a></li>
|
||||
<li><a href="globals_e.html#index_e"><span>e</span></a></li>
|
||||
<li><a href="globals_f.html#index_f"><span>f</span></a></li>
|
||||
<li><a href="globals_g.html#index_g"><span>g</span></a></li>
|
||||
<li><a href="globals_h.html#index_h"><span>h</span></a></li>
|
||||
<li><a href="globals_i.html#index_i"><span>i</span></a></li>
|
||||
<li><a href="globals_k.html#index_k"><span>k</span></a></li>
|
||||
<li><a href="globals_l.html#index_l"><span>l</span></a></li>
|
||||
<li><a href="globals_m.html#index_m"><span>m</span></a></li>
|
||||
<li><a href="globals_n.html#index_n"><span>n</span></a></li>
|
||||
<li><a href="globals_o.html#index_o"><span>o</span></a></li>
|
||||
<li><a href="globals_p.html#index_p"><span>p</span></a></li>
|
||||
<li><a href="globals_q.html#index_q"><span>q</span></a></li>
|
||||
<li><a href="globals_r.html#index_r"><span>r</span></a></li>
|
||||
<li><a href="globals_s.html#index_s"><span>s</span></a></li>
|
||||
<li><a href="globals_t.html#index_t"><span>t</span></a></li>
|
||||
<li><a href="globals_u.html#index_u"><span>u</span></a></li>
|
||||
<li><a href="globals_v.html#index_v"><span>v</span></a></li>
|
||||
<li><a href="globals_w.html#index_w"><span>w</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -121,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_b.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('globals_b.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -133,112 +77,72 @@ $(document).ready(function(){initNavTree('globals_b.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="contents">
|
||||
<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 class="anchor" id="index_b"></a>- b -</h3><ul>
|
||||
<li>BeforeFileOpenHook()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#ae2cfa1ac6651cfc3fb0dfce03494995b">pearl-area-import.ipf</a>
|
||||
, <a class="el" href="pearl-matrix-import_8ipf.html#ae2cfa1ac6651cfc3fb0dfce03494995b">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>bp_attach()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#acbba78d869a543edf7c2b80d7a8d2344">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_attach_allnone()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a4040736819edadf4b26982bcfdb9c7b9">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_attach_top()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a91b5f51982d23a36d1760b8874b5736a">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_attach_updown()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#aa1dfae6d78a367d50ee8fc1ffe9cb69b">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_attr_notebook()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a4ef196f752bb5780ed4f4a588f9ebc81">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_browse_filepath()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a02a64144b7ed2c1bc230e265c55e81a1">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_capture()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#afaec8443094530fd1e723251e04c5dc9">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>bp_clear()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ab39637298c93b7aefd67febf3a4e7672">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_dataset_display()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a5660c6f5f78d880b0805bad4eefed1d5">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>
|
||||
<li>bp_extract_slice()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a31461b664ec651a39442e9a46ffd88c9">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>bp_file_next()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a9cefcdc49b2169e99c743b0a683ed3a6">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_file_prev()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a6aa44ff12b8530adbaaaf7405b1a68ba">pearl-data-explorer.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>
|
||||
<li>bp_load_prefs()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a1868754e64cb1448e564c0936e78574d">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>bp_login()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a14f8376a0485aa654ccf3d2f30ab4d01">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_logout()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ad4472ea917691c41ad0b4ea6f36010a5">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_move_slice()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ab8c9979c6f3ab95f983c2a525a69c035">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>bp_move_slice_center()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#abe702d40071e3c5e662eb8d47dd6d885">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>bp_reset_cursors()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a24b17f99fafd8043ed3e4502000da316">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>bp_save_graphs()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a8251cea45c8d1f1993a4051a6d0760c4">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>bp_save_prefs()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#ad8a01428a137278a31d4f1f4f9c634c5">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<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>
|
||||
<h3><a id="index_b" name="index_b"></a>- b -</h3><ul>
|
||||
<li>BeforeFileOpenHook() : <a class="el" href="pearl-matrix-import_8ipf.html#ae2cfa1ac6651cfc3fb0dfce03494995b">pearl-matrix-import.ipf</a>, <a class="el" href="pearl-area-import_8ipf.html#ae2cfa1ac6651cfc3fb0dfce03494995b">pearl-area-import.ipf</a></li>
|
||||
<li>bp_attach() : <a class="el" href="pearl-elog_8ipf.html#acbba78d869a543edf7c2b80d7a8d2344">pearl-elog.ipf</a></li>
|
||||
<li>bp_attach_allnone() : <a class="el" href="pearl-elog_8ipf.html#a4040736819edadf4b26982bcfdb9c7b9">pearl-elog.ipf</a>, <a class="el" href="pearl-scilog_8ipf.html#a4040736819edadf4b26982bcfdb9c7b9">pearl-scilog.ipf</a></li>
|
||||
<li>bp_attach_top() : <a class="el" href="pearl-elog_8ipf.html#a91b5f51982d23a36d1760b8874b5736a">pearl-elog.ipf</a>, <a class="el" href="pearl-scilog_8ipf.html#a91b5f51982d23a36d1760b8874b5736a">pearl-scilog.ipf</a></li>
|
||||
<li>bp_attach_updown() : <a class="el" href="pearl-elog_8ipf.html#aa1dfae6d78a367d50ee8fc1ffe9cb69b">pearl-elog.ipf</a>, <a class="el" href="pearl-scilog_8ipf.html#aa1dfae6d78a367d50ee8fc1ffe9cb69b">pearl-scilog.ipf</a></li>
|
||||
<li>bp_attr_notebook() : <a class="el" href="pearl-data-explorer_8ipf.html#a4ef196f752bb5780ed4f4a588f9ebc81">pearl-data-explorer.ipf</a></li>
|
||||
<li>bp_browse_filepath() : <a class="el" href="pearl-data-explorer_8ipf.html#a02a64144b7ed2c1bc230e265c55e81a1">pearl-data-explorer.ipf</a></li>
|
||||
<li>bp_capture() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#afaec8443094530fd1e723251e04c5dc9">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>bp_clear() : <a class="el" href="pearl-elog_8ipf.html#ab39637298c93b7aefd67febf3a4e7672">pearl-elog.ipf</a>, <a class="el" href="pearl-scilog_8ipf.html#ab39637298c93b7aefd67febf3a4e7672">pearl-scilog.ipf</a></li>
|
||||
<li>bp_crop_preview() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a57c666f93cb4310fadf13b1916eaf134">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_display_dataset() : <a class="el" href="pearl-data-explorer_8ipf.html#a0f7473343cf773af9efedee1a18ac5db">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></li>
|
||||
<li>bp_file_next() : <a class="el" href="pearl-data-explorer_8ipf.html#a9cefcdc49b2169e99c743b0a683ed3a6">pearl-data-explorer.ipf</a></li>
|
||||
<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_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>, <a class="el" href="pearl-data-explorer_8ipf.html#a1868754e64cb1448e564c0936e78574d">pearl-data-explorer.ipf</a></li>
|
||||
<li>bp_login() : <a class="el" href="pearl-elog_8ipf.html#a14f8376a0485aa654ccf3d2f30ab4d01">pearl-elog.ipf</a></li>
|
||||
<li>bp_logout() : <a class="el" href="pearl-elog_8ipf.html#ad4472ea917691c41ad0b4ea6f36010a5">pearl-elog.ipf</a></li>
|
||||
<li>bp_move_slice() : <a class="el" href="pearl-area-display_8ipf.html#ab8c9979c6f3ab95f983c2a525a69c035">pearl-area-display.ipf</a></li>
|
||||
<li>bp_move_slice_center() : <a class="el" href="pearl-area-display_8ipf.html#abe702d40071e3c5e662eb8d47dd6d885">pearl-area-display.ipf</a></li>
|
||||
<li>bp_norm_alpha_check() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a630dfc775d45843c71c279bbb01d05a6">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_norm_alpha_preview() : <a class="el" href="pearl-anglescan-panel_8ipf.html#aaaf3facc118f90a8f1b32948446899b3">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_norm_phi_check() : <a class="el" href="pearl-anglescan-panel_8ipf.html#ae42eb7f46e5c1a1b5d334ebb5e94d2d3">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_norm_phi_preview() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a740c8a80ab2fc0550a05cf3b032821d0">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_norm_theta_check() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a0931ce925d2dae6a1bb7e4a65a8a2be7">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_norm_theta_preview() : <a class="el" href="pearl-anglescan-panel_8ipf.html#af57abb0a7d41b800d33bb748f9fc5c38">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_norm_thetaphi_check() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a89caab501e8f15262d6e4f2fa5b4a1bd">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_norm_thetaphi_preview() : <a class="el" href="pearl-anglescan-panel_8ipf.html#aaa3478a3b0f26b12a12196cfaa87a8ae">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_output_calc() : <a class="el" href="pearl-anglescan-panel_8ipf.html#adefddc5f384948c9dab3ee65b4a0668a">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_output_duplicate() : <a class="el" href="pearl-anglescan-panel_8ipf.html#ae838bde232c45d81f88303e91b16326b">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_output_etpi() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a16d2f6a58fedc370d7901126bb814bbb">pearl-anglescan-panel.ipf</a></li>
|
||||
<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>
|
||||
<li>bp_save_graphs() : <a class="el" href="pearl-elog_8ipf.html#a8251cea45c8d1f1993a4051a6d0760c4">pearl-elog.ipf</a>, <a class="el" href="pearl-scilog_8ipf.html#a8251cea45c8d1f1993a4051a6d0760c4">pearl-scilog.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></li>
|
||||
<li>bp_source_select() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a1e50019bc895a0787cb3f07d776e9463">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_source_update() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a7ab3962d1d9d50d6cd285d40d4a7ce50">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>bp_submit() : <a class="el" href="pearl-elog_8ipf.html#adeff6678e57313cb218824f06d32b5ec">pearl-elog.ipf</a>, <a class="el" href="pearl-scilog_8ipf.html#adeff6678e57313cb218824f06d32b5ec">pearl-scilog.ipf</a></li>
|
||||
<li>bp_update_filelist() : <a class="el" href="pearl-data-explorer_8ipf.html#a45be265789a5260e3daa05eca0ec309e">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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,74 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li class="current"><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="files.html"><span>File List</span></a></li>
|
||||
<li class="current"><a href="globals.html"><span>Globals</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow3" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li class="current"><a href="globals.html"><span>All</span></a></li>
|
||||
<li><a href="globals_func.html"><span>Functions</span></a></li>
|
||||
<li><a href="globals_vars.html"><span>Variables</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow4" class="tabs3">
|
||||
<ul class="tablist">
|
||||
<li><a href="globals.html#index_a"><span>a</span></a></li>
|
||||
<li><a href="globals_b.html#index_b"><span>b</span></a></li>
|
||||
<li class="current"><a href="globals_c.html#index_c"><span>c</span></a></li>
|
||||
<li><a href="globals_d.html#index_d"><span>d</span></a></li>
|
||||
<li><a href="globals_e.html#index_e"><span>e</span></a></li>
|
||||
<li><a href="globals_f.html#index_f"><span>f</span></a></li>
|
||||
<li><a href="globals_g.html#index_g"><span>g</span></a></li>
|
||||
<li><a href="globals_h.html#index_h"><span>h</span></a></li>
|
||||
<li><a href="globals_i.html#index_i"><span>i</span></a></li>
|
||||
<li><a href="globals_k.html#index_k"><span>k</span></a></li>
|
||||
<li><a href="globals_l.html#index_l"><span>l</span></a></li>
|
||||
<li><a href="globals_m.html#index_m"><span>m</span></a></li>
|
||||
<li><a href="globals_n.html#index_n"><span>n</span></a></li>
|
||||
<li><a href="globals_o.html#index_o"><span>o</span></a></li>
|
||||
<li><a href="globals_p.html#index_p"><span>p</span></a></li>
|
||||
<li><a href="globals_q.html#index_q"><span>q</span></a></li>
|
||||
<li><a href="globals_r.html#index_r"><span>r</span></a></li>
|
||||
<li><a href="globals_s.html#index_s"><span>s</span></a></li>
|
||||
<li><a href="globals_t.html#index_t"><span>t</span></a></li>
|
||||
<li><a href="globals_u.html#index_u"><span>u</span></a></li>
|
||||
<li><a href="globals_v.html#index_v"><span>v</span></a></li>
|
||||
<li><a href="globals_w.html#index_w"><span>w</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -121,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_c.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('globals_c.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -133,96 +77,62 @@ $(document).ready(function(){initNavTree('globals_c.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="contents">
|
||||
<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 class="anchor" id="index_c"></a>- c -</h3><ul>
|
||||
<li>Calc_DoniachSunjicBroad()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#aff8e8b103c32c8e723b57ce7ad5ef0f5">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>calc_graph_azi()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a4fc744e24e3e9c5efb17f14ab622bcae">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>calc_graph_polar()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ae2b036a06ffac8d2bb292a65401f8a9a">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>calc_graph_radius()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a75219b38ea58012abcffc848d536faa4">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>calc_nth()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a9624070f3e938378631432430d47a389">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>calc_phi_step()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a999a9cd7d00d3e1ec8e768228a664ad1">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>Calc_The_step()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a1fb6aa7870dfbf0ed92660b7aae579e0">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>calc_y_profile_mins()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#ab58b7c0a88743ecbcb0fc8296577a792">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>CalcN_Theta()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ac0def1ded61f9cd758df0c99f4ff9470">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>capture_int_linbg_cursors()
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#ae6877c51ad15c2ba8a69c65356cb34b8">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
<li>cart2polar()
|
||||
: <a class="el" href="pearl-polar-coordinates_8ipf.html#aca0a5aaa4854d83ef667c53007312fb8">pearl-polar-coordinates.ipf</a>
|
||||
</li>
|
||||
<li>cart2polar_wave()
|
||||
: <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>
|
||||
</li>
|
||||
<li>check_package_folder()
|
||||
: <a class="el" href="pearl-matrix-import_8ipf.html#ac7790f06151821678a65ab0065a5323e">pearl-matrix-import.ipf</a>
|
||||
</li>
|
||||
<li>cleanup_temp_files()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ad7640d06f004ecd4a8980ea29d24dcbe">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>clear_hemi_grid()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a3ec6935a5903d0974c93a2072d743013">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>convert_angles_ttpa2polar()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a3cc7eddf5c6b0658260cfb32dd2c026d">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>convert_angles_ttpd2polar()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a2b38c6c9b6e60593ba69d3773b6bc779">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>create_cmd_file()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ac8b61eefed231018cc36d47e95bd8c22">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>create_graph_file()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a2417d079483f773f8231c5f2caba6cf0">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>create_message_file()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#af652f6f257be1ee749fe788d1b03f75f">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>create_rotation_matrix_free()
|
||||
: <a class="el" href="pearl-vector-operations_8ipf.html#a72c3200a7344c708ea76e20cc2c19c43">pearl-vector-operations.ipf</a>
|
||||
</li>
|
||||
<li>crop_strip()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ab65d25af7476ed18f7bf7359614a912b">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>
|
||||
<h3><a id="index_c" name="index_c"></a>- c -</h3><ul>
|
||||
<li>Calc_DoniachSunjicBroad() : <a class="el" href="pearl-fitfuncs_8ipf.html#aff8e8b103c32c8e723b57ce7ad5ef0f5">pearl-fitfuncs.ipf</a></li>
|
||||
<li>calc_graph_azi() : <a class="el" href="pearl-anglescan-process_8ipf.html#a4fc744e24e3e9c5efb17f14ab622bcae">pearl-anglescan-process.ipf</a></li>
|
||||
<li>calc_graph_polar() : <a class="el" href="pearl-anglescan-process_8ipf.html#ae2b036a06ffac8d2bb292a65401f8a9a">pearl-anglescan-process.ipf</a></li>
|
||||
<li>calc_graph_radius() : <a class="el" href="pearl-anglescan-process_8ipf.html#a75219b38ea58012abcffc848d536faa4">pearl-anglescan-process.ipf</a></li>
|
||||
<li>calc_nth() : <a class="el" href="pearl-anglescan-process_8ipf.html#a9624070f3e938378631432430d47a389">pearl-anglescan-process.ipf</a></li>
|
||||
<li>calc_phi_step() : <a class="el" href="pearl-anglescan-process_8ipf.html#a999a9cd7d00d3e1ec8e768228a664ad1">pearl-anglescan-process.ipf</a></li>
|
||||
<li>Calc_The_step() : <a class="el" href="pearl-anglescan-process_8ipf.html#a1fb6aa7870dfbf0ed92660b7aae579e0">pearl-anglescan-process.ipf</a></li>
|
||||
<li>calc_y_profile_mins() : <a class="el" href="pearl-area-profiles_8ipf.html#ab58b7c0a88743ecbcb0fc8296577a792">pearl-area-profiles.ipf</a></li>
|
||||
<li>CalcN_Theta() : <a class="el" href="pearl-anglescan-process_8ipf.html#ac0def1ded61f9cd758df0c99f4ff9470">pearl-anglescan-process.ipf</a></li>
|
||||
<li>capture_int_linbg_cursors() : <a class="el" href="pearl-scienta-preprocess_8ipf.html#ae6877c51ad15c2ba8a69c65356cb34b8">pearl-scienta-preprocess.ipf</a></li>
|
||||
<li>cart2polar() : <a class="el" href="pearl-polar-coordinates_8ipf.html#aca0a5aaa4854d83ef667c53007312fb8">pearl-polar-coordinates.ipf</a></li>
|
||||
<li>cart2polar_wave() : <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#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></li>
|
||||
<li>check_norm_phi() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a91d5343cc96730de12b535cb0bef9df2">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>check_norm_theta() : <a class="el" href="pearl-anglescan-panel_8ipf.html#addddc12e5b622a3d00756d724e5d05a9">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>check_norm_thetaphi() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a4708e7385790d1a9f2d58c4d64a60653">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>check_package_folder() : <a class="el" href="pearl-matrix-import_8ipf.html#ac7790f06151821678a65ab0065a5323e">pearl-matrix-import.ipf</a></li>
|
||||
<li>cleanup_temp_files() : <a class="el" href="pearl-elog_8ipf.html#ad7640d06f004ecd4a8980ea29d24dcbe">pearl-elog.ipf</a>, <a class="el" href="pearl-scilog_8ipf.html#ad7640d06f004ecd4a8980ea29d24dcbe">pearl-scilog.ipf</a></li>
|
||||
<li>clear_hemi_grid() : <a class="el" href="pearl-anglescan-process_8ipf.html#a3ec6935a5903d0974c93a2072d743013">pearl-anglescan-process.ipf</a></li>
|
||||
<li>clear_package_data() : <a class="el" href="pearl-elog_8ipf.html#afd2102e5a0d4399350afcea1ab6f761f">pearl-elog.ipf</a>, <a class="el" href="pearl-scilog_8ipf.html#afd2102e5a0d4399350afcea1ab6f761f">pearl-scilog.ipf</a></li>
|
||||
<li>convert_angles_ttpa2polar() : <a class="el" href="pearl-anglescan-process_8ipf.html#a3cc7eddf5c6b0658260cfb32dd2c026d">pearl-anglescan-process.ipf</a></li>
|
||||
<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_attrs_file() : <a class="el" href="pearl-scilog_8ipf.html#ae58dd458b6e908f6094b027c36ea7e21">pearl-scilog.ipf</a></li>
|
||||
<li>create_cmd_file() : <a class="el" href="pearl-scilog_8ipf.html#ab77fd77df430227e747c1b92f71c5b49">pearl-scilog.ipf</a>, <a class="el" href="pearl-elog_8ipf.html#ac8b61eefed231018cc36d47e95bd8c22">pearl-elog.ipf</a></li>
|
||||
<li>create_graph_file() : <a class="el" href="pearl-elog_8ipf.html#a2417d079483f773f8231c5f2caba6cf0">pearl-elog.ipf</a>, <a class="el" href="pearl-scilog_8ipf.html#a2417d079483f773f8231c5f2caba6cf0">pearl-scilog.ipf</a></li>
|
||||
<li>create_message_file() : <a class="el" href="pearl-elog_8ipf.html#af652f6f257be1ee749fe788d1b03f75f">pearl-elog.ipf</a>, <a class="el" href="pearl-scilog_8ipf.html#af652f6f257be1ee749fe788d1b03f75f">pearl-scilog.ipf</a></li>
|
||||
<li>create_rotation_matrix_free() : <a class="el" href="pearl-vector-operations_8ipf.html#a72c3200a7344c708ea76e20cc2c19c43">pearl-vector-operations.ipf</a></li>
|
||||
<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>
|
||||
</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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,74 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li class="current"><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="files.html"><span>File List</span></a></li>
|
||||
<li class="current"><a href="globals.html"><span>Globals</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow3" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li class="current"><a href="globals.html"><span>All</span></a></li>
|
||||
<li><a href="globals_func.html"><span>Functions</span></a></li>
|
||||
<li><a href="globals_vars.html"><span>Variables</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow4" class="tabs3">
|
||||
<ul class="tablist">
|
||||
<li><a href="globals.html#index_a"><span>a</span></a></li>
|
||||
<li><a href="globals_b.html#index_b"><span>b</span></a></li>
|
||||
<li><a href="globals_c.html#index_c"><span>c</span></a></li>
|
||||
<li class="current"><a href="globals_d.html#index_d"><span>d</span></a></li>
|
||||
<li><a href="globals_e.html#index_e"><span>e</span></a></li>
|
||||
<li><a href="globals_f.html#index_f"><span>f</span></a></li>
|
||||
<li><a href="globals_g.html#index_g"><span>g</span></a></li>
|
||||
<li><a href="globals_h.html#index_h"><span>h</span></a></li>
|
||||
<li><a href="globals_i.html#index_i"><span>i</span></a></li>
|
||||
<li><a href="globals_k.html#index_k"><span>k</span></a></li>
|
||||
<li><a href="globals_l.html#index_l"><span>l</span></a></li>
|
||||
<li><a href="globals_m.html#index_m"><span>m</span></a></li>
|
||||
<li><a href="globals_n.html#index_n"><span>n</span></a></li>
|
||||
<li><a href="globals_o.html#index_o"><span>o</span></a></li>
|
||||
<li><a href="globals_p.html#index_p"><span>p</span></a></li>
|
||||
<li><a href="globals_q.html#index_q"><span>q</span></a></li>
|
||||
<li><a href="globals_r.html#index_r"><span>r</span></a></li>
|
||||
<li><a href="globals_s.html#index_s"><span>s</span></a></li>
|
||||
<li><a href="globals_t.html#index_t"><span>t</span></a></li>
|
||||
<li><a href="globals_u.html#index_u"><span>u</span></a></li>
|
||||
<li><a href="globals_v.html#index_v"><span>v</span></a></li>
|
||||
<li><a href="globals_w.html#index_w"><span>w</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -121,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_d.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('globals_d.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -133,84 +77,59 @@ $(document).ready(function(){initNavTree('globals_d.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="contents">
|
||||
<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 class="anchor" id="index_d"></a>- d -</h3><ul>
|
||||
<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>Display2dProfiles()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#aad7d768680c6d8a9b8a7025c7e1ec75d">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>Display3dSlicer()
|
||||
: <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>
|
||||
</li>
|
||||
<li>display_hemi_scan()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#ae57302acfc822c4817f2b7eef55efea2">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>display_polar_graph()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a46fd99d35a43601c39af6096d4e4f770">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>display_preview_trace()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a001074020ad32b290d390a450a389c69">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<li>display_progress_panel()
|
||||
: <a class="el" href="pearl-gui-tools_8ipf.html#aaf29d090c81e00cf44af295193b24c5a">pearl-gui-tools.ipf</a>
|
||||
</li>
|
||||
<li>display_scanlines()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#a1f4f74a8ae557c56e1e3aacd0b45f3f1">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>DisplayGizmoSlicer()
|
||||
: <a class="el" href="pearl-menu_8ipf.html#aab34952c2f3b36f9ee8619eb901ff581">pearl-menu.ipf</a>
|
||||
</li>
|
||||
<li>DoniachSunjicBroad()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#ae2d138beb7cb39e8042487893095b461">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>DoniachSunjicBroadS()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a9d110819fa3cd2173f3103724e394fdf">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>draw_diffraction_cone()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#afedad38a418cee5d1fb9e08aae2160a0">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>draw_hemi_axes()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#af00d9061e410ad033a9fd1f0ca561e0d">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<li>ds1_bg()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#af62cb65b7444ff60e956a45bd5d0ec27">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>ds2_bg()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a1e729418252bf0d05ea6ec5cbd65b834">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>ds4_bg()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#ab32134566b2573672ac674565deebd36">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>ds6_bg()
|
||||
: <a class="el" href="pearl-fitfuncs_8ipf.html#a5a2a03026b88f3dd99214ab1b26e6f80">pearl-fitfuncs.ipf</a>
|
||||
</li>
|
||||
<li>duplicate_hemi_scan()
|
||||
: <a class="el" href="pearl-anglescan-process_8ipf.html#aa5b1e2ab1dd43a73b7157406b803887e">pearl-anglescan-process.ipf</a>
|
||||
</li>
|
||||
<h3><a id="index_d" name="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>
|
||||
<li>Display3dSlicer() : <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#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></li>
|
||||
<li>display_polar_graph() : <a class="el" href="pearl-anglescan-process_8ipf.html#a46fd99d35a43601c39af6096d4e4f770">pearl-anglescan-process.ipf</a></li>
|
||||
<li>display_preview_trace() : <a class="el" href="pearl-data-explorer_8ipf.html#a001074020ad32b290d390a450a389c69">pearl-data-explorer.ipf</a></li>
|
||||
<li>display_progress_panel() : <a class="el" href="pearl-gui-tools_8ipf.html#aaf29d090c81e00cf44af295193b24c5a">pearl-gui-tools.ipf</a></li>
|
||||
<li>display_scanlines() : <a class="el" href="pearl-anglescan-process_8ipf.html#a1f4f74a8ae557c56e1e3aacd0b45f3f1">pearl-anglescan-process.ipf</a></li>
|
||||
<li>DisplayGizmoSlicer() : <a class="el" href="pearl-menu_8ipf.html#aab34952c2f3b36f9ee8619eb901ff581">pearl-menu.ipf</a></li>
|
||||
<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></li>
|
||||
<li>do_norm_alpha() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a8f7266ac2840155dede704fda66fe6b0">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>do_norm_phi() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a790519191391ac03c75eb7b57ea0749e">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>do_norm_theta() : <a class="el" href="pearl-anglescan-panel_8ipf.html#a7b288598e3faa37e414b1443982c1a3e">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>do_norm_thetaphi() : <a class="el" href="pearl-anglescan-panel_8ipf.html#af6509fc7584b0bcbdc8561df2bc12a58">pearl-anglescan-panel.ipf</a></li>
|
||||
<li>DoniachSunjic() : <a class="el" href="pearl-fitfuncs_8ipf.html#aaa48428994f8720a12e7237ef43e86ea">pearl-fitfuncs.ipf</a></li>
|
||||
<li>DoniachSunjicBroad() : <a class="el" href="pearl-fitfuncs_8ipf.html#ae2d138beb7cb39e8042487893095b461">pearl-fitfuncs.ipf</a></li>
|
||||
<li>DoniachSunjicBroadS() : <a class="el" href="pearl-fitfuncs_8ipf.html#a9d110819fa3cd2173f3103724e394fdf">pearl-fitfuncs.ipf</a></li>
|
||||
<li>DoubletGaussLinBG_AO() : <a class="el" href="pearl-fitfuncs_8ipf.html#adb438f665e51a8dd104a37cfead04f27">pearl-fitfuncs.ipf</a></li>
|
||||
<li>draw_diffraction_cone() : <a class="el" href="pearl-anglescan-process_8ipf.html#afedad38a418cee5d1fb9e08aae2160a0">pearl-anglescan-process.ipf</a></li>
|
||||
<li>draw_hemi_axes() : <a class="el" href="pearl-anglescan-process_8ipf.html#af00d9061e410ad033a9fd1f0ca561e0d">pearl-anglescan-process.ipf</a></li>
|
||||
<li>ds1_bg() : <a class="el" href="pearl-fitfuncs_8ipf.html#af62cb65b7444ff60e956a45bd5d0ec27">pearl-fitfuncs.ipf</a></li>
|
||||
<li>ds2_bg() : <a class="el" href="pearl-fitfuncs_8ipf.html#a1e729418252bf0d05ea6ec5cbd65b834">pearl-fitfuncs.ipf</a></li>
|
||||
<li>ds4_bg() : <a class="el" href="pearl-fitfuncs_8ipf.html#ab32134566b2573672ac674565deebd36">pearl-fitfuncs.ipf</a></li>
|
||||
<li>ds6_bg() : <a class="el" href="pearl-fitfuncs_8ipf.html#a5a2a03026b88f3dd99214ab1b26e6f80">pearl-fitfuncs.ipf</a></li>
|
||||
<li>duplicate_hemi_scan() : <a class="el" href="pearl-anglescan-process_8ipf.html#aa5b1e2ab1dd43a73b7157406b803887e">pearl-anglescan-process.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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,74 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li class="current"><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="files.html"><span>File List</span></a></li>
|
||||
<li class="current"><a href="globals.html"><span>Globals</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow3" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li class="current"><a href="globals.html"><span>All</span></a></li>
|
||||
<li><a href="globals_func.html"><span>Functions</span></a></li>
|
||||
<li><a href="globals_vars.html"><span>Variables</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow4" class="tabs3">
|
||||
<ul class="tablist">
|
||||
<li><a href="globals.html#index_a"><span>a</span></a></li>
|
||||
<li><a href="globals_b.html#index_b"><span>b</span></a></li>
|
||||
<li><a href="globals_c.html#index_c"><span>c</span></a></li>
|
||||
<li><a href="globals_d.html#index_d"><span>d</span></a></li>
|
||||
<li class="current"><a href="globals_e.html#index_e"><span>e</span></a></li>
|
||||
<li><a href="globals_f.html#index_f"><span>f</span></a></li>
|
||||
<li><a href="globals_g.html#index_g"><span>g</span></a></li>
|
||||
<li><a href="globals_h.html#index_h"><span>h</span></a></li>
|
||||
<li><a href="globals_i.html#index_i"><span>i</span></a></li>
|
||||
<li><a href="globals_k.html#index_k"><span>k</span></a></li>
|
||||
<li><a href="globals_l.html#index_l"><span>l</span></a></li>
|
||||
<li><a href="globals_m.html#index_m"><span>m</span></a></li>
|
||||
<li><a href="globals_n.html#index_n"><span>n</span></a></li>
|
||||
<li><a href="globals_o.html#index_o"><span>o</span></a></li>
|
||||
<li><a href="globals_p.html#index_p"><span>p</span></a></li>
|
||||
<li><a href="globals_q.html#index_q"><span>q</span></a></li>
|
||||
<li><a href="globals_r.html#index_r"><span>r</span></a></li>
|
||||
<li><a href="globals_s.html#index_s"><span>s</span></a></li>
|
||||
<li><a href="globals_t.html#index_t"><span>t</span></a></li>
|
||||
<li><a href="globals_u.html#index_u"><span>u</span></a></li>
|
||||
<li><a href="globals_v.html#index_v"><span>v</span></a></li>
|
||||
<li><a href="globals_w.html#index_w"><span>w</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -121,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_e.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('globals_e.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -133,87 +77,51 @@ $(document).ready(function(){initNavTree('globals_e.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="contents">
|
||||
<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 class="anchor" id="index_e"></a>- e -</h3><ul>
|
||||
<li>edit_offsets()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a37aaf2f08c3910bed554a10dd82616ec">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>edit_reduction_params()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a3844e7fd93b4f54aa52f084687c2106c">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>elog_add_attachment()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ac2f76abed8cfaa7ac02a46c0b89004f0">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_config()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a424460442afd5f6f853e68cd665ed785">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_create_entry()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a05301d497e4796e5fb5adde3728ba971">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_create_logbook()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ab6d97edbf33e8ec039b34ff756e7ab93">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_init_pearl_templates()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#aaca820a0149ce6a0e843ca72b9c9e7ab">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_login()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a3eac4012891c2813e401aee2c1134763">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_logout()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a96e4cbbdb0fd8c58d87b502dc1883664">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_panel_hook()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#af8b1ea711208bcc2cd1647abe04131dc">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_parse_id
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a6a9923c6465c91b1f9d1d97b090f424b">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_prompt_logbook()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#acedf0c8ae34e9ebadd6fa0d9d1353aa4">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_prompt_login()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#afbace5ffc3167b42b09657ce6cc854ca">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_success_msg
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a63aa38b624b66fe502505040c25bc0c3">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>elog_validate_attributes()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#ab2558ef5cd5e5dfba410bd58ed258b64">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<li>epics_connect()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a306b168cab2f9c4146cee87009e69f6d">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>epics_disconnect()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a4619cb98a75adb3c39ea3a62e524b793">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>epics_disconnect_chid()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#acfe94a64ff3e8c4cb32e34ffb9cae594">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>export_tracker_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a09e95dbf1582fcf2e6f71baddb147f86">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>extend_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a4bde8b2fc39c61c0d5a6879f1d0ae115">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>extract_preview_image()
|
||||
: <a class="el" href="pearl-data-explorer_8ipf.html#a0adc1b370fd3bf230b61b094b3c0accb">pearl-data-explorer.ipf</a>
|
||||
</li>
|
||||
<h3><a id="index_e" name="index_e"></a>- e -</h3><ul>
|
||||
<li>edit_offsets() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a37aaf2f08c3910bed554a10dd82616ec">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>edit_reduction_params() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a3844e7fd93b4f54aa52f084687c2106c">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>elog_add_attachment() : <a class="el" href="pearl-elog_8ipf.html#ac2f76abed8cfaa7ac02a46c0b89004f0">pearl-elog.ipf</a></li>
|
||||
<li>elog_config() : <a class="el" href="pearl-elog_8ipf.html#a424460442afd5f6f853e68cd665ed785">pearl-elog.ipf</a></li>
|
||||
<li>elog_create_entry() : <a class="el" href="pearl-elog_8ipf.html#a05301d497e4796e5fb5adde3728ba971">pearl-elog.ipf</a></li>
|
||||
<li>elog_create_logbook() : <a class="el" href="pearl-elog_8ipf.html#ab6d97edbf33e8ec039b34ff756e7ab93">pearl-elog.ipf</a></li>
|
||||
<li>elog_init_pearl_templates() : <a class="el" href="pearl-elog_8ipf.html#aaca820a0149ce6a0e843ca72b9c9e7ab">pearl-elog.ipf</a></li>
|
||||
<li>elog_login() : <a class="el" href="pearl-elog_8ipf.html#a3eac4012891c2813e401aee2c1134763">pearl-elog.ipf</a></li>
|
||||
<li>elog_logout() : <a class="el" href="pearl-elog_8ipf.html#a96e4cbbdb0fd8c58d87b502dc1883664">pearl-elog.ipf</a></li>
|
||||
<li>elog_panel_hook() : <a class="el" href="pearl-elog_8ipf.html#af8b1ea711208bcc2cd1647abe04131dc">pearl-elog.ipf</a></li>
|
||||
<li>elog_parse_id : <a class="el" href="pearl-elog_8ipf.html#a6a9923c6465c91b1f9d1d97b090f424b">pearl-elog.ipf</a></li>
|
||||
<li>elog_prompt_logbook() : <a class="el" href="pearl-elog_8ipf.html#acedf0c8ae34e9ebadd6fa0d9d1353aa4">pearl-elog.ipf</a></li>
|
||||
<li>elog_prompt_login() : <a class="el" href="pearl-elog_8ipf.html#afbace5ffc3167b42b09657ce6cc854ca">pearl-elog.ipf</a></li>
|
||||
<li>elog_success_msg : <a class="el" href="pearl-elog_8ipf.html#a63aa38b624b66fe502505040c25bc0c3">pearl-elog.ipf</a></li>
|
||||
<li>elog_validate_attributes() : <a class="el" href="pearl-elog_8ipf.html#ab2558ef5cd5e5dfba410bd58ed258b64">pearl-elog.ipf</a></li>
|
||||
<li>epics_connect() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a306b168cab2f9c4146cee87009e69f6d">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>epics_disconnect() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a4619cb98a75adb3c39ea3a62e524b793">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>epics_disconnect_chid() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#acfe94a64ff3e8c4cb32e34ffb9cae594">pearl-anglescan-tracker.ipf</a></li>
|
||||
<li>export_tracker_data() : <a class="el" href="pearl-anglescan-tracker_8ipf.html#a09e95dbf1582fcf2e6f71baddb147f86">pearl-anglescan-tracker.ipf</a></li>
|
||||
<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>
|
||||
</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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,74 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li class="current"><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="files.html"><span>File List</span></a></li>
|
||||
<li class="current"><a href="globals.html"><span>Globals</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow3" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li class="current"><a href="globals.html"><span>All</span></a></li>
|
||||
<li><a href="globals_func.html"><span>Functions</span></a></li>
|
||||
<li><a href="globals_vars.html"><span>Variables</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow4" class="tabs3">
|
||||
<ul class="tablist">
|
||||
<li><a href="globals.html#index_a"><span>a</span></a></li>
|
||||
<li><a href="globals_b.html#index_b"><span>b</span></a></li>
|
||||
<li><a href="globals_c.html#index_c"><span>c</span></a></li>
|
||||
<li><a href="globals_d.html#index_d"><span>d</span></a></li>
|
||||
<li><a href="globals_e.html#index_e"><span>e</span></a></li>
|
||||
<li class="current"><a href="globals_f.html#index_f"><span>f</span></a></li>
|
||||
<li><a href="globals_g.html#index_g"><span>g</span></a></li>
|
||||
<li><a href="globals_h.html#index_h"><span>h</span></a></li>
|
||||
<li><a href="globals_i.html#index_i"><span>i</span></a></li>
|
||||
<li><a href="globals_k.html#index_k"><span>k</span></a></li>
|
||||
<li><a href="globals_l.html#index_l"><span>l</span></a></li>
|
||||
<li><a href="globals_m.html#index_m"><span>m</span></a></li>
|
||||
<li><a href="globals_n.html#index_n"><span>n</span></a></li>
|
||||
<li><a href="globals_o.html#index_o"><span>o</span></a></li>
|
||||
<li><a href="globals_p.html#index_p"><span>p</span></a></li>
|
||||
<li><a href="globals_q.html#index_q"><span>q</span></a></li>
|
||||
<li><a href="globals_r.html#index_r"><span>r</span></a></li>
|
||||
<li><a href="globals_s.html#index_s"><span>s</span></a></li>
|
||||
<li><a href="globals_t.html#index_t"><span>t</span></a></li>
|
||||
<li><a href="globals_u.html#index_u"><span>u</span></a></li>
|
||||
<li><a href="globals_v.html#index_v"><span>v</span></a></li>
|
||||
<li><a href="globals_w.html#index_w"><span>w</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -121,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_f.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('globals_f.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -133,54 +77,34 @@ $(document).ready(function(){initNavTree('globals_f.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="contents">
|
||||
<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 class="anchor" id="index_f"></a>- f -</h3><ul>
|
||||
<li>FermiFuncLinDOS2D_corr()
|
||||
: <a class="el" href="fermi-edge-analysis_8ipf.html#a520d8de9fbc4276c19fb417861f05b0d">fermi-edge-analysis.ipf</a>
|
||||
</li>
|
||||
<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>
|
||||
<li>fit_scienta_ang_transm()
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a8536a1da8aa85e34370f384ad2ee0d5e">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
<li>fit_scienta_poly_bg()
|
||||
: <a class="el" href="pearl-scienta-preprocess_8ipf.html#a4f850a816852a1d0e22deaf894765c2c">pearl-scienta-preprocess.ipf</a>
|
||||
</li>
|
||||
<li>format_url()
|
||||
: <a class="el" href="pearl-elog_8ipf.html#a3cc9074c84d684d207dfdf2045755df4">pearl-elog.ipf</a>
|
||||
</li>
|
||||
<h3><a id="index_f" name="index_f"></a>- f -</h3><ul>
|
||||
<li>FermiFuncLinDOS2D_corr() : <a class="el" href="fermi-edge-analysis_8ipf.html#a520d8de9fbc4276c19fb417861f05b0d">fermi-edge-analysis.ipf</a></li>
|
||||
<li>FermiGaussConv() : <a class="el" href="pearl-fitfuncs_8ipf.html#a4d20215153c0e0cee3870dfceded8bc9">pearl-fitfuncs.ipf</a></li>
|
||||
<li>find_hemi_data() : <a class="el" href="pearl-anglescan-process_8ipf.html#aa26c9ed4c4d703e07788d980edc2406d">pearl-anglescan-process.ipf</a></li>
|
||||
<li>Fit_DoniachSunjicBroad() : <a class="el" href="pearl-fitfuncs_8ipf.html#a819902ab9f541b75a0fd33a7b52465d0">pearl-fitfuncs.ipf</a></li>
|
||||
<li>format_url() : <a class="el" href="pearl-elog_8ipf.html#a3cc9074c84d684d207dfdf2045755df4">pearl-elog.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 Sep 21 2017 12:35:04 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>
|
||||
<li class="footer">Generated on Mon Dec 22 2025 17:26:40 for PEARL Procedures by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<!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">
|
||||
<!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" lang="en-US">
|
||||
<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"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||
<meta name="generator" content="Doxygen 1.9.8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PEARL Procedures: Globals</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.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>
|
||||
@@ -29,10 +23,9 @@
|
||||
<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-1.4.0-1-g0a436db-dirty</span>
|
||||
<tr id="projectrow">
|
||||
<td id="projectalign">
|
||||
<div id="projectname">PEARL Procedures<span id="projectnumber"> rev-distro-3.1.0-0-gea838b3-dirty</span>
|
||||
</div>
|
||||
<div id="projectbrief">Igor procedures for the analysis of PEARL data</div>
|
||||
</td>
|
||||
@@ -41,73 +34,23 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.11 -->
|
||||
<!-- Generated by Doxygen 1.9.8 -->
|
||||
<script type="text/javascript">
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
var searchBox = new SearchBox("searchBox", "search/",'.html');
|
||||
/* @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><a href="namespaces.html"><span>Namespaces</span></a></li>
|
||||
<li class="current"><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="files.html"><span>File List</span></a></li>
|
||||
<li class="current"><a href="globals.html"><span>Globals</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow3" class="tabs2">
|
||||
<ul class="tablist">
|
||||
<li><a href="globals.html"><span>All</span></a></li>
|
||||
<li class="current"><a href="globals_func.html"><span>Functions</span></a></li>
|
||||
<li><a href="globals_vars.html"><span>Variables</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="navrow4" class="tabs3">
|
||||
<ul class="tablist">
|
||||
<li class="current"><a href="globals_func.html#index_a"><span>a</span></a></li>
|
||||
<li><a href="globals_func_b.html#index_b"><span>b</span></a></li>
|
||||
<li><a href="globals_func_c.html#index_c"><span>c</span></a></li>
|
||||
<li><a href="globals_func_d.html#index_d"><span>d</span></a></li>
|
||||
<li><a href="globals_func_e.html#index_e"><span>e</span></a></li>
|
||||
<li><a href="globals_func_f.html#index_f"><span>f</span></a></li>
|
||||
<li><a href="globals_func_g.html#index_g"><span>g</span></a></li>
|
||||
<li><a href="globals_func_h.html#index_h"><span>h</span></a></li>
|
||||
<li><a href="globals_func_i.html#index_i"><span>i</span></a></li>
|
||||
<li><a href="globals_func_k.html#index_k"><span>k</span></a></li>
|
||||
<li><a href="globals_func_l.html#index_l"><span>l</span></a></li>
|
||||
<li><a href="globals_func_m.html#index_m"><span>m</span></a></li>
|
||||
<li><a href="globals_func_n.html#index_n"><span>n</span></a></li>
|
||||
<li><a href="globals_func_o.html#index_o"><span>o</span></a></li>
|
||||
<li><a href="globals_func_p.html#index_p"><span>p</span></a></li>
|
||||
<li><a href="globals_func_q.html#index_q"><span>q</span></a></li>
|
||||
<li><a href="globals_func_r.html#index_r"><span>r</span></a></li>
|
||||
<li><a href="globals_func_s.html#index_s"><span>s</span></a></li>
|
||||
<li><a href="globals_func_t.html#index_t"><span>t</span></a></li>
|
||||
<li><a href="globals_func_u.html#index_u"><span>u</span></a></li>
|
||||
<li><a href="globals_func_w.html#index_w"><span>w</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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(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">
|
||||
@@ -120,7 +63,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){initNavTree('globals_func.html','');});
|
||||
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||
$(document).ready(function(){initNavTree('globals_func.html',''); initResizable(); });
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div id="doc-content">
|
||||
<!-- window showing the filter options -->
|
||||
@@ -132,260 +77,125 @@ $(document).ready(function(){initNavTree('globals_func.html','');});
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
<div id="MSearchResults">
|
||||
<div class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div id="SRResults"></div>
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="contents">
|
||||
 
|
||||
<div class="textblock">Here is a list of all functions with links to the files they belong to:</div>
|
||||
|
||||
<h3><a class="anchor" id="index_a"></a>- a -</h3><ul>
|
||||
<li>ad_box_filter()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a27f0957d61f3c2d30a4854911b460c36">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_brick_slicer()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ae3b4756cdc12a4a4b15a770ba0069823">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_calc_cursor_profiles()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a72b57037abd27f65986034c0b4cc191e">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_calc_histogram()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a48b08ab53729d9d0477deaceedef2769">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_calc_profiles()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a48044f9ee518d47770e33ee9f381f204">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_collect_multiscan_y()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a3cadf0b28d1fd84e9922610c20868283">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_default_image_filter()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a6418a1b2d18b82cb71c0fecbd513a934">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_display()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ae2b11295d2715e9af019513923c64570">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_display_brick()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a65b07e355df20cfb692dfb32f472b478">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_display_histogram()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a8cc3ea3bea4e851e4144140a2da42a03">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_display_profiles()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a8fad5aebaca72887d5898b4c421bcdae">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_display_slice()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#af8d5e003fcff1f750685ed6f94717730">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_export_profile()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ad3e190d1ec1b82ebef00c9f9ac44b50a">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_rod()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a8de5d4f1bcca91df5bbff568ab7b582d">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_rod_x()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a83700e2faf844e2480c89b6ca4c66a79">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_rod_y()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a363af257a04d51fff2a8d5b282f65f21">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_rod_z()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a3483707fbdbfdbaec069591a5d3b07a6">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_slab()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a65bb359c057a9d900c486e186c9974df">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_slab_x()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#af612340d1d132cacda9de7bb77c2e0aa">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_slab_y()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a2eb6a0bcced893e827cfa4e1236e8460">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_extract_slab_z()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a71f02613c4a4d21c014493e906dbe922">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_gizmo_set_plane()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#aee051acfe6a3c8214118b78dfe4854fd">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_load_dialog()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#aedff2e67d2e1bac907f2eaf24a6e5c3c">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>ad_profile_x()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#ab1a65cf82f6933db3dd7b564582e8ed1">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_profile_x_w()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#aa40fd5049f993e72fd52a66a6cdde7cc">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_profile_y()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#abb1eed32a982037ebab00f5c3ea95e62">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_profile_y_w()
|
||||
: <a class="el" href="pearl-area-profiles_8ipf.html#a8b09e13162fa47cc076e1e661e80b002">pearl-area-profiles.ipf</a>
|
||||
</li>
|
||||
<li>ad_profiles_crosshairs()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a6d20a8c6bf5ed143d375dee71fb3a6d5">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_profiles_cursor_mode()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a5657fc4dcd395aef637c19e8df57a418">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_profiles_hook()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a89a5e3e29a0cd09951dcdf13aa28d941">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_profiles_set_cursor()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ad2a84495ddac89bc8f4203fca56babfd">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_profiles_set_slice()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#abaf229d75d9d579a559295795a6bc2e1">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_slicer_init_bg()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a7334815c60e2c11e2754c07489a62f4b">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_slicer_move_bg()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a4af98ec7af48a653c6fac716ea8fa505">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_slicer_start_bg()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#ad79b37ab4fcf2cbdad6874813d93d4b1">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_slicer_stop_bg()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a77a71985e716a300e0b61c233cd93f40">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_suggest_foldername()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#ad28dbbba73e553f7b5dcf8baf1c86786">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>ad_transpose_filter()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#a8411f0cfec3515f1ae4f0140efc14318">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>ad_update_profiles()
|
||||
: <a class="el" href="pearl-area-display_8ipf.html#afa2546f9cb03dfa8bf0cc9966f0b7a45">pearl-area-display.ipf</a>
|
||||
</li>
|
||||
<li>add_image_data()
|
||||
: <a class="el" href="pearl-anglescan-tracker_8ipf.html#a35a5cd8a21b48be8d726c69eb5fca134">pearl-anglescan-tracker.ipf</a>
|
||||
</li>
|
||||
<li>adh5_default_reduction()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a245034d7a94536a24c78a7bfe22725b7">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_list_reduction_funcs()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#aa5e29dc1a380311d00a5f85be867e47b">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_complete()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#ab1040bf272c69dc69777b2f91df41fab">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_detector()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a84dc7f466b42dde5d96c49827b2122cf">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_detector_image()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a931a7bfaaf75d308a0ce3c74ffc751bc">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_detector_slabs()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a4a9741d1c19b10bb98b73bd5163a497b">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_info()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#ac76d5ba94a3d7c864437420d80c77064">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_preview()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a98f29671bdce6a5981e8865de8b9d483">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_reduced()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a98f9339cd2fae80d0d92451df88395aa">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_load_reduced_detector()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a3f2ac36f961941e46e80a775de8300e5">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_loadattr_all()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#acde16dc7a393250b17165344f865f7b5">pearl-area-import.ipf</a>
|
||||
</li>
|
||||
<li>adh5_redim()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#acfa6d2675e63f4f686289ef853b262a9">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>
|
||||
<li>adh5_scale_scan()
|
||||
: <a class="el" href="pearl-area-import_8ipf.html#a1fdcc02340375afe8d8cd7537c6e9cfb">pearl-area-import.ipf</a>
|
||||
</li>
| ||||