At the moment a user application builder program is not provided. This may change in the future. In the mean time, a user is expected to tailor the function called AppUserBuild, in the file AppUserBuild_template.cc, in order to define what modules should be available for use in the created executable.
\#include "Framework/APPUserBuild.hh"
\#include "Examples/ParmExample.hh"
\#include "Examples/UserExample.hh"
\#include "Examples/HistExample.hh"
AppUserBuild::AppUserBuild( AppFramework* theFramework )
: AppBuild( theFramework )
{
AppModule* aModule;
aModule = new ParmExample( "ParmExample1", "Parameter example module 1" );
add( aModule );
aModule = new ParmExample( "ParmExample2", "Parameter example module 2" );
add( aModule );
aModule = new UserExample( "user", "UserExample example" );
add( aModule );
aModule = new HistExample( "hist", "Histogramming example" );
add( aModule );
}
AppUserBuild::~AppUserBuild( )
{
}
Notes: