container.hpp 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /**
  2. * @file
  3. * @author Caleb Fangmeier <caleb@fangmeier.tech>
  4. * @version 0.1
  5. *
  6. * @section LICENSE
  7. *
  8. *
  9. * MIT License
  10. *
  11. * Copyright (c) 2017 Caleb Fangmeier
  12. *
  13. * Permission is hereby granted, free of charge, to any person obtaining a copy
  14. * of this software and associated documentation files (the "Software"), to deal
  15. * in the Software without restriction, including without limitation the rights
  16. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  17. * copies of the Software, and to permit persons to whom the Software is
  18. * furnished to do so, subject to the following conditions:
  19. *
  20. * The above copyright notice and this permission notice shall be included in all
  21. * copies or substantial portions of the Software.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  24. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  25. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  26. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  27. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  28. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  29. * SOFTWARE.
  30. */
  31. #ifndef container_hpp
  32. #define container_hpp
  33. #include <typeindex>
  34. #include <vector>
  35. #include <map>
  36. #include "value.hpp"
  37. #include "filter.hpp"
  38. template class std::vector<std::vector<float> >;
  39. template class std::vector<std::vector<int> >;
  40. namespace fv::util{
  41. std::string get_type_name(const std::type_index& index){
  42. std::map<std::type_index, std::string> _map;
  43. // Add to this list as needed :)
  44. _map[typeid(int)]="int";
  45. _map[typeid(unsigned int)]="unsigned int";
  46. _map[typeid(float)]="float";
  47. _map[typeid(double)]="double";
  48. _map[typeid(std::vector<int>)]="std::vector<int>";
  49. _map[typeid(std::vector<float>)]="std::vector<float>";
  50. if (_map[index] == ""){
  51. CRITICAL("Cannot lookup type name of \"" << index.name() << "\"",-1);
  52. }
  53. return _map[index];
  54. }
  55. }
  56. namespace fv{
  57. /**
  58. * Enumeration of different options that can be used to save Containers. Not
  59. * all options are allowed for all Containers.
  60. */
  61. enum SaveOption{
  62. PNG = 0,
  63. PDF = 1,
  64. ROOT = 2
  65. };
  66. /**
  67. * Generic, untyped parent class of Container. Used to allow for placing
  68. * Containers of disparate types in common data structures.
  69. */
  70. class GenContainer{
  71. private:
  72. std::string name;
  73. std::string desc;
  74. std::vector<Filter*> filters;
  75. protected:
  76. virtual void _fill() = 0;
  77. public:
  78. GenContainer(const std::string name, const std::string& desc)
  79. :name(name),desc(desc) { }
  80. GenContainer(const std::string name)
  81. :GenContainer(name,"N/A"){ }
  82. void add_filter(GenValue* filter){
  83. filters.push_back(dynamic_cast<Filter*>(filter));
  84. }
  85. void fill(){
  86. for (auto filter : filters){
  87. if (!filter->get_value()) return;
  88. }
  89. _fill();
  90. }
  91. void set_description(const std::string& description){
  92. desc = description;
  93. }
  94. const std::string& get_name(){
  95. return name;
  96. }
  97. virtual void save_as(const std::string& fname, const SaveOption& option) = 0;
  98. virtual void save(const SaveOption& option=SaveOption::PNG) {
  99. save_as(get_name(), option);
  100. }
  101. };
  102. /**
  103. * A class that is used to "hold" values. When an event is loaded, the
  104. * associated filters on this container are checked. If they all pass, the
  105. * \c _fill() method is called and the Container can access the stored Value
  106. * object to process it. For example, if the Container is a ROOT Histogram
  107. * object, it may call <tt>container->Fill(value->get_value())</tt>.
  108. */
  109. template <typename H>
  110. class Container : public GenContainer{
  111. protected:
  112. H* container;
  113. public:
  114. Container(const std::string& name, H* container)
  115. :GenContainer(name),
  116. container(container){ }
  117. virtual H* get_container(){
  118. return container;
  119. }
  120. };
  121. /**
  122. * Calculate the Mean of a Value over a series of observations. This class is
  123. * given a value of some type that supports addition and division(eg. a \c
  124. * float) and yields the mean value. Note that this implementation does \i not
  125. * support serialization so it is not incredibly useful. See the ROOT
  126. * Containers for Containers that support serialization using ROOT's
  127. * facilities.
  128. */
  129. template <typename T>
  130. class ContainerMean : public Container<T>{
  131. private:
  132. Value<T>* value;
  133. int count;
  134. T sum;
  135. void _fill(){
  136. count++;
  137. sum += value->get_value();
  138. }
  139. public:
  140. ContainerMean(const std::string& name, Value<T>* value)
  141. :Container<std::vector<T> >(name, nullptr),
  142. value(value){
  143. this->container = new T();
  144. }
  145. T* get_container(){
  146. *(this->container) = sum/count;
  147. return (this->container);
  148. }
  149. void save_as(const std::string& fname) {
  150. WARNING("Saving of ContainerMean objects not supported");
  151. }
  152. };
  153. }
  154. #endif // container_hpp