00001 /* 00002 * PerDaqBlock.cc 00003 * PerDaqBlock 00004 * 00005 * Created by Simon Patton on 3/2/11. 00006 * Copyright 2011 DayaBay Collaboration. All rights reserved. 00007 * 00008 */ 00009 00010 #include "PerDaqBlock/PerDaqBlock.h" 00011 00012 PerDaqBlock::PerDaqBlock(): 00013 rawData(0) { 00014 } 00015 00016 PerDaqBlock::PerDaqBlock(const unsigned int size): 00017 rawData(size) { 00018 } 00019 00020 PerDaqBlock::~PerDaqBlock() { 00021 } 00022 00023 unsigned int PerDaqBlock::size() const { 00024 return rawData.size(); 00025 }