//*-- AUTHOR : Ilse Koenig
//*-- Created : 09/05/2005
//*-- Modified: 30.3.2006 B. Spruck

//_HADES_CLASS_DESCRIPTION 
///////////////////////////////////////////////////////////////////////////////
//
// HHodoTaskSet
//
// This HTaskSet contains the tasks for the Pion Hodoscopes
//
///////////////////////////////////////////////////////////////////////////////

using namespace std;
#include "hhodotaskset.h"
#include "hhodocalibrater.h"
#include "hdebug.h"
#include "haddef.h"
#include <iostream>
#include <iomanip>

 HTask* HHodoTaskSet::make(const char* select, Option_t* option)
{
  // Returns a pointer to the task or taskset specified by 'select'
  HTaskSet *tasks = new HTaskSet("Hodo","List of Hodoscopes tasks");
  TString sel = select;
  TString opt = option;
  sel.ToLower();
  opt.ToLower();

  if( sel.IsNull() ) {
    tasks->add( new HHodoCalibrater("hodo.cal","Hodo cal") );
  }
  return tasks;
}

ClassImp(HHodoTaskSet)












ROOT page - Class index - Class Hierarchy - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.