File: xrayutilities_linear_detector_parameters.py

package info (click to toggle)
xrayutilities 1.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 12,452 kB
  • sloc: python: 29,264; ansic: 4,232; makefile: 23
file content (36 lines) | stat: -rw-r--r-- 1,243 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This file is part of xrayutilities.
#
# xrayutilities is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2013 Dominik Kriegner <dominik.kriegner@gmail.com>

"""
script to show how the detector parameters (like pixel width, center channel
and detector tilt can be determined for a linear detector.
"""

import os

import matplotlib.pyplot as plt
import xrayutilities as xu

en = xu.utilities.energies["CuKa1"]  # eV
dfile = os.path.join("data", "primarybeam_alignment20130403_2_dis350.nja")

# read seifert file
s = xu.io.SeifertScan(dfile)
ang = s.axispos["T"]
spectra = s.data[:, :, 1]

pwidth, cch, tilt = xu.analysis.linear_detector_calib(ang, spectra)