00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _H_SST_CORE_NULL_STATISTIC_
00014 #define _H_SST_CORE_NULL_STATISTIC_
00015
00016 #include <sst/core/sst_types.h>
00017 #include <sst/core/serialization.h>
00018
00019 #include <sst/core/statapi/statbase.h>
00020
00021 namespace SST {
00022 namespace Statistics {
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 template <typename T>
00042 class NullStatistic : public Statistic<T>
00043 {
00044 private:
00045 friend class SST::Simulation;
00046
00047 NullStatistic(Component* comp, std::string& statName, std::string& statSubId, Params& statParams)
00048 : Statistic<T>(comp, statName, statSubId, statParams)
00049 {
00050
00051 this->setStatisticTypeName("NULL");
00052 }
00053
00054 ~NullStatistic(){};
00055
00056 protected:
00057 void addData_impl(T data)
00058 {
00059
00060 }
00061
00062 private:
00063 void clearStatisticData()
00064 {
00065
00066 }
00067
00068 void registerOutputFields(StatisticOutput* statOutput)
00069 {
00070
00071 }
00072
00073 void outputStatisticData(StatisticOutput* statOutput, bool EndOfSimFlag)
00074 {
00075
00076 }
00077
00078 bool isReady() const
00079 {
00080 return true;
00081 }
00082
00083 bool isNullStatistic() const
00084 {
00085 return true;
00086 }
00087
00088 private:
00089 friend class boost::serialization::access;
00090 template<class Archive>
00091 void serialize(Archive & ar, const unsigned int version)
00092 {
00093 ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(Statistic<T>);
00094 }
00095 };
00096
00097 }
00098 }
00099
00100
00101
00102 #endif