CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1AnalysisRecoTauDataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisRecoTauDataFormat_H__
2 #define __L1Analysis_L1AnalysisRecoTauDataFormat_H__
3 
4 //-------------------------------------------------------------------------------
5 // Created 20/04/2010 - E. Conte, A.C. Le Bihan
6 //
7 //
8 // Original code : L1Trigger/L1TNtuples/L1RecoTauNtupleProducer - Jim Brooke
9 //-------------------------------------------------------------------------------
10 
11 #include <vector>
12 
13 namespace L1Analysis
14 {
16  {
19 
20  void Reset()
21  {
22  nTaus=0;
23 
24  e.clear();
25  et.clear();
26  pt.clear();
27  eta.clear();
28  phi.clear();
29  TightIsoFlag.clear();
30  LooseIsoFlag.clear();
31  LooseAntiMuonFlag.clear();
32  TightAntiMuonFlag.clear();
33  VLooseAntiElectronFlag.clear();
34  LooseAntiElectronFlag.clear();
35  TightAntiElectronFlag.clear();
36  DMFindingNewDMs.clear();
37  DMFindingOldDMs.clear();
38  }
39 
40  unsigned nTaus;
41  std::vector<float> e;
42  std::vector<float> et;
43  std::vector<float> pt;
44  std::vector<float> eta;
45  std::vector<float> phi;
46  std::vector<float> DMFindingNewDMs;
47  std::vector<float> DMFindingOldDMs;
48  std::vector<float> TightIsoFlag;
49  std::vector<float> LooseIsoFlag;
50  std::vector<float> LooseAntiMuonFlag;
51  std::vector<float> TightAntiMuonFlag;
52  std::vector<float> VLooseAntiElectronFlag;
53  std::vector<float> LooseAntiElectronFlag;
54  std::vector<float> TightAntiElectronFlag;
55 
56  };
57 }
58 #endif
59 
60