CMS 3D CMS Logo

L1AnalysisRecoRpcHitDataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisRecoRpcHitDataFormat_H__
2 #define __L1Analysis_L1AnalysisRecoRpcHitDataFormat_H__
3 
4 //-------------------------------------------------------------------------------
5 // Created 21/11/2012 - C. Battilana
6 //
7 //
8 // Original code : L1Trigger/L1TNtuples/L1RecoMuonProducer - Luigi Guiducci
9 //-------------------------------------------------------------------------------
10 
11 #include <vector>
12 
13 namespace L1Analysis
14 {
16  {
19 
20  void Reset()
21  {
22 
23  nRpcHits = 0;
24 
25  region.clear();
26  clusterSize.clear();
27  strip.clear();
28  bx.clear();
29 
30  xLoc.clear();
31  phiGlob.clear();
32 
33  station.clear();
34  sector.clear();
35  layer.clear();
36  subsector.clear();
37  roll.clear();
38  ring.clear();
39  muonId.clear();
40 
41  }
42 
43  int nRpcHits;
44 
45  std::vector<int> region;
46  std::vector<int> clusterSize;
47  std::vector<int> strip;
48  std::vector<int> bx;
49 
50  std::vector<float> xLoc;
51  std::vector<float> phiGlob;
52 
53  std::vector<int> station;
54  std::vector<int> sector;
55  std::vector<int> layer;
56  std::vector<int> subsector;
57  std::vector<int> roll;
58  std::vector<int> ring;
59  std::vector<int> muonId;
60 
61  };
62 }
63 #endif
64 
65