diff --git a/.buildinfo b/.buildinfo index b48ddf93..9663e5eb 100644 --- a/.buildinfo +++ b/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 -# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 32f59e161a28f49cbf5596c5b7006b6c +# This file records the configuration used when building these files. When it is not found, a full rebuild will be done. +config: 6dbe6efd81c05597f0173a9ec86106c5 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/.doctrees/cli.doctree b/.doctrees/cli.doctree index 9242bc01..8167b038 100644 Binary files a/.doctrees/cli.doctree and b/.doctrees/cli.doctree differ diff --git a/.doctrees/cutting.doctree b/.doctrees/cutting.doctree index 4b9341d6..f5c3d27b 100644 Binary files a/.doctrees/cutting.doctree and b/.doctrees/cutting.doctree differ diff --git a/.doctrees/environment.pickle b/.doctrees/environment.pickle index 5ee4f57f..00a3dd65 100644 Binary files a/.doctrees/environment.pickle and b/.doctrees/environment.pickle differ diff --git a/.doctrees/index.doctree b/.doctrees/index.doctree index 7089fef1..b13f7699 100644 Binary files a/.doctrees/index.doctree and b/.doctrees/index.doctree differ diff --git a/.doctrees/math_ref.doctree b/.doctrees/math_ref.doctree index f0145d1a..5c46b7d3 100644 Binary files a/.doctrees/math_ref.doctree and b/.doctrees/math_ref.doctree differ diff --git a/.doctrees/quickstart.doctree b/.doctrees/quickstart.doctree index 29c70dde..b95b2cd6 100644 Binary files a/.doctrees/quickstart.doctree and b/.doctrees/quickstart.doctree differ diff --git a/.doctrees/slicing.doctree b/.doctrees/slicing.doctree index 9baa6b81..5eedfbde 100644 Binary files a/.doctrees/slicing.doctree and b/.doctrees/slicing.doctree differ diff --git a/_static/basic.css b/_static/basic.css index f316efcb..7ebbd6d0 100644 --- a/_static/basic.css +++ b/_static/basic.css @@ -1,12 +1,5 @@ /* - * basic.css - * ~~~~~~~~~ - * * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ /* -- main layout ----------------------------------------------------------- */ @@ -115,15 +108,11 @@ img { /* -- search page ----------------------------------------------------------- */ ul.search { - margin: 10px 0 0 20px; - padding: 0; + margin-top: 10px; } ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; + padding: 5px 0; } ul.search li a { diff --git a/_static/doctools.js b/_static/doctools.js index 4d67807d..0398ebb9 100644 --- a/_static/doctools.js +++ b/_static/doctools.js @@ -1,12 +1,5 @@ /* - * doctools.js - * ~~~~~~~~~~~ - * * Base JavaScript utilities for all Sphinx HTML documentation. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ "use strict"; diff --git a/_static/language_data.js b/_static/language_data.js index 367b8ed8..c7fe6c6f 100644 --- a/_static/language_data.js +++ b/_static/language_data.js @@ -1,13 +1,6 @@ /* - * language_data.js - * ~~~~~~~~~~~~~~~~ - * * This script contains the language-specific data used by searchtools.js, * namely the list of stopwords, stemmer, scorer and splitter. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"]; diff --git a/_static/searchtools.js b/_static/searchtools.js index b08d58c9..2c774d17 100644 --- a/_static/searchtools.js +++ b/_static/searchtools.js @@ -1,12 +1,5 @@ /* - * searchtools.js - * ~~~~~~~~~~~~~~~~ - * * Sphinx JavaScript utilities for the full-text search. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ "use strict"; @@ -20,7 +13,7 @@ if (typeof Scorer === "undefined") { // and returns the new score. /* score: result => { - const [docname, title, anchor, descr, score, filename] = result + const [docname, title, anchor, descr, score, filename, kind] = result return score }, */ @@ -47,6 +40,14 @@ if (typeof Scorer === "undefined") { }; } +// Global search result kind enum, used by themes to style search results. +class SearchResultKind { + static get index() { return "index"; } + static get object() { return "object"; } + static get text() { return "text"; } + static get title() { return "title"; } +} + const _removeChildren = (element) => { while (element && element.lastChild) element.removeChild(element.lastChild); }; @@ -64,9 +65,13 @@ const _displayItem = (item, searchTerms, highlightTerms) => { const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY; const contentRoot = document.documentElement.dataset.content_root; - const [docName, title, anchor, descr, score, _filename] = item; + const [docName, title, anchor, descr, score, _filename, kind] = item; let listItem = document.createElement("li"); + // Add a class representing the item's type: + // can be used by a theme's CSS selector for styling + // See SearchResultKind for the class names. + listItem.classList.add(`kind-${kind}`); let requestUrl; let linkUrl; if (docBuilder === "dirhtml") { @@ -115,8 +120,10 @@ const _finishSearch = (resultCount) => { "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories." ); else - Search.status.innerText = _( - "Search finished, found ${resultCount} page(s) matching the search query." + Search.status.innerText = Documentation.ngettext( + "Search finished, found one page matching the search query.", + "Search finished, found ${resultCount} pages matching the search query.", + resultCount, ).replace('${resultCount}', resultCount); }; const _displayNextItem = ( @@ -138,7 +145,7 @@ const _displayNextItem = ( else _finishSearch(resultCount); }; // Helper function used by query() to order search results. -// Each input is an array of [docname, title, anchor, descr, score, filename]. +// Each input is an array of [docname, title, anchor, descr, score, filename, kind]. // Order the results by score (in opposite order of appearance, since the // `_displayNextItem` function uses pop() to retrieve items) and then alphabetically. const _orderResultsByScoreThenName = (a, b) => { @@ -248,6 +255,7 @@ const Search = { searchSummary.classList.add("search-summary"); searchSummary.innerText = ""; const searchList = document.createElement("ul"); + searchList.setAttribute("role", "list"); searchList.classList.add("search"); const out = document.getElementById("search-results"); @@ -318,7 +326,7 @@ const Search = { const indexEntries = Search._index.indexentries; // Collect multiple result groups to be sorted separately and then ordered. - // Each is an array of [docname, title, anchor, descr, score, filename]. + // Each is an array of [docname, title, anchor, descr, score, filename, kind]. const normalResults = []; const nonMainIndexResults = []; @@ -337,6 +345,7 @@ const Search = { null, score + boost, filenames[file], + SearchResultKind.title, ]); } } @@ -354,6 +363,7 @@ const Search = { null, score, filenames[file], + SearchResultKind.index, ]; if (isMain) { normalResults.push(result); @@ -475,6 +485,7 @@ const Search = { descr, score, filenames[match[0]], + SearchResultKind.object, ]); }; Object.keys(objects).forEach((prefix) => @@ -585,6 +596,7 @@ const Search = { null, score, filenames[file], + SearchResultKind.text, ]); } return results; diff --git a/_static/sphinxdoc.css b/_static/sphinxdoc.css index b03830b4..ae94dcc7 100644 --- a/_static/sphinxdoc.css +++ b/_static/sphinxdoc.css @@ -1,12 +1,7 @@ /* - * sphinxdoc.css_t - * ~~~~~~~~~~~~~~~ + * Sphinx stylesheet -- sphinxdoc theme. * - * Sphinx stylesheet -- sphinxdoc theme. Originally created by - * Armin Ronacher for Werkzeug. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. + * Originally created by Armin Ronacher for Werkzeug. * */ diff --git a/cli.html b/cli.html index 133e3d80..c712b124 100644 --- a/cli.html +++ b/cli.html @@ -7,9 +7,9 @@ 4. Command Line Interface — MSlice 2.9 documentation - + - + @@ -273,8 +273,8 @@

Navigation

\ No newline at end of file diff --git a/cutting.html b/cutting.html index ab65c6db..7584ac8f 100644 --- a/cutting.html +++ b/cutting.html @@ -7,9 +7,9 @@ 2. Taking Cuts — MSlice 2.9 documentation - + - + @@ -222,8 +222,8 @@

Navigation

\ No newline at end of file diff --git a/genindex.html b/genindex.html index a2af7cec..c9f07cfa 100644 --- a/genindex.html +++ b/genindex.html @@ -6,9 +6,9 @@ Index — MSlice 2.9 documentation - + - + @@ -68,8 +68,8 @@

Navigation

\ No newline at end of file diff --git a/index.html b/index.html index f053b0fe..9303f308 100644 --- a/index.html +++ b/index.html @@ -7,9 +7,9 @@ MSlice for Mantid — MSlice 2.9 documentation - + - + @@ -142,8 +142,8 @@

Navigation

\ No newline at end of file diff --git a/math_ref.html b/math_ref.html index 2001de14..f2ede4c1 100644 --- a/math_ref.html +++ b/math_ref.html @@ -7,9 +7,9 @@ 5. Mathematical Reference — MSlice 2.9 documentation - + - + @@ -259,8 +259,8 @@

Navigation

\ No newline at end of file diff --git a/quickstart.html b/quickstart.html index da41ad8e..cbbcb0a7 100644 --- a/quickstart.html +++ b/quickstart.html @@ -7,9 +7,9 @@ 1. Quick Start — MSlice 2.9 documentation - + - + @@ -271,8 +271,8 @@

Navigation

\ No newline at end of file diff --git a/search.html b/search.html index 25069a2a..ee642fbd 100644 --- a/search.html +++ b/search.html @@ -6,10 +6,10 @@ Search — MSlice 2.9 documentation - + - + @@ -85,8 +85,8 @@

Navigation

\ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 43b1adf7..e4325894 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"A note on the regions of validity of the two algorithms": [[3, "a-note-on-the-regions-of-validity-of-the-two-algorithms"]], "A note on units": [[3, "a-note-on-units"]], "Algebraic Manipulation of Workspaces": [[0, "algebraic-manipulation-of-workspaces"]], "Command Line Interface": [[0, null]], "Converting intensity information in displayed data in cuts": [[1, "converting-intensity-information-in-displayed-data-in-cuts"]], "Converting intensity information in displayed data in slices": [[5, "converting-intensity-information-in-displayed-data-in-slices"]], "Cutting Algorithms": [[1, "cutting-algorithms"]], "Cutting from the GUI": [[1, "cutting-from-the-gui"]], "Energy transfer units": [[4, "energy-transfer-units"]], "Examples": [[0, "examples"]], "Generating scripts": [[0, "generating-scripts"]], "Interactive Cuts": [[4, "interactive-cuts"]], "Keep / Make Current": [[4, "keep-make-current"]], "Loading Data": [[4, "loading-data"]], "Loading and Cutting / Slicing": [[0, "loading-and-cutting-slicing"]], "MSlice for Mantid": [[2, null]], "Manipulating Workspaces": [[4, "manipulating-workspaces"]], "Mathematical Reference": [[3, null]], "Non-PSD Cuts": [[3, "non-psd-cuts"]], "Non-PSD Slice": [[3, "non-psd-slice"]], "Overplotting powder lines": [[1, "overplotting-powder-lines"]], "Overplotting recoil and powder lines": [[5, "overplotting-recoil-and-powder-lines"]], "PSD Cut": [[3, "psd-cut"]], "PSD Slice": [[3, "psd-slice"]], "PSD and non-PSD modes": [[4, "psd-and-non-psd-modes"]], "Plotting a Cut": [[4, "plotting-a-cut"]], "Plotting a Slice": [[4, "plotting-a-slice"]], "Plotting a series of cuts": [[0, "plotting-a-series-of-cuts"]], "Plotting using MSlice specific commands": [[0, "plotting-using-mslice-specific-commands"]], "Plotting using Matplotlib interface": [[0, "plotting-using-matplotlib-interface"]], "Quick Start": [[4, null]], "Saving cuts": [[1, "saving-cuts"]], "Saving slices to file": [[5, "saving-slices-to-file"]], "Slicing from the GUI": [[5, "slicing-from-the-gui"]], "Starting MSlice": [[4, "starting-mslice"]], "Taking Cuts": [[1, null]], "Taking Slices": [[5, null]]}, "docnames": ["cli", "cutting", "index", "math_ref", "quickstart", "slicing"], "envversion": {"sphinx": 63, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["cli.rst", "cutting.rst", "index.rst", "math_ref.rst", "quickstart.rst", "slicing.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 4, 5], "0": [0, 1, 3, 4], "00": 4, "00mev_subtract": 4, "01": 0, "06d_powder": 0, "1": [0, 1, 3, 4, 5], "10": [0, 1, 3, 4], "100": [3, 4], "103154": 0, "103158": 0, "111": 0, "16mev": 4, "1d": [0, 4, 5], "2": [0, 5], "20": 3, "291": 5, "2_": 3, "2d": [0, 4, 5], "3": [0, 1, 4], "4": [0, 1, 4, 5], "5": 0, "50": 3, "55": 0, "6": [1, 3, 4], "8": [0, 3], "9": [1, 4], "A": [2, 4, 5], "As": 3, "At": 3, "By": 4, "For": [0, 1, 3, 4, 5], "If": [1, 3, 4, 5], "In": [0, 1, 3, 4, 5], "It": [2, 3], "No": 0, "On": 4, "One": [1, 3], "That": 1, "The": [0, 1, 3, 4, 5], "Then": 4, "There": 1, "These": [0, 1, 4, 5], "To": [0, 1, 4, 5], "_": 5, "__init__": 4, "_or_": 3, "_sum": 4, "aa": [0, 3], "abl": [0, 1], "about": 1, "abov": [0, 1, 3, 4, 5], "absolut": 3, "accept": 0, "access": [1, 4, 5], "accommod": 0, "accur": 5, "across": 3, "activ": 4, "ad": 0, "add": 4, "add_subplot": 0, "addit": [0, 1, 4, 5], "addition": 0, "adopt": 3, "advantag": 3, "after": 4, "again": [1, 4], "algebra": 2, "algorithm": [2, 4, 5], "align": 3, "all": [0, 3, 4, 5], "allow": [0, 1, 3, 4, 5], "along": [0, 1, 3, 4], "alreadi": 1, "also": [0, 1, 3, 4, 5], "altern": [0, 4], "although": 1, "aluminium": [1, 5], "amplifi": 3, "an": [0, 1, 3, 4, 5], "anaconda": 4, "analysi": [1, 5], "angl": [4, 5], "ani": [0, 2, 4, 5], "anihil": 5, "anoth": [4, 5], "appear": 4, "append": [0, 4], "appli": [0, 4], "applic": 3, "approxim": 3, "ar": [0, 1, 3, 4, 5], "arbitrari": [1, 5], "area": 3, "argument": 0, "around": 3, "arrow": 4, "ascii": [1, 5], "ask": 4, "associ": 3, "assum": 3, "assumpt": 3, "automat": [3, 4], "autoreduc": 4, "avail": [1, 4, 5], "averag": [1, 3], "awar": 0, "ax": [0, 1, 4, 5], "axi": [1, 3, 4], "background": [0, 4], "backspac": 4, "base": 0, "basic": 4, "becaus": [0, 3], "been": [0, 3, 4], "befor": [0, 4, 5], "behaviour": [3, 4], "behind": 3, "being": [1, 5], "below": [1, 3, 4], "between": [0, 1, 3], "beyond": 3, "bin": [0, 1, 3, 4, 5], "binmd": 5, "blue": 3, "bose": 5, "boson": 5, "both": [0, 2, 4], "bottom": 3, "boundari": 3, "box": [0, 1, 4], "bragg": 0, "bring": 5, "bug": 2, "button": [1, 4, 5], "c": 4, "c_i": 3, "calcul": [0, 1, 3, 4, 5], "call": [0, 3, 4], "can": [0, 1, 3, 4, 5], "cannot": [3, 4], "case": [0, 1, 3, 4, 5], "caus": 1, "cb": 0, "centr": [3, 5], "chang": [0, 1, 4, 5], "channel": 4, "check": [1, 5], "checkbox": 5, "chi": [1, 5], "choos": 4, "chose": [3, 4], "chosen": 3, "chunk": 4, "cif": [1, 5], "classic": 5, "clear": 1, "cli": 0, "click": [1, 4, 5], "clipboard": 0, "cm": 4, "cmap": 0, "coarser": 3, "code": 5, "cog": [1, 5], "colorbar": [0, 4], "colour": 1, "column": [1, 5], "combin": 4, "combobox": [4, 5], "command": [2, 4], "commandlin": 2, "common": [1, 4, 5], "comput": [1, 3, 4, 5], "conda": 4, "consid": 3, "consol": [0, 4], "constant": [1, 3], "constraint": 1, "contain": [3, 4], "control": 4, "convent": [3, 4], "convers": [0, 1, 3], "convert": [0, 2, 4], "coolwarm": 0, "coordin": [1, 3, 5], "copi": [0, 4], "copper": [1, 5], "correct": [3, 5], "correspond": [1, 4], "cover": 3, "coverag": 1, "creat": [0, 1, 4], "creation": 5, "cross": [1, 3, 4, 5], "crystal": [3, 4], "crystallograph": [1, 5], "ctrl": 4, "current": [0, 1, 2], "cursor": 4, "cut": [2, 5], "cut_w": 0, "cuttabl": 1, "d": [3, 5], "d2sigma": 1, "dai": 4, "darker": 3, "data": [0, 2, 3], "datafil": [4, 5], "dataset": [0, 1, 4], "de": 5, "decreas": [3, 4], "default": [0, 1, 3, 4, 5], "defin": [0, 5], "delta": 0, "denomin": 3, "denot": 4, "densiti": [1, 3, 5], "depend": [1, 3, 4, 5], "depth": 5, "describ": [1, 3], "desir": [3, 4, 5], "detail": [1, 4], "detector": [3, 4], "determin": 1, "deuterium": 5, "develop": 4, "deviat": 3, "dialog": [4, 5], "differ": [0, 1, 3, 4, 5], "differenti": 3, "dimension": [3, 4], "direct": [0, 1, 3], "directli": [0, 4, 5], "disabl": [1, 4, 5], "discuss": 3, "disk": [1, 5], "displai": [2, 3, 4], "distinct": 3, "distribut": [3, 4], "divid": [3, 4], "divis": 5, "do": [0, 1, 3, 4], "doe": [0, 1, 3, 4], "don": 4, "done": [0, 1, 3, 4], "dot": 3, "doubl": [1, 4, 5], "down": [1, 4], "download": 4, "drag": 4, "drop": [1, 4], "dropdown": 5, "due": 1, "dynam": [1, 4, 5], "e": [0, 1, 3, 5], "e_": 3, "each": [0, 1, 3, 4], "easi": [3, 4], "easiest": 4, "edit": [1, 4], "editor": 4, "effect": 3, "effici": 5, "either": [0, 1, 4, 5], "elast": 3, "electron": 5, "element": 3, "els": 3, "empti": [1, 4], "en": 4, "enabl": [1, 4, 5], "end": 0, "energi": [0, 1, 2, 3, 5], "ensur": 4, "enter": 4, "entri": 1, "environ": [1, 4, 5], "equal": 3, "equiv": 3, "equival": [1, 3, 5], "error": 3, "errorbar": [0, 3], "etc": 0, "even": 0, "event": [1, 4, 5], "everi": 4, "everyth": 4, "exampl": [1, 2, 3, 4], "except": [1, 3], "excit": 3, "exp": 5, "expect": 3, "explan": [1, 5], "express": 3, "externalinterfac": 4, "extra": 4, "extract": 4, "extrapol": 3, "f": [0, 3], "f_": 3, "factor": [1, 3, 4, 5], "factoris": 3, "fast": 4, "featur": 0, "few": 4, "field": 3, "fig": 0, "figur": [0, 1, 3, 5], "file": [0, 1, 2, 3, 4], "filesystem": 4, "fill": 1, "final": [0, 1, 4], "fine": [0, 3], "finish": 4, "finit": 3, "first": [0, 1, 3, 4, 5], "flexibl": 0, "floppi": [1, 5], "fmt": 0, "focu": 5, "folder": 4, "font": 4, "form": 5, "format": [1, 5], "formula": 3, "forum": 2, "found": 1, "four": 5, "frac": [3, 5], "fraction": [3, 4, 5], "fresh": 1, "from": [0, 2, 3, 4], "full": [0, 3, 4], "fullprof": [1, 5], "function": [0, 1, 5], "further": 1, "futur": 4, "g": [0, 1, 3, 5], "g_n": 5, "gain": 5, "gdo": 1, "gener": [1, 2, 3, 4, 5], "get": 4, "github": 4, "give": [1, 4], "given": [3, 5], "go": 4, "grain": 0, "graphic": 0, "green": 3, "grid": 3, "gsa": [1, 5], "gui": [0, 2, 4], "h": 5, "ha": [0, 3, 4], "hair": 4, "half": 3, "hand": [3, 4], "handl": [3, 4], "have": [0, 1, 3, 4, 5], "he": 5, "heavili": 3, "helium": 5, "help": [1, 5], "high": 3, "histo": [1, 4], "histogram": 3, "histogramworkspac": 0, "histori": 0, "hold": 4, "horac": 3, "howev": [0, 1, 3, 4], "hydrogen": 5, "hyspec": 4, "i": [0, 1, 2, 3, 4, 5], "icon": [1, 5], "ij": 3, "illustr": 3, "imag": [1, 3, 4, 5], "implement": 5, "implicitli": 1, "import": 0, "importlib": 0, "improv": 2, "inaccess": 3, "includ": [0, 1, 2, 3, 4], "increas": [3, 4], "index": 3, "indic": 3, "individu": [1, 4], "inelast": [2, 3], "inform": [0, 2], "informaton": 1, "input": [1, 3, 4, 5], "instal": 4, "instead": [0, 3, 4], "instrument": 4, "int": 3, "integr": [0, 1, 3, 4], "integratemdhistoworkspac": 3, "intemedi": 5, "intend": 4, "intens": [2, 3], "interact": [0, 1, 2, 5], "interest": 1, "interfac": [1, 2, 4], "intern": 0, "introduc": [1, 4], "ipython": [0, 4], "isi": [3, 4], "item": 4, "its": [0, 1, 4], "j": 3, "jump": 4, "jupyt": 0, "just": [3, 5], "k": 3, "k_bt": 5, "k_f": 5, "k_i": 5, "keep": [0, 1, 2], "kei": [4, 5], "kept": 1, "keyboard": 4, "keyword": 0, "kinemat": [1, 3], "kl": 3, "l": 3, "label": [1, 4], "laboratori": 3, "lack": 3, "larg": [3, 4, 5], "larger": 3, "last": [1, 4], "later": 4, "latest": 4, "lead": 3, "leav": [1, 3, 4], "left": [1, 3, 4], "leq": [0, 3], "less": [3, 5], "let": 0, "letter": 4, "level": 4, "lie": 3, "light": 5, "like": [3, 5], "limit": [0, 1, 3, 4, 5], "line": [2, 3, 4], "linear": 4, "linspac": 0, "load": [1, 2, 5], "locat": 4, "log": [4, 5], "logarithm": 4, "long": 4, "look": [1, 3, 5], "loss": [4, 5], "low": [0, 3], "m": 0, "made": [1, 4], "mag": 5, "magnet": [1, 3, 5], "mai": [0, 1, 3, 4, 5], "main": 4, "make": [0, 1, 2, 3, 5], "makeproject": 0, "manag": [1, 4, 5], "mani": 0, "manifest": 3, "manipul": [1, 2], "mantid": [0, 1, 3, 4, 5], "mantidworkbench": [0, 4], "map": [0, 4], "mar28230_ei11": 4, "mar28236_ei10": 4, "mar28236_ei11": 4, "mar28237_ei10": 4, "mar28237_ei11": 4, "mark": 3, "markedli": [1, 3], "mat": [1, 5], "match": 0, "materi": [1, 5], "mathcal": 3, "mathemat": [1, 2], "mathrm": [0, 3, 5], "matlab": [1, 4, 5], "matplotlib": 2, "maximum": [1, 5], "mb": 3, "mc": 0, "md": [1, 4, 5], "mdeventworkspac": 0, "mean": [3, 5], "measur": 3, "memori": 4, "menu": [0, 1, 4, 5], "merg": 4, "mesh": 0, "method": [1, 3], "mev": [0, 3, 4], "milibarn": [3, 5], "minimum": [1, 4], "mode": [0, 1, 2, 3, 5], "modifi": 4, "moment": 5, "momentum": [4, 5], "more": [1, 3, 4, 5], "mous": 4, "move": 4, "mslice": [1, 3, 5], "mu_b": 5, "multi": 4, "multipl": [0, 1, 4], "multipli": 5, "muon": 3, "must": [0, 1, 5], "n": 5, "n_": 3, "n_i": 3, "name": [0, 4], "navig": 4, "necessarili": 3, "need": [3, 4], "neg": 5, "neutron": [1, 2, 3, 4, 5], "new": 4, "nexu": [1, 5], "nightli": 4, "niobium": [1, 5], "non": [0, 1, 2, 5], "norm": [1, 5], "normal": 0, "normalis": [1, 3, 5], "note": [0, 1, 2, 4, 5], "notebook": 0, "now": 3, "np": 0, "nuclei": 5, "number": [3, 4, 5], "numeventsnorm": 3, "nx": [0, 1, 4, 5], "nxspe": [0, 4], "object": 0, "obtain": [3, 5], "off": [1, 4], "offset": 4, "often": 3, "ok": [0, 4], "old": 4, "omega": [1, 5], "onc": [4, 5], "one": [0, 3, 4], "one2on": 4, "ongo": 4, "onli": [0, 1, 3, 4, 5], "open": 4, "openbabel": [1, 5], "oper": [0, 3, 4], "option": [0, 1, 4, 5], "orang": 3, "order": [0, 1, 3, 4], "org": 4, "orient": 0, "origin": [1, 3, 4, 5], "other": [0, 3, 4, 5], "otherwis": 3, "out": [3, 4], "output": 3, "outsid": 4, "over": [0, 1, 3, 4], "overlap": [1, 3], "overplot": [0, 2, 4], "overrid": 0, "overwrit": 4, "own": 0, "packag": [0, 1, 4, 5], "page": [1, 2, 3, 5], "pane": 4, "panel": [1, 4], "parallelogram": 3, "paramet": [4, 5], "parent": 1, "particular": [1, 4, 5], "path": [0, 4], "pcolormesh": 0, "pdf": [1, 5], "peak": [0, 3], "per": [0, 3], "perform": [0, 3, 5], "pi": 5, "pixel": [3, 4, 5], "pixelworkspac": 0, "plain": 0, "plan": 4, "pleas": [0, 1, 2, 4, 5], "plot": [1, 2, 3, 5], "plotcut": 0, "plotov": 0, "plotslic": 0, "plt": 0, "pm": 5, "png": [1, 5], "point": [3, 4, 5], "popul": 5, "posit": [1, 3, 4, 5], "possibl": 1, "powder": [2, 4], "present": 4, "preserv": 4, "press": 4, "previou": [3, 4], "previous": [1, 3], "primarili": 4, "prior": 0, "process": [2, 3, 4], "produc": [0, 1, 3, 4, 5], "program": [2, 3, 4], "project": [0, 1, 4, 5], "properti": 5, "proport": 1, "provid": [0, 1, 4, 5], "psd": [0, 1, 2, 5], "put": 0, "py": [0, 4], "pycifrw": [1, 5], "pyplot": 0, "python": 0, "q": [0, 1, 3, 5], "qq": 0, "quadratur": 3, "quadrilater": 3, "quick": 2, "quickli": 5, "quit": 4, "r_e": 5, "radiu": 5, "rang": [0, 1, 3, 4], "rapid": 4, "rather": [3, 4, 5], "re": 0, "reach": 4, "read": [1, 3, 5], "readabl": [1, 5], "reason": 5, "rebin": [0, 1, 3, 4, 5], "rebin2d": 5, "recent": 4, "reciproc": 3, "recognis": 0, "recoil": [0, 2], "recommend": [0, 1], "recov": 3, "rectangl": 4, "rectangular": 4, "red": 3, "redraw": 4, "reduc": [3, 4], "refer": [1, 2], "reflect": [1, 5], "regard": 1, "region": [1, 2, 4], "rel": 3, "relat": [1, 5], "releas": 4, "relev": [1, 3], "reload": 0, "remaind": 1, "remov": 4, "render": 0, "reorganis": 5, "replot": 4, "report": 2, "repres": 3, "reproduc": 0, "requir": 4, "resav": [1, 5], "respect": [1, 3, 4], "restart": [1, 4], "result": [1, 4], "revert": 1, "right": 3, "ring": [0, 4], "rr": 0, "run": [0, 3, 4], "sai": 4, "same": [0, 1, 3, 4, 5], "sampl": [1, 4, 5], "save": [2, 3, 4], "scalar": 0, "scale": [1, 3], "scatter": [2, 3, 4, 5], "script": [2, 4], "script_nam": 0, "search": 2, "section": [1, 3, 5], "see": [1, 3, 4, 5], "seen": 3, "select": [1, 4, 5], "self": 4, "send": [1, 4], "sens": 1, "sensit": [3, 4], "separ": 4, "seq_": 0, "seri": 5, "session": 1, "set": [1, 4], "set_clim": 0, "set_titl": 0, "set_xlabel": 0, "set_xlim": 0, "set_ylim": 0, "sever": 4, "shade": 3, "shield": 4, "shift": 4, "short": [1, 4], "shorter": 0, "should": [3, 4], "show": [0, 4], "shown": [1, 5], "side": [3, 5], "sigma": 5, "sign": 5, "signal": [1, 3, 5], "similar": [0, 1], "simpl": 1, "simpli": 3, "simultan": [1, 5], "sinc": 3, "singl": [1, 3, 4], "size": [0, 1, 4, 5], "slant": 3, "slice": [1, 2], "slice_w": 0, "small": 4, "smaller": [4, 5], "sn": 4, "so": [0, 3, 4], "sofqwnormalisedpolygon": [4, 5], "some": [1, 4, 5], "someth": [0, 3], "sourc": 3, "space": 3, "specif": [2, 4], "specifi": [0, 1, 3, 4, 5], "spectromet": 4, "spectrum": 5, "split": 4, "sqrt": 3, "squar": 3, "sr": 3, "stabl": 4, "standard": [0, 3], "start": [2, 3], "state": [1, 3, 5], "step": [0, 1, 3, 4, 5], "steradian": 3, "strictli": 5, "style": 0, "subfold": 4, "subplot": 0, "subsequ": [0, 1, 4], "subtract": 4, "successfulli": 4, "suggest": 2, "suitabl": [1, 3], "sum": [1, 3, 4], "sum_": 3, "support": [0, 3, 4], "suscept": [1, 5], "swap": 4, "switch": [4, 5], "symbol": 1, "symmetris": [1, 5], "syntax": 0, "system": 1, "t": 4, "tab": [1, 4, 5], "take": [2, 3], "taken": [4, 5], "tall": 4, "tantalum": [1, 5], "target": 3, "techniqu": 3, "temperatur": [0, 5], "terminologi": 3, "test": 4, "text": 5, "th": 3, "than": [3, 4, 5], "thei": 0, "them": [1, 3, 4, 5], "thi": [0, 1, 2, 3, 4, 5], "those": 3, "three": [1, 4], "through": 1, "thu": [0, 3, 5], "time": [0, 1], "titl": [0, 1, 4, 5], "togeth": 4, "toggl": 1, "too": 3, "tool": [0, 2], "toolbar": [1, 4], "top": 3, "total": 5, "transfer": [0, 1, 2, 3, 5], "transform": 3, "treat": 3, "tree": 4, "triangular": 3, "true": 0, "turn": [3, 4], "two": [1, 2, 4], "txt": [1, 4, 5], "type": [0, 1, 3, 4, 5], "u": 3, "uncertainti": [1, 3, 5], "unchang": 3, "unfortun": 3, "unit": [2, 5], "uniti": [1, 3, 5], "until": 3, "up": [4, 5], "updat": 4, "us": [1, 2, 3, 4, 5], "user": [3, 4, 5], "usual": [3, 4, 5], "v": 5, "valid": 2, "valu": [1, 3, 4, 5], "vari": 3, "ve": 4, "vector": 1, "veri": [3, 4], "versa": 1, "version": [2, 4], "versu": 5, "vertic": 4, "vesta": [1, 5], "via": [4, 5], "vice": 1, "view": 5, "visual": 2, "volum": 5, "w": [0, 3], "w_": 3, "w_i": 3, "wa": 1, "wai": [0, 4], "want": [0, 3, 4], "waterfal": 4, "wavenumb": 4, "we": [1, 3, 5], "weight": [1, 3, 5], "whatev": 1, "when": [0, 1, 4], "where": [3, 5], "wherea": [3, 5], "whether": [1, 4], "which": [0, 1, 3, 4, 5], "whilst": [0, 1, 3, 4], "white": 4, "whose": 3, "width": [0, 1, 3, 4], "window": [0, 1, 4, 5], "wish": 1, "within": [3, 4], "without": [1, 3, 4], "work": 0, "workbench": 1, "workspac": [1, 2, 5], "would": [0, 3], "wrap": 0, "write": 4, "written": 0, "ws1": 0, "ws2": 0, "ws2d": 0, "wsq": 0, "wss": 0, "x": [1, 4, 5], "xye": [1, 4, 5], "y": [1, 4, 5], "y_": 3, "yield": 3, "you": [0, 1, 4, 5], "your": [4, 5], "z": 5, "zero": 3, "zip": 4, "\u00e5": 3}, "titles": ["4. Command Line Interface", "2. Taking Cuts", "MSlice for Mantid", "5. Mathematical Reference", "1. Quick Start", "3. Taking Slices"], "titleterms": {"A": 3, "algebra": 0, "algorithm": [1, 3], "command": 0, "convert": [1, 5], "current": 4, "cut": [0, 1, 3, 4], "data": [1, 4, 5], "displai": [1, 5], "energi": 4, "exampl": 0, "file": 5, "from": [1, 5], "gener": 0, "gui": [1, 5], "inform": [1, 5], "intens": [1, 5], "interact": 4, "interfac": 0, "keep": 4, "line": [0, 1, 5], "load": [0, 4], "make": 4, "manipul": [0, 4], "mantid": 2, "mathemat": 3, "matplotlib": 0, "mode": 4, "mslice": [0, 2, 4], "non": [3, 4], "note": 3, "overplot": [1, 5], "plot": [0, 4], "powder": [1, 5], "psd": [3, 4], "quick": 4, "recoil": 5, "refer": 3, "region": 3, "save": [1, 5], "script": 0, "seri": 0, "slice": [0, 3, 4, 5], "specif": 0, "start": 4, "take": [1, 5], "transfer": 4, "two": 3, "unit": [3, 4], "us": 0, "valid": 3, "workspac": [0, 4]}}) \ No newline at end of file +Search.setIndex({"alltitles": {"A note on the regions of validity of the two algorithms": [[3, "a-note-on-the-regions-of-validity-of-the-two-algorithms"]], "A note on units": [[3, "a-note-on-units"]], "Algebraic Manipulation of Workspaces": [[0, "algebraic-manipulation-of-workspaces"]], "Command Line Interface": [[0, null]], "Converting intensity information in displayed data in cuts": [[1, "converting-intensity-information-in-displayed-data-in-cuts"]], "Converting intensity information in displayed data in slices": [[5, "converting-intensity-information-in-displayed-data-in-slices"]], "Cutting Algorithms": [[1, "cutting-algorithms"]], "Cutting from the GUI": [[1, "cutting-from-the-gui"]], "Energy transfer units": [[4, "energy-transfer-units"]], "Examples": [[0, "examples"]], "Generating scripts": [[0, "generating-scripts"]], "Interactive Cuts": [[4, "interactive-cuts"]], "Keep / Make Current": [[4, "keep-make-current"]], "Loading Data": [[4, "loading-data"]], "Loading and Cutting / Slicing": [[0, "loading-and-cutting-slicing"]], "MSlice for Mantid": [[2, null]], "Manipulating Workspaces": [[4, "manipulating-workspaces"]], "Mathematical Reference": [[3, null]], "Non-PSD Cuts": [[3, "non-psd-cuts"]], "Non-PSD Slice": [[3, "non-psd-slice"]], "Overplotting powder lines": [[1, "overplotting-powder-lines"]], "Overplotting recoil and powder lines": [[5, "overplotting-recoil-and-powder-lines"]], "PSD Cut": [[3, "psd-cut"]], "PSD Slice": [[3, "psd-slice"]], "PSD and non-PSD modes": [[4, "psd-and-non-psd-modes"]], "Plotting a Cut": [[4, "plotting-a-cut"]], "Plotting a Slice": [[4, "plotting-a-slice"]], "Plotting a series of cuts": [[0, "plotting-a-series-of-cuts"]], "Plotting using MSlice specific commands": [[0, "plotting-using-mslice-specific-commands"]], "Plotting using Matplotlib interface": [[0, "plotting-using-matplotlib-interface"]], "Quick Start": [[4, null]], "Saving cuts": [[1, "saving-cuts"]], "Saving slices to file": [[5, "saving-slices-to-file"]], "Slicing from the GUI": [[5, "slicing-from-the-gui"]], "Starting MSlice": [[4, "starting-mslice"]], "Taking Cuts": [[1, null]], "Taking Slices": [[5, null]]}, "docnames": ["cli", "cutting", "index", "math_ref", "quickstart", "slicing"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["cli.rst", "cutting.rst", "index.rst", "math_ref.rst", "quickstart.rst", "slicing.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 4, 5], "0": [0, 1, 3, 4], "00": 4, "00mev_subtract": 4, "01": 0, "06d_powder": 0, "1": [0, 1, 3, 4, 5], "10": [0, 1, 3, 4], "100": [3, 4], "103154": 0, "103158": 0, "111": 0, "16mev": 4, "1d": [0, 4, 5], "2": [0, 5], "20": 3, "291": 5, "2_": 3, "2d": [0, 4, 5], "3": [0, 1, 4], "4": [0, 1, 4, 5], "5": 0, "50": 3, "55": 0, "6": [1, 3, 4], "8": [0, 3], "9": [1, 4], "A": [2, 4, 5], "As": 3, "At": 3, "By": 4, "For": [0, 1, 3, 4, 5], "If": [1, 3, 4, 5], "In": [0, 1, 3, 4, 5], "It": [2, 3], "No": 0, "On": 4, "One": [1, 3], "That": 1, "The": [0, 1, 3, 4, 5], "Then": 4, "There": 1, "These": [0, 1, 4, 5], "To": [0, 1, 4, 5], "_": 5, "__init__": 4, "_or_": 3, "_sum": 4, "aa": [0, 3], "abl": [0, 1], "about": 1, "abov": [0, 1, 3, 4, 5], "absolut": 3, "accept": 0, "access": [1, 4, 5], "accommod": 0, "accur": 5, "across": 3, "activ": 4, "ad": 0, "add": 4, "add_subplot": 0, "addit": [0, 1, 4, 5], "addition": 0, "adopt": 3, "advantag": 3, "after": 4, "again": [1, 4], "algebra": 2, "algorithm": [2, 4, 5], "align": 3, "all": [0, 3, 4, 5], "allow": [0, 1, 3, 4, 5], "along": [0, 1, 3, 4], "alreadi": 1, "also": [0, 1, 3, 4, 5], "altern": [0, 4], "although": 1, "aluminium": [1, 5], "amplifi": 3, "an": [0, 1, 3, 4, 5], "anaconda": 4, "analysi": [1, 5], "angl": [4, 5], "ani": [0, 2, 4, 5], "anihil": 5, "anoth": [4, 5], "appear": 4, "append": [0, 4], "appli": [0, 4], "applic": 3, "approxim": 3, "ar": [0, 1, 3, 4, 5], "arbitrari": [1, 5], "area": 3, "argument": 0, "around": 3, "arrow": 4, "ascii": [1, 5], "ask": 4, "associ": 3, "assum": 3, "assumpt": 3, "automat": [3, 4], "autoreduc": 4, "avail": [1, 4, 5], "averag": [1, 3], "awar": 0, "ax": [0, 1, 4, 5], "axi": [1, 3, 4], "background": [0, 4], "backspac": 4, "base": 0, "basic": 4, "becaus": [0, 3], "been": [0, 3, 4], "befor": [0, 4, 5], "behaviour": [3, 4], "behind": 3, "being": [1, 5], "below": [1, 3, 4], "between": [0, 1, 3], "beyond": 3, "bin": [0, 1, 3, 4, 5], "binmd": 5, "blue": 3, "bose": 5, "boson": 5, "both": [0, 2, 4], "bottom": 3, "boundari": 3, "box": [0, 1, 4], "bragg": 0, "bring": 5, "bug": 2, "button": [1, 4, 5], "c": 4, "c_i": 3, "calcul": [0, 1, 3, 4, 5], "call": [0, 3, 4], "can": [0, 1, 3, 4, 5], "cannot": [3, 4], "case": [0, 1, 3, 4, 5], "caus": 1, "cb": 0, "centr": [3, 5], "chang": [0, 1, 4, 5], "channel": 4, "check": [1, 5], "checkbox": 5, "chi": [1, 5], "choos": 4, "chose": [3, 4], "chosen": 3, "chunk": 4, "cif": [1, 5], "classic": 5, "clear": 1, "cli": 0, "click": [1, 4, 5], "clipboard": 0, "cm": 4, "cmap": 0, "coarser": 3, "code": 5, "cog": [1, 5], "colorbar": [0, 4], "colour": 1, "column": [1, 5], "combin": 4, "combobox": [4, 5], "command": [2, 4], "commandlin": 2, "common": [1, 4, 5], "comput": [1, 3, 4, 5], "conda": 4, "consid": 3, "consol": [0, 4], "constant": [1, 3], "constraint": 1, "contain": [3, 4], "control": 4, "convent": [3, 4], "convers": [0, 1, 3], "convert": [0, 2, 4], "coolwarm": 0, "coordin": [1, 3, 5], "copi": [0, 4], "copper": [1, 5], "correct": [3, 5], "correspond": [1, 4], "cover": 3, "coverag": 1, "creat": [0, 1, 4], "creation": 5, "cross": [1, 3, 4, 5], "crystal": [3, 4], "crystallograph": [1, 5], "ctrl": 4, "current": [0, 1, 2], "cursor": 4, "cut": [2, 5], "cut_w": 0, "cuttabl": 1, "d": [3, 5], "d2sigma": 1, "dai": 4, "darker": 3, "data": [0, 2, 3], "datafil": [4, 5], "dataset": [0, 1, 4], "de": 5, "decreas": [3, 4], "default": [0, 1, 3, 4, 5], "defin": [0, 5], "delta": 0, "denomin": 3, "denot": 4, "densiti": [1, 3, 5], "depend": [1, 3, 4, 5], "depth": 5, "describ": [1, 3], "desir": [3, 4, 5], "detail": [1, 4], "detector": [3, 4], "determin": 1, "deuterium": 5, "develop": 4, "deviat": 3, "dialog": [4, 5], "differ": [0, 1, 3, 4, 5], "differenti": 3, "dimension": [3, 4], "direct": [0, 1, 3], "directli": [0, 4, 5], "disabl": [1, 4, 5], "discuss": 3, "disk": [1, 5], "displai": [2, 3, 4], "distinct": 3, "distribut": [3, 4], "divid": [3, 4], "divis": 5, "do": [0, 1, 3, 4], "doe": [0, 1, 3, 4], "don": 4, "done": [0, 1, 3, 4], "dot": 3, "doubl": [1, 4, 5], "down": [1, 4], "download": 4, "drag": 4, "drop": [1, 4], "dropdown": 5, "due": 1, "dynam": [1, 4, 5], "e": [0, 1, 3, 5], "e_": 3, "each": [0, 1, 3, 4], "easi": [3, 4], "easiest": 4, "edit": [1, 4], "editor": 4, "effect": 3, "effici": 5, "either": [0, 1, 4, 5], "elast": 3, "electron": 5, "element": 3, "els": 3, "empti": [1, 4], "en": 4, "enabl": [1, 4, 5], "end": 0, "energi": [0, 1, 2, 3, 5], "ensur": 4, "enter": 4, "entri": 1, "environ": [1, 4, 5], "equal": 3, "equiv": 3, "equival": [1, 3, 5], "error": 3, "errorbar": [0, 3], "etc": 0, "even": 0, "event": [1, 4, 5], "everi": 4, "everyth": 4, "exampl": [1, 2, 3, 4], "except": [1, 3], "excit": 3, "exp": 5, "expect": 3, "explan": [1, 5], "express": 3, "externalinterfac": 4, "extra": 4, "extract": 4, "extrapol": 3, "f": [0, 3], "f_": 3, "factor": [1, 3, 4, 5], "factoris": 3, "fast": 4, "featur": 0, "few": 4, "field": 3, "fig": 0, "figur": [0, 1, 3, 5], "file": [0, 1, 2, 3, 4], "filesystem": 4, "fill": 1, "final": [0, 1, 4], "fine": [0, 3], "finish": 4, "finit": 3, "first": [0, 1, 3, 4, 5], "flexibl": 0, "floppi": [1, 5], "fmt": 0, "focu": 5, "folder": 4, "font": 4, "form": 5, "format": [1, 5], "formula": 3, "forum": 2, "found": 1, "four": 5, "frac": [3, 5], "fraction": [3, 4, 5], "fresh": 1, "from": [0, 2, 3, 4], "full": [0, 3, 4], "fullprof": [1, 5], "function": [0, 1, 5], "further": 1, "futur": 4, "g": [0, 1, 3, 5], "g_n": 5, "gain": 5, "gdo": 1, "gener": [1, 2, 3, 4, 5], "get": 4, "github": 4, "give": [1, 4], "given": [3, 5], "go": 4, "grain": 0, "graphic": 0, "green": 3, "grid": 3, "gsa": [1, 5], "gui": [0, 2, 4], "h": 5, "ha": [0, 3, 4], "hair": 4, "half": 3, "hand": [3, 4], "handl": [3, 4], "have": [0, 1, 3, 4, 5], "he": 5, "heavili": 3, "helium": 5, "help": [1, 5], "high": 3, "histo": [1, 4], "histogram": 3, "histogramworkspac": 0, "histori": 0, "hold": 4, "horac": 3, "howev": [0, 1, 3, 4], "hydrogen": 5, "hyspec": 4, "i": [0, 1, 2, 3, 4, 5], "icon": [1, 5], "ij": 3, "illustr": 3, "imag": [1, 3, 4, 5], "implement": 5, "implicitli": 1, "import": 0, "importlib": 0, "improv": 2, "inaccess": 3, "includ": [0, 1, 2, 3, 4], "increas": [3, 4], "index": 3, "indic": 3, "individu": [1, 4], "inelast": [2, 3], "inform": [0, 2], "informaton": 1, "input": [1, 3, 4, 5], "instal": 4, "instead": [0, 3, 4], "instrument": 4, "int": 3, "integr": [0, 1, 3, 4], "integratemdhistoworkspac": 3, "intemedi": 5, "intend": 4, "intens": [2, 3], "interact": [0, 1, 2, 5], "interest": 1, "interfac": [1, 2, 4], "intern": 0, "introduc": [1, 4], "ipython": [0, 4], "isi": [3, 4], "item": 4, "its": [0, 1, 4], "j": 3, "jump": 4, "jupyt": 0, "just": [3, 5], "k": 3, "k_bt": 5, "k_f": 5, "k_i": 5, "keep": [0, 1, 2], "kei": [4, 5], "kept": 1, "keyboard": 4, "keyword": 0, "kinemat": [1, 3], "kl": 3, "l": 3, "label": [1, 4], "laboratori": 3, "lack": 3, "larg": [3, 4, 5], "larger": 3, "last": [1, 4], "later": 4, "latest": 4, "lead": 3, "leav": [1, 3, 4], "left": [1, 3, 4], "leq": [0, 3], "less": [3, 5], "let": 0, "letter": 4, "level": 4, "lie": 3, "light": 5, "like": [3, 5], "limit": [0, 1, 3, 4, 5], "line": [2, 3, 4], "linear": 4, "linspac": 0, "load": [1, 2, 5], "locat": 4, "log": [4, 5], "logarithm": 4, "long": 4, "look": [1, 3, 5], "loss": [4, 5], "low": [0, 3], "m": 0, "made": [1, 4], "mag": 5, "magnet": [1, 3, 5], "mai": [0, 1, 3, 4, 5], "main": 4, "make": [0, 1, 2, 3, 5], "makeproject": 0, "manag": [1, 4, 5], "mani": 0, "manifest": 3, "manipul": [1, 2], "mantid": [0, 1, 3, 4, 5], "mantidworkbench": [0, 4], "map": [0, 4], "mar28230_ei11": 4, "mar28236_ei10": 4, "mar28236_ei11": 4, "mar28237_ei10": 4, "mar28237_ei11": 4, "mark": 3, "markedli": [1, 3], "mat": [1, 5], "match": 0, "materi": [1, 5], "mathcal": 3, "mathemat": [1, 2], "mathrm": [0, 3, 5], "matlab": [1, 4, 5], "matplotlib": 2, "maximum": [1, 5], "mb": 3, "mc": 0, "md": [1, 4, 5], "mdeventworkspac": 0, "mean": [3, 5], "measur": 3, "memori": 4, "menu": [0, 1, 4, 5], "merg": 4, "mesh": 0, "method": [1, 3], "mev": [0, 3, 4], "milibarn": [3, 5], "minimum": [1, 4], "mode": [0, 1, 2, 3, 5], "modifi": 4, "moment": 5, "momentum": [4, 5], "more": [1, 3, 4, 5], "mous": 4, "move": 4, "mslice": [1, 3, 5], "mu_b": 5, "multi": 4, "multipl": [0, 1, 4], "multipli": 5, "muon": 3, "must": [0, 1, 5], "n": 5, "n_": 3, "n_i": 3, "name": [0, 4], "navig": 4, "necessarili": 3, "need": [3, 4], "neg": 5, "neutron": [1, 2, 3, 4, 5], "new": 4, "nexu": [1, 5], "nightli": 4, "niobium": [1, 5], "non": [0, 1, 2, 5], "norm": [1, 5], "normal": 0, "normalis": [1, 3, 5], "note": [0, 1, 2, 4, 5], "notebook": 0, "now": 3, "np": 0, "nuclei": 5, "number": [3, 4, 5], "numeventsnorm": 3, "nx": [0, 1, 4, 5], "nxspe": [0, 4], "object": 0, "obtain": [3, 5], "off": [1, 4], "offset": 4, "often": 3, "ok": [0, 4], "old": 4, "omega": [1, 5], "onc": [4, 5], "one": [0, 3, 4], "one2on": 4, "ongo": 4, "onli": [0, 1, 3, 4, 5], "open": 4, "openbabel": [1, 5], "oper": [0, 3, 4], "option": [0, 1, 4, 5], "orang": 3, "order": [0, 1, 3, 4], "org": 4, "orient": 0, "origin": [1, 3, 4, 5], "other": [0, 3, 4, 5], "otherwis": 3, "out": [3, 4], "output": 3, "outsid": 4, "over": [0, 1, 3, 4], "overlap": [1, 3], "overplot": [0, 2, 4], "overrid": 0, "overwrit": 4, "own": 0, "packag": [0, 1, 4, 5], "page": [1, 2, 3, 5], "pane": 4, "panel": [1, 4], "parallelogram": 3, "paramet": [4, 5], "parent": 1, "particular": [1, 4, 5], "path": [0, 4], "pcolormesh": 0, "pdf": [1, 5], "peak": [0, 3], "per": [0, 3], "perform": [0, 3, 5], "pi": 5, "pixel": [3, 4, 5], "pixelworkspac": 0, "plain": 0, "plan": 4, "pleas": [0, 1, 2, 4, 5], "plot": [1, 2, 3, 5], "plotcut": 0, "plotov": 0, "plotslic": 0, "plt": 0, "pm": 5, "png": [1, 5], "point": [3, 4, 5], "popul": 5, "posit": [1, 3, 4, 5], "possibl": 1, "powder": [2, 4], "present": 4, "preserv": 4, "press": 4, "previou": [3, 4], "previous": [1, 3], "primarili": 4, "prior": 0, "process": [2, 3, 4], "produc": [0, 1, 3, 4, 5], "program": [2, 3, 4], "project": [0, 1, 4, 5], "properti": 5, "proport": 1, "provid": [0, 1, 4, 5], "psd": [0, 1, 2, 5], "put": 0, "py": [0, 4], "pycifrw": [1, 5], "pyplot": 0, "python": 0, "q": [0, 1, 3, 5], "qq": 0, "quadratur": 3, "quadrilater": 3, "quick": 2, "quickli": 5, "quit": 4, "r_e": 5, "radiu": 5, "rang": [0, 1, 3, 4], "rapid": 4, "rather": [3, 4, 5], "re": 0, "reach": 4, "read": [1, 3, 5], "readabl": [1, 5], "reason": 5, "rebin": [0, 1, 3, 4, 5], "rebin2d": 5, "recent": 4, "reciproc": 3, "recognis": 0, "recoil": [0, 2], "recommend": [0, 1], "recov": 3, "rectangl": 4, "rectangular": 4, "red": 3, "redraw": 4, "reduc": [3, 4], "refer": [1, 2], "reflect": [1, 5], "regard": 1, "region": [1, 2, 4], "rel": 3, "relat": [1, 5], "releas": 4, "relev": [1, 3], "reload": 0, "remaind": 1, "remov": 4, "render": 0, "reorganis": 5, "replot": 4, "report": 2, "repres": 3, "reproduc": 0, "requir": 4, "resav": [1, 5], "respect": [1, 3, 4], "restart": [1, 4], "result": [1, 4], "revert": 1, "right": 3, "ring": [0, 4], "rr": 0, "run": [0, 3, 4], "sai": 4, "same": [0, 1, 3, 4, 5], "sampl": [1, 4, 5], "save": [2, 3, 4], "scalar": 0, "scale": [1, 3], "scatter": [2, 3, 4, 5], "script": [2, 4], "script_nam": 0, "search": 2, "section": [1, 3, 5], "see": [1, 3, 4, 5], "seen": 3, "select": [1, 4, 5], "self": 4, "send": [1, 4], "sens": 1, "sensit": [3, 4], "separ": 4, "seq_": 0, "seri": 5, "session": 1, "set": [1, 4], "set_clim": 0, "set_titl": 0, "set_xlabel": 0, "set_xlim": 0, "set_ylim": 0, "sever": 4, "shade": 3, "shield": 4, "shift": 4, "short": [1, 4], "shorter": 0, "should": [3, 4], "show": [0, 4], "shown": [1, 5], "side": [3, 5], "sigma": 5, "sign": 5, "signal": [1, 3, 5], "similar": [0, 1], "simpl": 1, "simpli": 3, "simultan": [1, 5], "sinc": 3, "singl": [1, 3, 4], "size": [0, 1, 4, 5], "slant": 3, "slice": [1, 2], "slice_w": 0, "small": 4, "smaller": [4, 5], "sn": 4, "so": [0, 3, 4], "sofqwnormalisedpolygon": [4, 5], "some": [1, 4, 5], "someth": [0, 3], "sourc": 3, "space": 3, "specif": [2, 4], "specifi": [0, 1, 3, 4, 5], "spectromet": 4, "spectrum": 5, "split": 4, "sqrt": 3, "squar": 3, "sr": 3, "stabl": 4, "standard": [0, 3], "start": [2, 3], "state": [1, 3, 5], "step": [0, 1, 3, 4, 5], "steradian": 3, "strictli": 5, "style": 0, "subfold": 4, "subplot": 0, "subsequ": [0, 1, 4], "subtract": 4, "successfulli": 4, "suggest": 2, "suitabl": [1, 3], "sum": [1, 3, 4], "sum_": 3, "support": [0, 3, 4], "suscept": [1, 5], "swap": 4, "switch": [4, 5], "symbol": 1, "symmetris": [1, 5], "syntax": 0, "system": 1, "t": 4, "tab": [1, 4, 5], "take": [2, 3], "taken": [4, 5], "tall": 4, "tantalum": [1, 5], "target": 3, "techniqu": 3, "temperatur": [0, 5], "terminologi": 3, "test": 4, "text": 5, "th": 3, "than": [3, 4, 5], "thei": 0, "them": [1, 3, 4, 5], "thi": [0, 1, 2, 3, 4, 5], "those": 3, "three": [1, 4], "through": 1, "thu": [0, 3, 5], "time": [0, 1], "titl": [0, 1, 4, 5], "togeth": 4, "toggl": 1, "too": 3, "tool": [0, 2], "toolbar": [1, 4], "top": 3, "total": 5, "transfer": [0, 1, 2, 3, 5], "transform": 3, "treat": 3, "tree": 4, "triangular": 3, "true": 0, "turn": [3, 4], "two": [1, 2, 4], "txt": [1, 4, 5], "type": [0, 1, 3, 4, 5], "u": 3, "uncertainti": [1, 3, 5], "unchang": 3, "unfortun": 3, "unit": [2, 5], "uniti": [1, 3, 5], "until": 3, "up": [4, 5], "updat": 4, "us": [1, 2, 3, 4, 5], "user": [3, 4, 5], "usual": [3, 4, 5], "v": 5, "valid": 2, "valu": [1, 3, 4, 5], "vari": 3, "ve": 4, "vector": 1, "veri": [3, 4], "versa": 1, "version": [2, 4], "versu": 5, "vertic": 4, "vesta": [1, 5], "via": [4, 5], "vice": 1, "view": 5, "visual": 2, "volum": 5, "w": [0, 3], "w_": 3, "w_i": 3, "wa": 1, "wai": [0, 4], "want": [0, 3, 4], "waterfal": 4, "wavenumb": 4, "we": [1, 3, 5], "weight": [1, 3, 5], "whatev": 1, "when": [0, 1, 4], "where": [3, 5], "wherea": [3, 5], "whether": [1, 4], "which": [0, 1, 3, 4, 5], "whilst": [0, 1, 3, 4], "white": 4, "whose": 3, "width": [0, 1, 3, 4], "window": [0, 1, 4, 5], "wish": 1, "within": [3, 4], "without": [1, 3, 4], "work": 0, "workbench": 1, "workspac": [1, 2, 5], "would": [0, 3], "wrap": 0, "write": 4, "written": 0, "ws1": 0, "ws2": 0, "ws2d": 0, "wsq": 0, "wss": 0, "x": [1, 4, 5], "xye": [1, 4, 5], "y": [1, 4, 5], "y_": 3, "yield": 3, "you": [0, 1, 4, 5], "your": [4, 5], "z": 5, "zero": 3, "zip": 4, "\u00e5": 3}, "titles": ["4. Command Line Interface", "2. Taking Cuts", "MSlice for Mantid", "5. Mathematical Reference", "1. Quick Start", "3. Taking Slices"], "titleterms": {"A": 3, "algebra": 0, "algorithm": [1, 3], "command": 0, "convert": [1, 5], "current": 4, "cut": [0, 1, 3, 4], "data": [1, 4, 5], "displai": [1, 5], "energi": 4, "exampl": 0, "file": 5, "from": [1, 5], "gener": 0, "gui": [1, 5], "inform": [1, 5], "intens": [1, 5], "interact": 4, "interfac": 0, "keep": 4, "line": [0, 1, 5], "load": [0, 4], "make": 4, "manipul": [0, 4], "mantid": 2, "mathemat": 3, "matplotlib": 0, "mode": 4, "mslice": [0, 2, 4], "non": [3, 4], "note": 3, "overplot": [1, 5], "plot": [0, 4], "powder": [1, 5], "psd": [3, 4], "quick": 4, "recoil": 5, "refer": 3, "region": 3, "save": [1, 5], "script": 0, "seri": 0, "slice": [0, 3, 4, 5], "specif": 0, "start": 4, "take": [1, 5], "transfer": 4, "two": 3, "unit": [3, 4], "us": 0, "valid": 3, "workspac": [0, 4]}}) \ No newline at end of file diff --git a/slicing.html b/slicing.html index 02dca7b4..d54a0b32 100644 --- a/slicing.html +++ b/slicing.html @@ -7,9 +7,9 @@ 3. Taking Slices — MSlice 2.9 documentation - + - + @@ -189,8 +189,8 @@

Navigation

\ No newline at end of file