#include #include #include #include #include #include #include "TH1F.h" #include "Vertex.h" using namespace std; using namespace TMath ; ClassImp(Vertex) //_____________________________________________________________________________________________ Vertex :: Vertex() : TObject(){ x=0; y=0; z=0; multi=0; } //_____________________________________________________________________________________________ Vertex :: Vertex(const Vertex &v) : TObject(v), x(v.x), y(v.y), z(v.z), multi(v.multi) { } //_____________________________________________________________________________________________ void Vertex::Clearvec(){ x=0; y=0; z=0; } //_____________________________________________________________________________________________ double Vertex :: Getx(){ return x; } double Vertex :: Gety(){ return y; } double Vertex :: Getz(){ return z; } double Vertex :: Getm(){ return multi; } double Vertex :: Getphi(){ return phi; } double Vertex :: Gettheta(){ return theta; } //_______________________________________________________ Vertex :: ~Vertex(){ }