StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
LHAPDFDummy.cc
1 // LHAPDFDummy.cc is a part of the PYTHIA event generator.
2 // Copyright (C) 2012 Torbjorn Sjostrand.
3 // PYTHIA is licenced under the GNU GPL version 2, see COPYING for details.
4 // Please respect the MCnet Guidelines, see GUIDELINES for details.
5 
6 // Dummy routines to link when LHAPDF not linked.
7 
8 extern "C" {
9 
10  void initpdfsetm_(int& nSet, const char*, int) {nSet = -1;}
11 
12  void initpdfsetbynamem_(int& nSet, const char*, int) {nSet = -1;}
13 
14  void initpdfm_(int& nSet, int&) {nSet = -1;}
15 
16  void evolvepdfm_(int& nSet, double&, double&, double*) {nSet = -1;}
17 
18  void evolvepdfphotonm_(int& nSet, double&, double&, double*, double&)
19  {nSet = -1;}
20 
21  void setlhaparm_(const char*, int) {}
22 
23 }