00001 00010 #ifndef PERSIMPMTHIT_H 00011 #define PERSIMPMTHIT_H 00012 00013 #include "CLHEP/Vector/ThreeVector.h" 00014 #include "PerSimEvent/PerSimHit.h" 00015 00016 class PerSimPmtHit : public PerSimHit { 00017 public: 00018 PerSimPmtHit(); 00019 PerSimPmtHit(const CLHEP::Hep3Vector& in_dir, 00020 const CLHEP::Hep3Vector& in_pol, 00021 double in_wavelength, int in_type); 00022 virtual ~PerSimPmtHit(); 00023 00024 CLHEP::Hep3Vector dir; 00025 CLHEP::Hep3Vector pol; 00026 double wavelength; 00027 int type; 00028 }; 00029 00030 00031 #endif // PERSIMPMTHIT_H