CMS 3D CMS Logo

L1AnalysisL1UpgradeTfMuonDataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisL1UpgradeTfMuonDataFormat_H__
2 #define __L1Analysis_L1AnalysisL1UpgradeTfMuonDataFormat_H__
3 
4 #include <vector>
5 
6 namespace L1Analysis
7 {
9  {
12 
13  void Reset()
14  {
15  nTfMuons = 0;
16  tfMuonHwPt.clear();
17  tfMuonHwEta.clear();
18  tfMuonHwPhi.clear();
19  tfMuonGlobalPhi.clear();
20  tfMuonHwSign.clear();
21  tfMuonHwSignValid.clear();
22  tfMuonHwQual.clear();
23  tfMuonLink.clear();
24  tfMuonProcessor.clear();
25  tfMuonTrackFinderType.clear();
26  tfMuonHwHF.clear();
27  tfMuonBx.clear();
28  tfMuonWh.clear();
29  tfMuonTrAdd.clear();
30  }
31 
32  unsigned short int nTfMuons;
33  std::vector<short int> tfMuonHwPt;
34  std::vector<short int> tfMuonHwEta;
35  std::vector<short int> tfMuonHwPhi;
36  std::vector<short int> tfMuonGlobalPhi;
37  std::vector<short int> tfMuonHwSign;
38  std::vector<short int> tfMuonHwSignValid;
39  std::vector<short int> tfMuonHwQual;
40  std::vector<short int> tfMuonLink;
41  std::vector<short int> tfMuonProcessor;
42  std::vector<short int> tfMuonTrackFinderType;
43  std::vector<short int> tfMuonHwHF;
44  std::vector<short int> tfMuonBx;
45  std::vector<short int> tfMuonWh;
46  std::vector<short int> tfMuonTrAdd;
47  };
48 }
49 #endif
50