00001 // -*- C++ -*- 00002 #ifndef RIVET_DISKinematics_HH 00003 #define RIVET_DISKinematics_HH 00004 00005 #include "Rivet/Particle.hh" 00006 #include "Rivet/Event.hh" 00007 #include "Rivet/Projection.hh" 00008 #include "Rivet/Projections/DISLepton.hh" 00009 #include "Rivet/Projections/Beam.hh" 00010 00011 namespace Rivet { 00012 00013 00014 /// This class projects out the DIS kinematic variables and relevant 00015 /// boosts for an event. 00016 class DISKinematics : public Projection { 00017 00018 public: 00019 00020 /// The default constructor. 00021 DISKinematics() 00022 : _theQ2(-1.0), _theW2(-1.0), _theX(-1.0), _theY(-1.0), _theS(-1.0) 00023 { 00024 setName("DISKinematics"); 00025 //addBeamPair(ANY, hadid); 00026 addProjection(Beam(), "Beam"); 00027 addProjection(DISLepton(), "Lepton"); 00028 } 00029 00030 /// Clone on the heap. 00031 virtual const Projection* clone() const { 00032 return new DISKinematics(*this); 00033 } 00034 00035 00036 protected: 00037 00038 /// Perform the projection operation on the supplied event. 00039 virtual void project(const Event& e); 00040 00041 /// Compare with other projections. 00042 virtual int compare(const Projection& p) const; 00043 00044 00045 public: 00046 00047 /// The \f$Q^2\f$. 00048 double Q2() const { return _theQ2; } 00049 00050 /// The \f$W^2\f$. 00051 double W2() const { return _theW2; } 00052 00053 /// The Bjorken \f$x\f$. 00054 double x() const { return _theX; } 00055 00056 /// The Inelasticity \f$y\f$ 00057 double y() const { return _theY; } 00058 00059 /// The centre of mass energy \f$s\f$ 00060 double s() const { return _theS; } 00061 00062 00063 00064 /// The LorentzRotation needed to boost a particle to the hadronic CM frame. 00065 const LorentzTransform& boostHCM() const { 00066 return _hcm; 00067 } 00068 00069 /// The LorentzRotation needed to boost a particle to the hadronic Breit frame. 00070 const LorentzTransform& boostBreit() const { 00071 return _breit; 00072 } 00073 00074 /// The incoming Hadron beam particle 00075 const Particle& beamHadron() const { 00076 return _inHadron; 00077 } 00078 00079 private: 00080 00081 /// The \f$Q^2\f$. 00082 double _theQ2; 00083 00084 /// The \f$W^2\f$. 00085 double _theW2; 00086 00087 /// The Bjorken \f$x\f$. 00088 double _theX; 00089 00090 /// The Inelasticity \f$y\f$ 00091 double _theY; 00092 00093 /// The centre of mass energy \f$s\f$ 00094 double _theS; 00095 00096 Particle _inHadron; 00097 00098 /// The LorentzRotation needed to boost a particle to the hadronic CM frame. 00099 LorentzTransform _hcm; 00100 00101 /// The LorentzRotation needed to boost a particle to the hadronic Breit frame. 00102 LorentzTransform _breit; 00103 }; 00104 00105 00106 } 00107 00108 #endif