#include "METOOLS/Explicit/Lorentz_Calculator.H" #include "METOOLS/Currents/C_Scalar.H" #include "METOOLS/Currents/C_Vector.H" #include "METOOLS/Explicit/Vertex.H" #include "MODEL/Main/Single_Vertex.H" using namespace ATOOLS; namespace METOOLS { template class SSV_Calculator: public Lorentz_Calculator { public: typedef CVec4 CVec4Type; typedef CScalar CScalarType; SSV_Calculator(const Vertex_Key &key): Lorentz_Calculator(key) {} std::string Label() const { return "SSV"; } CObject *Evaluate(const CObject_Vector &jj) { if (p_v->V()->id.back()==0){ const CScalarType &a(*jj[0]->Get()); const CScalarType &b(*jj[1]->Get()); Vec4D p12(p_v->J(0)->P()-p_v->J(1)->P()); CVec4Type *j(CVec4Type::New(CVec4Type(p12)*(a[0]*b[0]))); j->SetS(a.S()|b.S()); return j; } if (p_v->V()->id.back()==1){ const CVec4Type &a(*jj[1]->Get()); const CScalarType &b(*jj[0]->Get()); Vec4D p12(-p_v->J(1)->P()-p_v->J(0)->P()-p_v->J(0)->P()); CScalarType *j(CScalarType::New((p12*a)*b[0])); j->SetS(a.S()|b.S()); return j; } if (p_v->V()->id.back()==2){ const CVec4Type &a(*jj[0]->Get()); const CScalarType &b(*jj[1]->Get()); Vec4D p12(p_v->J(0)->P()+p_v->J(0)->P()+p_v->J(1)->P()); CScalarType *j(CScalarType::New((p12*a)*b[0])); j->SetS(a.S()|b.S()); return j; } return NULL; } };// end of class SSV_Calculator template class SSV_Calculator; }// end of namespace METOOLS using namespace METOOLS; DECLARE_GETTER(SSV_Calculator,"DSSV", Lorentz_Calculator,Vertex_Key); Lorentz_Calculator *ATOOLS::Getter >:: operator()(const Vertex_Key &key) const { return new SSV_Calculator(key); } void ATOOLS::Getter >:: PrintInfo(std::ostream &str,const size_t width) const { str<<"SSV vertex"; }