-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from aglowacki/master
Bug fix for loading params override file
- Loading branch information
Showing
3 changed files
with
508 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) --> |
Oops, something went wrong.