CMS 3D CMS Logo

EventVtxInfoNtupleDumper.cc
Go to the documentation of this file.
8 
9 #include <vector>
10 
11 using namespace edm;
12 using namespace std;
13 using namespace reco;
14 
16 public:
18 
19 private:
20  void produce(edm::Event &, const edm::EventSetup &) override;
22 };
23 
25  : primaryVerticesToken_(consumes<reco::VertexCollection>(cfg.getParameter<InputTag>("primaryVertices"))) {
26  produces<int>("numPV").setBranchAlias("numPV");
27  produces<int>("nTrkPV").setBranchAlias("nTrkPV");
28  produces<float>("chi2PV").setBranchAlias("chi2PV");
29  produces<float>("ndofPV").setBranchAlias("ndofPV");
30  produces<float>("zPV").setBranchAlias("zPV");
31  produces<float>("rhoPV").setBranchAlias("rhoPV");
32  // produces<std::vector< unsigned int > >( "nTrkPV" ).setBranchAlias( "nTrkPV" );
33  // produces<std::vector< float > >( "chi2PV" ).setBranchAlias( "chi2PV" );
34  // produces<std::vector< float > >( "ndofPV" ).setBranchAlias( "ndofPV" );
35 }
36 
38  Handle<reco::VertexCollection> primaryVertices; // Collection of primary Vertices
39  evt.getByToken(primaryVerticesToken_, primaryVertices);
40  unique_ptr<int> nVtxs(new int);
41  unique_ptr<int> nTrkVtx(new int);
42  unique_ptr<float> chi2Vtx(new float);
43  unique_ptr<float> ndofVtx(new float);
44  unique_ptr<float> zVtx(new float);
45  unique_ptr<float> rhoVtx(new float);
46  // unique_ptr< vector< unsigned int > > nTrkVtx( new vector< unsigned int > );
47  // unique_ptr< vector< float > > chi2Vtx( new vector< float > );
48  // unique_ptr< vector< float > > ndofVtx( new vector< float > );
49 
50  const reco::Vertex &pv = (*primaryVertices)[0];
51 
52  *nVtxs = -1;
53  *nTrkVtx = -1;
54  *chi2Vtx = -1.0;
55  *ndofVtx = -1.0;
56  *zVtx = -1000;
57  *rhoVtx = -1000;
58  if (!(pv.isFake())) {
59  *nVtxs = primaryVertices->size();
60  *nTrkVtx = pv.tracksSize();
61  *chi2Vtx = pv.chi2();
62  *ndofVtx = pv.ndof();
63  *zVtx = pv.z();
64  *rhoVtx = pv.position().Rho();
65  }
66  // nTrkVtx->push_back(pv.tracksSize());
67  // chi2Vtx->push_back(pv.chi2());
68  // ndofVtx->push_back(pv.ndof());
69  evt.put(std::move(nVtxs), "numPV");
70  evt.put(std::move(nTrkVtx), "nTrkPV");
71  evt.put(std::move(chi2Vtx), "chi2PV");
72  evt.put(std::move(ndofVtx), "ndofPV");
73  evt.put(std::move(zVtx), "zPV");
74  evt.put(std::move(rhoVtx), "rhoPV");
75 }
76 
78 
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
const Point & position() const
position
Definition: Vertex.h:113
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
edm::EDGetTokenT< reco::VertexCollection > primaryVerticesToken_
def pv(vc)
Definition: MetAnalyzer.py:7
double chi2() const
chi-squares
Definition: Vertex.h:102
double z() const
z coordinate
Definition: Vertex.h:119
double ndof() const
Definition: Vertex.h:109
EventVtxInfoNtupleDumper(const edm::ParameterSet &)
bool isFake() const
Definition: Vertex.h:75
fixed size matrix
void produce(edm::Event &, const edm::EventSetup &) override
HLT enums.
def move(src, dest)
Definition: eostools.py:511
size_t tracksSize() const
number of tracks
Definition: Vertex.cc:69