Skip to content
Snippets Groups Projects
Commit 19f1c6e6 authored by BenVK's avatar BenVK
Browse files

Added flag to from_run method to discard first frame for proper normalization

parent e461e329
No related branches found
No related tags found
1 merge request!274Up4256
Pipeline #117257 failed
...@@ -266,10 +266,14 @@ class hRIXS: ...@@ -266,10 +266,14 @@ class hRIXS:
'bins', 'method', 'fields') 'bins', 'method', 'fields')
return {param: getattr(self, param.upper()) for param in params} return {param: getattr(self, param.upper()) for param in params}
def from_run(self, runNB, proposal=None, extra_fields=()): def from_run(self, runNB, proposal=None, extra_fields=(), drop_first=False):
"""load a run """load a run
Load the run `runNB`. A thin wrapper around `toolbox.load`. Load the run `runNB`. A thin wrapper around `toolbox.load`.
Parameters
----------
drop_first: bool
if True, the first image in the run is removed from the dataset.
Example Example
------- -------
...@@ -284,7 +288,8 @@ class hRIXS: ...@@ -284,7 +288,8 @@ class hRIXS:
proposal = self.PROPOSAL proposal = self.PROPOSAL
run, data = tb.load(proposal, runNB=runNB, run, data = tb.load(proposal, runNB=runNB,
fields=self.FIELDS + list(extra_fields)) fields=self.FIELDS + list(extra_fields))
if drop_first is True:
data = data.isel(trainId=slice(1, None))
return data return data
def load_dark(self, runNB, proposal=None): def load_dark(self, runNB, proposal=None):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment