Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef __L1Analysis_L1AnalysisRecoClusterDataFormat_H__
0002 #define __L1Analysis_L1AnalysisRecoClusterDataFormat_H__
0003 
0004 //-------------------------------------------------------------------------------
0005 // Created 20/04/2010 - E. Conte, A.C. Le Bihan
0006 //
0007 //
0008 // Addition of reco information
0009 //-------------------------------------------------------------------------------
0010 
0011 #include <vector>
0012 
0013 namespace L1Analysis {
0014   class L1AnalysisRecoClusterDataFormat {
0015   public:
0016     L1AnalysisRecoClusterDataFormat() { Reset(); };
0017     ~L1AnalysisRecoClusterDataFormat() { Reset(); };
0018 
0019     void Reset() {
0020       nClusters = 0;
0021       eta.clear();
0022       phi.clear();
0023       et.clear();
0024       e.clear();
0025     }
0026 
0027     unsigned nClusters;
0028     std::vector<double> eta;
0029     std::vector<double> phi;
0030     std::vector<double> et;
0031     std::vector<double> e;
0032   };
0033 }  // namespace L1Analysis
0034 #endif