#ifndef ROOT_THaCut
#define ROOT_THaCut
#include "THaFormula.h"
#include "TString.h"
class THaCut : public THaFormula {
public:
THaCut() : THaFormula(), fLastResult(kFALSE), fNCalled(0), fNPassed(0) {}
THaCut( const char* name, const char* expression, const char* block,
const THaVarList* vlst = gHaVars, const THaCutList* clst = gHaCuts );
THaCut( const THaCut& rhs );
THaCut& operator=( const THaCut& rhs );
virtual ~THaCut() {}
void ClearResult() { fLastResult = kFALSE; }
#if ROOT_VERSION_CODE >= 262144 // 4.00/00
virtual Int_t DefinedVariable( TString& variable, Int_t& action );
#else
virtual Int_t DefinedVariable( TString& variable );
#endif
virtual Bool_t EvalCut();
Bool_t GetResult() const { return fLastResult; }
const char* GetBlockname() const { return fBlockname.Data(); }
UInt_t GetNCalled() const { return fNCalled; }
UInt_t GetNPassed() const { return fNPassed; }
virtual void Print( Option_t *opt="" ) const;
virtual void Reset();
virtual void SetBlockname( const Text_t* name );
virtual void SetName( const Text_t* name );
virtual void SetNameTitle( const Text_t *name, const Text_t *title );
protected:
Bool_t fLastResult;
TString fBlockname;
UInt_t fNCalled;
UInt_t fNPassed;
ClassDef(THaCut,0)
};
inline
Bool_t THaCut::EvalCut()
{
fNCalled++;
fLastResult = ( Eval() > 0.5 );
if( fLastResult ) fNPassed++;
return fLastResult;
}
inline
void THaCut::Reset()
{
ClearResult();
fNCalled = fNPassed = 0;
}
#endif
Last change: Sat Nov 7 21:26:44 2009
Last generated: 2009-11-07 21:26
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.