// ESAF : Euso Simulation and Analysis Framework
// $Id: OAPxHit.cc,v 1.2 2004/04/26 21:40:08 thea Exp $
// A.Thea, J.Watts created Mar, 17 2004
#include "OAPxHit.hh"
ClassImp(OAPxHit)
// default ctor
OAPxHit::OAPxHit()
: fThetaFOV(0), fPhiFOV(0), fLambda(0),
fChannelUID(0)
{
}
// ctor
OAPxHit::OAPxHit(Float_t th, Float_t phi, Float_t w, Int_t uid)
: fThetaFOV(th), fPhiFOV(phi), fLambda(w), fChannelUID(uid)
{
}
// ctor
OAPxHit::OAPxHit(const TVector3 &dir, Float_t w, Int_t uid):
fThetaFOV(dir.Theta()), fPhiFOV(dir.Phi()), fLambda(w),
fChannelUID(uid){
}
// dtor
OAPxHit::~OAPxHit() {
}