// ESAF : Euso Simulation and Analysis Framework
// $Id: ESinglePhoton.cc,v 1.5 2004/10/14 08:21:28 moreggia Exp $
// A.Thea created Jun, 9 2004
#include "ESinglePhoton.hh"
ClassImp(ESinglePhoton)
//_____________________________________________________________________________
ESinglePhoton::ESinglePhoton() : TObject() {
// ctor
Clear();
}
//_____________________________________________________________________________
ESinglePhoton::~ESinglePhoton() {
// dtor
}
//_____________________________________________________________________________
void ESinglePhoton::Clear( Option_t* opt ){
fType = 0;
fAbsorbed = false;
fDate = 0;
fBunchId = 0;
fHistory = 0;
fTof = 0;
fWl = 0;
fNbinter = 0;
fPosX = -10000;
fPosY = -10000;
fPosZ = -10000;
fShowerPosX = 0;
fShowerPosY = 0;
fShowerPosZ = 0;
}