using namespace std;
#include "hdebug.h"
#include "hhitmatchfilter.h"
#include "hrichcut.h"
#include "hrichcuttracklet.h"
#include <iostream>
#include <iomanip>
ClassImp(HHitMatchFilter)
void HHitMatchFilter::initCuts(HParSet* pPar)
{
}
Bool_t HHitMatchFilter::check(TObject* r)
{
Bool_t kRet =kFALSE;
HRichCutTracklet c("default","default");
c.switchTo("angularMatch");
if(
c.check((HHitMatch*)r)
)
{
kRet=kTRUE;
}
else
{
kRet=kFALSE;
}
return kRet;
}
Last change: Sat May 22 12:57:11 2010
Last generated: 2010-05-22 12:57
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.