CMS 3D CMS Logo

L1AnalysisRecoVertexDataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisRecoVertexDataFormat_H__
2 #define __L1Analysis_L1AnalysisRecoVertexDataFormat_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  nVtx = 0;
23  NDoF.clear();
24  Z.clear();
25  Rho.clear();
26  }
27 
28  unsigned nVtx;
29  std::vector<unsigned int> NDoF;
30  std::vector<double> Z;
31  std::vector<double> Rho;
32 
33  };
34 }
35 #endif
36 
37