You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently we have two algorithms used for forming topoclusters:
ImagingTopoCluster, which combines hits based on proximity across multiple layers of a calorimeter; and
EnergyPositionClusterMerger, which combines the positions of one set of clusters with the energies of another.
However, we don't have an algorithm which generically takes two collections (or possibly more) of clusters and merges them into topoclusters. Such functionality would be useful when one needs to combine clusters from multiple calorimeters, such as in Particle Flow or when considering observables like E_{T}^{miss}.
Describe the solution you'd like
This could be implemented as an algorithm which takes as input two collections of protoclusters and outputs a single collection of protoclusters (the topoclusters). The initial implementation could match clusters based simply on proximity, but could be refined later to take advantage of the segmentation of some calorimeters.
This would mean that the relevant parameters for the algorithm would be
The weights associated with each input collection of clusters,
And some sort of tolerance for matching.
Describe alternatives you've considered
There are a couple of alternative approaches one could imagine, for example:
This could be something that is left up to analyzers after the fact, or
This functionality could be reserved for another type of algorithm downstream (e.g. a more explicitly "particle flow" algorithm).
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently we have two algorithms used for forming topoclusters:
ImagingTopoCluster
, which combines hits based on proximity across multiple layers of a calorimeter; andEnergyPositionClusterMerger
, which combines the positions of one set of clusters with the energies of another.However, we don't have an algorithm which generically takes two collections (or possibly more) of clusters and merges them into topoclusters. Such functionality would be useful when one needs to combine clusters from multiple calorimeters, such as in Particle Flow or when considering observables like E_{T}^{miss}.
Describe the solution you'd like
This could be implemented as an algorithm which takes as input two collections of protoclusters and outputs a single collection of protoclusters (the topoclusters). The initial implementation could match clusters based simply on proximity, but could be refined later to take advantage of the segmentation of some calorimeters.
This would mean that the relevant parameters for the algorithm would be
Describe alternatives you've considered
There are a couple of alternative approaches one could imagine, for example:
The text was updated successfully, but these errors were encountered: