using namespace std;
#include <iostream>
#include <iomanip>
#include "hldunpack.h"
#include "hldsubevt.h"
HldUnpack::HldUnpack(void) {
pSubEvt=NULL;
pRawCat=NULL;
}
HldUnpack::~HldUnpack(void) {
}
HldUnpack::HPP const HldUnpack::getpSubEvt(void) {
return &pSubEvt;
}
Int_t HldUnpack::execute(void) {
if (pSubEvt)
cout << "subEvtId = " << pSubEvt->getId() << endl;
return kTRUE;
}
void HldUnpack::setCategory(HCategory *aCat) {
pRawCat=aCat;
}
ClassImp(HldUnpack)
Last change: Sat May 22 13:18:01 2010
Last generated: 2010-05-22 13:18
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.