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
14 {
16  {
19 
20 
21  void Reset() {
22  nTower = 0;
23  ieta.clear();
24  iphi.clear();
25  iet.clear();
26  iem.clear();
27  ihad.clear();
28  iratio.clear();
29  iqual.clear();
30  et.clear();
31  eta.clear();
32  phi.clear();
33  }
34 
35  void Init() {
36 
37  }
38 
39 
40  short nTower;
41  std::vector<short> ieta;
42  std::vector<short> iphi;
43  std::vector<short> iet;
44  std::vector<short> iem;
45  std::vector<short> ihad;
46  std::vector<short> iratio;
47  std::vector<short> iqual;
48  std::vector<float> et;
49  std::vector<float> eta;
50  std::vector<float> phi;
51 
52  };
53 }
54 #endif
55