#ifndef HShowerCriterium_H
#define HShowerCriterium_H
#pragma interface
#include "TObject.h"
class HShowerHit;
class HShowerHitFPar;
class HShowerCriterium : public TObject {
public:
HShowerCriterium(){m_fHitFPar = NULL;}
HShowerCriterium(HShowerHitFPar* par){setParams(par);}
Float_t showerCriterium(HShowerHit* pHit, Int_t& ret)
{return showerCriterium(pHit, ret, m_fHitFPar);}
Float_t showerCriterium(HShowerHit* pHit, Int_t& ret,
HShowerHitFPar* pParams);
void setParams(HShowerHitFPar* par){m_fHitFPar = par;}
HShowerHitFPar* getParams(){return m_fHitFPar;}
ClassDef(HShowerCriterium,1)
private:
HShowerHitFPar* m_fHitFPar;
};
#endif
Last change: Sat May 22 13:13:23 2010
Last generated: 2010-05-22 13:13
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.