ROOT logo
#ifndef HTOFTASKSET_H
#define HTOFTASKSET_H

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

class HTofTaskSet : public HTaskSet {
protected:
    Int_t  fhitfinderVersion;   //! switch version 1 (old) and 2 new  (default)
    Bool_t fdoCluster;          //! run cluster finder , default kTRUE
    void parseArguments(TString);
public:
  HTofTaskSet(void);
  HTofTaskSet(const Text_t name[],const Text_t title[]);
  ~HTofTaskSet(void);

 // function to be used for derived task sets (HTofTaskSet, etc.)
  HTask *make(const Char_t *select="",const Option_t *option="");

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

#endif /* !HTOFTASKSET_H */
 htoftaskset.h:1
 htoftaskset.h:2
 htoftaskset.h:3
 htoftaskset.h:4
 htoftaskset.h:5
 htoftaskset.h:6
 htoftaskset.h:7
 htoftaskset.h:8
 htoftaskset.h:9
 htoftaskset.h:10
 htoftaskset.h:11
 htoftaskset.h:12
 htoftaskset.h:13
 htoftaskset.h:14
 htoftaskset.h:15
 htoftaskset.h:16
 htoftaskset.h:17
 htoftaskset.h:18
 htoftaskset.h:19
 htoftaskset.h:20
 htoftaskset.h:21
 htoftaskset.h:22
 htoftaskset.h:23