Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | File Members
KtRecomInterface.hGo to the documentation of this file.00001 #ifndef KTJET_KTRECOMINTERFACE_H 00002 #define KTJET_KTRECOMINTERFACE_H 00003 00004 #include <string> 00005 #include "KtJet/KtUtil.h" 00006 00007 00008 namespace KtJet { 00009 class KtLorentzVector; 00014 class KtRecom { 00015 public: 00017 virtual ~KtRecom() {} 00019 virtual CLHEPNAMESPACE HepLorentzVector operator()(const CLHEPNAMESPACE HepLorentzVector &, const CLHEPNAMESPACE HepLorentzVector &) const = 0; 00021 virtual KtLorentzVector operator()(const KtLorentzVector &) const = 0; 00023 virtual std::string name() const = 0; 00024 }; 00025 00026 } 00027 00028 #endif //end of namespace Generated on Fri Jul 22 18:08:08 2005 for KtJet by 1.3.9.1 |