CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  tfMuonHwSign.clear();
20  tfMuonHwSignValid.clear();
21  tfMuonHwQual.clear();
22  tfMuonLink.clear();
23  tfMuonProcessor.clear();
24  tfMuonTrackFinderType.clear();
25  tfMuonHwHF.clear();
26  tfMuonBx.clear();
27  }
28 
29  unsigned short int nTfMuons;
30  std::vector<short int> tfMuonHwPt;
31  std::vector<short int> tfMuonHwEta;
32  std::vector<short int> tfMuonHwPhi;
33  std::vector<short int> tfMuonHwSign;
34  std::vector<short int> tfMuonHwSignValid;
35  std::vector<short int> tfMuonHwQual;
36  std::vector<short int> tfMuonLink;
37  std::vector<short int> tfMuonProcessor;
38  std::vector<short int> tfMuonTrackFinderType;
39  std::vector<short int> tfMuonHwHF;
40  std::vector<short int> tfMuonBx;
41  };
42 }
43 #endif
44