00001 #ifndef XAOD_SECVTXHelper_H
00002 #define XAOD_SECVTXHelper_H
00003
00004 #include "xAODTracking/Vertex.h"
00005
00006 namespace xAOD {
00007
00008 namespace SecVtxHelper{
00009
00010
00011 float VertexMass(const xAOD::Vertex* );
00012
00013 void setVertexMass(xAOD::Vertex * , float value);
00014
00015 float EnergyFraction(const xAOD::Vertex * );
00016
00017 void setEnergyFraction(xAOD::Vertex * , float value);
00018
00019 int VtxNtrk(const xAOD::Vertex* );
00020
00021 void setVtxNtrk(xAOD::Vertex * , int value);
00022
00023 float Vtxpt(const xAOD::Vertex* );
00024
00025 void setVtxpt(xAOD::Vertex * , float value);
00026
00027 float Vtxeta(const xAOD::Vertex* );
00028
00029 void setVtxeta(xAOD::Vertex * , float value);
00030
00031 float Vtxphi(const xAOD::Vertex* );
00032
00033 void setVtxphi(xAOD::Vertex * , float value);
00034
00035 float VtxnormDist(const xAOD::Vertex* );
00036
00037 void setVtxnormDist(xAOD::Vertex * , float value);
00038
00039 }
00040
00041
00042 }
00043
00044 #endif
00045
00046