LoadMultipleGSS v1#

Summary#

This algorithm loads multiple gsas files from a single directory into mantid.

See Also#

LoadGSS

Properties#

Name

Direction

Type

Default

Description

FilePrefix

Input

string

RunNumbers

Input

int list

0

Directory

Input

string

Description#

This algorithm loads multiple gsas files from a single directory into mantid.

Usage#

Note

To run these usage examples please first download the usage data, and add these to your path. In Mantid this is done using Manage User Directories.

LoadMultipleGSS(FilePrefix="PG3",RunNumbers="11485,11486",Directory="")

#quick test:
print("Found workspace PG3_11485 {}".format(mtd.doesExist("PG3_11485")))
print("It has {} histogram, with {} bins".format(mtd["PG3_11485"].getNumberHistograms(), mtd["PG3_11485"].blocksize()))
print("Found workspace PG3_11486 {}".format(mtd.doesExist("PG3_11486")))
print("It has {} histogram, with {} bins".format(mtd["PG3_11486"].getNumberHistograms(), mtd["PG3_11486"].blocksize()))

Output:

Found workspace PG3_11485 True
It has 1 histogram, with 2193 bins
Found workspace PG3_11486 True
It has 1 histogram, with 731 bins

Categories: AlgorithmIndex | DataHandling\Text

Source#

Python: LoadMultipleGSS.py