File indexing completed on 2024-09-07 04:37:01
0001 #ifndef __L1Analysis_L1AnalysisSimulationDataFormat_H__
0002 #define __L1Analysis_L1AnalysisSimulationDataFormat_H__
0003
0004
0005
0006
0007
0008
0009
0010
0011 #include <vector>
0012
0013 namespace L1Analysis {
0014 class L1AnalysisSimulationDataFormat {
0015 public:
0016 L1AnalysisSimulationDataFormat() { Reset(); };
0017 ~L1AnalysisSimulationDataFormat() {}
0018
0019 void Reset() {
0020 meanInt = -1.;
0021 actualInt = -1;
0022 }
0023
0024
0025
0026 float meanInt;
0027 int actualInt;
0028 };
0029 }
0030 #endif