ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisRecoVertexDataFormat.h
Revision: 1.1
Committed: Thu Jun 17 20:34:32 2010 UTC (14 years, 10 months ago) by econte
Content type: text/plain
Branch: MAIN
CVS Tags: V01-01-00, jimb4Jan2013, V01-00-00, hi44X_02, L1CorrectionsStudy_13_09_11, CMSSW_4_2_3_patch2, L1TriggerAnalysis_3_6_1patch4, HEAD
Log Message:
*** empty log message ***

File Contents

# Content
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 : UserCode/L1TriggerDPG/L1TrackVertexRecoTreeProducer - Jim Brooke
9 //-------------------------------------------------------------------------------
10
11 #include <vector>
12
13 namespace L1Analysis
14 {
15 struct L1AnalysisRecoVertexDataFormat
16 {
17 L1AnalysisRecoVertexDataFormat(){};
18 ~L1AnalysisRecoVertexDataFormat(){};
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