// class for four-jet event at detector level // Glen Cowan, RHUL Physics Dept., 4 December 2001. #ifndef SIMEVENT_H #define SIMEVENT_H #include "FourVector.h" class SimEvent { public: SimEvent (FourVector, FourVector, FourVector, FourVector); SimEvent (FourVector, float, FourVector, float, FourVector, float, FourVector, float); SimEvent (); FourVector P1(); FourVector P2(); FourVector P3(); FourVector P4(); float btag1(); float btag2(); float btag3(); float btag4(); private: FourVector P1Val; FourVector P2Val; FourVector P3Val; FourVector P4Val; float btag1Val; float btag2Val; float btag3Val; float btag4Val; }; #endif