1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#ifndef DataFormats_BTauReco_SecondaryVertexFeatures_h
#define DataFormats_BTauReco_SecondaryVertexFeatures_h
namespace btagbtvdeep {
class SecondaryVertexFeatures {
public:
float pt;
float px;
float py;
float pz;
float ptrel;
float mass;
float deltaR;
float ntracks;
float chi2;
float normchi2;
float dxy;
float dxysig;
float d3d;
float d3dsig;
float costhetasvpv;
float enratio;
float etarel;
float phirel;
float eta;
float phi;
float e;
};
} // namespace btagbtvdeep
#endif //DataFormats_BTauReco_SecondaryVertexFeatures_h
|