Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-07 04:37:01

0001 #ifndef __L1Analysis_L1AnalysisRecoVertexDataFormat_H__
0002 #define __L1Analysis_L1AnalysisRecoVertexDataFormat_H__
0003 
0004 //-------------------------------------------------------------------------------
0005 // Created 15/04/2010 - E. Conte, A.C. Le Bihan
0006 //
0007 //
0008 // Original code : L1Trigger/L1TNtuples/L1TrackVertexRecoTreeProducer - Jim Brooke
0009 //-------------------------------------------------------------------------------
0010 
0011 #include <vector>
0012 
0013 namespace L1Analysis {
0014   struct L1AnalysisRecoVertexDataFormat {
0015     L1AnalysisRecoVertexDataFormat() {}
0016     ~L1AnalysisRecoVertexDataFormat() {}
0017 
0018     void Reset() {
0019       nVtx = 0;
0020       NDoF.clear();
0021       Z.clear();
0022       Rho.clear();
0023     }
0024 
0025     unsigned nVtx;
0026     std::vector<unsigned int> NDoF;
0027     std::vector<double> Z;
0028     std::vector<double> Rho;
0029   };
0030 }  // namespace L1Analysis
0031 #endif