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
14 {
16  {
19 
20  void Reset()
21  {
22  nMuons=0;
23 
24  e.clear();
25  et.clear();
26  pt.clear();
27  eta.clear();
28  phi.clear();
29  isLooseMuon.clear();
30  isMediumMuon.clear();
31  isTightMuon.clear();
32  iso.clear();
33  hlt_isomu.clear();
34  hlt_mu.clear();
35  hlt_isoDeltaR.clear();
36  hlt_deltaR.clear();
37  passesSingleMuon.clear();
38  charge.clear();
39  mt.clear();
40  met.clear();
41  etaSt1.clear();
42  phiSt1.clear();
43  etaSt2.clear();
44  phiSt2.clear();
45  }
46 
47  unsigned short nMuons;
48  std::vector<float> e;
49  std::vector<float> et;
50  std::vector<float> pt;
51  std::vector<float> eta;
52  std::vector<float> phi;
53  std::vector<bool> isLooseMuon;
54  std::vector<bool> isMediumMuon;
55  std::vector<bool> isTightMuon;
56  std::vector<float> iso;
57  std::vector<short> hlt_isomu;
58  std::vector<short> hlt_mu;
59  std::vector<float> hlt_isoDeltaR;
60  std::vector<float> hlt_deltaR;
61  std::vector<int> passesSingleMuon;
62  std::vector<int> charge;
63  std::vector<double> met;
64  std::vector<double> mt;
65  std::vector<float> etaSt1;
66  std::vector<float> phiSt1;
67  std::vector<float> etaSt2;
68  std::vector<float> phiSt2;
69  };
70 }
71 #endif
72 
73 
74