Skip to content

Commit

Permalink
Merge pull request #142 from aglowacki/master
Browse files Browse the repository at this point in the history
Bug fix for loading params override file
  • Loading branch information
Arthur Glowacki authored Jun 8, 2022
2 parents 2c1a15d + acec51b commit 310106b
Show file tree
Hide file tree
Showing 3 changed files with 508 additions and 422 deletions.
83 changes: 83 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
# XRF-Maps

## About

## Fitting Routines
```
--fit <roi,nnls,svd,matrix>
```
### ROI
#### Description
ROI fitting

### NNLS

### SVD

### MATRIX

## Quantification
### Option
```
--quantify-with <filename.txt>
```
### Standard file definition:

### Example:
```
--quantify-with maps_standardinfo.txt
```

## Exchange Format

## MISC Command line

### Number of Threads
```
--nthreads <int>
```
#### Desc:
Specifiy the max number of threads to use. If you do not specifiy --nthreads, it will query the cpu for the max number of threads and use them all.

#### Example: Use only 4 threads
```
--nthreads 4
```

### Detectors to fit
```
--detectors <n,...,m>
```
or
```
--detector-range n:m
```
#### Desc:
Specifiy the detector elements to fit. If you do not specifiy this option, it will default to 7 elements but will only process ones that exist.

#### Example: Use 4 detectors
```
--detectors 0,1,2,3
```
or
```
--detector-range 0:3
```
#### Example: Fit all detectors except for the 3rd detector
```
--detectors 0,1,3
```


### Generate Average H5 file
```
--generate-avg-h5
```
#### Desc:
Will average all detectors specified by --detectors or --detector-range option into h5 file.





<!-- ![This is an image](https://myoctocat.com/assets/images/base-octocat.svg) -->
Loading

0 comments on commit 310106b

Please sign in to comment.