[go: up one dir, main page]

File: lavector.hpp

package info (click to toggle)
iminuit 2.30.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,660 kB
  • sloc: cpp: 14,591; python: 11,177; makefile: 11; sh: 5
file content (13 lines) | stat: -rw-r--r-- 247 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef IMINUIT_LAVECTOR
#define IMINUIT_LAVECTOR

#include "pybind11.hpp"
#include <Minuit2/LAVector.h>

namespace py = pybind11;
using namespace ROOT::Minuit2;

py::list lavector2py(const LAVector& v);
LAVector py2lavector(py::list ls);

#endif