/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 #include "PerSimEvent/PerSimHit.h" 00002 00003 PerSimHit::PerSimHit() 00004 : sensDetId(0) 00005 , time(0) 00006 , pos() 00007 , weight(0) 00008 , ancestor() 00009 { 00010 } 00011 PerSimHit::PerSimHit(int in_sensDetId, 00012 double in_time, const CLHEP::Hep3Vector& in_pos, 00013 float in_weight) 00014 : sensDetId(in_sensDetId) 00015 , time(in_time) 00016 , pos(in_pos) 00017 , weight(in_weight) 00018 , ancestor() 00019 { 00020 } 00021 PerSimHit::~PerSimHit() 00022 { 00023 }