File indexing completed on 2023-03-17 11:12:56
0001 #ifndef __L1Analysis_L1AnalysisL1CaloClusterDataFormat_H__
0002 #define __L1Analysis_L1AnalysisL1CaloClusterDataFormat_H__
0003
0004
0005
0006
0007
0008
0009
0010
0011 #include <vector>
0012
0013 namespace L1Analysis {
0014 struct L1AnalysisL1CaloClusterDataFormat {
0015 L1AnalysisL1CaloClusterDataFormat() { Reset(); };
0016 ~L1AnalysisL1CaloClusterDataFormat(){};
0017
0018 void Reset() {
0019 nCluster = 0;
0020 ieta.clear();
0021 iphi.clear();
0022 iet.clear();
0023 iqual.clear();
0024 et.clear();
0025 eta.clear();
0026 phi.clear();
0027 }
0028
0029 void Init() {}
0030
0031 short int nCluster;
0032 std::vector<short int> ieta;
0033 std::vector<short int> iphi;
0034 std::vector<short int> iet;
0035 std::vector<short int> iqual;
0036 std::vector<float> et;
0037 std::vector<float> eta;
0038 std::vector<float> phi;
0039 };
0040 }
0041 #endif