HGCalSoARecHitsExtraLayout

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef DataFormats_HGCalReco_interface_HGCalSoARecHitsExtra_h
#define DataFormats_HGCalReco_interface_HGCalSoARecHitsExtra_h

#include "DataFormats/SoATemplate/interface/SoACommon.h"
#include "DataFormats/SoATemplate/interface/SoALayout.h"
#include "DataFormats/SoATemplate/interface/SoAView.h"

// SoA layout with delta, rho, weight, nearestHigher, clusterIndex, layer, isSeed, and cellsCount fields
GENERATE_SOA_LAYOUT(HGCalSoARecHitsExtraLayout,
                    // columns: one value per element
                    SOA_COLUMN(float, delta),
                    SOA_COLUMN(float, rho),
                    SOA_COLUMN(unsigned int, nearestHigher),
                    SOA_COLUMN(int, clusterIndex),
                    SOA_COLUMN(uint8_t, isSeed),
                    SOA_SCALAR(unsigned int, numberOfClustersScalar))

using HGCalSoARecHitsExtra = HGCalSoARecHitsExtraLayout<>;

#endif