CMS 3D CMS Logo

L1AnalysisL1CaloTowerDataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisL1CaloTowerDataFormat_H__
2 #define __L1Analysis_L1AnalysisL1CaloTowerDataFormat_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  nTower = 0;
20  ieta.clear();
21  iphi.clear();
22  iet.clear();
23  iem.clear();
24  ihad.clear();
25  iratio.clear();
26  iqual.clear();
27  et.clear();
28  eta.clear();
29  phi.clear();
30  }
31 
32  void Init() {}
33 
34  short nTower;
35  std::vector<short> ieta;
36  std::vector<short> iphi;
37  std::vector<short> iet;
38  std::vector<short> iem;
39  std::vector<short> ihad;
40  std::vector<short> iratio;
41  std::vector<short> iqual;
42  std::vector<float> et;
43  std::vector<float> eta;
44  std::vector<float> phi;
45  };
46 } // namespace L1Analysis
47 #endif