//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Simple wrapper to make certain functions of GFTools // available in PyROOT // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Felix Boehmer TUM (original author) // //----------------------------------------------------------- #ifndef GFTOOLSPYWRAPPER_HH #define GFTOOLSPYWRAPPER_HH #include "GFTools.h" #include "GFTrack.h" class GFToolsPyWrapper { public: GFToolsPyWrapper() {;} virtual ~GFToolsPyWrapper() {;} TVector3 getSmoothedMomXYZ(const GFTrack* trk, unsigned int irep, unsigned int ihit) { return GFTools::getSmoothedMomXYZ(trk,irep,ihit); } }; #endif