CMS 3D CMS Logo

L1AnalysisRecoTrackDataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisRecoTrackDataFormat_H__
2 #define __L1Analysis_L1AnalysisRecoTrackDataFormat_H__
3 
4 //-------------------------------------------------------------------------------
5 // Created 15/04/2010 - E. Conte, A.C. Le Bihan
6 //
7 //
8 // Original code : L1Trigger/L1TNtuples/L1TrackVertexRecoTreeProducer - Jim Brooke
9 //-------------------------------------------------------------------------------
10 
11 #include <vector>
12 
13 namespace L1Analysis
14 {
16  {
19 
20  void Reset()
21  {
22  nTrk = 0;
23  nHighPurity = 0;
24  fHighPurity = 0.;
25  }
26 
27  unsigned int nTrk;
28  unsigned int nHighPurity;
29  double fHighPurity;
30 
31  };
32 }
33 #endif
34 
35