/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 /* 00002 * \class PerElecPulse 00003 * 00004 * \brief Persistant version of ElecPulse 00005 * 00006 * bseilhan@iit.edu Tue Aug 19 21:19:31 CDT 2008 00007 * 00008 */ 00009 00010 #ifndef PERELECPULSE_H 00011 #define PERELECPULSE_H 00012 00013 class PerElecPulse{ 00014 public: 00015 00016 PerElecPulse(); 00017 PerElecPulse(const double in_time, 00018 const int channelId, 00019 const float amplitude, 00020 const int type); 00021 00022 virtual ~PerElecPulse(); 00023 00024 double time; 00025 int channelId; 00026 float amplitude; 00027 //DayaBay::SimHit* ancestor 00028 int type; 00029 }; 00030 00031 #endif // PERELECPULSE_H