GENIEGenerator
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Classes | Namespaces | Macros | Typedefs
GFluxDriverFactory.h File Reference
#include <string>
#include <vector>
#include <map>
#include "Framework/EventGen/GFluxI.h"
Include dependency graph for GFluxDriverFactory.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  genie::flux::GFluxDriverFactory
 A class for generating concrete GFluxI derived classes based on the factory pattern. This code supplies a CPP macro which allows the classes to self-register and thus no modification of this class is needed in order to expand the list of classes it knows about. More...
 
struct  genie::flux::GFluxDriverFactory::Cleaner
 

Namespaces

 genie
 THE MAIN GENIE PROJECT NAMESPACE
 
 genie::flux
 GENIE flux drivers.
 

Macros

#define FLUXDRIVERREG(_name)
 
#define FLUXDRIVERREG3(_ns, _name, _fqname)
 
#define FLUXDRIVERREG4(_nsa, _nsb, _name, _fqname)
 

Typedefs

typedef genie::GFluxI *(* genie::flux::GFluxICtorFuncPtr_t )()
 

Macro Definition Documentation

#define FLUXDRIVERREG (   _name)
Value:
genie::GFluxI* _name ## _ctor_function () { return new _name; } \
static bool _name ## _creator_registered = \
& _name ## _ctor_function, \
& _name ## _creator_registered );
static GFluxDriverFactory & Instance()
bool RegisterCreator(std::string name, GFluxICtorFuncPtr_t ctorptr, bool *ptr)
GENIE Interface for user-defined flux classes.
Definition: GFluxI.h:29

Definition at line 138 of file GFluxDriverFactory.h.

#define FLUXDRIVERREG3 (   _ns,
  _name,
  _fqname 
)
Value:
namespace _ns { \
genie::GFluxI* _name ## _ctor_function () { return new _fqname; } \
static bool _name ## _creator_registered = \
& _fqname ## _ctor_function, \
& _fqname ## _creator_registered );}
static GFluxDriverFactory & Instance()
bool RegisterCreator(std::string name, GFluxICtorFuncPtr_t ctorptr, bool *ptr)

Definition at line 145 of file GFluxDriverFactory.h.

#define FLUXDRIVERREG4 (   _nsa,
  _nsb,
  _name,
  _fqname 
)
Value:
namespace _nsa { \
namespace _nsb { \
genie::GFluxI* _name ## _ctor_function () { return new _fqname; } \
static bool _name ## _creator_registered = \
& _fqname ## _ctor_function, \
& _fqname ## _creator_registered );}}
static GFluxDriverFactory & Instance()
bool RegisterCreator(std::string name, GFluxICtorFuncPtr_t ctorptr, bool *ptr)

Definition at line 153 of file GFluxDriverFactory.h.