TaggedValue.h
Go to the documentation of this file.
1 #ifndef art_test_Integration_product_aggregation_physics_workflow_TaggedValue_h
2 #define art_test_Integration_product_aggregation_physics_workflow_TaggedValue_h
3 
5 
6 namespace arttest {
7 
8  template <typename T>
9  struct TaggedValue {
10  explicit TaggedValue(std::string const& tag, T const value)
11  : tag_{tag}, value_{value}
12  {}
14  T const value_;
15  };
16 }
17 
18 #endif /* art_test_Integration_product_aggregation_physics_workflow_TaggedValue_h */
19 
20 // Local Variables:
21 // mode: c++
22 // End:
std::string string
Definition: nybbler.cc:12
art::InputTag const tag_
Definition: TaggedValue.h:13
TaggedValue(std::string const &tag, T const value)
Definition: TaggedValue.h:10