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 {
17 
18  void Reset() {
19  nVtx = 0;
20  NDoF.clear();
21  Z.clear();
22  Rho.clear();
23  }
24 
25  unsigned nVtx;
26  std::vector<unsigned int> NDoF;
27  std::vector<double> Z;
28  std::vector<double> Rho;
29  };
30 } // namespace L1Analysis
31 #endif