Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-04 00:29:30

0001 #ifndef DataFormats_EcalRecHit_EcalRecHitSoA_h
0002 #define DataFormats_EcalRecHit_EcalRecHitSoA_h
0003 
0004 #include "DataFormats/SoATemplate/interface/SoALayout.h"
0005 
0006 GENERATE_SOA_LAYOUT(EcalRecHitSoALayout,
0007                     SOA_SCALAR(uint32_t, size),
0008                     SOA_COLUMN(uint32_t, id),
0009                     SOA_COLUMN(float, energy),
0010                     SOA_COLUMN(float, time),
0011                     SOA_COLUMN(uint32_t, flagBits),
0012                     SOA_COLUMN(uint32_t, extra))
0013 
0014 using EcalRecHitSoA = EcalRecHitSoALayout<>;
0015 
0016 #endif