CMS 3D CMS Logo

L1AnalysisCaloSummaryDataFormat.h
Go to the documentation of this file.
1 #ifndef L1Trigger_L1TNtuples_L1AnalysisCaloSummaryDataFormat_h
2 #define L1Trigger_L1TNtuples_L1AnalysisCaloSummaryDataFormat_h
3 
4 namespace L1Analysis {
8 
9  void Reset() {
10  CICADAScore = 0;
11  for (short iPhi = 0; iPhi < 18; ++iPhi)
12  for (short iEta = 0; iEta < 14; ++iEta)
13  modelInput[iPhi][iEta] = 0;
14  }
15  void Init() {}
16 
17  float CICADAScore;
18  unsigned short int modelInput[18][14]; //Stored in indices of [iPhi][iEta]
19  };
20 } // namespace L1Analysis
21 
22 #endif