/usr/include/BALL/QSAR/modelFactory.h is in libball1.4-dev 1.4.3~beta1-3.
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | // -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
#ifndef BALL_QSAR_MODELFACTORY_H
#define BALL_QSAR_MODELFACTORY_H
#ifndef BALL_CONCEPT_FACTORY_H
#include <BALL/CONCEPT/factory.h>
#endif
#ifndef MODEL
#include <BALL/QSAR/Model.h>
#endif
#ifndef QSARH
#include <BALL/QSAR/QSARData.h>
#endif
namespace BALL
{
namespace QSAR
{
//typedef Model* (*CreateMethod) (const QSARData& q);
/** Factory class.
The factory class is used to create objects of the various regression / classification Models it was parameterized with. */
template <typename T>
class ModelFactory
{
public:
static T* create(const QSARData& q)
{
return new T(q);
}
static T* createKernel1(const QSARData& q, int k, double p1, double p2)
{
return new T(q,k,p1,p2);
}
static T* createKernel2(const QSARData& q, String s1, String s2)
{
return new T(q,s1,s2);
}
};
}
}
#endif // BALL_QSAR_MODELFACTORY_H
|