using namespace std;
#include "hdihitmatchsim.h"
#include "hhitmatchsim.h"
#include "hlinearcategory.h"
#include "hrichutilfunc.h"
#include "richdef.h"
#include <iostream>
#include <iomanip>
ClassImp(HDiHitMatchSim)
HDiHitMatchSim::HDiHitMatchSim() {
reset();
}
HDiHitMatchSim::~HDiHitMatchSim() {}
HDiHitMatchSim::HDiHitMatchSim(const HDiHitMatchSim& source) {
}
HDiHitMatchSim& HDiHitMatchSim::operator=(const HDiHitMatchSim& source) {
if (this != &source) {
}
return *this;
}
void HDiHitMatchSim::dumpToStdoutSim()
{
dumpToStdout();
HLinearCategory * cat = (HLinearCategory*) HRichUtilFunc::getCategory(catMatchHit);
HHitMatchSim *t1 = 0;
HHitMatchSim *t2 = 0;
if (cat)
{
t1 = (HHitMatchSim*)cat->getObject(this->getIndTrk1());
if (!t1) Error("HDiHitMatchSim","HHitMatchSim object 1 not found");
t2 = (HHitMatchSim*)cat->getObject(this->getIndTrk2());
if (!t2) Error("HDiHitMatchSim","HHitMatchSim object 2 not found");
}
else Error("","no category found");
if (t1&&t2)
{
t1->dumpToStdoutSim();
t2->dumpToStdoutSim();
}
}
void HDiHitMatchSim::resetSim(void)
{
}
Last change: Sat May 22 12:54:45 2010
Last generated: 2010-05-22 12:54
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.