#ifndef HRICHHITSELECTION_H
#define HRICHHITSELECTION_H
#include "TObject.h"
class HRichHit;
class HRichAnalysisPar;
class HRichHitSelection : public TObject {
public:
HRichHitSelection(){m_fAnalysisPar = NULL;}
HRichHitSelection(HRichAnalysisPar* par){setParams(par);}
Float_t richHitSelection(HRichHit* pHit, Int_t& ret)
{return richHitSelection(pHit, ret, m_fAnalysisPar);}
Float_t richHitSelection(HRichHit* pHit, Int_t& ret,
HRichAnalysisPar* pParams);
void setParams(HRichAnalysisPar* par){m_fAnalysisPar = par;}
HRichAnalysisPar* getParams(){return m_fAnalysisPar;}
ClassDef(HRichHitSelection,1)
private:
HRichAnalysisPar* m_fAnalysisPar;
};
#endif // HRICHHITSELECTION_H
Last change: Sat May 22 13:09:10 2010
Last generated: 2010-05-22 13:09
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.