00001 #include "SimGeneral/GFlash/interface/GflashHit.h" 00002 00003 GflashHit::GflashHit() : 00004 theTime(0), 00005 theEnergy(0), 00006 thePosition(0) 00007 { 00008 } 00009 00010 GflashHit::GflashHit(double time, double energy, Gflash3Vector& pos) 00011 { 00012 theTime = time; 00013 theEnergy = energy; 00014 thePosition = pos; 00015 } 00016 00017 GflashHit::~GflashHit() 00018 { 00019 }