BmnRoot
Loading...
Searching...
No Matches
CbmL1ParticlesFinder.h
Go to the documentation of this file.
1/*
2 *=====================================================
3 *
4 * CBM Level 1 Reconstruction
5 *
6 * Authors: M.Zyzak
7 *
8 * e-mail :
9 *
10 *=====================================================
11 *
12 * Finds Particles: Lambdas, K0
13 *
14 */
15
16#ifndef _CbmL1ParticlesFinder_h_
17#define _CbmL1ParticlesFinder_h_
18
19#include "CbmKFParticle.h"
20#include "CbmKFVertex.h"
22
23#include <vector>
24
25class CbmL1Track;
26
28{
29 public:
32
33 void FindParticles(vector<CbmL1Track> &vRTracks);
34
35 vector<CbmKFParticle>& GetParticles() {return fParticles;}
36 CbmKFVertex* GetPV() {return &fPrimVtx;}
37
38 private:
39
40 void FindPV(vector<CbmL1Track> &vRTracks);
41
42//for primary vertex
44 CbmKFVertex fPrimVtx;
45
46 vector<CbmKFParticle> fParticles;
47};
48
49#endif
50
vector< CbmKFParticle > & GetParticles()
void FindParticles(vector< CbmL1Track > &vRTracks)