File indexing completed on 2024-09-07 04:37:00
0001 #ifndef L1Trigger_L1TNtuples_L1AnalysisCaloSummaryDataFormat_h
0002 #define L1Trigger_L1TNtuples_L1AnalysisCaloSummaryDataFormat_h
0003
0004 namespace L1Analysis {
0005 struct L1AnalysisCaloSummaryDataFormat {
0006 L1AnalysisCaloSummaryDataFormat() { Reset(); }
0007 ~L1AnalysisCaloSummaryDataFormat() {}
0008
0009 void Reset() {
0010 CICADAScore = 0;
0011 for (short iPhi = 0; iPhi < 18; ++iPhi)
0012 for (short iEta = 0; iEta < 14; ++iEta)
0013 modelInput[iPhi][iEta] = 0;
0014 }
0015 void Init() {}
0016
0017 float CICADAScore;
0018 unsigned short int modelInput[18][14];
0019 };
0020 }
0021
0022 #endif