#include "hrichcategoryviewer.h"
#include "hrichutilfunc.h"
#include "hruntimedb.h"
#include "hevent.h"
#include "hspectrometer.h"
#include "hdetector.h"
#include "hrichdetector.h"
#include "hcategory.h"
#include "hiterator.h"
#include "hmatrixcatiter.h"
#include "hlocation.h"
#include "hrichraw.h"
#include "hrichcalpar.h"
#include "hrichcal.h"
#include "hdebug.h"
#include "hades.h"
#include "richdef.h"
#include <stdlib.h>
ClassImp(HRichCategoryViewer)
HRichCategoryViewer::HRichCategoryViewer(const Text_t *name,const Text_t *title,Int_t category) :
HReconstructor(name,title)
{
cout << "constructing category viewer for category: " <<category<< endl;
fCategory = category;
}
HRichCategoryViewer::HRichCategoryViewer()
{
}
HRichCategoryViewer::~HRichCategoryViewer(void)
{
}
Bool_t HRichCategoryViewer::init() {
printf("initialization of rich categoryviewer\n");
return kTRUE;
}
Bool_t HRichCategoryViewer::finalize() {
return kTRUE;
}
Int_t HRichCategoryViewer::execute()
{
HRichUtilFunc::dumpCategory(fCategory);
return 0;
}
Last change: Sat May 22 13:08:17 2010
Last generated: 2010-05-22 13:08
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.