CMS 3D CMS Logo

L1AnalysisRecoClusterDataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisRecoClusterDataFormat_H__
2 #define __L1Analysis_L1AnalysisRecoClusterDataFormat_H__
3 
4 //-------------------------------------------------------------------------------
5 // Created 20/04/2010 - E. Conte, A.C. Le Bihan
6 //
7 //
8 // Addition of reco information
9 //-------------------------------------------------------------------------------
10 
11 #include <vector>
12 
13 namespace L1Analysis {
15  public:
18 
19  void Reset() {
20  nClusters = 0;
21  eta.clear();
22  phi.clear();
23  et.clear();
24  e.clear();
25  }
26 
27  unsigned nClusters;
28  std::vector<double> eta;
29  std::vector<double> phi;
30  std::vector<double> et;
31  std::vector<double> e;
32  };
33 } // namespace L1Analysis
34 #endif