#!/usr/local/bin/perl  -T

################################################################################
#
# $Id$
#
# The main program that processes jobs and families
#
################################################################################

use strict;
use warnings;
use TaskForest;

my $task_forest = TaskForest->new();
$task_forest->runMainLoop();




