/usr/share/psi/plugin/plugin.cc.template is in psi4-data 4.0~beta5+dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #include <libplugin/plugin.h>
#include <psi4-dec.h>
#include <libparallel/parallel.h>
#include <liboptions/liboptions.h>
#include <libmints/mints.h>
#include <libpsio/psio.hpp>
INIT_PLUGIN
using namespace boost;
namespace psi{ namespace @plugin@ {
extern "C"
int read_options(std::string name, Options& options)
{
if (name == "@PLUGIN@"|| options.read_globals()) {
/*- The amount of information printed to the output file -*/
options.add_int("PRINT", 1);
}
return true;
}
extern "C"
PsiReturnType @plugin@(Options& options)
{
int print = options.get_int("PRINT");
/* Your code goes here */
return Success;
}
}} // End namespaces
|