[go: up one dir, main page]

File: lavector.hpp

package info (click to toggle)
iminuit 2.11.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,780 kB
  • sloc: cpp: 24,851; python: 6,975; makefile: 18
file content (13 lines) | stat: -rw-r--r-- 254 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef IMINUIT_LAVECTOR
#define IMINUIT_LAVECTOR

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

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

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

#endif