00001 #ifndef GUARD_SUBTASKSUMMARYSTATUS_H 00002 #define GUARD_SUBTASKSUMMARYSTATUS_H 00003 00004 #include <string> 00005 00006 class SubTaskSummaryStatus 00007 { 00008 public: 00009 SubTaskSummaryStatus(bool onoffval=false); 00010 ~SubTaskSummaryStatus(); 00011 //void SetOnOff(bool onoffval); 00012 bool IsOn(); 00013 00014 double status[5]; // HB, HE, HO, HF, ZDC; make private? 00015 double ALLstatus; 00016 std::string problemName; // name for the set of SJ6 problem histograms 00017 std::string problemDir; 00018 bool onoff; 00019 private: 00020 //bool onoff; 00021 }; 00022 00023 #endif