ROOT logo
#ifndef HRPCTASKSET_H
#define HRPCTASKSET_H

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

class HRpcTaskSet : public HTaskSet {

  void parseArguments(TString s, Int_t &doCluster);

public:
  HRpcTaskSet(void); // : HTaskSet() {}   //HRpcTaskSet(void);
  HRpcTaskSet(const Text_t name[],const Text_t title[]); // : HTaskSet(name,title) {} //HRpcTaskSet(Text_t name[],Text_t title[]);
  ~HRpcTaskSet(void); // {} //~HRpcTaskSet(void);

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

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

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