GeneticAlgoithm
Implementation of the genetic algorithm
|
#include <iostream>
#include <TRandom3.h>
#include "ParametricModel.h"
#include "ParametricModelPopulation.h"
#include "Chi2FitFigureOfMerit.h"
#include "GeneticAlgorithm.h"
#include "optparse.h"
#include <TH1.h>
#include <TMath.h>
#include <TCanvas.h>
#include <TGraph.h>
#include <TSystem.h>
#include <TStyle.h>
#include <TLatex.h>
#include <TString.h>
#include <TLegend.h>
Go to the source code of this file.
Functions | |
void | parseCommandLine (Config &config, int argc, char **argv) |
Prase command line arguments. More... | |
int | main (int argc, char **argv) |
Main function. More... | |