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