![]() |
EventMixer 1.0
An event mixer for mixing events generated by PIBIDS.
|
00001 #include <vector> 00002 using namespace std; 00003 00004 00014 #ifndef EVENTHIT 00015 #define EVENTHIT //!<Includsion guard 00016 00017 class EventHit 00018 { 00019 public: 00020 EventHit(int nTubes 00021 ); 00022 00023 int A; 00024 int Z; 00025 int eventno; 00026 00027 double time; 00028 00029 float UFSP; 00030 float LFSP; 00031 float BSP; 00032 float Ge; 00033 00034 vector<float> DET; // Energy deposition in each scintillator tube. 00035 }; 00036 #endif