using namespace std;
#include "hdebug.h"
#include "hdihitmatchfilter.h"
#include "hrichcut.h"
#include "hrichcutpair.h"
#include <iostream>
#include <iomanip>
ClassImp(HDiHitMatchFilter)
void HDiHitMatchFilter::initCuts(HParSet* pPar)
{
}
Bool_t HDiHitMatchFilter::check(TObject* r)
{
Bool_t kRet =kFALSE;
HRichCutPair c("default","default");
c.switchTo("2matched");
if(
c.check((HDiHitMatch*)r)
)
{
kRet=kTRUE;
}
else
{
kRet=kFALSE;
}
return kRet;
}
Last change: Sat May 22 12:54:44 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.