//*-- Author : Dan Magestro
//*-- Created: 01/10/01
//*-- Last modified: 07/11/01
//_HADES_CLASS_DESCRIPTION
/////////////////////////////////////////////////////////////////////////
//
// HCut
//
// This class is the base class for all cut classes. Currently this
// class doesn't do much itself.
//
// BEGIN_HTMLFor more information, see the PhyAna documentation. END_HTML
//
/////////////////////////////////////////////////////////////////////////
#include
#include
#include
#include "phyanadef.h"
#include "hcut.h"
#include "hades.h"
HCut::HCut() : TNamed() {
// Default constructor
fNCheck = 0;
fNGood = 0;
}
HCut::HCut(const Text_t *name, const Text_t *title)
: TNamed(name, title) {
// Default constructor
fNCheck = 0;
fNGood = 0;
}
ClassImp(HCut)