#ifndef HRICHTASKSET_H
#define HRICHTASKSET_H

#include "htaskset.h"
#include "TString.h"

class HRichTaskSet : public HTaskSet
{

 public:
   HRichTaskSet(void);
   HRichTaskSet(const Text_t name[],const Text_t title[]);
   ~HRichTaskSet(void);

   // function to be used for derived task sets (HRichTaskSet, etc.)
   static HTask *make(const Char_t* select = "",const Option_t* option = "");
   static void   parseArguments(TString s1);

 private:
   static Bool_t iSkipEvent;  // Switch to control skipping event w/o found ring in HRichAnalysis task.
                              // Can be controlled via option arguments in the make function.
   static Bool_t inoiseOn;    // Switch to control the noise simulation in HRichDigitizer task.
                              // Can be controlled via option arguments in the make function.

   ClassDef(HRichTaskSet, 1) // Set of tasks
};

#endif /* !HRICHTASKSET_H */

Last change: Sat May 22 13:10:07 2010
Last generated: 2010-05-22 13:10

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.