#ifndef PNDVTXPOCA_H #define PNDVTXPOCA_H ////////////////////////////////////////////////////////////////////////// // // // PndVtxPoca // // // // Author: R. Kliemt 2010 // // idea taken from PndKinVtxFitter::GetStartVtx() // // extended for multiple tracks // // // ////////////////////////////////////////////////////////////////////////// #include "RhoBase/RhoCandidate.h" #include "TVector3.h" class PndVtxPoca { public: PndVtxPoca() ; virtual ~PndVtxPoca(); Double_t GetPocaVtx(TVector3& vertex, RhoCandidate* composite); private: Double_t GetPoca(TVector3& vertex,RhoCandidate* a, RhoCandidate* b); ClassDef(PndVtxPoca,1) //A poca Vertex Finder }; #endif