ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisRecoClusterDataFormat.h
Revision: 1.1
Committed: Thu Jun 17 20:34:32 2010 UTC (14 years, 10 months ago) by econte
Content type: text/plain
Branch: MAIN
CVS Tags: V01-01-00, jimb4Jan2013, V01-00-00, hi44X_02, L1CorrectionsStudy_13_09_11, CMSSW_4_2_3_patch2, L1TriggerAnalysis_3_6_1patch4, HEAD
Log Message:
*** empty log message ***

File Contents

# Content
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
14 {
15 class L1AnalysisRecoClusterDataFormat
16 {
17 public:
18 L1AnalysisRecoClusterDataFormat(){Reset();};
19 ~L1AnalysisRecoClusterDataFormat(){Reset();};
20
21 void Reset()
22 {
23 nClusters = 0;
24 eta.clear();
25 phi.clear();
26 et.clear();
27 e.clear();
28 }
29
30 unsigned nClusters;
31 std::vector<double> eta;
32 std::vector<double> phi;
33 std::vector<double> et;
34 std::vector<double> e;
35
36 };
37 }
38 #endif
39
40