Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:12

0001 #ifndef __L1Analysis_L1AnalysisSimulationDataFormat_H__
0002 #define __L1Analysis_L1AnalysisSimulationDataFormat_H__
0003 
0004 //-------------------------------------------------------------------------------
0005 // Created 20/04/2010 - E. Conte, A.C. Le Bihan
0006 //
0007 //
0008 // Original code : L1Trigger/L1TNtuples/L1NtupleProducer
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     // ---- L1AnalysisSimulationDataFormat information.
0025 
0026     float meanInt;
0027     int actualInt;
0028   };
0029 }  // namespace L1Analysis
0030 #endif