/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 #include "PerElecEvent/PerElecPulse.h" 00002 00003 PerElecPulse::PerElecPulse() 00004 : time() 00005 , channelId() 00006 , amplitude() 00007 , type() 00008 { 00009 } 00010 00011 PerElecPulse::PerElecPulse(const double in_time, 00012 const int in_channelId, 00013 const float in_amplitude, 00014 const int in_type) 00015 : time(in_time) 00016 , channelId(in_channelId) 00017 , amplitude(in_amplitude) 00018 , type(in_type) 00019 { 00020 } 00021 00022 PerElecPulse::~PerElecPulse() 00023 { 00024 }