00001 #include "PerSimEvent/PerSimPmtHit.h" 00002 00003 PerSimPmtHit::PerSimPmtHit() 00004 : dir() 00005 , pol() 00006 , wavelength(0) 00007 , type(0) 00008 { 00009 } 00010 PerSimPmtHit::PerSimPmtHit(const CLHEP::Hep3Vector& in_dir, 00011 const CLHEP::Hep3Vector& in_pol, 00012 double in_wavelength, int in_type) 00013 : dir(in_dir) 00014 , pol(in_pol) 00015 , wavelength(in_wavelength) 00016 , type(in_type) 00017 { 00018 } 00019 PerSimPmtHit::~PerSimPmtHit() 00020 { 00021 } 00022