CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTT0PyWrapper.cc
Go to the documentation of this file.
1 
3 
6 
7 #include <string>
8 #include <fstream>
9 
10 namespace cond {
11 
12  template<>
13  class ValueExtractor<DTT0>: public BaseValueExtractor<DTT0> {
14  public:
15 
16  typedef DTT0 Class;
18  static What what() { return What();}
19 
22  {
23  // here one can make stuff really complicated...
24  }
25  void compute(Class const & it) override{
26  }
27  private:
28 
29  };
30 
31 
32  template<>
35  std::stringstream ss;
36  return ss.str();
37 
38  }
39 
40  template<>
42  std::stringstream ss;
43  return ss.str();
44  }
45 
46 
47  template<>
49  std::string const &,
50  std::vector<int> const&,
51  std::vector<float> const& ) const {
52  std::string fname = filename + ".png";
53  std::ofstream f(fname.c_str());
54  return fname;
55  }
56 
57 
58 }
59 
void compute(Class const &it) override
std::string plot(std::string const &, std::string const &, std::vector< int > const &, std::vector< float > const &) const
ExtractWhat< Class > What
#define PYTHON_WRAPPER(_class, _name)
std::string summary() const
Definition: DTT0.h:53
ExtractWhat< Class > What
double f[11][100]
string fname
main script
tuple filename
Definition: lut2db_cfg.py:20
ValueExtractor(What const &what)
std::string dump() const