#include #include #include #include "Jeep/JParser.hh" #include "Jeep/JMessage.hh" #include "JPhysics/JK40Rates.hh" #include "JPhysics/Antares.hh" #include "JPhysics/KM3NeT.hh" /** * \file * Auxiliary program to print K40 rates. * \author mdejong */ int main(int argc, char **argv) { using namespace std; using namespace JPP; int debug; try { JParser<> zap("Auxiliary program to print K40 rates."); zap['d'] = make_field(debug) = 0; zap(argc, argv); } catch(const exception &error) { FATAL(error.what() << endl); } cout << NAMESPACE::getK40Rates() << endl; }