CMS 3D CMS Logo

L1AnalysisL1CaloClusterDataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisL1CaloClusterDataFormat_H__
2 #define __L1Analysis_L1AnalysisL1CaloClusterDataFormat_H__
3 
4 //-------------------------------------------------------------------------------
5 // Created 20/04/2010 - E. Conte, A.C. Le Bihan
6 //
7 //
8 // Original code : L1Trigger/L1TNtuples/L1NtupleProducer
9 //-------------------------------------------------------------------------------
10 
11 #include <vector>
12 
13 namespace L1Analysis {
17 
18  void Reset() {
19  nCluster = 0;
20  ieta.clear();
21  iphi.clear();
22  iet.clear();
23  iqual.clear();
24  et.clear();
25  eta.clear();
26  phi.clear();
27  }
28 
29  void Init() {}
30 
31  short int nCluster;
32  std::vector<short int> ieta;
33  std::vector<short int> iphi;
34  std::vector<short int> iet;
35  std::vector<short int> iqual;
36  std::vector<float> et;
37  std::vector<float> eta;
38  std::vector<float> phi;
39  };
40 } // namespace L1Analysis
41 #endif