File indexing completed on 2025-08-03 08:15:04
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef VtxRegressor_H__
0009 #define VtxRegressor_H__
0010
0011 #include <GenFit/GFRaveVertex.h>
0012 #include <TMVA/Reader.h>
0013
0014 class SvtxTrack;
0015
0016 class VtxRegressor
0017 {
0018 public:
0019 VtxRegressor(std::string, std::string);
0020 ~VtxRegressor();
0021 float regress(SvtxTrack*,SvtxTrack*,genfit::GFRaveVertex*);
0022
0023 private:
0024 TMVA::Reader* reader=NULL;
0025 std::string _method;
0026 float pt1,pt2,phi,dphi,eta,deta,rin;
0027 };
0028 #endif