CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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
14 {
16  {
19 
20 
21  void Reset() {
22  nCluster = 0;
23  ieta.clear();
24  iphi.clear();
25  iet.clear();
26  iqual.clear();
27  et.clear();
28  eta.clear();
29  phi.clear();
30  }
31 
32  void Init() {
33 
34  }
35 
36 
37  short int nCluster;
38  std::vector<short int> ieta;
39  std::vector<short int> iphi;
40  std::vector<short int> iet;
41  std::vector<short int> iqual;
42  std::vector<float> et;
43  std::vector<float> eta;
44  std::vector<float> phi;
45 
46  };
47 }
48 #endif
49