1 |
alebihan |
1.1 |
#ifndef __L1Analysis_L1AnalysisRecoVertex_H__
|
2 |
|
|
#define __L1Analysis_L1AnalysisRecoVertex_H__
|
3 |
|
|
|
4 |
|
|
//-------------------------------------------------------------------------------
|
5 |
|
|
// Created 15/04/2010 - A.C. Le Bihan
|
6 |
|
|
//
|
7 |
|
|
//
|
8 |
|
|
// Original code : UserCode/L1TriggerDPG/L1TrackVertexRecoTreeProducer - Jim Brooke
|
9 |
|
|
//-------------------------------------------------------------------------------
|
10 |
|
|
|
11 |
|
|
#include "DataFormats/VertexReco/interface/Vertex.h"
|
12 |
|
|
#include "DataFormats/VertexReco/interface/VertexFwd.h"
|
13 |
|
|
|
14 |
|
|
#include <vector>
|
15 |
|
|
|
16 |
|
|
namespace L1Analysis
|
17 |
|
|
{
|
18 |
|
|
class L1AnalysisRecoVertex
|
19 |
|
|
{
|
20 |
|
|
public:
|
21 |
|
|
L1AnalysisRecoVertex();
|
22 |
|
|
~L1AnalysisRecoVertex();
|
23 |
|
|
|
24 |
|
|
void Reset();
|
25 |
|
|
void Print(std::ostream &os = std::cout) const;
|
26 |
|
|
void SetVertices(const edm::Handle<reco::VertexCollection> vertices, unsigned maxVtx);
|
27 |
|
|
|
28 |
econte |
1.2 |
unsigned int nVtx;
|
29 |
|
|
std::vector<unsigned int> vtxNDoF;
|
30 |
|
|
std::vector<double> vtxZ;
|
31 |
|
|
std::vector<double> vtxRho;
|
32 |
alebihan |
1.1 |
|
33 |
|
|
};
|
34 |
|
|
}
|
35 |
|
|
#endif
|
36 |
|
|
|
37 |
|
|
|