We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code causes calc_TLLxTxRatio() to crash:
calc_TLLxTxRatio()
data(ExampleData.BINfileData, envir = environment()) temp <- Risoe.BINfileData2RLum.Analysis(TL.SAR.Data, pos = 3) calc_TLLxTxRatio( Lx.data.signal=get_RLum(temp, record.id = 1), Lx.data.background=get_RLum(temp, record.id = 2), Tx.data.signal=get_RLum(temp, record.id = 3), Tx.data.background=NULL, ## no crash if Tx.data.background=get_RLum(temp, record.id = 4) signal.integral.min=210, signal.integral.max=230)
Error in calc_TLLxTxRatio(Lx.data.signal, Lx.data.background, Tx.data.signal, : object 'BG.Error' not found
Indeed, variable BG.Error is set only if argument Tx.data.background != NULL, while instead it should be given a default value.
BG.Error
Tx.data.background != NULL
The text was updated successfully, but these errors were encountered:
Add NEWS for #129 and #130
29e4f43
Thanks!
Sorry, something went wrong.
No branches or pull requests
The following code causes
calc_TLLxTxRatio()
to crash:Indeed, variable
BG.Error
is set only if argumentTx.data.background != NULL
, while instead it should be given a default value.The text was updated successfully, but these errors were encountered: