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