Skip to content

Commit

Permalink
update energy scan mode mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaspie committed Jul 12, 2024
1 parent 5b132e5 commit 27a8898
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/pynxtools_xps/specs/sle/sle_specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,22 @@ def __init__(self):

self.measurement_types = ["XPS", "UPS", "ElectronSpectroscopy"]

self.measurement_types_map = {
"XPS": "X-ray photoelectron spectroscopy (XPS)",
"UPS": "ultraviolet photoelectron spectroscopy (UPS)",
"ElectronSpectroscopy": "electron spectroscopy for chemical analysis (ESCA)",
"NAPXPS": "near ambient pressure X-ray photoelectron spectroscopy (NAPXPS)",
"ARXPS": "angle-resolved X-ray photoelectron spectroscopy (ARXPS)",
}

self.energy_scan_mode_map = {
"FixedAnalyzerTransmission": "fixed_analyser_transmission",
"FixedRetardationRatio": "fixed_retardation_ratio",
"FixedEnergies": "fixed_energy",
"Snapshot": "snapshot",
"SnapshotFAT": "snapshot",
}

def initiate_file_connection(self, filepath):
"""Set the filename of the file to be opened."""
sql_connection = filepath
Expand Down

0 comments on commit 27a8898

Please sign in to comment.