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
39
40
41
42
43
44
45
46
47
48
|
#ifndef DataFormats_BTauReco_TrackPairFeatures_h
#define DataFormats_BTauReco_TrackPairFeatures_h
namespace btagbtvdeep {
class TrackPairFeatures {
public:
float pt;
float eta;
float phi;
float mass;
float dz;
float dxy;
float ip3D;
float sip3D;
float ip2D;
float sip2D;
float distPCA;
float dsigPCA;
float x_PCAonSeed;
float y_PCAonSeed;
float z_PCAonSeed;
float xerr_PCAonSeed;
float yerr_PCAonSeed;
float zerr_PCAonSeed;
float x_PCAonTrack;
float y_PCAonTrack;
float z_PCAonTrack;
float xerr_PCAonTrack;
float yerr_PCAonTrack;
float zerr_PCAonTrack;
float dotprodTrack;
float dotprodSeed;
float dotprodTrackSeed2D;
float dotprodTrackSeed3D;
float dotprodTrackSeedVectors2D;
float dotprodTrackSeedVectors3D;
float pvd_PCAonSeed;
float pvd_PCAonTrack;
float dist_PCAjetAxis;
float dotprod_PCAjetMomenta;
float deta_PCAjetDirs;
float dphi_PCAjetDirs;
};
} // namespace btagbtvdeep
#endif
|