Skip to content
Snippets Groups Projects
Commit 6436a89f authored by Loïc Le Guyader's avatar Loïc Le Guyader
Browse files

Update default DSSC geo file and allows for different geo file and quadrants position

parent 161779ae
No related branches found
No related tags found
1 merge request!76Extra data and xfel kernel
...@@ -231,17 +231,28 @@ class DSSC: ...@@ -231,17 +231,28 @@ class DSSC:
print((f'Rejecting {nrejected} out of {len(self.run.train_ids)} trains due to xgm ' print((f'Rejecting {nrejected} out of {len(self.run.train_ids)} trains due to xgm '
f'thresholds: [{self.xgm_low}, {self.xgm_high}]')) f'thresholds: [{self.xgm_low}, {self.xgm_high}]'))
def load_geom(self): def load_geom(self, geopath=None, quad_pos=None):
""" Loads and return the DSSC geometry. """ Loads and return the DSSC geometry.
inputs:
geopath: path to the h5 geometry file. If None uses a default file.
quad_pos: list of quadrants tuple position. If None uses a default position.
output:
return the loaded geometry
""" """
quad_pos = [ if quad_pos is None:
(-124.100, 3.112), # TR quad_pos = [(-124.100, 3.112), # TR
(-133.068, -110.604), # BR (-133.068, -110.604), # BR
( 0.988, -125.236), # BL ( 0.988, -125.236), # BL
( 4.528, -4.912) # TL ( 4.528, -4.912) # TL
] ]
path = '/gpfs/exfel/sw/software/exfel_environments/misc/git/karabo_data/docs/dssc_geo_june19.h5'
self.geom = DSSC_1MGeometry.from_h5_file_and_quad_positions(path, quad_pos) if geopath is None:
geopath = '/gpfs/exfel/sw/software/git/EXtra-geom/docs/dssc_geo_june19.h5'
self.geom = DSSC_1MGeometry.from_h5_file_and_quad_positions(geopath, quad_pos)
return self.geom return self.geom
def load_mask(self, fname, plot=True): def load_mask(self, fname, plot=True):
......
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