00001 00002 // implementation of the AlThrust class methods 00003 // 00004 // Author : M. Hoerndl 00005 // 00007 00008 00009 #include "AlThrust.h" 00010 00011 // default constructor : has to do something, 00012 // since it is not created out of qvec 00013 AlThrust::AlThrust() {} 00014 00015 // copy constructor :Everything is set by the QvecBase copy constructor 00016 AlThrust::AlThrust(const AlThrust& oldT):QvecBase(oldT) {} 00017 00018 Hep3Vector AlThrust::getThrustDirection() const 00019 { return A4V().vect(); } 00020 00021 float AlThrust::getThrustValue() const 00022 { return A4V().e(); } 00023 00024