00001 #ifndef SAMPLE_HANDLER_META_VECTOR_HH
00002 #define SAMPLE_HANDLER_META_VECTOR_HH
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include <SampleHandler/Global.h>
00015
00016 #include <vector>
00017 #include <SampleHandler/Meta.h>
00018
00019 namespace SH
00020 {
00023 template<class T> class MetaVector : public Meta
00024 {
00025
00026
00027
00028
00033 public:
00034 void testInvariant () const;
00035
00036
00045 public:
00046 MetaVector ();
00047
00048
00055 public:
00056 MetaVector (const std::string& name, const std::vector<T>& set_value);
00057
00058
00060 public:
00061 std::vector<T> value;
00062
00063
00064
00065
00066
00067
00068
00069 ClassDef(MetaVector, 1);
00070 };
00071 }
00072
00073 #include <RootCoreUtils/Assert.h>
00074
00075 namespace SH
00076 {
00077 template<class T> void MetaVector<T> ::
00078 testInvariant () const
00079 {
00080 RCU_INVARIANT (this != 0);
00081 }
00082
00083
00084
00085 template<class T> MetaVector<T> ::
00086 MetaVector ()
00087 : Meta ("")
00088 {
00089 RCU_NEW_INVARIANT (this);
00090 }
00091
00092
00093
00094 template<class T> MetaVector<T> ::
00095 MetaVector (const std::string& name, const std::vector<T>& set_value)
00096 : Meta (name), value (set_value)
00097 {
00098 RCU_NEW_INVARIANT (this);
00099 }
00100 }
00101
00102 #endif