Closed Bjartensen closed 7 months ago
https://github.com/Bjartensen/root-clustering-focalh
https://github.com/Bjartensen/root-clustering-focalh/issues/7
Brainstorm focalh geometry header
Class Geometry. Derived class FoCalH.
Class Geometry
Grid g;
public:
Geometry();
virtual bool construct_geometry() = 0;
get_grid();
Simple class with a Grid and virtual function that sets up the Grid. Then a class FoCalH or FoCal_H.
Class FoCalH : public Geometry
Grid g;
public:
bool construct_geometry();
bool make_cells();
bool calc_neighbors_for_cell();
bool calc_neighbors();
8aeed8f3604b31f1ede2aaa50e293164216dafec
Move the FocalH physical setup and neighbor calculations from
cell_main
to different classes.