// @(#)root/mathcore:$Id$ // Authors: W. Brown, M. Fischler, L. Moneta 2005 /********************************************************************** * * * Copyright (c) 2005 , LCG ROOT MathLib Team * * * * * **********************************************************************/ // Header file for class LorentzVectorfwd // // Created by: moneta at Tue May 31 21:06:43 2005 // // Last update: Tue May 31 21:06:43 2005 // #ifndef ROOT_Math_Vector4Dfwd #define ROOT_Math_Vector4Dfwd 1 namespace ROOT { namespace Math { // forward declarations of Lorentz Vectors and type defs definitions template class LorentzVector; template class PxPyPzE4D; template class PtEtaPhiE4D; template class PxPyPzM4D; template class PtEtaPhiM4D; // template class EEtaPhiMSystem; // for LorentzVector have only double classes (define the vector in the global ref frame) /** LorentzVector based on x,y,x,t (or px,py,pz,E) coordinates in double precision with metric (-,-,-,+) To use it add the line `#include ` See the documentation on the LorentzVector page. */ typedef LorentzVector > XYZTVector; // for consistency typedef LorentzVector > PxPyPzEVector; /** LorentzVector based on x,y,x,t (or px,py,pz,E) coordinates in float precision with metric (-,-,-,+) To use it add the line `#include ` See the documentation on the LorentzVector page. */ typedef LorentzVector< PxPyPzE4D > XYZTVectorF; /** LorentzVector based on the x, y, z, and Mass in double precision To use it add the line `#include ` See the documentation on the LorentzVector page. */ typedef LorentzVector > PxPyPzMVector; /** LorentzVector based on the cylindrical coordinates Pt, eta, phi and E (rho, eta, phi, t) in double precision To use it add the line `#include ` See the documentation on the LorentzVector page. */ typedef LorentzVector > PtEtaPhiEVector; /** LorentzVector based on the cylindrical coordinates pt, eta, phi and Mass in double precision To use it add the line `#include ` See the documentation on the LorentzVector page. */ typedef LorentzVector > PtEtaPhiMVector; // /** // LorentzVector based on the coordinates E, Eta, Phi and Mass in double precision. These coordinates are normally used to represents a cluster objects in a calorimeter at a collider experiment. // */ // typedef BasicLorentzVector > LorentzVectorEEtaPhiM; } // end namespace Math } // end namespace ROOT #endif