Skip to content
New issue

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

update sliding-window clustering for Theta-Module readout #58

Merged
merged 12 commits into from
Feb 9, 2024
14 changes: 7 additions & 7 deletions RecCalorimeter/src/components/CreateCaloClustersSlidingWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@ namespace edm4hep {
class ClusterCollection;
}

// Cluster
struct cluster {
float transEnergy;
float eta;
float phi;
};

/** @class CreateCaloClustersSlidingWindow
*
* Algorithm for creating calorimeter clusters from cells.
Expand Down Expand Up @@ -81,6 +74,13 @@ class CreateCaloClustersSlidingWindow : public GaudiAlgorithm {
StatusCode finalize();

private:
// Cluster
struct cluster {
float transEnergy;
float eta;
float phi;
};

/** Correct way to access the neighbour of the phi tower, taking into account the full coverage in phi.
* Full coverage means that first tower in phi, with ID = 0 is a direct neighbour
* of the last tower in phi with ID = m_nPhiTower - 1).
Expand Down
Loading
Loading