fast pQCD calculations for hadron-induced processes
fastNLOInterpolLagrange.h
1 // Author: Daniel Britzger
2 // DESY, 29/01/2014
3 
11 #ifndef __fastNLOInterpolLagrange__
12 #define __fastNLOInterpolLagrange__
13 
14 #include "speaker.h"
15 #include <string>
16 #include <vector>
17 #include <utility>
18 #include "fastNLOInterpolBase.h"
19 
20 
22 
23 public:
24 
25  fastNLOInterpolLagrange(double min, double max);
27 
28  // vector<pair<int,double> > CalcNodeValues(double val);
29  void CalcNodeValues(std::vector<std::pair<int,double> >& nodes, double val);
30 
31 protected:
32 
33 
34 private:
35 
36 
37 };
38 
39 
40 #endif
Definition: fastNLOInterpolLagrange.h:21
void CalcNodeValues(std::vector< std::pair< int, double > > &nodes, double val)
Definition: fastNLOInterpolLagrange.cc:26
Definition: fastNLOInterpolBase.h:27