CMS 3D CMS Logo

L1AnalysisCaloTPDataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisCaloTPDataFormat_H__
2 #define __L1Analysis_L1AnalysisCaloTPDataFormat_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  nHCALTP = 0;
23  hcalTPieta.clear();
24  hcalTPiphi.clear();
25  hcalTPCaliphi.clear();
26  hcalTPet.clear();
27  hcalTPcompEt.clear();
28  hcalTPfineGrain.clear();
29  nECALTP = 0;
30  ecalTPieta.clear();
31  ecalTPiphi.clear();
32  ecalTPCaliphi.clear();
33  ecalTPet.clear();
34  ecalTPcompEt.clear();
35  ecalTPfineGrain.clear();
36  }
37 
38  void Init() {
39 
40  }
41 
42 
43  short nHCALTP;
44  std::vector<short> hcalTPieta;
45  std::vector<short> hcalTPiphi;
46  std::vector<short> hcalTPCaliphi;
47  std::vector<float> hcalTPet;
48  std::vector<short> hcalTPcompEt;
49  std::vector<short> hcalTPfineGrain;
50 
51  short nECALTP;
52  std::vector<short> ecalTPieta;
53  std::vector<short> ecalTPiphi;
54  std::vector<short> ecalTPCaliphi;
55  std::vector<float> ecalTPet;
56  std::vector<short> ecalTPcompEt;
57  std::vector<short> ecalTPfineGrain;
58 
59  };
60 }
61 #endif
62