#ifndef PHYSICSVECTORS_H #define PHYSICSVECTORS_H // ---------------------------------------------------------------------- // // PhysicsVectors.h -- // Convenience header for the PhysicsVectors package // // Includes all the standard classes, plus PlaneVector, but does not include // the convenience header PhysVec.h, or the bridge to LinearAlgebra // LinAlg-PhysVec.h. // // Any or all of the class headers below may be included explicitly, // whether of not PhysicsVectors.h is also included. Each class header // can stand alone to allow use of the classes it defines. // // Using the PhysicsVectors.h include provides all the classes in this package. // The only cost is the time to compile the headers for any classes the user // did not actually need. // // ---------------------------------------------------------------------- #include "SpaceVector.h" #include "UnitVector.h" #include "LorentzVector.h" #include "EulerAngles.h" #include "AxisAngle.h" #include "Rotation.h" #include "LorentzTransformation.h" #include "PlaneVector.h" #endif // PHYSICSVECTORS_H