00001 #ifndef PERDAQBLOCK_PERDAQBLOCK_H 00002 #define PERDAQBLOCK_PERDAQBLOCK_H 00003 00004 /* 00005 * PerDaqBlock.h 00006 * PerDaqBlock 00007 * 00008 * Created by Simon Patton on 3/2/11. 00009 * Copyright 2011 DayaBay Collaboration. All rights reserved. 00010 * 00011 */ 00012 00013 #include <vector> 00014 00015 class PerDaqBlock{ 00016 00017 public: 00018 00022 PerDaqBlock(); 00023 00027 PerDaqBlock(const unsigned int size); 00028 00032 virtual ~PerDaqBlock(); 00033 00037 std::vector<unsigned int> rawData; 00038 00042 unsigned int size() const; 00043 00044 }; 00045 00046 #endif // PERDAQBLOCK_PERDAQBLOCK_H