CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  iso.clear();
32  hlt_isomu.clear();
33  hlt_mu.clear();
34  hlt_isoDeltaR.clear();
35  hlt_deltaR.clear();
36  }
37 
38  unsigned short nMuons;
39  std::vector<float> e;
40  std::vector<float> et;
41  std::vector<float> pt;
42  std::vector<float> eta;
43  std::vector<float> phi;
44  std::vector<bool> isLooseMuon;
45  std::vector<bool> isMediumMuon;
46  std::vector<float> iso;
47  std::vector<short> hlt_isomu;
48  std::vector<short> hlt_mu;
49  std::vector<float> hlt_isoDeltaR;
50  std::vector<float> hlt_deltaR;
51 
52  };
53 }
54 #endif
55 
56