Skip to content
Snippets Groups Projects
Commit 8006025d authored by David Hammer's avatar David Hammer
Browse files

pnCCD geometry hacky hotfix

parent 96cedf5d
No related branches found
Tags 1.3.1-2.17.0
No related merge requests found
......@@ -14,6 +14,10 @@ class FixedUpPnccdGeometry(extra_geom.PNCCDGeometry):
def split_tiles(self, module_data):
return [module_data[:512], module_data[512:]]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.modules = [[self.modules[0][0], self.modules[1][0]]]
class PnccdGeometry(ManualRelativePositionsGeometryBase):
geometry_class = FixedUpPnccdGeometry
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