All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SRWeightMapEntry.h
Go to the documentation of this file.
1 #ifndef SRWEIGHTMAPENTRY_H
2 #define SRWEIGHTMAPENTRY_H
3 
5 
6 #include <vector>
7 
8 namespace caf
9 {
11  {
12  public:
13  // Serialization requires a default constructor
15 
17  const std::vector<float>& vs) : param(p), vals(vs) {}
18 
20  std::vector<float> vals;
21  };
22 }
23 
24 #endif
std::vector< float > vals
pdgs p
Definition: selectors.fcl:22
SRWeightMapEntry(const SRWeightParam &p, const std::vector< float > &vs)