GET library
ReadConfig.cxx

WARNING: THE USE OF EFFECTIVE CONFIGRATION FILES IS NOT YET IMPLEMENTED IN AN EFFECTIVE WAY...

//======================================================================
// Read GET configuration file
//======================================================================
#include "GETRCoBo.hh"
int main ( int argc, char **argv )
{
GSetVerboseLevel(7);
// create the GET system (reduced CoBo)
GETRCoBo system ( 512, 0.01 );
// create the associated configuration architecture
system.InitConfig();
// load a test configuration file
string config_file = "../data/RCoBo/pulser.xcfg";
system.ReadXMLConfig ( config_file );
return (0);
}