fast pQCD calculations for hadron-induced processes
fastNLOInterpolCatmullRom.h
1 // Author: Daniel Britzger
2 // DESY, 28/06/2013
3 
4 #ifndef __fastNLOInterpolCatmullRom__
5 #define __fastNLOInterpolCatmullRom__
6 
7 #include "speaker.h"
8 #include <string>
9 #include <vector>
10 #include <utility>
11 #include "fastNLOInterpolBase.h"
12 
13 
15 
16 public:
17 
18  fastNLOInterpolCatmullRom(double min, double max);
20 
21  // vector<pair<int,double> > CalcNodeValues(double val);
22  void CalcNodeValues(std::vector<std::pair<int,double> >& nodes, double val);
23 
24 protected:
25 
26 
27 private:
28 
29 
30 };
31 #endif
Definition: fastNLOInterpolCatmullRom.h:14
Definition: fastNLOInterpolBase.h:27