File: CCTest3.cc

package info (click to toggle)
lhapdf 5.8.7%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 18,096 kB
  • sloc: fortran: 55,662; sh: 10,220; cpp: 2,033; ansic: 612; python: 488; makefile: 426
file content (18 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "LHAPDF/LHAPDF.h"
#include "LHAPDF/LHAPDFfw.h"
#include <iterator>
#include <iostream>
#include <cstdlib>
using namespace std;

int main() {
  cout << "Prefix path:   " << LHAPDF::prefixPath() << endl;
  cout << "Index path:    " << LHAPDF::pdfsetsIndexPath() << endl;
  cout << "PDF sets path: " << LHAPDF::pdfsetsPath() << endl;
  return EXIT_SUCCESS;
}

#include "LHAPDF/FortranWrappers.h"
#ifdef FC_DUMMY_MAIN
int FC_DUMMY_MAIN() { return 1; }
#endif