CMS 3D CMS Logo

L1AnalysisRecoMuon2DataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisRecoMuon2DataFormat_H__
2 #define __L1Analysis_L1AnalysisRecoMuon2DataFormat_H__
3 
4 //-------------------------------------------------------------------------------
5 // Created 20/04/2010 - E. Conte, A.C. Le Bihan
6 //
7 //
8 // Original code : L1Trigger/L1TNtuples/L1RecoMuon2NtupleProducer - Jim Brooke
9 //-------------------------------------------------------------------------------
10 
11 #include <vector>
12 
13 namespace L1Analysis {
17 
18  void Reset() {
19  nMuons = 0;
20 
21  e.clear();
22  et.clear();
23  pt.clear();
24  eta.clear();
25  phi.clear();
26  isLooseMuon.clear();
27  isMediumMuon.clear();
28  isTightMuon.clear();
29  iso.clear();
30  hlt_isomu.clear();
31  hlt_mu.clear();
32  hlt_isoDeltaR.clear();
33  hlt_deltaR.clear();
34  passesSingleMuon.clear();
35  charge.clear();
36  mt.clear();
37  met.clear();
38  etaSt1.clear();
39  phiSt1.clear();
40  etaSt2.clear();
41  phiSt2.clear();
42  }
43 
44  unsigned short nMuons;
45  std::vector<float> e;
46  std::vector<float> et;
47  std::vector<float> pt;
48  std::vector<float> eta;
49  std::vector<float> phi;
50  std::vector<bool> isLooseMuon;
51  std::vector<bool> isMediumMuon;
52  std::vector<bool> isTightMuon;
53  std::vector<float> iso;
54  std::vector<short> hlt_isomu;
55  std::vector<short> hlt_mu;
56  std::vector<float> hlt_isoDeltaR;
57  std::vector<float> hlt_deltaR;
58  std::vector<int> passesSingleMuon;
59  std::vector<int> charge;
60  std::vector<double> met;
61  std::vector<double> mt;
62  std::vector<float> etaSt1;
63  std::vector<float> phiSt1;
64  std::vector<float> etaSt2;
65  std::vector<float> phiSt2;
66  };
67 } // namespace L1Analysis
68 #endif