00001 #ifndef PERREADOUTEVENT_PERUINTVALUE_H 00002 #define PERREADOUTEVENT_PERUINTVALUE_H 00003 00004 /* 00005 * PerUintValue.h 00006 * PerReadoutEvent 00007 * 00008 * Created by Simon Patton on 1/22/11. 00009 * Copyright 2011 DayaBay Collaboration. All rights reserved. 00010 * 00011 */ 00012 00013 class PerUintValue { 00014 00015 public: 00016 00020 PerUintValue(unsigned int value); 00021 00025 virtual ~PerUintValue(); 00026 00030 unsigned int value() const; 00031 00032 private: 00033 00037 PerUintValue(); 00038 00042 PerUintValue(const PerUintValue& rhs); 00043 00047 PerUintValue& operator=(const PerUintValue& rhs); 00048 00052 unsigned int m_value; 00053 00054 }; 00055 00056 #endif // PERREADOUTEVENT_PERUINTVALUE_H